diff --git a/.changeset/great-kids-visit.md b/.changeset/great-kids-visit.md deleted file mode 100644 index b637dfc4225..00000000000 --- a/.changeset/great-kids-visit.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@apollo/server': patch ---- - -Add an `__identity` property to `HeaderMap` class to disallow standard `Map`s (in TypeScript). - -This ensures that typechecking occurs on fields which are declared to accept a -`HeaderMap` (notably, the `httpGraphQLRequest.headers` option to -`ApolloServer.executeHTTPGraphQLRequest` and the `http.headers` option to -`ApolloServer.executeOperation`). This might be a breaking change for -integration authors, but should be easily fixed by switching from `new -Map()` to `new HeaderMap()`. diff --git a/.changeset/kind-yaks-study.md b/.changeset/kind-yaks-study.md deleted file mode 100644 index 7105d60d3cc..00000000000 --- a/.changeset/kind-yaks-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@apollo/server-integration-testsuite': patch ---- - -Update graphql-http dependency diff --git a/package-lock.json b/package-lock.json index 7fd55b94c61..bcd3a70f7f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13494,12 +13494,12 @@ }, "packages/integration-testsuite": { "name": "@apollo/server-integration-testsuite", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.3.1", + "@apollo/server": "4.3.2", "@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^2.0.0", @@ -13580,7 +13580,7 @@ }, "packages/server": { "name": "@apollo/server", - "version": "4.3.1", + "version": "4.3.2", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", @@ -13832,7 +13832,7 @@ "requires": { "@apollo/cache-control-types": "^1.0.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.3.1", + "@apollo/server": "4.3.2", "@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^2.0.0", diff --git a/packages/integration-testsuite/CHANGELOG.md b/packages/integration-testsuite/CHANGELOG.md index b3a2ad5625d..efa4d6ade11 100644 --- a/packages/integration-testsuite/CHANGELOG.md +++ b/packages/integration-testsuite/CHANGELOG.md @@ -1,5 +1,14 @@ # @apollo/server-integration-testsuite +## 4.3.2 + +### Patch Changes + +- [#7316](https://github.com/apollographql/apollo-server/pull/7316) [`37d884650`](https://github.com/apollographql/apollo-server/commit/37d884650cfde63530f05d97583094e4fc0b51b6) Thanks [@renovate](https://github.com/apps/renovate)! - Update graphql-http dependency + +- Updated dependencies [[`f246ddb71`](https://github.com/apollographql/apollo-server/commit/f246ddb7142d978a927de743108b602c511be119)]: + - @apollo/server@4.3.2 + ## 4.3.1 ### Patch Changes diff --git a/packages/integration-testsuite/package.json b/packages/integration-testsuite/package.json index 1a069a6bc51..f53811e3a41 100644 --- a/packages/integration-testsuite/package.json +++ b/packages/integration-testsuite/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server-integration-testsuite", - "version": "4.3.1", + "version": "4.3.2", "description": "Test suite for Apollo Server integrations", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -28,7 +28,7 @@ "dependencies": { "@apollo/cache-control-types": "^1.0.2", "@apollo/client": "^3.6.9", - "@apollo/server": "4.3.1", + "@apollo/server": "4.3.2", "@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0", "@apollo/utils.keyvaluecache": "^2.1.0", "@apollo/utils.createhash": "^2.0.0", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index d61ae79798d..7b9ad950eb2 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,18 @@ # @apollo/server +## 4.3.2 + +### Patch Changes + +- [#7314](https://github.com/apollographql/apollo-server/pull/7314) [`f246ddb71`](https://github.com/apollographql/apollo-server/commit/f246ddb7142d978a927de743108b602c511be119) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Add an `__identity` property to `HeaderMap` class to disallow standard `Map`s (in TypeScript). + + This ensures that typechecking occurs on fields which are declared to accept a + `HeaderMap` (notably, the `httpGraphQLRequest.headers` option to + `ApolloServer.executeHTTPGraphQLRequest` and the `http.headers` option to + `ApolloServer.executeOperation`). This might be a breaking change for + integration authors, but should be easily fixed by switching from `new +Map()` to `new HeaderMap()`. + ## 4.3.1 ### Patch Changes diff --git a/packages/server/package.json b/packages/server/package.json index dd3949fa8a5..01cddaf03e1 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/server", - "version": "4.3.1", + "version": "4.3.2", "description": "Core engine for Apollo GraphQL server", "type": "module", "main": "dist/cjs/index.js",