-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update examples #655
base: main
Are you sure you want to change the base?
Conversation
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #655 +/- ##
=======================================
Coverage 92.94% 92.94%
=======================================
Files 17 17
Lines 340 340
Branches 98 98
=======================================
Hits 316 316
Misses 24 24 ☔ View full report in Codecov by Sentry. |
75ea1cc
to
90b8b6c
Compare
c519230
to
2768515
Compare
5781cf8
to
c035d9b
Compare
714e87b
to
0bf53dd
Compare
0bf53dd
to
2c08ea7
Compare
e3c30f6
to
6ef3800
Compare
cd3f3f5
to
f5778ac
Compare
3946936
to
42921f6
Compare
527f128
to
7cd4b72
Compare
7cd4b72
to
cfa3889
Compare
This PR contains the following updates:
2.8.5
->2.9.3
4.10.4
->4.11.2
10.0.3
->10.0.7
12.1.0
->12.2.1
10.3.2
->10.4.5
10.3.8
->10.4.6
10.3.8
->10.4.6
12.1.1
->12.2.1
10.3.8
->10.4.6
10.3.8
->10.4.6
20.12.12
->20.17.3
8.0.0
->8.12.2
8.0.0
->8.12.2
9.3.0
->9.13.0
4.20.0
->4.21.1
16.8.1
->16.9.0
5.3.1
->5.7.0
3.1.0
->3.1.7
3.2.5
->3.3.3
5.4.5
->5.6.3
4.2.2
->4.5.1
Release Notes
apollographql/federation (@apollo/gateway)
v2.9.3
Compare Source
Patch Changes
345661c558773e4eb5d5f0b28464a8d1acdc2a2d
,7fe1465cf35c2efe37ac5c73fac2b7ea04173318
,cc4573471696ef78d04fa00c4cf8e5c50314ba9f
,062572b3253e8640b60a0bf58b83945094b76b6f
,df5eb3cb0e2b4802fcd425ab9c23714de2707db3
,1c99cb0dcc6c639ac351210932623ab0bd6907e4
]:v2.9.2
Compare Source
Patch Changes
2192f355f50db33fe0807d16153f357696b9f190
,e1e2605b30efc488b57f62ba43436606a38a3607
,5ac01b534318105e904c1e6598070f753add3bb1
]:v2.9.1
Compare Source
Patch Changes
Fix bugs in composition when merging nulls in directive applications and when handling renames. (#3134)
Updated dependencies [
b8e4ab5352a4dfd262af49493fdd42e86e5e3d99
,e6c05b6c96023aa3dec79889431f8217fcb3806d
]:v2.9.0
Compare Source
Patch Changes
Avoid type explosion for inline fragments where the type condition is an interface that implements the parent type. (#3122)
Reduce memory overhead during satisfiability checking when there are many options. (#3109)
Updated dependencies [
02c2a34a62c3717a4885449172e404f19ebf66c9
,0ccfd937d4b4a576f890665ceebbd7986fac5d0c
,e0a5075c0d12a0e2f7ef303b246e3216a139d3e0
]:apollographql/apollo-server (@apollo/server)
v4.11.2
Compare Source
(No change; there is a change to the
@apollo/server-integration-testsuite
used to test integrations, and the two packages always have matching versions.)v4.11.1
Compare Source
Patch Changes
#7952
bb81b2c
Thanks @glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.@apollo/server
depends onexpress
which depends oncookie
. Versions ofexpress
older than v4.21.1 depend on a version ofcookie
vulnerable to CVE-2024-47764. Users of olderexpress
versions who callres.cookie()
orres.clearCookie()
may be vulnerable to this issue.However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.
The only way that this direct dependency can cause a vulnerability for users of Apollo Server is if you call
startStandaloneServer
with a context function that calls Express-specific methods such asres.cookie()
orres.clearCookies()
on the response object, which is a violation of the TypeScript types provided bystartStandaloneServer
(which only promise that the response object is a core Node.jshttp.ServerResponse
rather than the Express-specific subclass). So this vulnerability can only affect Apollo Server users who use unsafe JavaScript or unsafeas
typecasts in TypeScript.However, this upgrade will at least prevent vulnerability scanners from alerting you to this dependency, and we encourage all Express users to upgrade their project's own
express
dependency to v4.21.1 or newer.v4.11.0
Compare Source
Minor Changes
#7916
4686454
Thanks @andrewmcgivery! - AddhideSchemaDetailsFromClientErrors
option to ApolloServer to allow hiding 'did you mean' suggestions from validation errors.Even with introspection disabled, it is possible to "fuzzy test" a graph manually or with automated tools to try to determine the shape of your schema. This is accomplished by taking advantage of the default behavior where a misspelt field in an operation
will be met with a validation error that includes a helpful "did you mean" as part of the error text.
For example, with this option set to
true
, an error would readCannot query field "help" on type "Query".
whereas with this option set tofalse
it would readCannot query field "help" on type "Query". Did you mean "hello"?
.We recommend enabling this option in production to avoid leaking information about your schema to malicious actors.
To enable, set this option to
true
in yourApolloServer
options:v4.10.5
Compare Source
Patch Changes
#7821
b2e15e7
Thanks @renovate! - Non-major dependency updates#7900
86d7111
Thanks @trevor-scheer! - Inline a small dependency that was causing build issues for ESM projectsardatan/graphql-tools (@graphql-tools/schema)
v10.0.7
Compare Source
Patch Changes
[
cf2ce5e
]:v10.0.6
Compare Source
Patch Changes
0286437
Thanks @ardatan! - Improve directive extraction
Updated dependencies
[
0286437
]:v10.0.5
Compare Source
Patch Changes
b8bf584
Thanks @ardatan! - Introduce `getDirectiveExtensions` and refactor
directive handling in the extensions
Updated dependencies
[
b8bf584
]:v10.0.4
Compare Source
Patch Changes
#6194
7368829
Thanks @ardatan! - Handle interface objects in a different way
Updated dependencies
[
7368829
,e10c13a
]:nestjs/graphql (@nestjs/apollo)
v12.2.1
Compare Source
12.2.1 (2024-10-23)
Bug fixes
graphql
Enhancements
apollo
graphql
Dependencies
graphql
apollo
,graphql
,mercurius
Committers: 4
v12.2.0
Compare Source
v12.2.0 (2024-07-02)
Bug fixes
graphql
apollo
,graphql
Enhancements
apollo
,graphql
Docs
graphql
Dependencies
apollo
,graphql
,mercurius
mercurius
graphql
Committers: 6
nestjs/nest-cli (@nestjs/cli)
v10.4.5
Compare Source
a734d81
)587e407
)4ccad5c
)d3484bf
)7813682
)b9cdc65
)28913e7
)fa03cba
)89009c4
)769a060
)0f8f78b
)24bfce4
)868adde
)df9264f
)cd54a26
)acc8e4b
)562e818
)dd9be11
)2c1de38
)c1f7432
)de68966
)0c31bb6
)d0f9535
)36b276a
)v10.4.4
Compare Source
v10.4.3
Compare Source
v10.4.2
Compare Source
v10.4.1
Compare Source
v10.4.0
Compare Source
nestjs/nest (@nestjs/common)
v10.4.6
Compare Source
v10.4.5
Compare Source
v10.4.5 (2024-10-16)
Dependencies
platform-express
platform-fastify
Committers: 5
v10.4.4
Compare Source
v10.4.3
Compare Source
v10.4.2
Compare Source
v10.4.1
Compare Source
v10.4.0
Compare Source
v10.3.10
Compare Source
v10.3.9
Compare Source
v10.3.9 (2024-06-03)
Bug fixes
core
platform-fastify
Enhancements
platform-ws
common
,core
@Inject()
on constructor-based injection (@micalevisk)core
Docs
common
Dependencies
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.
👻 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.