From f08ed9f94f64e3bc3d3e387ca237670da7d91224 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 14 Jun 2023 17:22:55 +0000 Subject: [PATCH] Version Packages (beta) --- .changeset/pre.json | 6 ++++++ CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 50 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index bdb779d7662..4567c6eab26 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -5,6 +5,8 @@ "@apollo/client": "3.7.2" }, "changesets": [ + "afraid-zebras-punch", + "cold-tips-accept", "curvy-dragons-talk", "curvy-monkeys-kneel", "cyan-insects-love", @@ -14,6 +16,7 @@ "early-pens-retire", "famous-ladybugs-reflect", "fast-tomatoes-peel", + "friendly-mugs-repeat", "funny-peas-change", "grumpy-tips-know", "heavy-ties-sneeze", @@ -24,10 +27,12 @@ "modern-peaches-marry", "neat-rockets-sleep", "nine-boxes-happen", + "odd-pumpkins-care", "odd-students-crash", "old-moles-run", "polite-birds-rescue", "popular-beers-move", + "rude-frogs-destroy", "rude-mayflies-scream", "seven-onions-burn", "sharp-trees-cough", @@ -42,6 +47,7 @@ "small-tomatoes-explode", "smooth-forks-shop", "strange-drinks-report", + "tasty-wasps-relate", "twelve-files-promise", "warm-pandas-cry", "wild-mice-nail" diff --git a/CHANGELOG.md b/CHANGELOG.md index a8761aa164f..31437e5cfd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,46 @@ # @apollo/client +## 3.8.0-beta.3 + +### Minor Changes + +- [#10895](https://github.com/apollographql/apollo-client/pull/10895) [`e187866fd`](https://github.com/apollographql/apollo-client/commit/e187866fdfbbd1e1e30646f289367fb4b5afb3c3) Thanks [@(author)]()! - Add generic type parameter for the entity modified in `cache.modify`. Improves + TypeScript type inference for that type's fields and values of those fields. + + Example: + + ```ts + cache.modify({ + id: cache.identify(someBook), + fields: { + title: (title) => { + // title has type `string`. + // It used to be `any`. + }, + => { + // author has type `Reference | Book["author"]`. + // It used to be `any`. + }, + }, + }); + ``` + +- [#10895](https://github.com/apollographql/apollo-client/pull/10895) [`e187866fd`](https://github.com/apollographql/apollo-client/commit/e187866fdfbbd1e1e30646f289367fb4b5afb3c3) Thanks [@Gelio](https://github.com/Gelio)! - Use unique opaque types for the `DELETE` and `INVALIDATE` Apollo cache modifiers. + + This increases type safety, since these 2 modifiers no longer have the `any` type. + Moreover, it no longer triggers [the `@typescript-eslint/no-unsafe-return` + rule](https://typescript-eslint.io/rules/no-unsafe-return/). + +### Patch Changes + +- [#10951](https://github.com/apollographql/apollo-client/pull/10951) [`2e833b2ca`](https://github.com/apollographql/apollo-client/commit/2e833b2cacb71fc2050cb3976d0bbe710baeedff) Thanks [@alessbell](https://github.com/alessbell)! - Improve `useBackgroundQuery` type interface + +- [#10964](https://github.com/apollographql/apollo-client/pull/10964) [`f33171506`](https://github.com/apollographql/apollo-client/commit/f331715066d65291b1f5df5e6fa2b6618dfc70b1) Thanks [@alessbell](https://github.com/alessbell)! - Fixes a bug in `BatchHttpLink` that removed variables from all requests by default. + +- [#10968](https://github.com/apollographql/apollo-client/pull/10968) [`b102390b2`](https://github.com/apollographql/apollo-client/commit/b102390b238e5ce083062541d98a00fc3a10e1e1) Thanks [@phryneas](https://github.com/phryneas)! - Use printed query for query deduplication. Cache `print` calls for GraphQL documents to speed up repeated operations. + +- [#10969](https://github.com/apollographql/apollo-client/pull/10969) [`525a9317a`](https://github.com/apollographql/apollo-client/commit/525a9317af729309f699fd6f8b787647a5f63eac) Thanks [@phryneas](https://github.com/phryneas)! - Slightly decrease bundle size and memory footprint of `SuspenseCache` by changing how cache entries are stored internally. + ## 3.8.0-beta.2 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index 452614bc50c..85fdddcc458 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@apollo/client", - "version": "3.8.0-beta.2", + "version": "3.8.0-beta.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@apollo/client", - "version": "3.8.0-beta.2", + "version": "3.8.0-beta.3", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index ad2da4299a4..b51e1b55aa9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/client", - "version": "3.8.0-beta.2", + "version": "3.8.0-beta.3", "description": "A fully-featured caching GraphQL client.", "private": true, "keywords": [