From 649712cbd91818154b65238837bf6e9c1803b131 Mon Sep 17 00:00:00 2001 From: Hugh Willson Date: Sun, 30 Sep 2018 06:14:53 -0400 Subject: [PATCH] Prep for publish --- Changelog.md | 38 +++++++++++++++++++++++--------------- package.json | 2 +- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/Changelog.md b/Changelog.md index 2cc192eaf9..359b2f784d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,9 +1,17 @@ # Change log -## vNext +## 2.2.3 (September 30, 2018) + +### Bug Fixes + +- Mutation errors are now properly returned as a render prop, when using + a default `errorPolicy` of `all`.
+ [@amacleay](https://github.com/amacleay) in [#2374](https://github.com/apollographql/react-apollo/pull/2374) +- `` `refetchQueries` triggered by name (string) will now use the correct variables.
+ [@fracmal](https://github.com/fracmak) in [#2422](https://github.com/apollographql/react-apollo/pull/2422) + +### Improvements -- Fix `lodash` typings.
- [@williamboman](https://github.com/williamboman) in [#2430](https://github.com/apollographql/react-apollo/pull/2430) - Replace the `lodash` dependency with `lodash.flowright` (since that's the only non-dev `lodash` function we're dependent on). Dev `lodash` dependencies have also been updated to use their individual module @@ -11,20 +19,23 @@ [@hwillson](https://github.com/hwillson) in [#2435](https://github.com/apollographql/react-apollo/pull/2435) - Removed `rollup-plugin-babel-minify` as it's no longer being used.
[@hwillson](https://github.com/hwillson) in [#2436](https://github.com/apollographql/react-apollo/pull/2436) -- Typings: added `context` to `MutationOptions`.
- [@danilobuerger](https://github.com/danilobuerger) in [#2354](https://github.com/apollographql/react-apollo/pull/2354) -- Typings: more `MutationOptions` changes/fixes.
- [@danilobuerger](https://github.com/danilobuerger) in [#2340](https://github.com/apollographql/react-apollo/pul/2340) - Small `getDataFromTree.ts` logic adjustment to avoid unnecessary calls when a falsy `element` is encountered.
[@HOUCe](https://github.com/HOUCe) in [#2429](https://github.com/apollographql/react-apollo/pull/2429) - `graphql` 14 updates.
[@hwillson](https://github.com/hwillson) in [#2437](https://github.com/apollographql/react-apollo/pull/2437) -- Mutation errors are now properly returned as a render prop, when using - a default `errorPolicy` of `all`.
- [@amacleay](https://github.com/amacleay) in [#2374](https://github.com/apollographql/react-apollo/pull/2374) -- `` `refetchQueries` triggered by name (string) will now use the correct variables.
- [@fracmal](https://github.com/fracmak) in [#2422](https://github.com/apollographql/react-apollo/pull/2422) +- All example apps (included in the repo) have been updated to work with the + latest version of React Apollo.
+ [@hwillson](https://github.com/hwillson) in [#2439](https://github.com/apollographql/react-apollo/pull/2439) + +### Typescript + +- Fix `lodash` typings.
+ [@williamboman](https://github.com/williamboman) in [#2430](https://github.com/apollographql/react-apollo/pull/2430) +- Typings: added `context` to `MutationOptions`.
+ [@danilobuerger](https://github.com/danilobuerger) in [#2354](https://github.com/apollographql/react-apollo/pull/2354) +- Typings: more `MutationOptions` changes/fixes.
+ [@danilobuerger](https://github.com/danilobuerger) in [#2340](https://github.com/apollographql/react-apollo/pul/2340) - Remove `allowSyntheticDefaultImports` use. Typescript's `allowSyntheticDefaultImports` compiler option is something we'd like to start using, but we jumped the gun a bit by introducing it in @@ -38,9 +49,6 @@ syntax, to work with default imports. We'll re-introduce `allowSyntheticDefaultImports` use in React Apollo 3.
[@hwillson](https://github.com/hwillson) in [#2438](https://github.com/apollographql/react-apollo/pull/2438) -- All example apps (included in the repo) have been updated to work with the - latest version of React Apollo.
- [@hwillson](https://github.com/hwillson) in [#2439](https://github.com/apollographql/react-apollo/pull/2439) ## 2.2.2 (September 28, 2018) diff --git a/package.json b/package.json index 9661504d61..423f42bf6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-apollo", - "version": "2.2.2", + "version": "2.2.3", "author": "opensource@apollographql.com", "browser": "lib/react-apollo.browser.umd.js", "description": "React data container for Apollo Client",