diff --git a/Changelog.md b/Changelog.md index 110aaeffa..afa4e26f4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2.3.1 (2020-06-02) + +- Check for value before extracting __typename
[@jcreighton](https://github.com/jcreighton) in [#267](https://github.com/apollographql/apollo-client-devtools/pull/267) + +- Fix to disable saving InspectionQuery results in the cache
[@jcreighton](https://github.com/jcreighton) in [#273](https://github.com/apollographql/apollo-client-devtools/pull/273) + ## 2.3.0 (2020-05-28) - Support for Apollo Client 3 🎉 + fixes local state detection
diff --git a/README.md b/README.md index cf854d31d..48cf4a8b1 100755 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This repository contains the Apollo DevTools extension for Chrome & Firefox. If you are running Apollo Client 2.0, the dev tools require at least `apollo-client@2.0.0-rc.2` and `react-apollo@2.0.0-beta.0`, and you must be running at least version 2.0.5 of the dev tools themselves. -If you are running Apollo Client 3.0, you must be running at least version 2.3.0 of the dev tools. +If you are running Apollo Client 3.0, you must be running at least version 2.3.1 of the dev tools. The devtools no longer work with Apollo Client 1.0, but upgrading should be relatively easy! If it isn't, please reach out on the [Apollo Spectrum](https://spectrum.chat/apollo) @@ -100,7 +100,7 @@ for the detached console (inspector inception). In this new inspector, you will If you are using Apollo Client 2.0, make sure you are using at least version 2.0.5 of the devtools. -If you are using Apollo Client 3.0, make sure you are using at least version 2.3.0 of the devtools. +If you are using Apollo Client 3.0, make sure you are using at least version 2.3.1 of the devtools. If you're seeing an error that's being caused by the devtools, please open an Issue on this repository with a detailed explanation of the problem and steps that we can take to replicate the error. diff --git a/package-lock.json b/package-lock.json index 42f9b9be1..af14007a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "apollo-client-devtools", - "version": "2.2.5", + "version": "2.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e857b65da..6b92d0cf4 100755 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "apollo-client-devtools", "description": "Developer tools for Apollo Client, with GraphiQL integration, cache inspection, and query watching.", "license": "MIT", - "version": "2.3.0", + "version": "2.3.1", "scripts": { "build": "cd shells/webextension && cross-env NODE_ENV=production webpack --progress --hide-modules", "dev": "cd shells/dev && webpack-dev-server --inline --hot --no-info", diff --git a/shells/webextension/manifest.json b/shells/webextension/manifest.json index f8b396eab..0fb470d43 100755 --- a/shells/webextension/manifest.json +++ b/shells/webextension/manifest.json @@ -1,5 +1,5 @@ { - "version": "2.3.0", + "version": "2.3.1", "author": "Apollo", "name": "Apollo Client Developer Tools", "short_name": "Apollo DevTools",