-
Notifications
You must be signed in to change notification settings - Fork 0
Update dependency graphql-request to v7 #694
base: master
Are you sure you want to change the base?
Conversation
32eefed to
7e2c613
Compare
7e2c613 to
95c9211
Compare
690229b to
b3703b2
Compare
b3703b2 to
ceb9362
Compare
c27fae7 to
806507f
Compare
806507f to
9e48679
Compare
9e48679 to
2e13454
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [eslint] <package-json/order-properties> reported by reviewdog 🐶
Package top-level properties are not ordered in the NPM standard way:
{
"name": "annict2spotify",
"version": "0.1.0",
�[32m+ "license": "MIT",�[39m
"repository": "https://github.com/SlashNephy/annict2spotify",
�[31m- "license": "MIT",�[39m
"scripts": {
�[31m- "build": "next build",�[39m
�[32m+ "start": "next start",�[39m
"dev": "concurrently -n dev: 'yarn:dev:'",
�[32m+ "dev:next": "next dev",�[39m
"dev:migrate": "prisma migrate dev",
�[31m- "dev:next": "next dev",�[39m
�[32m+ "build": "next build",�[39m
�[32m+ "lint": "concurrently -n lint: 'yarn:lint:'",�[39m
�[32m+ "lint:eslint": "next lint",�[39m
�[32m+ "lint:prettier": "prettier --check .",�[39m
"format": "concurrently -n format: 'yarn:format:'",
"format:eslint": "yarn lint:eslint --fix",
"format:prettier": "yarn lint:prettier --write",
"format:prisma": "prisma format",
�[32m+ "introspect": "curl -o graphql/schema.graphql https://raw.githubusercontent.com/kiraka/annict-web/main/app/graphql/beta/schema.graphql",�[39m
"generate": "concurrently -n generate: 'yarn:generate:'",
"generate:graphql": "graphql-codegen --config codegen.yml",
�[31m- "generate:prisma": "prisma generate",�[39m
�[31m- "introspect": "curl -o graphql/schema.graphql https://raw.githubusercontent.com/kiraka/annict-web/main/app/graphql/beta/schema.graphql",�[39m
�[31m- "lint": "concurrently -n lint: 'yarn:lint:*'",�[39m
�[31m- "lint:eslint": "next lint",�[39m
�[31m- "lint:prettier": "prettier --check .",�[39m
�[31m- "start": "next start"�[39m
�[32m+ "generate:prisma": "prisma generate"�[39m
},
�[31m- "eslintConfig": {�[39m
�[31m- "extends": [�[39m
�[31m- "@slashnephy/eslint-config"�[39m
�[31m- ]�[39m
�[31m- },�[39m
"dependencies": {
"@mantine/core": "4.2.12",
"@mantine/hooks": "4.2.12",
"@mantine/next": "4.2.12",
�[35m@@ -66,6 +61,11 @@�[39m
"prettier": "2.8.8",
"prisma": "4.7.1",
"typescript": "5.0.4"
},
�[31m- "packageManager": "[email protected]"�[39m
�[32m+ "packageManager": "[email protected]",�[39m
�[32m+ "eslintConfig": {�[39m
�[32m+ "extends": [�[39m
�[32m+ "@slashnephy/eslint-config"�[39m
�[32m+ ]�[39m
�[32m+ }�[39m
}
\ No newline at end of file
Lines 1 to 71 in 2e13454
| { | |
| "name": "annict2spotify", | |
| "version": "0.1.0", | |
| "license": "MIT", | |
| "repository": "https://github.com/SlashNephy/annict2spotify", | |
| "scripts": { | |
| "start": "next start", | |
| "dev": "concurrently -n dev: 'yarn:dev:*'", | |
| "dev:next": "next dev", | |
| "dev:migrate": "prisma migrate dev", | |
| "build": "next build", | |
| "lint": "concurrently -n lint: 'yarn:lint:*'", | |
| "lint:eslint": "next lint", | |
| "lint:prettier": "prettier --check .", | |
| "format": "concurrently -n format: 'yarn:format:*'", | |
| "format:eslint": "yarn lint:eslint --fix", | |
| "format:prettier": "yarn lint:prettier --write", | |
| "format:prisma": "prisma format", | |
| "introspect": "curl -o graphql/schema.graphql https://raw.githubusercontent.com/kiraka/annict-web/main/app/graphql/beta/schema.graphql", | |
| "generate": "concurrently -n generate: 'yarn:generate:*'", | |
| "generate:graphql": "graphql-codegen --config codegen.yml", | |
| "generate:prisma": "prisma generate" | |
| }, | |
| "dependencies": { | |
| "@mantine/core": "4.2.12", | |
| "@mantine/hooks": "4.2.12", | |
| "@mantine/next": "4.2.12", | |
| "@mantine/notifications": "4.2.12", | |
| "@prisma/client": "4.6.1", | |
| "cancelable-promise": "4.3.1", | |
| "date-fns": "2.29.3", | |
| "graphql-request": "7.3.5", | |
| "jsdom": "20.0.3", | |
| "levenshtein-edit-distance": "3.0.1", | |
| "next": "12.3.4", | |
| "next-auth": "4.24.5", | |
| "node-fetch": "3.3.0", | |
| "react": "18.2.0", | |
| "react-dom": "18.2.0", | |
| "react-query": "3.39.2", | |
| "react-render-if-visible": "2.1.1", | |
| "spotify-web-api-node": "5.0.2", | |
| "tabler-icons-react": "1.55.0" | |
| }, | |
| "devDependencies": { | |
| "@graphql-codegen/cli": "3.3.1", | |
| "@graphql-codegen/import-types-preset": "2.2.6", | |
| "@graphql-codegen/typescript": "3.0.4", | |
| "@graphql-codegen/typescript-graphql-request": "4.5.9", | |
| "@graphql-codegen/typescript-operations": "3.0.4", | |
| "@slashnephy/eslint-config": "2.1.3", | |
| "@slashnephy/prettier-config": "1.0.73", | |
| "@types/jsdom": "20.0.1", | |
| "@types/node": "18.16.7", | |
| "@types/react": "18.2.6", | |
| "@types/react-dom": "18.2.4", | |
| "@types/spotify-web-api-node": "5.0.7", | |
| "concurrently": "8.0.1", | |
| "eslint": "8.40.0", | |
| "graphql": "16.8.1", | |
| "prettier": "2.8.8", | |
| "prisma": "4.7.1", | |
| "typescript": "5.0.4" | |
| }, | |
| "packageManager": "[email protected]", | |
| "eslintConfig": { | |
| "extends": [ | |
| "@slashnephy/eslint-config" | |
| ] | |
| } | |
| } |
This PR contains the following updates:
4.3.0->7.3.5Release Notes
graffle-js/graffle (graphql-request)
v7.3.5Compare Source
What's Changed
Full Changelog: graffle-js/graffle@v7.3.0...v7.3.5
v7.3.4Compare Source
Bug Fixes
Changes
Breaking Changes
None - this release maintains backwards compatibility while adding support for accessing GraphQL errors from 4xx/5xx responses.
v7.3.3Compare Source
Bug Fixes
"Invalid execution result: result is not object or array"(#1459, closes #1458)What Changed
Version 7.3.2 introduced a bug where the ELSE branch in
parseResultFromResponsewould pass raw strings (HTML, plain text) to a parser expecting objects/arrays. This only surfaced when:text/html,text/plain)This is now fixed with graceful error handling and clear error messages.
v7.3.2Compare Source
Bug Fixes
HTTP Error Handling: Fixed regression from v6 to v7 where HTTP 4xx/5xx responses would not include GraphQL errors from response body in
ClientError(#1457, closes #1281)error.response.errorseven with non-2xx status codesgraphql-codegen Compatibility: Added support for
TypedDocumentStringfrom@graphql-codegenwhen usingdocumentMode: 'string'(#1456, closes #1453)v7.3.1Compare Source
Bug Fixes
graffle-js/graffle/tree/graphql-requestpathgraphql-requestbranchLinks
v7.3.0: graphql-request v7.3.0Compare Source
What's Changed
Features
anyfor easier migration and reduced type frictionPull Requests
Contributors
Thanks to @Moumouls (Antoine Cormouls) for the contribution! 🚀
Installation:
Package: https://www.npmjs.com/package/graphql-request/v/7.3.0
v7.2.0: [email protected]Compare Source
Features:
849c9abv7.1.2: [email protected]Compare Source
Fixes:
b732f45Remove reference totype-festwhich is not a dependency.v7.1.1: [email protected]Compare Source
Fixes
37445c8Support CJS and remove Graffle code. To use Graffle by now, you should be usingpnpm add graffle@next.v7.1.0Compare Source
Fixes
829028dmake dprint optional dep (#920)3ba32a3client sends accept headerImprovements
30b39bfimprove: update all deps to latest (#936)92ea1b2docs: mention additional requirement for TS39dfb37refactor: no mock serverdb4db92docs: TS moduleResolution requirementsGraffle
Features
c91bbc3anyware hook retries (#904)6eebe6fextension system (#871)543ffdfstatic exec and req funcs (#851)eecf7b9incremental typed client (#848)Chores
f1fd315add publint (#865)v7.0.1Compare Source
Fixes
dc299d9no node fs module in runtimeImprovements
11805c8improve: remove needless deep imports into graphqlChores
ecf5032update dependency tsx to v4.9.4 (#843)12cb8cfupdate dependency zod to v3.23.8 (#836)v7.0.0Compare Source
BREAKING CHANGES
2a121c6remove inlined graphql websocket code99a192eadd spec compliant defaultAcceptheader (#618)0e53aedreplaceGraphQLClientRequestHeaderswith built-inHeadersInittype (#616)c3a309fremove support for CommonJS (#607)6efcc0dremove cross-fetch polyfill/foo) (#745)Features
f906d22export request init extended type (#812)cc2dc55response middleware extra info (#788)2a121c6(breaking) remove inlined graphql websocket code0f1b7b5exclude operation name via a field in RequestConfig (#645)99a192e(breaking) add spec compliant defaultAcceptheader (#618)0e53aed(breaking) replaceGraphQLClientRequestHeaderswith built-inHeadersInittype (#616)c3a309f(breaking) remove support for CommonJS (#607)6efcc0d(breaking) remove cross-fetch polyfille065677export GraphQLClientRequestHeader (#558)Fixes
553006bawait response middleware (#810)54da7bdalias encoding (#809)190bdd2remove vitest import5f13401no select root types if not in schemaee66c10result types have no argsfe124deargs on interfaces and unions (#781)893ad01no infer runtime unions310f10corder independent input object defsa71c9f8order independent input object defs118d1d7no infer runtime objects1238a1cthunk list objects8a9e207exact types on query and mutation (#755)aeb6087generated code imports7d828d7allow null data0d1e1a6imports2ad3e80schema module exports pathb7c26f8schema import in generated types (#732)4af7cb4append search params (#673)a169969no GET on mutations (#663)8f926b8do not require index sig on vars (#659)0eb8a1dexportGraphQLResponsetype as part of the public API (#636)dbd7c7fdo not overwrite user-providedContent-Typeheader (#614)d6298a3refactor code so linter no longer produces warnings (#605)3b7b31fensure code formatting is correct (#604)a9fcb44add support for TypedDocumentNode to be passed to WS methods (#585)c124ec8Add ClientError to ResponseMiddleware param (#534)Improvements
b1f18c1refactor: simplify encode testsf333c1erefactor: single pass encode (#807)dbffec8refactor: modularize selection-set (#806)5b13f30refactor: organize dirs by layer (#805)bd5dddfdocs: begin new documentation05308faimprove: Node 18 tsconfig and ES2023 lib (#794)6f07a0erefactor: client modules (#791)a554328tests: refactor to one default schema (#790)893a5e0refactor: import orderb9888e2refactor: client dir1287edarefactor: schema module (#770)c77de38improve: upgrade to eslint 9 (#764)5fe1cearefactor: legacy becomes raw9dc4d81refactor: tidy signature52f4ab8improve: upgrade deps to latestcc86c34refactor: use dprint instead of prettier (#677)080346etests: case for overriding a built in headere040ec9tests: do not retest headers init4d4ac4crefactor: move existing api to legacy dir (#670)4cadba3refactor: modualarize api (#653)e5c8e7fimprove: Optimised imports from graphql to decrease bundle size (#543)Graffle (alpha)
Features
be48f1erename cli to grafflefb715d9generated namespace and client ctor (#815)e2d1888select (#816)4ac0cd1use a global namespace (#808)2a39e81rawOrThrow80e050creturnMode successData (#804)7b06232mode to return all errors (#796)ae9ab07treat schema file location as source dirb45dc60use graphql return mode & named schema547dfe5can specify error type pattern in cli2a77493isError helper functiona35be0aselect type utilities (#785)45412c2root type field methods (#779)73adae5document method (#774)98cb065select helper420a389add raw method5de618broot field methods9191249batch methodcebd26dsupport non-null interfaceb85b50bunion non-null field (#771)33a0278optional custom scalars (#768)fdca0a7index sans dollar namespace (#767)5658370custom scalar runtime codecs (#746)0e150e4format generated code with dprint34c9e25string support for custom scalars (#742)f9ad67asupport input object in selection set (#736)4318cacdisable environment input, rename flag (#731)48e4d64introduce a CLI for generating the client (#730)9640d0aintroduce an experimental typescript client (#672)v6.1.0Compare Source
Features
71af6abrestoremainfield of package.json for environments that do not supportexportsfield (#526)81c8bb2export middleware function typesImprovements
5fc0062improve: fix autocomplete for request functionb98d71brefactor: group exportsChores
6500e69regenerate TOC (#531)ae1d8afupdate pnpm to v8.5.1 (#527)da47f4eupdate pnpm to v8.5.0 (#524)ed72463update dependency @types/node to v20 (#523)efed6beupdate dependency @vitest/coverage-c8 to ^0.31.0 (#521)a91b69dupdate pnpm to v8.4.0 (#520)01d0793update dependency vitest to ^0.31.0 (#522)250e78cUpdate README.md (#516)a9bee0eupdate pnpm to v8.3.1 (#513)cee8629update pnpm to v8.3.0 (#511)dd2d3b6test that custom config is passed to fetchb7025c8do not use t-prefix type names6b3396bnormalize docs (dedupe) (#507)3a38f48upgrade dev deps to latestv6.0.0Compare Source
BREAKING CHANGES
02a5522remove file uploads feature (#501)702ef92bring TS 5 support (#480)Features
02a5522(breaking) remove file uploads feature (#501)702ef92(breaking) bring TS 5 support (#480)Fixes
8a98925change event handlers registration style (#474)Improvements
5ce990arefactor: remove default syntaxfee4476refactor: ref passthrough8467a26refactor: rename internal typeb563ad5refactor: lintChores
277bad5update dependency @vitest/coverage-c8 to ^0.30.0 (#503)4a4e85bupdate pnpm to v8.2.0 (#505)c201325update dependency vitest to ^0.30.0 (#504)37c5cc2check docs build on pr ci (#502)82e0050lint PRs (#498)e596527make use of gql taga446365update dev deps to latest3ed6436use prisma eslint configc697c5aformat8814eb8enable stale bot43a2601consolidate content under knowledge base sectionb15e948update pnpm to v8.1.1 (#494)bdebdc7update dependency happy-dom to v9 (#492)38fda1dupdate pnpm to v8.1.0 (#490)6c49eadupdate pnpm to v8 (#488)c7f8212update pnpm to v7.30.5 (#487)b520745update pnpm to v7.30.3 (#486)413bdffupdate pnpm to v7.30.1 (#485)9866249update pnpm to v7.30.0 (#483)b712346update pnpm to v7.29.3 (#479)be7e6b2make runs faster (#478)6ba1648update pnpm to v7.29.1 (#476)b18227etroubleshooting for React Native + Metro projects (#475)2d35a7bupdate pnpm to v7.29.0 (#470)v5.2.0Compare Source
Features
cb79d67make package hybrid ESM/CJS closes #192 (#455)Fixes
d5a4012batchRequests type constraint (#462)4302ba1check if property errors from response is an empty array (#454)Improvements
0fb7062refactor: introduce eslintd7d0a8drefactor: typo bathching -> batching (#425)Chores
7bf2d10fix githubToken passingff372f5update pnpm to v7.28.0 (#463)181ca5cupdate dependency @vitest/coverage-c8 to ^0.29.0 (#461)9dc1b7evscode settings for project074fb06add isuee templates29d09e5mention esm7abfa6dupdate pnpm to v7.27.1 (#456)3618169update pnpm to v7.27.0 (#452)6487093update pnpm to v7.26.3 (#450)0a65e91update pnpm to v7.26.2 (#447)a23b294update pnpm to v7.26.1 (#445)0962dd2switch to pnpm (#444)99f6763update dev deps (#443)7a644e7remove security policy9a097f2attribute owner and author to Jason Kuhrtv5.1.0Compare Source
v5.0.0Compare Source
BREAKING CHANGES
2f221a4Invoke responseMiddleware in error cases as well (#372)Features
6246ffeAllow async requestMiddleware (#379)2f221a4(breaking) Invoke responseMiddleware in error cases as well (#372)a7ac904TypedDocumentNode support & strict variable typings (#350)dec0319added middleware support (#170)Fixes
55b1bf5resolve headers when cross fetch is not available in environment (#296)988b437use GraphQLError fromgraphqlmodule (#365)Chores
d04de20bump apollo-server-core from 3.5.0 to 3.10.1 (#377)3662f38Replacing the quickstart gql query example (#374)fec536badd Readme section for GET requests (#370)dec0296add errorPolicy 'all' confition (#360)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.