keystonejs / keystone

The most powerful headless CMS for Node.js — built with GraphQL and React
https://keystonejs.com
MIT License
8.98k stars 1.13k forks source link

fix(deps): update dependency graphql-upload to v16 #9124

Open renovate[bot] opened 2 months ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
graphql-upload ^15.0.2 -> ^16.0.0 age adoption passing confidence

Release Notes

jaydenseric/graphql-upload (graphql-upload) ### [`v16.0.2`](https://togithub.com/jaydenseric/graphql-upload/blob/HEAD/changelog.md#1602) [Compare Source](https://togithub.com/jaydenseric/graphql-upload/compare/v16.0.1...v16.0.2) ##### Patch - Updated dev dependencies. - Use the `node:` URL scheme for Node.js builtin module imports. - Improved JSDoc in the module `GraphQLUpload.mjs`. - Revamped the readme: - Removed the badges. - More detailed installation instructions. - Added information about TypeScript config and [optimal JavaScript module design](https://jaydenseric.com/blog/optimal-javascript-module-design). ### [`v16.0.1`](https://togithub.com/jaydenseric/graphql-upload/blob/HEAD/changelog.md#1601) [Compare Source](https://togithub.com/jaydenseric/graphql-upload/compare/v16.0.0...v16.0.1) ##### Patch - Support non `latin1` characters in file names by setting the [`busboy`](https://npm.im/busboy) option `defParamCharset` to `utf8`, fixing [#​328](https://togithub.com/jaydenseric/graphql-upload/issues/328). - Removed a redundant `@ts-ignore` comment. ### [`v16.0.0`](https://togithub.com/jaydenseric/graphql-upload/blob/HEAD/changelog.md#1600) [Compare Source](https://togithub.com/jaydenseric/graphql-upload/compare/v15.0.2...v16.0.0) ##### Major - Updated the [`fs-capacitor`](https://npm.im/fs-capacitor) dependency to v8, fixing [#​318](https://togithub.com/jaydenseric/graphql-upload/issues/318). - The type `FileUploadCreateReadStreamOptions` from the `processRequest.mjs` module now uses types from [`fs-capacitor`](https://npm.im/fs-capacitor) that are slightly more specific. - The API is now ESM in `.mjs` files instead of CJS in `.js` files, [accessible via `import` but not `require`](https://nodejs.org/dist/latest/docs/api/esm.html#require). To migrate imports: ```diff - import GraphQLUpload from "graphql-upload/GraphQLUpload.js"; + import GraphQLUpload from "graphql-upload/GraphQLUpload.mjs"; ``` ```diff - import graphqlUploadExpress from "graphql-upload/graphqlUploadExpress.js"; + import graphqlUploadExpress from "graphql-upload/graphqlUploadExpress.mjs"; ``` ```diff - import graphqlUploadKoa from "graphql-upload/graphqlUploadKoa.js"; + import graphqlUploadKoa from "graphql-upload/graphqlUploadKoa.mjs"; ``` ```diff - import processRequest from "graphql-upload/processRequest.js"; + import processRequest from "graphql-upload/processRequest.mjs"; ``` ```diff - import Upload from "graphql-upload/Upload.js"; + import Upload from "graphql-upload/Upload.mjs"; ``` ##### Patch - Updated dev dependencies. - Updated examples in JSDoc comments. - Updated the changelog entry for v14.0.0 to show how to migrate imports.

Configuration

📅 Schedule: Branch creation - "before 7am on Tuesday,before 7am on Wednesday" in timezone Australia/Sydney, 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 these updates again.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 2 months ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.