Skip to content

Commit

Permalink
Release v1.8.0 (#1367)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored Oct 16, 2019
1 parent d8afb71 commit d6112dd
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 9 deletions.
5 changes: 5 additions & 0 deletions packages/apollo-angular-boost/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

### vNext

### v1.7.0

- Bump `apollo-angular` to `~1.8.0`
- Bump `apollo-angular-link-http` to `~1.9.0`

### v1.6.0

- Bump `apollo-angular-link-http` to `~1.8.0`
Expand Down
6 changes: 3 additions & 3 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.6.0",
"version": "1.7.0",
"repository": "https://github.com/apollographql/apollo-angular/tree/master/packages/apollo-angular-boost",
"keywords": [
"apollo",
Expand All @@ -24,8 +24,8 @@
"@angular/core": "^6.1.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"apollo-angular": "~1.7.0",
"apollo-angular-link-http": "~1.8.0",
"apollo-angular": "~1.8.0",
"apollo-angular-link-http": "~1.9.0",
"apollo-cache-inmemory": "~1.6.0",
"apollo-client": "^2.6.0",
"apollo-link": "~1.2.2",
Expand Down
4 changes: 4 additions & 0 deletions packages/apollo-angular-link-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

### vNEXT

### v1.9.0

- Fix deep import of graphql `print`

### v1.8.0

- Sync with [email protected]
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-angular-link-http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"main": "build/bundles/ngApolloLinkHttp.umd.js",
"module": "build/fesm5/ngApolloLinkHttp.js",
"typings": "build/ngApolloLinkHttp.d.ts",
"version": "1.8.0",
"version": "1.9.0",
"repository": "https://github.com/apollographql/apollo-angular/tree/master/packages/apollo-angular-link-http",
"keywords": [
"apollo",
Expand Down
2 changes: 2 additions & 0 deletions packages/apollo-angular/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### vNext

### v1.8.0

- Introduces `APOLLO_NAMED_OPTIONS` token. Allows to create named Apollo clients using Dependency Injection ([PR #1365](https://github.com/apollographql/apollo-angular/pull/1365))
- Allow to test named Apollo client ([PR #1365](https://github.com/apollographql/apollo-angular/pull/1365))

Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "apollo-angular",
"description": "Use your GraphQL data in your Angular app, with the Apollo Client",
"version": "1.7.0",
"version": "1.8.0",
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)",
"license": "MIT",
"sideEffects": false,
Expand Down
8 changes: 4 additions & 4 deletions packages/apollo-angular/schematics/install/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ export default function install(options: Schema): Rule {
}

export const dependenciesMap: Record<string, string> = {
'apollo-angular': '^1.6.0',
'apollo-angular-link-http': '^1.6.0',
'apollo-angular': '^1.8.0',
'apollo-angular-link-http': '^1.9.0',
'apollo-link': '^1.2.11',
'apollo-client': '^2.6.0',
'apollo-cache-inmemory': '^1.3.2',
'apollo-cache-inmemory': '^1.6.0',
'graphql-tag': '^2.10.0',
graphql: '^14.3.1',
graphql: '^14.5.0',
};

function assertTypescriptVersion() {
Expand Down

0 comments on commit d6112dd

Please sign in to comment.