Skip to content

chore(deps): update all devdependencies #1412

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 8, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@apollo/client (source) 3.11.10 -> 3.13.8 age adoption passing confidence devDependencies minor
@apollo/datasource-rest ^6.0.0 -> 6.0.0 age adoption passing confidence devDependencies pin
@apollo/server (source) ^4.3.0 -> 4.9.3 age adoption passing confidence devDependencies pin
@changesets/cli (source) 2.27.12 -> 2.29.4 age adoption passing confidence devDependencies minor
@eslint/js (source) ^9.21.0 -> 9.21.0 age adoption passing confidence devDependencies pin
@graphql-codegen/typescript (source) 4.0.9 -> 4.1.6 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-operations (source) 4.2.3 -> 4.6.1 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-resolvers (source) 4.1.0 -> 4.5.1 age adoption passing confidence devDependencies minor
@parcel/watcher 2.4.1 -> 2.5.1 age adoption passing confidence devDependencies minor
@testing-library/dom ^10.2.0 -> 10.2.0 age adoption passing confidence devDependencies pin
@testing-library/jest-dom 6.4.6 -> 6.6.3 age adoption passing confidence devDependencies minor
@testing-library/jest-dom ^6.0.0 -> 6.1.2 age adoption passing confidence devDependencies pin
@testing-library/react 16.0.1 -> 16.3.0 age adoption passing confidence devDependencies minor
@testing-library/react ^16.0.0 -> 16.0.0 age adoption passing confidence devDependencies pin
@testing-library/user-event 14.5.2 -> 14.6.1 age adoption passing confidence devDependencies minor
@testing-library/user-event ^14.5.1 -> 14.5.2 age adoption passing confidence devDependencies pin
@total-typescript/ts-reset (source) 0.5.1 -> 0.6.1 age adoption passing confidence devDependencies minor
@​types/classnames ^2.2.10 -> 2.2.10 age adoption passing confidence devDependencies pin
@types/jest (source) ^29.5.0 -> 29.5.14 age adoption passing confidence devDependencies pin
@types/node (source) ^22.0.0 -> 22.0.0 age adoption passing confidence devDependencies pin
@types/node (source) 20.14.10 -> 20.17.47 age adoption passing confidence devDependencies minor
@types/react (source) ^18.0.26 -> 18.0.26 age adoption passing confidence devDependencies pin
@types/react-dom (source) ^18.0.10 -> 18.0.10 age adoption passing confidence devDependencies pin
@types/webextension-polyfill (source) 0.10.7 -> 0.12.3 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 7.14.1 -> 7.18.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 7.14.1 -> 7.18.0 age adoption passing confidence devDependencies minor
classnames ^2.2.6 -> 2.2.6 age adoption passing confidence devDependencies pin
eslint-plugin-jest-dom 5.4.0 -> 5.5.0 age adoption passing confidence devDependencies minor
eslint-plugin-react 7.34.3 -> 7.37.5 age adoption passing confidence devDependencies minor
eslint-plugin-testing-library 6.2.2 -> 6.5.0 age adoption passing confidence devDependencies minor
graphql ^16.6.0 -> 16.8.1 age adoption passing confidence devDependencies pin
graphql ^16.0.0 -> 16.8.1 age adoption passing confidence devDependencies pin
graphql 16.9.0 -> 16.11.0 age adoption passing confidence devDependencies minor
lowdb ^1.0.0 -> 1.0.0 age adoption passing confidence devDependencies pin
pkg-pr-new (source) ^0.0.43 -> 0.0.43 age adoption passing confidence devDependencies pin
postcss (source) 8.4.49 -> 8.5.3 age adoption passing confidence devDependencies minor
react (source) ^18.2.0 -> 18.2.0 age adoption passing confidence devDependencies pin
react-dom (source) ^18.2.0 -> 18.2.0 age adoption passing confidence devDependencies pin
react-router-dom (source) ^6.0.0 -> 6.11.2 age adoption passing confidence devDependencies pin
ts-jest (source) 29.1.5 -> 29.3.3 age adoption passing confidence devDependencies minor
tsx (source) 4.11.0 -> 4.19.4 age adoption passing confidence devDependencies minor
typescript (source) 5.5.4 -> 5.8.3 age adoption passing confidence devDependencies minor
typescript (source) ^4.9.4 -> 4.9.4 age adoption passing confidence devDependencies pin
typescript (source) 5.4.5 -> 5.8.3 age adoption passing confidence devDependencies minor
typescript-eslint (source) 7.14.1 -> 7.18.0 age adoption passing confidence devDependencies minor
webpack 5.94.0 -> 5.99.8 age adoption passing confidence devDependencies minor
ws ^8.18.0 -> 8.18.0 age adoption passing confidence devDependencies pin
zone.js (source, changelog) 0.14.7 -> 0.15.0 age adoption passing confidence devDependencies minor

Release Notes

apollographql/apollo-client (@​apollo/client)

v3.13.8

Compare Source

Patch Changes

v3.13.7

Compare Source

Patch Changes

v3.13.6

Compare Source

Patch Changes

v3.13.5

Compare Source

Patch Changes
  • #​12461 12c8d06 Thanks @​jerelmiller! - Fix an issue where a cache-first query would return the result for previous variables when a cache update is issued after simultaneously changing variables and skipping the query.

v3.13.4

Compare Source

Patch Changes

v3.13.3

Compare Source

Patch Changes
  • #​12362 f6d387c Thanks @​jerelmiller! - Fixes an issue where calling observableQuery.getCurrentResult() when the errorPolicy was set to all would return the networkStatus as NetworkStatus.ready when there were errors returned in the result. This has been corrected to report NetworkStatus.error.

    This bug also affected the useQuery and useLazyQuery hooks and may affect you if you check for networkStatus in your component.

v3.13.2

Compare Source

Patch Changes
  • #​12409 6aa2f3e Thanks @​phryneas! - To mitigate problems when Apollo Client ends up more than once in the bundle, some unique symbols were converted into Symbol.for calls.

  • #​12392 644bb26 Thanks @​Joja81! - Fixes an issue where the DeepOmit type would turn optional properties into required properties. This should only affect you if you were using the omitDeep or stripTypename utilities exported by Apollo Client.

  • #​12404 4332b88 Thanks @​jerelmiller! - Show NaN rather than converting to null in debug messages from MockLink for unmatched variables values.

v3.13.1

Compare Source

Patch Changes

v3.13.0

Compare Source

Minor Changes
  • #​12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #​12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #​12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery.
    For more context, please see the related issue on GitHub.

  • #​12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    
        if (complete) {
          previousData;
          // ^? TData
        } else {
          previousData;
          // ^? DeepPartial<TData> | undefined
        }
      }
    );
  • #​12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes
  • #​12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        if (!complete) {
          // Bail out of the update by returning early
          return;
        }
    
        // ...
      }
    );
  • #​12296 2422df2 Thanks @​Cellule! - Deprecate option ignoreResults in useMutation.
    Once this option is removed, existing code still using it might see increase in re-renders.
    If you don't want to synchronize your component state with the mutation, please use useApolloClient to get your ApolloClient instance and call client.mutate directly.

  • #​12338 67c16c9 Thanks @​phryneas! - In case of a multipart response (e.g. with @defer), query deduplication will
    now keep going until the final chunk has been received.

  • #​12276 670f112 Thanks @​Cellule! - Fix the type of the variables property passed as the 2nd argument to the subscribeToMore callback. This was previously reported as the variables type for the subscription itself, but is now properly typed as the query variables.

v3.12.11

Compare Source

Patch Changes
  • #​12351 3da908b Thanks @​jerelmiller! - Fixes an issue where the wrong networkStatus and loading value was emitted from observableQuery when calling fetchMore with a no-cache fetch policy. The networkStatus now properly reports as ready and loading as false after the result is returned.

  • #​12354 a24ef94 Thanks @​phryneas! - Fix missing main.d.cts file

v3.12.10

Compare Source

Patch Changes

v3.12.9

Compare Source

Patch Changes

v3.12.8

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot requested a review from a team as a code owner June 8, 2024 18:12
Copy link

relativeci bot commented Jun 8, 2024

#805 Bundle Size — 1.51MiB (~-0.01%).

4ef5b08(current) vs 21ba6b1 main#804(baseline)

Warning

Bundle contains 13 duplicate packages – View duplicate packages

Bundle metrics  Change 2 changes Improvement 1 improvement
                 Current
#805
     Baseline
#804
Improvement  Initial JS 1.47MiB(~-0.01%) 1.47MiB
No change  Initial CSS 0B 0B
Change  Cache Invalidation 1.06% 92.85%
No change  Chunks 5 5
No change  Assets 12 12
No change  Modules 1218 1218
No change  Duplicate Modules 45 45
No change  Duplicate Code 3.06% 3.06%
No change  Packages 183 183
No change  Duplicate Packages 10 10
Bundle size by type  Change 1 change Improvement 1 improvement
                 Current
#805
     Baseline
#804
Improvement  JS 1.47MiB (~-0.01%) 1.47MiB
No change  IMG 35.85KiB 35.85KiB
No change  HTML 810B 810B
No change  Other 778B 778B

Bundle analysis reportBranch renovate/all-devProject dashboard


Generated by RelativeCIDocumentationReport issue

@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from c3b1a19 to a1fa681 Compare June 15, 2024 07:24
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from 84863a2 to 4ffb67f Compare June 22, 2024 08:17
Copy link
Contributor Author

renovate bot commented Jun 22, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: development/client-angular/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @angular-devkit/[email protected]
npm error Found: [email protected]
npm error node_modules/typescript
npm error   dev typescript@"5.8.3" from the root project
npm error   peerOptional typescript@">=4.9.5" from [email protected]
npm error   node_modules/cosmiconfig
npm error     cosmiconfig@"^9.0.0" from [email protected]
npm error     node_modules/postcss-loader
npm error       postcss-loader@"8.1.1" from @angular-devkit/[email protected]
npm error       node_modules/@angular-devkit/build-angular
npm error         dev @angular-devkit/build-angular@"17.3.17" from the root project
npm error   3 more (ts-node, tslint, tsutils)
npm error
npm error Could not resolve dependency:
npm error peer typescript@">=5.2 <5.5" from @angular-devkit/[email protected]
npm error node_modules/@angular-devkit/build-angular
npm error   dev @angular-devkit/build-angular@"17.3.17" from the root project
npm error
npm error Conflicting peer dependency: [email protected]
npm error node_modules/typescript
npm error   peer typescript@">=5.2 <5.5" from @angular-devkit/[email protected]
npm error   node_modules/@angular-devkit/build-angular
npm error     dev @angular-devkit/build-angular@"17.3.17" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-05-14T15_41_26_946Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-05-14T15_41_26_946Z-debug-0.log

@renovate renovate bot force-pushed the renovate/all-dev branch 3 times, most recently from cb7321d to 202fe27 Compare June 25, 2024 17:44
@renovate renovate bot changed the title chore(deps): update all devdependencies chore(deps): pin dependencies Jun 25, 2024
@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from 9257b7c to 0b48714 Compare July 6, 2024 07:23
@renovate renovate bot force-pushed the renovate/all-dev branch 3 times, most recently from dadff7e to b71c208 Compare July 13, 2024 09:09
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from 4a27819 to 11c4694 Compare July 20, 2024 09:21
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from da25784 to 1d4ec90 Compare August 3, 2024 08:23
@renovate renovate bot force-pushed the renovate/all-dev branch 3 times, most recently from 3f3d626 to 3a4cfd4 Compare August 17, 2024 07:12
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from d2d0ea9 to 5d76208 Compare August 19, 2024 03:59
@renovate renovate bot force-pushed the renovate/all-dev branch 6 times, most recently from 357da93 to ae84d9d Compare April 17, 2025 16:44
@renovate renovate bot force-pushed the renovate/all-dev branch 3 times, most recently from bdd551e to 20f7563 Compare April 25, 2025 12:51
@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from 7aa6d3e to e6a97e0 Compare May 2, 2025 11:09
@renovate renovate bot force-pushed the renovate/all-dev branch 13 times, most recently from db64313 to b86b049 Compare May 8, 2025 20:20
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from dbb39d6 to 428f717 Compare May 14, 2025 08:49
@renovate renovate bot force-pushed the renovate/all-dev branch from 428f717 to 4e21f4f Compare May 14, 2025 15:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants