Skip to content

Commit b049f5c

Browse files
authored
Release v1.10.0 (#1528)
1 parent d475758 commit b049f5c

File tree

16 files changed

+78
-18
lines changed

16 files changed

+78
-18
lines changed

packages/apollo-angular-boost/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### vNext
44

5+
### v1.9.0
6+
7+
- Support Angular 10
8+
59
### v1.8.0
610

711
- Bump version ranges for GraphQL and Apollo Link

packages/apollo-angular-boost/package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"main": "build/bundles/ngApolloBoost.umd.js",
1111
"module": "build/fesm5/ngApolloBoost.js",
1212
"typings": "build/ngApolloBoost.d.ts",
13-
"version": "1.8.0",
13+
"version": "1.9.0",
1414
"repository": {
1515
"type": "git",
1616
"url": "https://github.com/kamilkisiela/apollo-angular",
@@ -33,8 +33,8 @@
3333
"@angular/core": "^6.1.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
3434
},
3535
"dependencies": {
36-
"apollo-angular": "~1.9.1",
37-
"apollo-angular-link-http": "~1.10.0",
36+
"apollo-angular": "~1.10.0",
37+
"apollo-angular-link-http": "~1.11.0",
3838
"apollo-cache-inmemory": "~1.6.0",
3939
"apollo-client": "^2.6.0",
4040
"apollo-link": "~1.2.14",
@@ -61,5 +61,9 @@
6161
"ts-jest": "26.1.1",
6262
"typescript": "3.9.6",
6363
"zone.js": "0.10.3"
64+
},
65+
"publishConfig":{
66+
"access": "public",
67+
"registry":"https://registry.npmjs.org"
6468
}
6569
}

packages/apollo-angular-cache-ngrx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"xbuild": "ng-packagr -p ng-package.js",
2828
"xtest": "yarn test-only",
2929
"test-only": "jest --config jest.config.js",
30-
"deploy": "yarn build && npm publish build",
31-
"deploy:next": "yarn build && npm publish build --tag next"
30+
"deploy": "exit 0",
31+
"deploy:next": "exit 0"
3232
},
3333
"peerDependencies": {
3434
"@angular/core": "^6.1.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",

packages/apollo-angular-link-headers/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change log
22

3+
### vNext
4+
5+
### v1.9.0
6+
7+
- Support Angular 10
8+
39
### v1.5.0
410

511
- Bump version ranges for GraphQL and Apollo Link

packages/apollo-angular-link-headers/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"main": "build/bundles/ngApolloLinkHeaders.umd.js",
1212
"module": "build/fesm5/ngApolloLinkHeaders.js",
1313
"typings": "build/ngApolloLinkHeaders.d.ts",
14-
"version": "1.5.0",
14+
"version": "1.6.0",
1515
"repository": {
1616
"type": "git",
1717
"url": "https://github.com/kamilkisiela/apollo-angular",
@@ -47,5 +47,9 @@
4747
"ng-packagr": "10.0.0",
4848
"ts-jest": "26.1.1",
4949
"typescript": "3.9.6"
50+
},
51+
"publishConfig":{
52+
"access": "public",
53+
"registry":"https://registry.npmjs.org"
5054
}
5155
}

packages/apollo-angular-link-http-batch/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change log
22

3+
### vNext
4+
5+
### v1.9.0
6+
7+
- Support Angular 10
8+
39
### v1.8.0
410

511
- Bump version ranges for GraphQL and Apollo Link

packages/apollo-angular-link-http-batch/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"main": "build/bundles/ngApolloLinkHttpBatch.umd.js",
1212
"module": "build/fesm5/ngApolloLinkHttpBatch.js",
1313
"typings": "build/ngApolloLinkHttpBatch.d.ts",
14-
"version": "1.8.0",
14+
"version": "1.9.0",
1515
"repository": {
1616
"type": "git",
1717
"url": "https://github.com/kamilkisiela/apollo-angular",
@@ -35,7 +35,7 @@
3535
"graphql": ">=0.11.0 <0.14.0 || ^14.0.0 || ^15.0.0"
3636
},
3737
"dependencies": {
38-
"apollo-angular-link-http-common": "~1.9.0",
38+
"apollo-angular-link-http-common": "~1.10.0",
3939
"apollo-link": "^1.0.0",
4040
"apollo-link-batch": "^1.1.2",
4141
"tslib": "^2.0.0"
@@ -61,5 +61,9 @@
6161
"ts-jest": "26.1.1",
6262
"typescript": "3.9.6",
6363
"zone.js": "0.10.3"
64+
},
65+
"publishConfig":{
66+
"access": "public",
67+
"registry":"https://registry.npmjs.org"
6468
}
6569
}

packages/apollo-angular-link-http-common/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### vNEXT
44

5+
### v1.10.0
6+
7+
- Support Angular 10
8+
59
### v1.9.0
610

711
- Bump version ranges for GraphQL and Apollo Link

packages/apollo-angular-link-http-common/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"main": "build/bundles/ngApolloLinkHttpCommon.umd.js",
1212
"module": "build/fesm5/ngApolloLinkHttpCommon.js",
1313
"typings": "build/ngApolloLinkHttpCommon.d.ts",
14-
"version": "1.9.0",
14+
"version": "1.10.0",
1515
"repository": {
1616
"type": "git",
1717
"url": "https://github.com/kamilkisiela/apollo-angular",
@@ -60,5 +60,9 @@
6060
"ts-jest": "26.1.1",
6161
"typescript": "3.9.6",
6262
"zone.js": "0.10.3"
63+
},
64+
"publishConfig":{
65+
"access": "public",
66+
"registry":"https://registry.npmjs.org"
6367
}
6468
}

packages/apollo-angular-link-http/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### vNEXT
44

5+
### v1.11.0
6+
7+
- Support Angular 10
8+
59
### v1.10.0
610

711
- Bump version ranges for GraphQL and Apollo Link

packages/apollo-angular-link-http/package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"main": "build/bundles/ngApolloLinkHttp.umd.js",
1212
"module": "build/fesm5/ngApolloLinkHttp.js",
1313
"typings": "build/ngApolloLinkHttp.d.ts",
14-
"version": "1.10.0",
14+
"version": "1.11.0",
1515
"repository": {
1616
"type": "git",
1717
"url": "https://github.com/kamilkisiela/apollo-angular",
@@ -36,7 +36,7 @@
3636
"graphql": ">=0.11.0 <0.14.0 || ^14.0.0 || ^15.0.0"
3737
},
3838
"dependencies": {
39-
"apollo-angular-link-http-common": "~1.9.0",
39+
"apollo-angular-link-http-common": "~1.10.0",
4040
"extract-files": "6.0.0",
4141
"tslib": "^2.0.0"
4242
},
@@ -50,7 +50,7 @@
5050
"@angular/platform-browser-dynamic": "10.0.2",
5151
"@angular/platform-server": "10.0.2",
5252
"@types/jest": "26.0.4",
53-
"apollo-angular": "1.9.1",
53+
"apollo-angular": "1.10.0",
5454
"apollo-cache-inmemory": "1.6.6",
5555
"apollo-client": "2.6.10",
5656
"apollo-link": "1.2.14",
@@ -63,5 +63,9 @@
6363
"ts-jest": "26.1.1",
6464
"typescript": "3.9.6",
6565
"zone.js": "0.10.3"
66+
},
67+
"publishConfig":{
68+
"access": "public",
69+
"registry":"https://registry.npmjs.org"
6670
}
6771
}

packages/apollo-angular-link-persisted/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change log
22

3-
## vNext
3+
### vNext
4+
5+
### v1.3.0
6+
7+
- Support Angular 10
48

59
### v1.2.0
610

packages/apollo-angular-link-persisted/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"main": "build/bundles/ngApolloLinkPersisted.umd.js",
1212
"module": "build/fesm5/ngApolloLinkPersisted.js",
1313
"typings": "build/ngApolloLinkPersisted.d.ts",
14-
"version": "1.2.0",
14+
"version": "1.3.0",
1515
"repository": {
1616
"type": "git",
1717
"url": "https://github.com/kamilkisiela/apollo-angular",
@@ -46,5 +46,9 @@
4646
"ng-packagr": "10.0.0",
4747
"ts-jest": "26.1.1",
4848
"typescript": "3.9.6"
49+
},
50+
"publishConfig":{
51+
"access": "public",
52+
"registry":"https://registry.npmjs.org"
4953
}
5054
}

packages/apollo-angular/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
### vNext
44

5+
### v1.10.0
6+
7+
- Support Angular 10
8+
59
### v1.9.1
610

711
- Fix an issue with TypeScript prior v3.5 - private get accessor [#1491](https://github.com/kamilkisiela/apollo-angular/issues/1491)

packages/apollo-angular/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-angular",
33
"description": "Use your GraphQL data in your Angular app, with the Apollo Client",
4-
"version": "1.9.1",
4+
"version": "1.10.0",
55
"author": {
66
"name": "Kamil Kisiela",
77
"email": "kamil.kisiela@gmail.com",
@@ -76,5 +76,9 @@
7676
"typescript": "3.9.6",
7777
"zone.js": "0.10.3"
7878
},
79-
"schematics": "./schematics/collection.json"
79+
"schematics": "./schematics/collection.json",
80+
"publishConfig":{
81+
"access": "public",
82+
"registry":"https://registry.npmjs.org"
83+
}
8084
}

packages/apollo-angular/schematics/install/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export default function install(options: Schema): Rule {
3333
}
3434

3535
export const dependenciesMap: Record<string, string> = {
36-
'apollo-angular': '^1.9.1',
37-
'apollo-angular-link-http': '^1.10.0',
36+
'apollo-angular': '^1.10.0',
37+
'apollo-angular-link-http': '^1.11.0',
3838
'apollo-link': '^1.2.11',
3939
'apollo-client': '^2.6.0',
4040
'apollo-cache-inmemory': '^1.6.0',

0 commit comments

Comments
 (0)