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.12.4 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.2 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-operations (source) 4.2.3 -> 4.4.0 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-resolvers (source) 4.1.0 -> 4.4.1 age adoption passing confidence devDependencies minor
@parcel/watcher 2.4.1 -> 2.5.0 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.1.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.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.10 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.2 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
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.2 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.2 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.97.1 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.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

Compare Source

Patch Changes

v3.12.0

Compare Source

Minor Changes
Data masking 🎭
  • #​12042 1c0ecbf Thanks @​jerelmiller! - Introduces data masking in Apollo Client.

    Data masking enforces that only the fields requested by the query or fragment is available to that component. Data masking is best paired with colocated fragments.

    To enable data masking in Apollo Client, set the dataMasking option to true.

    new ApolloClient({
      dataMasking: true,
      // ... other options
    });

    For detailed information on data masking, including how to incrementally adopt it in an existing applications, see the data masking documentation.

  • #​12131 21c3f08 Thanks @​jerelmiller! - Allow null as a valid from value in useFragment.

More Patch Changes

dotansimha/graphql-code-generator (@​graphql-codegen/typescript)

v4.1.2

Compare Source

Patch Changes

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes
  • #​10077 3f4f546 Thanks @​eddeee888! - Extend config.avoidOptions to support query, mutation and subscription

    Previously, config.avoidOptions.resolvers was being used to make query, mutation and subscription fields non-optional.
    Now, config.avoidOptions.query, config.avoidOptions.mutation and config.avoidOptions.subscription can be used to target the respective types.

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript-operations)

v4.4.0

Compare Source

Minor Changes
Patch Changes

v4.3.1

Compare Source

Patch Changes

v4.3.0

Compare Source

Minor Changes
  • #​10077 3f4f546 Thanks @​eddeee888! - Extend config.avoidOptions to support query, mutation and subscription

    Previously, config.avoidOptions.resolvers was being used to make query, mutation and subscription fields non-optional.
    Now, config.avoidOptions.query, config.avoidOptions.mutation and config.avoidOptions.subscription can be used to target the respective types.

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript-resolvers)

v4.4.1

Compare Source

Patch Changes

v4.4.0

[Compare Source](


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.2" 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/2024-12-21T18_27_31_604Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-12-21T18_27_31_604Z-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 changed the title chore(deps): pin dependencies chore(deps): update all devdependencies Oct 12, 2024
@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from 7a468c1 to 0a6fd3a Compare October 19, 2024 12:53
@renovate renovate bot force-pushed the renovate/all-dev branch 3 times, most recently from c52dff7 to 08d5f29 Compare October 27, 2024 00:04
@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from 4eb0e72 to b736b13 Compare November 4, 2024 07:24
@renovate renovate bot force-pushed the renovate/all-dev branch 3 times, most recently from cbadd20 to 26f1ecb Compare November 16, 2024 09:24
@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from 7c3a9c0 to 496e2ea Compare November 23, 2024 15:54
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from e67c07d to f3f08a2 Compare November 30, 2024 10:53
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from 6f0aaad to d154247 Compare December 14, 2024 09:48
@renovate renovate bot force-pushed the renovate/all-dev branch 5 times, most recently from f1d7213 to 1147f06 Compare December 21, 2024 15:33
@renovate renovate bot force-pushed the renovate/all-dev branch from 1147f06 to 559af56 Compare December 21, 2024 18:28
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