apollographql / apollo-client

:rocket:  A fully-featured, production ready caching GraphQL client for every UI framework and GraphQL server.
https://apollographql.com/client
MIT License
19.34k stars 2.66k forks source link

chore(deps): update all devdependencies #12030

Open renovate[bot] opened 1 month ago

renovate[bot] commented 1 month ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@arethetypeswrong/cli (source) 0.15.3 -> 0.16.4 age adoption passing confidence
@testing-library/jest-dom 6.4.6 -> 6.5.0 age adoption passing confidence
expect-type 0.19.0 -> 0.20.0 age adoption passing confidence
terser (source) 5.31.3 -> 5.34.1 age adoption passing confidence
typescript (source) 5.5.3 -> 5.6.2 age adoption passing confidence

Release Notes

arethetypeswrong/arethetypeswrong.github.io (@​arethetypeswrong/cli) ### [`v0.16.4`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/blob/HEAD/packages/cli/CHANGELOG.md#0164) ##### Patch Changes - Updated dependencies \[[`3ca2866`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/3ca2866)] - [@​arethetypeswrong/core](https://redirect.github.com/arethetypeswrong/core)[@​0](https://redirect.github.com/0).16.4 ### [`v0.16.3`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/blob/HEAD/packages/cli/CHANGELOG.md#0163) ##### Patch Changes - [`66ada51`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/66ada51): Fix warning message json-format suggestion to use proper syntax ### [`v0.16.2`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/blob/HEAD/packages/cli/CHANGELOG.md#0162) ##### Patch Changes - Updated dependencies \[[`622b71f`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/622b71f)] - [@​arethetypeswrong/core](https://redirect.github.com/arethetypeswrong/core)[@​0](https://redirect.github.com/0).16.2 ### [`v0.16.1`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/blob/HEAD/packages/cli/CHANGELOG.md#0161) ##### Patch Changes - [`5ee6f29`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/5ee6f29): Update README with new problem kind ### [`v0.16.0`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/blob/HEAD/packages/cli/CHANGELOG.md#0160) [Compare Source](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/compare/@arethetypeswrong/cli@0.15.4...@arethetypeswrong/cli@0.16.0) ##### Minor Changes - [`d480f1c`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/d480f1c): New problem kind: **Named exports cannot be detected by Node.js**. Thanks [@​laverdet](https://redirect.github.com/laverdet)! ##### Patch Changes - Updated dependencies \[[`970b141`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/970b141)] - Updated dependencies \[[`d480f1c`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/d480f1c)] - [@​arethetypeswrong/core](https://redirect.github.com/arethetypeswrong/core)[@​0](https://redirect.github.com/0).16.0 ### [`v0.15.4`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/blob/HEAD/packages/cli/CHANGELOG.md#0154) [Compare Source](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/compare/@arethetypeswrong/cli@0.15.3...@arethetypeswrong/cli@0.15.4) ##### Patch Changes - [`5566c1b`](https://redirect.github.com/arethetypeswrong/arethetypeswrong.github.io/commit/5566c1b): Upgrading marked-terminal to version 7.1.0
testing-library/jest-dom (@​testing-library/jest-dom) ### [`v6.5.0`](https://redirect.github.com/testing-library/jest-dom/compare/v6.4.8...62f0e3a43262b945bbf6bdd9bf231bf3e4ac7778) [Compare Source](https://redirect.github.com/testing-library/jest-dom/compare/v6.4.8...v6.5.0) ### [`v6.4.8`](https://redirect.github.com/testing-library/jest-dom/compare/v6.4.7...d02e80b1b7ed38090975bdfe49ab8063eec040f5) [Compare Source](https://redirect.github.com/testing-library/jest-dom/compare/v6.4.7...v6.4.8) ### [`v6.4.7`](https://redirect.github.com/testing-library/jest-dom/compare/v6.4.6...5cc6298847e08872b79f827921c64c9ba261cc54) [Compare Source](https://redirect.github.com/testing-library/jest-dom/compare/v6.4.6...v6.4.7)
mmkal/expect-type (expect-type) ### [`v0.20.0`](https://redirect.github.com/mmkal/expect-type/releases/tag/v0.20.0) [Compare Source](https://redirect.github.com/mmkal/expect-type/compare/0.19.0...v0.20.0) #### Breaking changes - improve overloads support, attempt 2 by [@​mmkal](https://redirect.github.com/mmkal) in [https://github.com/mmkal/expect-type/pull/83](https://redirect.github.com/mmkal/expect-type/pull/83) This change updates how overloaded functions are treated. Now, `.parameters` gives you a *union* of the parameter-tuples that a function can take. For example, given the following type: ```ts type Factorize = { (input: number): number[] (input: bigint): bigint[] } ``` Behvaiour before: ```ts expectTypeOf().parameters.toEqualTypeOf<[bigint]>() ``` Behaviour now: ```ts expectTypeOf().parameters.toEqualTypeOf<[number] | [bigint]>() ``` There were similar changes for `.returns`, `.parameter(...)`, and `.toBeCallableWith`. Also, overloaded functions are now differentiated properly when using `.branded.toEqualTypeOf` (this was a bug that it seems nobody found). See [#​83](https://redirect.github.com/mmkal/expect-type/issues/83) for more details or look at the updated docs (including a new section called "[Overloaded functions](https://redirect.github.com/mmkal/expect-type#overloaded-functions)", which has more info on how this behaviour differs for TypeScript versions before 5.3). #### What's Changed - Fix rendering issue in readme by [@​mrazauskas](https://redirect.github.com/mrazauskas) in [https://github.com/mmkal/expect-type/pull/69](https://redirect.github.com/mmkal/expect-type/pull/69) - Fix minor issues in docs by [@​aryaemami59](https://redirect.github.com/aryaemami59) in [https://github.com/mmkal/expect-type/pull/91](https://redirect.github.com/mmkal/expect-type/pull/91) - create utils file by [@​mmkal](https://redirect.github.com/mmkal) in [https://github.com/mmkal/expect-type/pull/93](https://redirect.github.com/mmkal/expect-type/pull/93) - branding.ts and messages.ts by [@​mmkal](https://redirect.github.com/mmkal) in [https://github.com/mmkal/expect-type/pull/95](https://redirect.github.com/mmkal/expect-type/pull/95) - improve overloads support, attempt 2 by [@​mmkal](https://redirect.github.com/mmkal) in [https://github.com/mmkal/expect-type/pull/83](https://redirect.github.com/mmkal/expect-type/pull/83) - Extends: explain myself [`1e37116`](https://redirect.github.com/mmkal/expect-type/commit/1e37116) - Mark internal APIs with `@internal` JSDoc tag ([#​104](https://redirect.github.com/mmkal/expect-type/issues/104)) [`4c40b07`](https://redirect.github.com/mmkal/expect-type/commit/4c40b07) - Re-export everything in `overloads.ts` file ([#​107](https://redirect.github.com/mmkal/expect-type/issues/107)) [`5ee0181`](https://redirect.github.com/mmkal/expect-type/commit/5ee0181) - JSDoc improvements ([#​100](https://redirect.github.com/mmkal/expect-type/issues/100)) [`0bbeffa`](https://redirect.github.com/mmkal/expect-type/commit/0bbeffa) **Full Changelog**: https://github.com/mmkal/expect-type/compare/v0.19.0...v0.20.0
terser/terser (terser) ### [`v5.34.1`](https://redirect.github.com/terser/terser/blob/HEAD/CHANGELOG.md#v5341) [Compare Source](https://redirect.github.com/terser/terser/compare/v5.34.0...v5.34.1) - bump the rollup devDependency to disable CVE warnings (Terser was not affected) ### [`v5.34.0`](https://redirect.github.com/terser/terser/blob/HEAD/CHANGELOG.md#v5340) [Compare Source](https://redirect.github.com/terser/terser/compare/v5.33.0...v5.34.0) - internal: stop assigning properties to objects they don't belong in - internal: run compress tests in parallel - `drop_console`: emit an empty function if the return value of `console.METHOD(...)` may be called. ### [`v5.33.0`](https://redirect.github.com/terser/terser/blob/HEAD/CHANGELOG.md#v5330) [Compare Source](https://redirect.github.com/terser/terser/compare/v5.32.0...v5.33.0) - `reduce_vars` improved when dealing with hoisted function definitions ([#​1544](https://redirect.github.com/terser/terser/issues/1544)) ### [`v5.32.0`](https://redirect.github.com/terser/terser/blob/HEAD/CHANGELOG.md#v5320) [Compare Source](https://redirect.github.com/terser/terser/compare/v5.31.6...v5.32.0) - `import("module")` can now be input and output from ESTree AST ([#​1557](https://redirect.github.com/terser/terser/issues/1557)) - `BigInt` literals can now be input and output from ESTree AST ([#​1555](https://redirect.github.com/terser/terser/issues/1555)) - `typeof` an object or array (`typeof {}` and `typeof []`) can now be statically evaluated. ([#​1546](https://redirect.github.com/terser/terser/issues/1546)) ### [`v5.31.6`](https://redirect.github.com/terser/terser/blob/HEAD/CHANGELOG.md#v5316) [Compare Source](https://redirect.github.com/terser/terser/compare/v5.31.5...v5.31.6) - Retain side effects in a `case` when the expression is a sequence (comma) expression ### [`v5.31.5`](https://redirect.github.com/terser/terser/blob/HEAD/CHANGELOG.md#v5315) [Compare Source](https://redirect.github.com/terser/terser/compare/v5.31.4...v5.31.5) - Revert v5.31.4, which created mysterious issues [#​1548](https://redirect.github.com/terser/terser/issues/1548), [#​1549](https://redirect.github.com/terser/terser/issues/1549) ### [`v5.31.4`](https://redirect.github.com/terser/terser/blob/HEAD/CHANGELOG.md#v5314) [Compare Source](https://redirect.github.com/terser/terser/compare/v5.31.3...v5.31.4) - drop_unused: drop classes which only have side effects in the `extends` part
microsoft/TypeScript (typescript) ### [`v5.6.2`](https://redirect.github.com/microsoft/TypeScript/compare/v5.5.4...a7e3374f13327483fbe94e32806d65785b0b6cda) [Compare Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2) ### [`v5.5.4`](https://redirect.github.com/microsoft/TypeScript/releases/tag/v5.5.4): TypeScript 5.5.4 [Compare Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.5.3...v5.5.4) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/). For the complete list of fixed issues, check out the - [fixed issues query for TypeScript v5.5.4 (Stable)](https://redirect.github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.4%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.3 (Stable)](https://redirect.github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.3%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.2 (Stable)](https://redirect.github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.1 (RC)](https://redirect.github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.0 (Beta)](https://redirect.github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) (soon!)

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR was generated by Mend Renovate. View the repository job log.

changeset-bot[bot] commented 1 month ago

⚠️ No Changeset found

Latest commit: d80d15b3ee08ffa9f39d2e5277dfa791439b0ead

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

github-actions[bot] commented 1 month ago

size-limit report 📦

Path Size
dist/apollo-client.min.cjs 39.31 KB (0%)
import { ApolloClient, InMemoryCache, HttpLink } from "dist/main.cjs" 47.99 KB (0%)
import { ApolloClient, InMemoryCache, HttpLink } from "dist/main.cjs" (production) 45.57 KB (0%)
import { ApolloClient, InMemoryCache, HttpLink } from "dist/index.js" 34.4 KB (0%)
import { ApolloClient, InMemoryCache, HttpLink } from "dist/index.js" (production) 32.29 KB (0%)
import { ApolloProvider } from "dist/react/index.js" 1.26 KB (0%)
import { ApolloProvider } from "dist/react/index.js" (production) 1.24 KB (0%)
import { useQuery } from "dist/react/index.js" 5.21 KB (0%)
import { useQuery } from "dist/react/index.js" (production) 4.29 KB (0%)
import { useLazyQuery } from "dist/react/index.js" 5.69 KB (0%)
import { useLazyQuery } from "dist/react/index.js" (production) 4.77 KB (0%)
import { useMutation } from "dist/react/index.js" 3.62 KB (0%)
import { useMutation } from "dist/react/index.js" (production) 2.84 KB (0%)
import { useSubscription } from "dist/react/index.js" 4.42 KB (0%)
import { useSubscription } from "dist/react/index.js" (production) 3.48 KB (0%)
import { useSuspenseQuery } from "dist/react/index.js" 5.49 KB (0%)
import { useSuspenseQuery } from "dist/react/index.js" (production) 4.15 KB (0%)
import { useBackgroundQuery } from "dist/react/index.js" 4.99 KB (0%)
import { useBackgroundQuery } from "dist/react/index.js" (production) 3.64 KB (0%)
import { useLoadableQuery } from "dist/react/index.js" 5.07 KB (0%)
import { useLoadableQuery } from "dist/react/index.js" (production) 3.72 KB (0%)
import { useReadQuery } from "dist/react/index.js" 3.39 KB (0%)
import { useReadQuery } from "dist/react/index.js" (production) 3.33 KB (0%)
import { useFragment } from "dist/react/index.js" 2.28 KB (0%)
import { useFragment } from "dist/react/index.js" (production) 2.23 KB (0%)
pkg-pr-new[bot] commented 2 weeks ago
npm i https://pkg.pr.new/@apollo/client@12030

commit: d80d15b