- apollo-server-cloud-functions@2.0.1
 - apollo-server-cloudflare@2.0.2
 - apollo-server-core@2.0.4
 - apollo-server-express@2.0.4
 - apollo-server-hapi@2.0.4
 - apollo-server-integration-testsuite@2.0.4
 - apollo-server-koa@2.0.4
 - apollo-server-lambda@2.0.4
 - apollo-server-micro@2.0.4
 - apollo-server@2.0.5
This commit is contained in:
Evans Hauser 2018-08-20 14:17:37 -07:00
parent 99e4357537
commit 2657e9b25b
No known key found for this signature in database
GPG key ID: 88AF586817F52EEC
12 changed files with 20 additions and 17 deletions

View file

@ -4,7 +4,10 @@ All of the packages in the `apollo-server` repo are released with the same versi
### vNEXT ### vNEXT
- Google Cloud Function support [#1402](https://github.com/apollographql/apollo-server/issues/1402) ### v2.0.5
- Google Cloud Function support [#1402](https://github.com/apollographql/apollo-server/issues/1402) [#1446](https://github.com/apollographql/apollo-server/pull/1446)
- Switch to a fork of `apollo-upload-server` to fix missing `core-js` dependency. [#1556](https://github.com/apollographql/apollo-server/pull/1556)
### v2.0.4 ### v2.0.4

View file

@ -16,7 +16,7 @@
"posttest": "npm run lint", "posttest": "npm run lint",
"testonly": "jest --verbose", "testonly": "jest --verbose",
"circle": "npm run testonly -- --ci --maxWorkers=2 && npm run lint", "circle": "npm run testonly -- --ci --maxWorkers=2 && npm run lint",
"release": "npm run clean && npm i && lerna publish --exact", "release": "npm run clean && npm ci && lerna publish --exact",
"precommit": "lint-staged", "precommit": "lint-staged",
"clean": "find . -name \"node_modules\" -exec rm -rf '{}' + && find . -name \"dist\" -exec rm -rf '{}' +" "clean": "find . -name \"node_modules\" -exec rm -rf '{}' + && find . -name \"dist\" -exec rm -rf '{}' +"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-cloud-functions", "name": "apollo-server-cloud-functions",
"version": "2.0.0", "version": "2.0.1",
"description": "Production-ready Node.js GraphQL server for Google Cloud Functions", "description": "Production-ready Node.js GraphQL server for Google Cloud Functions",
"keywords": [ "keywords": [
"GraphQL", "GraphQL",

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-cloudflare", "name": "apollo-server-cloudflare",
"version": "2.0.1", "version": "2.0.2",
"description": "Production-ready Node.js GraphQL server for Cloudflare workers", "description": "Production-ready Node.js GraphQL server for Cloudflare workers",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-core", "name": "apollo-server-core",
"version": "2.0.3", "version": "2.0.4",
"description": "Core engine for Apollo GraphQL server", "description": "Core engine for Apollo GraphQL server",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -29,6 +29,7 @@
"node": ">=6" "node": ">=6"
}, },
"dependencies": { "dependencies": {
"@apollographql/apollo-upload-server": "^5.0.3",
"@types/ws": "^5.1.2", "@types/ws": "^5.1.2",
"apollo-cache-control": "file:../apollo-cache-control", "apollo-cache-control": "file:../apollo-cache-control",
"apollo-datasource": "file:../apollo-datasource", "apollo-datasource": "file:../apollo-datasource",
@ -37,7 +38,6 @@
"apollo-server-env": "file:../apollo-server-env", "apollo-server-env": "file:../apollo-server-env",
"apollo-server-errors": "file:../apollo-server-errors", "apollo-server-errors": "file:../apollo-server-errors",
"apollo-tracing": "file:../apollo-tracing", "apollo-tracing": "file:../apollo-tracing",
"@apollographql/apollo-upload-server": "^5.0.3",
"graphql-extensions": "file:../graphql-extensions", "graphql-extensions": "file:../graphql-extensions",
"graphql-subscriptions": "^0.5.8", "graphql-subscriptions": "^0.5.8",
"graphql-tag": "^2.9.2", "graphql-tag": "^2.9.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-express", "name": "apollo-server-express",
"version": "2.0.3", "version": "2.0.4",
"description": "Production-ready Node.js GraphQL server for Express and Connect", "description": "Production-ready Node.js GraphQL server for Express and Connect",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -31,6 +31,7 @@
"node": ">=6" "node": ">=6"
}, },
"dependencies": { "dependencies": {
"@apollographql/apollo-upload-server": "^5.0.3",
"@apollographql/graphql-playground-html": "^1.6.0", "@apollographql/graphql-playground-html": "^1.6.0",
"@types/accepts": "^1.3.5", "@types/accepts": "^1.3.5",
"@types/body-parser": "1.17.0", "@types/body-parser": "1.17.0",
@ -38,7 +39,6 @@
"@types/express": "4.16.0", "@types/express": "4.16.0",
"accepts": "^1.3.5", "accepts": "^1.3.5",
"apollo-server-core": "file:../apollo-server-core", "apollo-server-core": "file:../apollo-server-core",
"@apollographql/apollo-upload-server": "^5.0.3",
"body-parser": "^1.18.3", "body-parser": "^1.18.3",
"cors": "^2.8.4", "cors": "^2.8.4",
"graphql-subscriptions": "^0.5.8", "graphql-subscriptions": "^0.5.8",

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-hapi", "name": "apollo-server-hapi",
"version": "2.0.3", "version": "2.0.4",
"description": "Production-ready Node.js GraphQL server for Hapi", "description": "Production-ready Node.js GraphQL server for Hapi",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -30,10 +30,10 @@
"node": ">=8" "node": ">=8"
}, },
"dependencies": { "dependencies": {
"@apollographql/apollo-upload-server": "^5.0.3",
"@apollographql/graphql-playground-html": "^1.6.0", "@apollographql/graphql-playground-html": "^1.6.0",
"accept": "^3.0.2", "accept": "^3.0.2",
"apollo-server-core": "file:../apollo-server-core", "apollo-server-core": "file:../apollo-server-core",
"@apollographql/apollo-upload-server": "^5.0.3",
"boom": "^7.1.0", "boom": "^7.1.0",
"graphql-subscriptions": "^0.5.8", "graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.4" "graphql-tools": "^3.0.4"

View file

@ -1,7 +1,7 @@
{ {
"name": "apollo-server-integration-testsuite", "name": "apollo-server-integration-testsuite",
"private": true, "private": true,
"version": "2.0.3", "version": "2.0.4",
"description": "Apollo Server Integrations testsuite", "description": "Apollo Server Integrations testsuite",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-koa", "name": "apollo-server-koa",
"version": "2.0.3", "version": "2.0.4",
"description": "Production-ready Node.js GraphQL server for Koa", "description": "Production-ready Node.js GraphQL server for Koa",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -30,6 +30,7 @@
"node": ">=6" "node": ">=6"
}, },
"dependencies": { "dependencies": {
"@apollographql/apollo-upload-server": "^5.0.3",
"@apollographql/graphql-playground-html": "^1.6.0", "@apollographql/graphql-playground-html": "^1.6.0",
"@koa/cors": "^2.2.1", "@koa/cors": "^2.2.1",
"@types/accepts": "^1.3.5", "@types/accepts": "^1.3.5",
@ -40,7 +41,6 @@
"@types/koa__cors": "^2.2.1", "@types/koa__cors": "^2.2.1",
"accepts": "^1.3.5", "accepts": "^1.3.5",
"apollo-server-core": "file:../apollo-server-core", "apollo-server-core": "file:../apollo-server-core",
"@apollographql/apollo-upload-server": "^5.0.3",
"graphql-subscriptions": "^0.5.8", "graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.4", "graphql-tools": "^3.0.4",
"koa": "2.5.2", "koa": "2.5.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-lambda", "name": "apollo-server-lambda",
"version": "2.0.3", "version": "2.0.4",
"description": "Production-ready Node.js GraphQL server for AWS Lambda", "description": "Production-ready Node.js GraphQL server for AWS Lambda",
"keywords": [ "keywords": [
"GraphQL", "GraphQL",

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server-micro", "name": "apollo-server-micro",
"version": "2.0.3", "version": "2.0.4",
"description": "Production-ready Node.js GraphQL server for Micro", "description": "Production-ready Node.js GraphQL server for Micro",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -28,10 +28,10 @@
}, },
"homepage": "https://github.com/apollographql/apollo-server#readme", "homepage": "https://github.com/apollographql/apollo-server#readme",
"dependencies": { "dependencies": {
"@apollographql/apollo-upload-server": "^5.0.3",
"@apollographql/graphql-playground-html": "^1.6.0", "@apollographql/graphql-playground-html": "^1.6.0",
"accept": "^3.0.2", "accept": "^3.0.2",
"apollo-server-core": "file:../apollo-server-core", "apollo-server-core": "file:../apollo-server-core",
"@apollographql/apollo-upload-server": "^5.0.3",
"micro": "^9.3.2" "micro": "^9.3.2"
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "apollo-server", "name": "apollo-server",
"version": "2.0.4", "version": "2.0.5",
"description": "Production ready GraphQL Server", "description": "Production ready GraphQL Server",
"author": "opensource@apollographql.com", "author": "opensource@apollographql.com",
"main": "dist/index.js", "main": "dist/index.js",