diff --git a/.changeset/khaki-crabs-rescue.md b/.changeset/khaki-crabs-rescue.md deleted file mode 100644 index ff199f714..000000000 --- a/.changeset/khaki-crabs-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"apollo-client-devtools": patch ---- - -prevent bundling Apollo Client in the hooks.js build diff --git a/.changeset/long-balloons-attack.md b/.changeset/long-balloons-attack.md deleted file mode 100644 index 2c1789db7..000000000 --- a/.changeset/long-balloons-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"apollo-client-devtools": patch ---- - -Fix an issue when sending cache data from the browser to the extension. This was particularly problematic when the cache contained `URL` instances which are not cloneable via the [structured clone algorithm](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm) diff --git a/CHANGELOG.md b/CHANGELOG.md index a17dda74f..d99cd7dc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.8.2 + +### Patch Changes + +- [#1262](https://github.com/apollographql/apollo-client-devtools/pull/1262) [`122c3ee`](https://github.com/apollographql/apollo-client-devtools/commit/122c3ee883cf85078cee6efc31df63e5554c9147) Thanks [@phryneas](https://github.com/phryneas)! - prevent bundling Apollo Client in the hooks.js build + +- [#1259](https://github.com/apollographql/apollo-client-devtools/pull/1259) [`de55e20`](https://github.com/apollographql/apollo-client-devtools/commit/de55e2079d17de4e6bdc67582d0a22e577294dfd) Thanks [@jerelmiller](https://github.com/jerelmiller)! - Fix an issue when sending cache data from the browser to the extension. This was particularly problematic when the cache contained `URL` instances which are not cloneable via the [structured clone algorithm](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm) + ## 4.8.1 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index 1baa56a15..d63cfc6f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "apollo-client-devtools", - "version": "4.8.1", + "version": "4.8.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "apollo-client-devtools", - "version": "4.8.1", + "version": "4.8.2", "license": "MIT", "dependencies": { "@apollo/brand": "^0.5.0", diff --git a/package.json b/package.json index cdf07a420..686ba9961 100755 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "apollo-client-devtools", "description": "Developer tools for Apollo Client, with Studio Explorer integration, cache inspection, and query watching.", "license": "MIT", - "version": "4.8.1", + "version": "4.8.2", "repository": { "type": "git", "url": "git+https://github.com/apollographql/apollo-client-devtools.git" diff --git a/src/extension/chrome/manifest.json b/src/extension/chrome/manifest.json index 6502e5c4d..54cd80c1a 100644 --- a/src/extension/chrome/manifest.json +++ b/src/extension/chrome/manifest.json @@ -1,5 +1,5 @@ { - "version": "4.8.1", + "version": "4.8.2", "author": "Apollo", "name": "Apollo Client Devtools", "description": "GraphQL debugging tools for Apollo Client.", diff --git a/src/extension/firefox/manifest.json b/src/extension/firefox/manifest.json index 09e004183..d4a0333d3 100644 --- a/src/extension/firefox/manifest.json +++ b/src/extension/firefox/manifest.json @@ -1,5 +1,5 @@ { - "version": "4.8.1", + "version": "4.8.2", "author": "Apollo", "name": "Apollo Client Devtools", "description": "GraphQL debugging tools for Apollo Client.",