fix(deps): update minor-and-patch (dev) #6784
Open
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.11.3->2.12.05.0.0->5.1.02.11.3->2.12.09.1.1->9.1.37.0.20->7.0.2210.0.25->10.0.2710.9.1->10.10.111.0.2->11.0.322.18.12->22.19.08.46.2->8.46.38.46.2->8.46.316.11.0->16.12.06.0.0->6.0.16.0.1->6.1.0Release Notes
apollographql/federation (@apollo/gateway)
v2.12.0Compare Source
Minor Changes
Patch Changes
3e2b0a8569a9fe46726182887ed0b4bfc0b52468,bb4614d338ae03bac51a5fc2439590f172c4e54d,99f2da21de88f9ad9a32ee7ed64b2d4a92887b40,468f27842608f4e390cfc88bc7e6b4b0945f95ff,3fd5157b309f1d3439b2d87c67b0601fb246d04c,b734ea04d118db09cf6077fdd968c8f04a96327a,4bda3a498eba36e187dfd9ae673eca12d3f3502c,e7e67579908d5cd2fa6fe558228dffe4808cd98d,f3ab499eaf62b1a1c0f08b838d2cbde5accb303a,faea2d1174d80593264f2227cfde9a2ba1a59b96,0dbc7cc72ffacf324231e9ccb2de4189f6bf3289,97b9d2edfcfeed99124f9e115f992cbef3804682,f6af504f1ba8283fd00af0d6e3c9c1a665d62736,bc07e979b9fd24c9b94740b170f11023fe99ba1e,a595235d3cf8f67611efd8395332b64d067b5f1f,9cbdcb53f859c877a476e2725faa4cb205506f57]:v2.11.4Compare Source
Patch Changes
d221ac04c3ee00a3c7a671d9d56e2cfa36943b49,7730c03e128be6754b9e40c086d5cb5c4685ac66,4bda3a498eba36e187dfd9ae673eca12d3f3502c,f3ab499eaf62b1a1c0f08b838d2cbde5accb303a,6adbf7e86927de969aedab665b6a3a8dbf3a6095,2a20dc38dfc40e0b618d5cc826f18a19ddb91aff]:apollographql/apollo-server (@apollo/server)
v5.1.0Compare Source
Minor Changes
#8148
80a1a1aThanks @jerelmiller! - Apollo Server now supports the incremental delivery protocol (@deferand@stream) that ships withgraphql@17.0.0-alpha.9. To use the current protocol, clients must send theAcceptheader with a value ofmultipart/mixed; incrementalSpec=v0.2.Upgrading to 5.1 will depend on what version of
graphqlyou have installed and whether you already support the incremental delivery protocol.apollographql/federation (@apollo/subgraph)
v2.12.0Compare Source
Minor Changes
Patch Changes
When a
GraphQLScalarTyperesolver is provided tobuildSubgraphSchema(), omitted configuration options in theGraphQLScalarTypeno longer cause the corresponding properties in the GraphQL document/AST to be cleared. To explicitly clear these properties, usenullfor the configuration option instead. (#3287)Updated dependencies [
3e2b0a8569a9fe46726182887ed0b4bfc0b52468,bb4614d338ae03bac51a5fc2439590f172c4e54d,99f2da21de88f9ad9a32ee7ed64b2d4a92887b40,468f27842608f4e390cfc88bc7e6b4b0945f95ff,3fd5157b309f1d3439b2d87c67b0601fb246d04c,b734ea04d118db09cf6077fdd968c8f04a96327a,4bda3a498eba36e187dfd9ae673eca12d3f3502c,e7e67579908d5cd2fa6fe558228dffe4808cd98d,faea2d1174d80593264f2227cfde9a2ba1a59b96,97b9d2edfcfeed99124f9e115f992cbef3804682,f6af504f1ba8283fd00af0d6e3c9c1a665d62736,a595235d3cf8f67611efd8395332b64d067b5f1f]:v2.11.4Compare Source
Patch Changes
d221ac04c3ee00a3c7a671d9d56e2cfa36943b49,7730c03e128be6754b9e40c086d5cb5c4685ac66,4bda3a498eba36e187dfd9ae673eca12d3f3502c,6adbf7e86927de969aedab665b6a3a8dbf3a6095,2a20dc38dfc40e0b618d5cc826f18a19ddb91aff]:ardatan/graphql-tools (@graphql-tools/merge)
v9.1.3Compare Source
Patch Changes
[
fbb58b5]:v9.1.2Compare Source
Patch Changes
[
fd105f4,fded91e,3b99a9b]:ardatan/graphql-tools (@graphql-tools/resolvers-composition)
v7.0.22Compare Source
Patch Changes
[
fbb58b5]:v7.0.21Compare Source
Patch Changes
[
fd105f4,fded91e,3b99a9b]:ardatan/graphql-tools (@graphql-tools/schema)
v10.0.27Compare Source
Patch Changes
[
fbb58b5]:v10.0.26Compare Source
Patch Changes
[
fd105f4,fded91e,3b99a9b]:ardatan/graphql-tools (@graphql-tools/utils)
v10.10.1Compare Source
Patch Changes
fbb58b5Thanks @ardatan! - Remove `dset` dependency
v10.10.0Compare Source
Minor Changes
#5269
fded91eThanks @uroslates! - Add default values to the arguments
When the schema is like following;
The generated operation will be like following;
Patch Changes
#7012
fd105f4Thanks @ardatan! - Fix the bug in
mergeDeep;The following inputs and outputs are corrected;
mergeDeep([{a:2}, undefined])- Any nullish values should be ignored so it should return{a:2}mergeDeep([])- no sources should returnundefinedmergeDeep([undefined])- no sources should returnundefined#5294
3b99a9bThanks @n1ru4l! - Do not map builtin scalars
graphql-hive/gateway (@graphql-tools/wrap)
v11.0.3Compare Source
Patch Changes
#1654
efed5e0Thanks @dependabot! - dependencies updates:@graphql-tools/schema@^10.0.26↗︎ (from^10.0.25, independencies)@graphql-tools/utils@^10.10.0↗︎ (from^10.9.1, independencies)Updated dependencies [
efed5e0]:typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.46.3Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.46.3Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
graphql/graphql-js (graphql)
v16.12.0: 16.12.0Compare Source
v16.12.0 (2025-11-01)
New Feature 🚀
Bug Fix 🐞
Docs 📝
28 PRs were merged
Polish 💅
Internal 🏠
3 PRs were merged
Committers: 9
neo4j/neo4j-javascript-driver (neo4j-driver)
v6.0.1Compare Source
Patch release primarily fixing the typescript exports for types in the new
Vectorfeature🔧 Fixes
Vectorandvectors. #1356👏🏼 Improvements
isaacs/rimraf (rimraf)
v6.1.0Compare Source
Configuration
📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/London, 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 if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.