Skip to content
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

chore(deps): update all devdependencies #1412

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.0 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
@graphql-codegen/typescript (source) 4.0.9 -> 4.1.3 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-operations (source) 4.2.3 -> 4.4.1 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-resolvers (source) 4.1.0 -> 4.4.2 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.2.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.18 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.1 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.4 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.10.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.39 -> 0.0.39 age adoption passing confidence devDependencies pin
postcss (source) 8.4.49 -> 8.5.2 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.2.5 age adoption passing confidence devDependencies minor
tsx (source) 4.11.0 -> 4.19.2 age adoption passing confidence devDependencies minor
typescript (source) 5.5.4 -> 5.7.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.7.3 age adoption passing confidence devDependencies minor
typescript-eslint (source) 7.14.1 -> 7.18.0 age adoption passing confidence devDependencies minor
web-ext-plugin 2.9.0 -> 2.11.0 age adoption passing confidence devDependencies minor
webpack 5.94.0 -> 5.98.0 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.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

v3.12.7

Compare Source

Patch Changes

v3.12.6

Compare Source

Patch Changes

v3.12.5

Compare Source

Patch Changes
  • #​12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

Migrating from <= v3.12.4

If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

-declare module "@&#8203;apollo/client" {
-  interface DataMasking {
-    mode: "unmask"
-  }
-}

If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

declare module "@&#8203;apollo/client" {
  interface DataMasking {
-    enabled: true
+    mode: "preserveTypes"
  }
}

If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

declare module "@&#8203;apollo/client" {
  interface DataMasking {
    mode: "unmask";
  }
}

v3.12.4

Compare Source

Patch Changes
  • #​12236 4334d30 Thanks @​charpeni! - Fix an issue with refetchQueries where comparing DocumentNodes internally by references could lead to an unknown query, even though the DocumentNode was indeed an active query—with a different reference.

v3.12.3

Compare Source

Patch Changes

v3.12.2

Compare Source

Patch Changes

[v3.12.1](https://redirect.github.com/apollographql/apollo-client/blob/HEAD/CHANGELO


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 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.7.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.11" 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.11" 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.11" 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 /tmp/renovate/cache/others/npm/_logs/2025-02-13T17_50_51_432Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2025-02-13T17_50_51_432Z-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 7 times, most recently from 51e6204 to 0bd5b2f Compare January 22, 2025 16:01
@renovate renovate bot force-pushed the renovate/all-dev branch 6 times, most recently from f468a7f to e628687 Compare January 28, 2025 12:37
@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from 7d72b31 to cdcce04 Compare February 4, 2025 00:33
@renovate renovate bot force-pushed the renovate/all-dev branch 11 times, most recently from c2d8884 to e3dea04 Compare February 13, 2025 17:47
@renovate renovate bot force-pushed the renovate/all-dev branch from e3dea04 to 8bff7f6 Compare February 13, 2025 17:51
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