Skip to content
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

Version Packages #7620

Merged
merged 1 commit into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .changeset/quiet-peaches-film.md

This file was deleted.

40 changes: 20 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions packages/cache-control-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @apollo/cache-control-types

## 1.0.3

### Patch Changes

- [#7614](https://github.com/apollographql/apollo-server/pull/7614) [`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1) Thanks [@Cellule](https://github.com/Cellule)! - Publish TypeScript typings for CommonJS modules output.

This allows TypeScript projects that use CommonJS modules with
`moduleResolution: "node16"` or
`moduleResolution: "nodeNext"`
to correctly resolves the typings of apollo's packages as CommonJS instead of ESM.

## 1.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cache-control-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/cache-control-types",
"version": "1.0.2",
"version": "1.0.3",
"description": "TypeScript types for Apollo Server info.cacheControl",
"type": "module",
"main": "dist/cjs/index.js",
Expand Down
14 changes: 14 additions & 0 deletions packages/gateway-interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @apollo/server-gateway-interface

## 1.1.1

### Patch Changes

- [#7614](https://github.com/apollographql/apollo-server/pull/7614) [`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1) Thanks [@Cellule](https://github.com/Cellule)! - Publish TypeScript typings for CommonJS modules output.

This allows TypeScript projects that use CommonJS modules with
`moduleResolution: "node16"` or
`moduleResolution: "nodeNext"`
to correctly resolves the typings of apollo's packages as CommonJS instead of ESM.

- Updated dependencies [[`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1)]:
- @apollo/usage-reporting-protobuf@4.1.1

## 1.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/gateway-interface/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/server-gateway-interface",
"version": "1.1.0",
"version": "1.1.1",
"description": "Interface used to connect Apollo Gateway to Apollo Server",
"type": "module",
"main": "",
Expand Down Expand Up @@ -29,7 +29,7 @@
"@apollo/utils.fetcher": "^2.0.0",
"@apollo/utils.logger": "^2.0.0",
"@apollo/utils.keyvaluecache": "^2.1.0",
"@apollo/usage-reporting-protobuf": "^4.0.0"
"@apollo/usage-reporting-protobuf": "^4.1.1"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
Expand Down
9 changes: 9 additions & 0 deletions packages/integration-testsuite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @apollo/server-integration-testsuite

## 4.7.5

### Patch Changes

- Updated dependencies [[`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1)]:
- @apollo/cache-control-types@1.0.3
- @apollo/server@4.7.5
- @apollo/usage-reporting-protobuf@4.1.1

## 4.7.4

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/integration-testsuite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/server-integration-testsuite",
"version": "4.7.4",
"version": "4.7.5",
"description": "Test suite for Apollo Server integrations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -26,12 +26,12 @@
"node": ">=14.16.0"
},
"dependencies": {
"@apollo/cache-control-types": "^1.0.2",
"@apollo/cache-control-types": "^1.0.3",
"@apollo/client": "^3.6.9",
"@apollo/server": "4.7.4",
"@apollo/server": "4.7.5",
"@apollo/utils.keyvaluecache": "^2.1.0",
"@apollo/utils.createhash": "^2.0.0",
"@apollo/usage-reporting-protobuf": "^4.1.0",
"@apollo/usage-reporting-protobuf": "^4.1.1",
"@josephg/resolvable": "^1.0.1",
"body-parser": "^1.20.0",
"express": "^4.18.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/plugin-response-cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @apollo/server-plugin-response-cache

## 4.1.3

### Patch Changes

- [#7614](https://github.com/apollographql/apollo-server/pull/7614) [`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1) Thanks [@Cellule](https://github.com/Cellule)! - Publish TypeScript typings for CommonJS modules output.

This allows TypeScript projects that use CommonJS modules with
`moduleResolution: "node16"` or
`moduleResolution: "nodeNext"`
to correctly resolves the typings of apollo's packages as CommonJS instead of ESM.

## 4.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-response-cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/server-plugin-response-cache",
"version": "4.1.2",
"version": "4.1.3",
"description": "Apollo Server full query response cache",
"type": "module",
"main": "dist/cjs/index.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @apollo/server

## 4.7.5

### Patch Changes

- [#7614](https://github.com/apollographql/apollo-server/pull/7614) [`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1) Thanks [@Cellule](https://github.com/Cellule)! - Publish TypeScript typings for CommonJS modules output.

This allows TypeScript projects that use CommonJS modules with
`moduleResolution: "node16"` or
`moduleResolution: "nodeNext"`
to correctly resolves the typings of apollo's packages as CommonJS instead of ESM.

- Updated dependencies [[`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1)]:
- @apollo/cache-control-types@1.0.3
- @apollo/server-gateway-interface@1.1.1
- @apollo/usage-reporting-protobuf@4.1.1

## 4.7.4

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/server",
"version": "4.7.4",
"version": "4.7.5",
"description": "Core engine for Apollo GraphQL server",
"type": "module",
"main": "dist/cjs/index.js",
Expand Down Expand Up @@ -117,9 +117,9 @@
"node": ">=14.16.0"
},
"dependencies": {
"@apollo/cache-control-types": "^1.0.2",
"@apollo/server-gateway-interface": "^1.1.0",
"@apollo/usage-reporting-protobuf": "^4.1.0",
"@apollo/cache-control-types": "^1.0.3",
"@apollo/server-gateway-interface": "^1.1.1",
"@apollo/usage-reporting-protobuf": "^4.1.1",
"@apollo/utils.createhash": "^2.0.0",
"@apollo/utils.fetcher": "^2.0.0",
"@apollo/utils.isnodelike": "^2.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/usage-reporting-protobuf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @apollo/usage-reporting-protobuf

## 4.1.1

### Patch Changes

- [#7614](https://github.com/apollographql/apollo-server/pull/7614) [`4fadf3ddc`](https://github.com/apollographql/apollo-server/commit/4fadf3ddc9611e050dd0f08d51252ed9b0c0d9e1) Thanks [@Cellule](https://github.com/Cellule)! - Publish TypeScript typings for CommonJS modules output.

This allows TypeScript projects that use CommonJS modules with
`moduleResolution: "node16"` or
`moduleResolution: "nodeNext"`
to correctly resolves the typings of apollo's packages as CommonJS instead of ESM.

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/usage-reporting-protobuf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/usage-reporting-protobuf",
"version": "4.1.0",
"version": "4.1.1",
"description": "Protobuf format for Apollo usage reporting",
"type": "module",
"exports": {
Expand Down