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

chore(apollo-server-core): Update graphql-tag version #4833

Merged
merged 3 commits into from
Jan 13, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The version headers in this history reflect the versions of Apollo Server itself
> The changes noted within this `vNEXT` section have not been released yet. New PRs and commits which introduce changes should include an entry in this `vNEXT` section as part of their development. With few exceptions, the format of the entry should follow convention (i.e., prefix with package name, use markdown `backtick formatting` for package names and code, suffix with a link to the change-set à la `[PR #YYY](https://link/pull/YYY)`, etc.). When a release is being prepared, a new header will be (manually) created below and the appropriate changes within that release will be moved into the new section.

- `apollo-server-express`: types: Export `ExpressContext` from main module. [PR #4821](https://github.com/apollographql/apollo-server/pull/4821) [Issue #3699](https://github.com/apollographql/apollo-server/issues/3699)
- `apollo-server-core`: Update `graphql-tag` package to `latest`, now with its `graphql-js` `peerDependencies` expanded to include `^15.0.0` [PR #4833](https://github.com/apollographql/apollo-server/pull/4833)

## v2.19.1

Expand Down
5 changes: 3 additions & 2 deletions examples/acephei/gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"@apollo/gateway": "*",
"apollo-server": "*",
"apollo-server-plugin-operation-registry": "*"
},
"dependencies": {},
"dependencies": {
"@apollo/gateway": "^0.21.4"
},
"engines": {
"node": "12.x"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/acephei/services/accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"@apollo/federation": "*",
"apollo-datasource": "*",
"apollo-server": "*"
},
"dependencies": {
"@apollo/federation": "^0.20.7",
"dataloader": "^1.4.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion examples/acephei/services/books/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"@apollo/federation": "*",
"apollo-datasource": "*",
"apollo-server": "*"
},
"dependencies": {
"@apollo/federation": "^0.20.7",
"dataloader": "^1.4.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion examples/acephei/services/products/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"@apollo/federation": "*",
"apollo-datasource": "*",
"apollo-server": "*"
},
"dependencies": {
"@apollo/federation": "^0.20.7",
"dataloader": "^1.4.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion examples/acephei/services/reviews/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"@apollo/federation": "*",
"apollo-datasource": "*",
"apollo-server": "*"
},
"dependencies": {
"@apollo/federation": "^0.20.7",
"dataloader": "^1.4.0"
},
"engines": {
Expand Down