Skip to content

Commit a94828d

Browse files
chore(deps): update all non-major dependencies (#8016)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [@apollo/client](https://www.apollographql.com/docs/react/) ([source](https://redirect.github.com/apollographql/apollo-client)) | [`3.12.4` -> `3.12.5`](https://renovatebot.com/diffs/npm/@apollo%2fclient/3.12.4/3.12.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@apollo%2fclient/3.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@apollo%2fclient/3.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@apollo%2fclient/3.12.4/3.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@apollo%2fclient/3.12.4/3.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | devDependencies | patch | | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | [`22.12.0` -> `22.13.0`](https://renovatebot.com/diffs/npm/node/v22.12.0/v22.13.0) | [![age](https://developer.mend.io/api/mc/badges/age/node-version/node/v22.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/node-version/node/v22.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/node-version/node/v22.12.0/v22.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/node-version/node/v22.12.0/v22.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | volta | minor | --- ### Release Notes <details> <summary>apollographql/apollo-client (@&#8203;apollo/client)</summary> ### [`v3.12.5`](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELOG.md#3125) [Compare Source](https://redirect.github.com/apollographql/apollo-client/compare/v3.12.4...v3.12.5) ##### Patch Changes - [#&#8203;12252](https://redirect.github.com/apollographql/apollo-client/pull/12252) [`cb9cd4e`](https://redirect.github.com/apollographql/apollo-client/commit/cb9cd4ea251aab225adf5e4e4f3f69e1bbacee52) Thanks [@&#8203;jerelmiller](https://redirect.github.com/jerelmiller)! - Changes the default behavior of the `MaybeMasked` type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default. A new `mode` option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version. ##### Migrating from <= v3.12.4 If you've adopted data masking and have opted in to using masked types by setting the `enabled` property to `true`, you can remove this configuration entirely: ```diff -declare module "@&#8203;apollo/client" { - interface DataMasking { - mode: "unmask" - } -} ``` If you prefer to specify the behavior explicitly, change the property from `enabled: true`, to `mode: "preserveTypes"`: ```diff declare module "@&#8203;apollo/client" { interface DataMasking { - enabled: true + mode: "preserveTypes" } } ``` If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the `mode` to `unmask`: ```ts declare module "@&#8203;apollo/client" { interface DataMasking { mode: "unmask"; } } ``` </details> <details> <summary>nodejs/node (node)</summary> ### [`v22.13.0`](https://redirect.github.com/nodejs/node/compare/v22.12.0...v22.13.0) [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.12.0...v22.13.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apollographql/apollo-server). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiOmNocmlzdG1hc190cmVlOiBkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9524f3f commit a94828d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"npm": ">=8.5.0"
3939
},
4040
"devDependencies": {
41-
"@apollo/client": "3.12.4",
41+
"@apollo/client": "3.12.5",
4242
"@apollo/gateway": "2.9.3",
4343
"@apollo/subgraph": "2.9.3",
4444
"@apollo/utils.createhash": "2.0.2",
@@ -106,7 +106,7 @@
106106
]
107107
},
108108
"volta": {
109-
"node": "22.12.0",
109+
"node": "22.13.0",
110110
"npm": "9.9.4"
111111
}
112112
}

0 commit comments

Comments
 (0)