Releases: apollographql/apollo-server
@apollo/server@4.4.0
@apollo/server-integration-testsuite@4.4.0
Patch Changes
- Updated dependencies [
f2d433b4f
]:- @apollo/server@4.4.0
@apollo/server@4.3.3
Patch Changes
-
#7331
9de18b34c
Thanks @trevor-scheer! - Unpinnode-abort-controller
and update to latest unbreaking patch -
#7136
8c635d104
Thanks @trevor-scheer! - Errors reported by subgraphs (with no trace data in the response) are now accurately reflected in the numeric error stats.Operations that receive errors from subgraphs (with no trace data in the response) are no longer sent as incomplete, error-less traces.
Note: in order for this fix to take effect, your
@apollo/gateway
version must be updated to v2.3.1 or later.
@apollo/server-integration-testsuite@4.3.3
Patch Changes
-
#7338
01bc39838
Thanks @trevor-scheer! - Update graphql-http to 1.13.0 -
Updated dependencies [
9de18b34c
,8c635d104
]:- @apollo/server@4.3.3
@apollo/server@4.3.2
Patch Changes
-
#7314
f246ddb71
Thanks @trevor-scheer! - Add an__identity
property toHeaderMap
class to disallow standardMap
s (in TypeScript).This ensures that typechecking occurs on fields which are declared to accept a
HeaderMap
(notably, thehttpGraphQLRequest.headers
option to
ApolloServer.executeHTTPGraphQLRequest
and thehttp.headers
option to
ApolloServer.executeOperation
). This might be a breaking change for
integration authors, but should be easily fixed by switching fromnew Map<string, string>()
tonew HeaderMap()
. -
#7326
e25cb58ff
Thanks @trevor-scheer! - Pinnode-abort-controller
version to avoid breaking change. Apollo Server users can enter a broken state if they update their package-lock.json due to a breaking change in a minor release of the mentioned package. -
Updated dependencies [
e0f959a63
]:- @apollo/server-gateway-interface@1.1.0
@apollo/server-integration-testsuite@4.3.2
@apollo/server-gateway-interface@1.1.0
Minor Changes
- #7325
e0f959a63
Thanks @trevor-scheer! - Add optionalnonFtv1ErrorPaths
to Gateway metrics data. This change is a prerequisite to:
@apollo/server@4.3.1
Patch Changes
-
#7313
ec28b4b33
Thanks @vtipparam! - Allow case insensitive lookup on headers. Use HeaderMap instead of plain Map for headers in expressMiddleware. -
#7311
322b5ebbc
Thanks @axe-me! - Export intermediate ApolloServerOptions* types -
#7274
3b0ec8529
Thanks @patrick91! - The subgraph spec has evolved in Federation v2 such that the type of
_Service.sdl
(formerly nullable) is now non-nullable. Apollo Server now
detects both cases correctly in order to determine whether to:- install / enable the
ApolloServerPluginInlineTrace
plugin - throw on startup if
ApolloServerPluginSchemaReporting
should not be installed - warn when
ApolloServerPluginUsageReporting
is installed and configured with the__onlyIfSchemaIsNotSubgraph
option
- install / enable the
@apollo/server-integration-testsuite@4.3.1
Patch Changes
-
#7285
35fa72bdd
Thanks @glasser! - Adds an integration test verifying that Rover's introspection query works. This should not break any integration that passes other tests. -
#7276
15c912f4c
Thanks @renovate! - Update graphql-http dependency -
Updated dependencies [
ec28b4b33
,322b5ebbc
,3b0ec8529
]:- @apollo/server@4.3.1
@apollo/server@4.3.0
Minor Changes
- #7241
d7e9b9759
Thanks @glasser! - If the cache you provide to thepersistedQueries.cache
option is created withPrefixingKeyValueCache.cacheDangerouslyDoesNotNeedPrefixesForIsolation
(new in@apollo/utils.keyvaluecache@2.1.0
), theapq:
prefix will not be added to cache keys. Providing such a cache tonew ApolloServer()
throws an error.
Patch Changes
-
#7232
3a4823e0d
Thanks @glasser! - Refactor the implementation ofApolloServerPluginDrainHttpServer
's grace period. This is intended to be a no-op. -
#7229
d057e2ffc
Thanks @dnalborczyk! - Improve compatibility with Cloudflare workers by avoiding the use of the Nodeutil
package. This change is intended to be a no-op. -
#7228
f97e55304
Thanks @dnalborczyk! - Improve compatibility with Cloudflare workers by avoiding the use of the Nodeurl
package. This change is intended to be a no-op. -
#7241
d7e9b9759
Thanks @glasser! - For ease of upgrade from the recommended configuration of Apollo Server v3.9+, you can now passnew ApolloServer({ cache: 'bounded' })
, which is equivalent to not providing thecache
option (as a bounded cache is now the default in AS4).