Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all non-major dependencies (#7792)
[![Mend Renovate logo banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@apollo/gateway](https://togithub.com/apollographql/federation) | [`2.5.7` -> `2.6.1`](https://renovatebot.com/diffs/npm/@apollo%2fgateway/2.5.7/2.6.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@apollo%2fgateway/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@apollo%2fgateway/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@apollo%2fgateway/2.5.7/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@apollo%2fgateway/2.5.7/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@apollo/subgraph](https://togithub.com/apollographql/federation) | [`2.5.7` -> `2.6.1`](https://renovatebot.com/diffs/npm/@apollo%2fsubgraph/2.5.7/2.6.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@apollo%2fsubgraph/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@apollo%2fsubgraph/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@apollo%2fsubgraph/2.5.7/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@apollo%2fsubgraph/2.5.7/2.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [nock](https://togithub.com/nock/nock) | [`13.3.8` -> `13.4.0`](https://renovatebot.com/diffs/npm/nock/13.3.8/13.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/nock/13.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/nock/13.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/nock/13.3.8/13.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/nock/13.3.8/13.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>apollographql/federation (@​apollo/gateway)</summary> ### [`v2.6.1`](https://togithub.com/apollographql/federation/blob/HEAD/gateway-js/CHANGELOG.md#261) [Compare Source](https://togithub.com/apollographql/federation/compare/@apollo/[email protected]...@apollo/[email protected]) ##### Patch Changes - Updated dependencies \[[`0d5ab01a`](https://togithub.com/apollographql/federation/commit/0d5ab01a4e91bac10f47732fee3fe4d8017f051f)]: - [@​apollo/federation-internals](https://togithub.com/apollo/federation-internals)[@​2](https://togithub.com/2).6.1 - [@​apollo/composition](https://togithub.com/apollo/composition)[@​2](https://togithub.com/2).6.1 - [@​apollo/query-planner](https://togithub.com/apollo/query-planner)[@​2](https://togithub.com/2).6.1 ### [`v2.6.0`](https://togithub.com/apollographql/federation/releases/tag/%40apollo/gateway%402.6.0) [Compare Source](https://togithub.com/apollographql/federation/compare/@apollo/[email protected]...@apollo/[email protected]) ##### Minor Changes - Add more information to OpenTelemetry spans. ([#​2700](https://togithub.com/apollographql/federation/pull/2700)) Rename `operationName` to `graphql.operation.name` and add a `graphql.operation.type` attribute, in conformance with the OpenTelemetry Semantic Conventions for GraphQL. The `operationName` attribute is now deprecated, but it is still emitted alongside `graphql.operation.name`. Add a `graphql.document` span attribute to the `gateway.request` span, containing the entire GraphQL source sent in the request. This feature is disable by default. When one or more GraphQL or internal errors occur, report them in the OpenTelemetry span in which they took place, as an exception event. This feature is disabled by default. To enable the `graphql.document` span attribute and the exception event reporting, add the following entries to your `ApolloGateway` instance configuration: ```ts const gateway = new ApolloGateway({ // ... telemetry: { // Set to `true` to include the `graphql.document` attribute includeDocument: true, // Set to `true` to report all exception events, or set to a number // to report at most that number of exception events per span reportExceptions: true, // or: reportExceptions: 1 }, }); ``` - Update `license` field in `package.json` to use `Elastic-2.0` SPDX identifier ([#​2741](https://togithub.com/apollographql/federation/pull/2741)) - Introduce the new `@policy` scope for composition ([#​2818](https://togithub.com/apollographql/federation/pull/2818)) > Note that this directive will only be *fully* supported by the Apollo Router as a GraphOS Enterprise feature at runtime. Also note that *composition* of valid `@policy` directive applications will succeed, but the resulting supergraph will not be *executable* by the Gateway or an Apollo Router which doesn't have the GraphOS Enterprise entitlement. Users may now compose `@policy` applications from their subgraphs into a supergraph. The directive is defined as follows: ```graphql scalar federation__Policy directive @​policy(policies: [[federation__Policy!]!]!) on | FIELD_DEFINITION | OBJECT | INTERFACE | SCALAR | ENUM ``` The `Policy` scalar is effectively a `String`, similar to the `FieldSet` type. In order to compose your `@policy` usages, you must update your subgraph's federation spec version to v2.6 and add the `@policy` import to your existing imports like so: ```graphql @​link(url: "https://specs.apollo.dev/federation/v2.6", import: [..., "@​policy"]) ``` - Add graphql.operation.name attribute on gateway.plan span ([#​2807](https://togithub.com/apollographql/federation/pull/2807)) ##### Patch Changes - Updated dependencies \[[`b18841be`](https://togithub.com/apollographql/federation/commit/b18841be897e6d4f47454568776f199e2adb60ae), [`e325b499`](https://togithub.com/apollographql/federation/commit/e325b499d592dabe61c93112c292c92ca10afbc5)]: - [@​apollo/query-planner](https://togithub.com/apollo/query-planner)[@​2](https://togithub.com/2).6.0 - [@​apollo/composition](https://togithub.com/apollo/composition)[@​2](https://togithub.com/2).6.0 - [@​apollo/federation-internals](https://togithub.com/apollo/federation-internals)[@​2](https://togithub.com/2).6.0 </details> <details> <summary>apollographql/federation (@​apollo/subgraph)</summary> ### [`v2.6.1`](https://togithub.com/apollographql/federation/blob/HEAD/subgraph-js/CHANGELOG.md#261) [Compare Source](https://togithub.com/apollographql/federation/compare/@apollo/[email protected]...@apollo/[email protected]) ##### Patch Changes - Updated dependencies \[[`0d5ab01a`](https://togithub.com/apollographql/federation/commit/0d5ab01a4e91bac10f47732fee3fe4d8017f051f)]: - [@​apollo/federation-internals](https://togithub.com/apollo/federation-internals)[@​2](https://togithub.com/2).6.1 ### [`v2.6.0`](https://togithub.com/apollographql/federation/releases/tag/%40apollo/subgraph%402.6.0) [Compare Source](https://togithub.com/apollographql/federation/compare/@apollo/[email protected]...@apollo/[email protected]) ##### Patch Changes - Updated dependencies \[[`b18841be`](https://togithub.com/apollographql/federation/commit/b18841be897e6d4f47454568776f199e2adb60ae), [`e325b499`](https://togithub.com/apollographql/federation/commit/e325b499d592dabe61c93112c292c92ca10afbc5)]: - [@​apollo/federation-internals](https://togithub.com/apollo/federation-internals)[@​2](https://togithub.com/2).6.0 </details> <details> <summary>nock/nock (nock)</summary> ### [`v13.4.0`](https://togithub.com/nock/nock/releases/tag/v13.4.0) [Compare Source](https://togithub.com/nock/nock/compare/v13.3.8...v13.4.0) ##### Features - add `context.query()` to nock back ([#​2553](https://togithub.com/nock/nock/issues/2553)) ([617511f](https://togithub.com/nock/nock/commit/617511ffb48cbf00928f9ee62292a2db3c124b11)) </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://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/apollographql/apollo-server). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information