Skip to content

Commit

Permalink
Angular 9 and GraphQL 15 (#1484)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored Apr 11, 2020
1 parent 01d4b3b commit 9099f9e
Show file tree
Hide file tree
Showing 26 changed files with 379 additions and 186 deletions.
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@
"packages/*"
],
"devDependencies": {
"@types/jest": "24.9.1",
"codecov": "3.6.1",
"husky": "4.2.1",
"jest": "24.9.0",
"@types/jest": "25.1.4",
"codecov": "3.6.5",
"husky": "4.2.3",
"jest": "25.2.3",
"lerna": "3.20.2",
"lint-staged": "10.0.2",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"lint-staged": "10.0.9",
"prettier": "2.0.2",
"rimraf": "3.0.2",
"shelljs": "0.8.3",
"tsickle": "0.38.0",
"typescript": "3.5.3"
"typescript": "3.8.3"
}
}
47 changes: 24 additions & 23 deletions packages/apollo-angular-boost/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "build/bundles/ngApolloBoost.umd.js",
"module": "build/fesm5/ngApolloBoost.js",
"typings": "build/ngApolloBoost.d.ts",
"version": "1.7.0",
"version": "1.8.0-alpha.0",
"repository": "https://github.com/apollographql/apollo-angular/tree/master/packages/apollo-angular-boost",
"keywords": [
"apollo",
Expand All @@ -17,40 +17,41 @@
"build": "ng-packagr -p ng-package.js",
"test": "yarn test-only",
"test-only": "jest --config jest.config.js",
"deploy": "yarn build && npm publish build"
"deploy": "yarn build && npm publish build",
"deploy:next": "yarn build && npm publish build --tag next"
},
"peerDependencies": {
"@angular/common": "^6.1.0 || ^7.0.0 || ^8.0.0",
"@angular/core": "^6.1.0 || ^7.0.0 || ^8.0.0"
"@angular/common": "^6.1.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/core": "^6.1.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"dependencies": {
"apollo-angular": "~1.8.0",
"apollo-angular-link-http": "~1.9.0",
"apollo-angular": "~1.9.0-alpha.0",
"apollo-angular-link-http": "~1.10.0-alpha.0",
"apollo-cache-inmemory": "~1.6.0",
"apollo-client": "^2.6.0",
"apollo-link": "~1.2.2",
"apollo-link-error": "~1.1.0",
"apollo-link-state": "~0.4.1",
"graphql-tag": "~2.10.0"
"graphql-tag": "~2.10.0",
"tslib": "^1.11.0"
},
"devDependencies": {
"@angular/animations": "8.2.14",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/core": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/platform-server": "8.2.14",
"@types/graphql": "14.5.0",
"@types/jest": "24.9.1",
"graphql": "14.5.8",
"jest": "24.9.0",
"@angular/animations": "9.1.0",
"@angular/common": "9.1.0",
"@angular/compiler": "9.1.0",
"@angular/compiler-cli": "9.1.0",
"@angular/core": "9.1.0",
"@angular/platform-browser": "9.1.0",
"@angular/platform-browser-dynamic": "9.1.0",
"@angular/platform-server": "9.1.0",
"@types/jest": "25.1.4",
"graphql": "15.0.0",
"jest": "25.2.3",
"jest-zone-patch": "0.0.10",
"ng-packagr": "5.7.1",
"ng-packagr": "9.1.0",
"rxjs": "6.5.4",
"ts-jest": "25.0.0",
"typescript": "3.5.3",
"zone.js": "0.10.2"
"ts-jest": "25.2.1",
"typescript": "3.8.3",
"zone.js": "0.10.3"
}
}
3 changes: 3 additions & 0 deletions packages/apollo-angular-boost/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"rootDir": ".",
"outDir": "build"
},
"angularCompilerOptions": {
"enableIvy": false
},
"include": ["src/**/*.ts"]
}
3 changes: 2 additions & 1 deletion packages/apollo-angular-boost/tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs"
"module": "commonjs",
"emitDecoratorMetadata": true
}
}
39 changes: 20 additions & 19 deletions packages/apollo-angular-cache-ngrx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,36 +23,37 @@
"xbuild": "ng-packagr -p ng-package.js",
"xtest": "yarn test-only",
"test-only": "jest --config jest.config.js",
"deploy": "yarn build && npm publish build"
"deploy": "yarn build && npm publish build",
"deploy:next": "yarn build && npm publish build --tag next"
},
"peerDependencies": {
"@angular/core": "^6.1.0 || ^7.0.0 || ^8.0.0",
"@angular/core": "^6.1.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@ngrx/store": "^6.0.0 || ^7.0.0 || ^8.0.0",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@angular/animations": "8.2.14",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/core": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/animations": "9.1.0",
"@angular/common": "9.1.0",
"@angular/compiler": "9.1.0",
"@angular/compiler-cli": "9.1.0",
"@angular/core": "9.1.0",
"@angular/platform-browser": "9.1.0",
"@angular/platform-browser-dynamic": "9.1.0",
"@ngrx/store": "8.6.0",
"@types/graphql": "14.5.0",
"@types/jest": "24.9.1",
"graphql": "14.5.8",
"graphql-tag": "2.10.1",
"jest": "24.9.0",
"@types/jest": "25.1.4",
"graphql": "15.0.0",
"graphql-tag": "2.10.3",
"jest": "25.2.3",
"jest-zone-patch": "0.0.10",
"ng-packagr": "5.7.1",
"ng-packagr": "9.1.0",
"rxjs": "6.5.4",
"ts-jest": "25.0.0",
"typescript": "3.5.3",
"zone.js": "0.10.2"
"ts-jest": "25.2.1",
"typescript": "3.8.3",
"zone.js": "0.10.3"
},
"dependencies": {
"apollo-cache": "^1.1.0",
"apollo-cache-inmemory": "^1.1.5"
"apollo-cache-inmemory": "^1.1.5",
"tslib": "^1.11.0"
}
}
31 changes: 17 additions & 14 deletions packages/apollo-angular-link-headers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": "build/bundles/ngApolloLinkHeaders.umd.js",
"module": "build/fesm5/ngApolloLinkHeaders.js",
"typings": "build/ngApolloLinkHeaders.d.ts",
"version": "1.4.0",
"version": "1.5.0-alpha.0",
"repository": "https://github.com/apollographql/apollo-angular/tree/master/packages/apollo-angular-link-headers",
"keywords": [
"apollo",
Expand All @@ -18,23 +18,26 @@
"build": "ng-packagr -p ng-package.js",
"test": "yarn test-only",
"test-only": "jest --config jest.config.js",
"deploy": "yarn build && npm publish build"
"deploy": "yarn build && npm publish build",
"deploy:next": "yarn build && npm publish build --tag next"
},
"dependencies": {
"tslib": "^1.11.0"
},
"peerDependencies": {
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"apollo-link": "^1.0.0"
},
"devDependencies": {
"@angular/common": "8.2.14",
"@angular/core": "8.2.14",
"@types/graphql": "14.5.0",
"@types/jest": "24.9.1",
"apollo-link": "1.2.13",
"graphql": "14.5.8",
"graphql-tag": "2.10.1",
"jest": "24.9.0",
"ng-packagr": "5.7.1",
"ts-jest": "25.0.0",
"typescript": "3.5.3"
"@angular/common": "9.1.0",
"@angular/core": "9.1.0",
"@types/jest": "25.1.4",
"apollo-link": "1.2.14",
"graphql": "15.0.0",
"graphql-tag": "2.10.3",
"jest": "25.2.3",
"ng-packagr": "9.1.0",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
}
}
6 changes: 5 additions & 1 deletion packages/apollo-angular-link-headers/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"extends": "../../tsconfig",
"compilerOptions": {
"rootDir": ".",
"outDir": "build"
"outDir": "build",
"emitDecoratorMetadata": true
},
"angularCompilerOptions": {
"enableIvy": false
}
}
49 changes: 25 additions & 24 deletions packages/apollo-angular-link-http-batch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": "build/bundles/ngApolloLinkHttpBatch.umd.js",
"module": "build/fesm5/ngApolloLinkHttpBatch.js",
"typings": "build/ngApolloLinkHttpBatch.d.ts",
"version": "1.7.0",
"version": "1.8.0-alpha.0",
"repository": "https://github.com/apollographql/apollo-angular/tree/master/packages/apollo-angular-link-http-batch",
"keywords": [
"apollo",
Expand All @@ -18,39 +18,40 @@
"build": "ng-packagr -p ng-package.js",
"test": "yarn test-only",
"test-only": "jest --config jest.config.js",
"deploy": "yarn build && npm publish build"
"deploy": "yarn build && npm publish build",
"deploy:next": "yarn build && npm publish build --tag next"
},
"peerDependencies": {
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0",
"graphql": ">=0.11.0 <0.14.0 || ^14.0.0"
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"graphql": ">=0.11.0 <0.14.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"apollo-angular-link-http-common": "~1.8.0",
"apollo-angular-link-http-common": "~1.9.0-alpha.0",
"apollo-link": "^1.0.0",
"apollo-link-batch": "^1.1.2"
"apollo-link-batch": "^1.1.2",
"tslib": "^1.11.0"
},
"devDependencies": {
"@angular/animations": "8.2.14",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/core": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/platform-server": "8.2.14",
"@types/graphql": "14.5.0",
"@types/jest": "24.9.1",
"@angular/animations": "9.1.0",
"@angular/common": "9.1.0",
"@angular/compiler": "9.1.0",
"@angular/compiler-cli": "9.1.0",
"@angular/core": "9.1.0",
"@angular/platform-browser": "9.1.0",
"@angular/platform-browser-dynamic": "9.1.0",
"@angular/platform-server": "9.1.0",
"@types/jest": "25.1.4",
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.6.8",
"graphql": "14.5.8",
"graphql-tag": "2.10.1",
"jest": "24.9.0",
"graphql": "15.0.0",
"graphql-tag": "2.10.3",
"jest": "25.2.3",
"jest-zone-patch": "0.0.10",
"ng-packagr": "5.7.1",
"ng-packagr": "9.1.0",
"rxjs": "6.5.4",
"ts-jest": "25.0.0",
"typescript": "3.5.3",
"zone.js": "0.10.2"
"ts-jest": "25.2.1",
"typescript": "3.8.3",
"zone.js": "0.10.3"
}
}
3 changes: 3 additions & 0 deletions packages/apollo-angular-link-http-batch/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"rootDir": ".",
"outDir": "build"
},
"angularCompilerOptions": {
"enableIvy": false
},
"include": [
"src/**/*.ts",
"tests/**/*.ts",
Expand Down
3 changes: 2 additions & 1 deletion packages/apollo-angular-link-http-batch/tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs"
"module": "commonjs",
"emitDecoratorMetadata": true
}
}
49 changes: 26 additions & 23 deletions packages/apollo-angular-link-http-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": "build/bundles/ngApolloLinkHttpCommon.umd.js",
"module": "build/fesm5/ngApolloLinkHttpCommon.js",
"typings": "build/ngApolloLinkHttpCommon.d.ts",
"version": "1.8.0",
"version": "1.9.0-alpha.0",
"repository": "https://github.com/apollographql/apollo-angular/tree/master/packages/apollo-angular-link-http-common",
"keywords": [
"apollo",
Expand All @@ -18,36 +18,39 @@
"build": "ng-packagr -p ng-package.js",
"test": "yarn test-only",
"test-only": "exit 0",
"deploy": "yarn build && npm publish build"
"deploy": "yarn build && npm publish build",
"deploy:next": "yarn build && npm publish build --tag next"
},
"peerDependencies": {
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"apollo-link": "^1.0.0",
"graphql": ">=0.11.0 <0.14.0 || ^14.0.0"
"graphql": ">=0.11.0 <0.14.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"tslib": "^1.11.0"
},
"devDependencies": {
"@angular/animations": "8.2.14",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/core": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/platform-server": "8.2.14",
"@types/graphql": "14.5.0",
"@types/jest": "24.9.1",
"@angular/animations": "9.1.0",
"@angular/common": "9.1.0",
"@angular/compiler": "9.1.0",
"@angular/compiler-cli": "9.1.0",
"@angular/core": "9.1.0",
"@angular/platform-browser": "9.1.0",
"@angular/platform-browser-dynamic": "9.1.0",
"@angular/platform-server": "9.1.0",
"@types/jest": "25.1.4",
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.6.8",
"apollo-link": "1.2.13",
"graphql": "14.5.8",
"graphql-tag": "2.10.1",
"jest": "24.9.0",
"apollo-link": "1.2.14",
"graphql": "15.0.0",
"graphql-tag": "2.10.3",
"jest": "25.2.3",
"jest-zone-patch": "0.0.10",
"ng-packagr": "5.7.1",
"ng-packagr": "9.1.0",
"rxjs": "6.5.4",
"ts-jest": "25.0.0",
"typescript": "3.5.3",
"zone.js": "0.10.2"
"ts-jest": "25.2.1",
"typescript": "3.8.3",
"zone.js": "0.10.3"
}
}
Loading

0 comments on commit 9099f9e

Please sign in to comment.