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
@graphql-codegen/typescript (source) 4.0.9 -> 4.1.1 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript-operations (source) 4.2.3 -> 4.3.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
@total-typescript/ts-reset (source) 0.5.1 -> 0.6.1 age adoption passing confidence devDependencies minor
@types/node (source) 20.14.10 -> 20.17.6 age adoption passing confidence devDependencies minor
@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
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.4.0 age adoption passing confidence devDependencies minor
pkg-pr-new (source) ^0.0.30 -> 0.0.30 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.6.3 age adoption passing confidence devDependencies minor
typescript (source) 5.4.5 -> 5.6.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.10.0 age adoption passing confidence devDependencies minor
webpack 5.94.0 -> 5.96.1 age adoption passing confidence devDependencies minor
ws ^8.18.0 -> 8.18.0 age adoption passing confidence devDependencies pin

Release Notes

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

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.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
parcel-bundler/watcher (@​parcel/watcher)

v2.5.0

Compare Source

Added

  • Support 32-bit arm musl platform
  • Support npm --build-from-source flag to optionally build from source instead of using prebuilt packages. Can be used in conjunction with --no-optional to prevent installing platform-specific dependencies.

Fixed

  • Fix use after free errors (#​177)
  • Fix deadlock between Watcher and Debounce threads (#​189)
  • Avoid open() calls on stat() failures on macOS to prevent security dialogs (#​186)
testing-library/jest-dom (@​testing-library/jest-dom)

v6.6.3

Compare Source

v6.6.2

Compare Source

Bug Fixes

v6.6.1

Compare Source

v6.6.0

Compare Source

v6.5.0

Compare Source

v6.4.8

Compare Source

v6.4.7

Compare Source

total-typescript/ts-reset (@​total-typescript/ts-reset)

v0.6.1

Patch Changes
  • 757be40: Fixed a bug where creating an empty map would no longer infer types correctly.

v0.6.0

Minor Changes
  • 6574858: Added a rule, /map-constructor, to default Map to Map<unknown, unknown> when no arguments are passed to the constructor.

    Before, you'd get any for both key and value types. Now, the result of Map.get is unknown instead of any:

    const userMap = new Map();
    
    const value = userMap.get("matt"); // value: unknown

    This now is part of the recommended rules.

  • 5bf3a15: Added a rule, /promise-catch, to change the catch method to take unknown instead of any as an argument.

    const promise = Promise.reject("error");
    
    // BEFORE
    
    promise.catch((error) => {
      console.error(error); // error is any!
    });
    
    // AFTER
    
    promise.catch((error) => {
      console.error(error); // error is unknown!
    });
Patch Changes
  • 53cee4f: author: @​none23

    Fixed a bug where running .filter on a union of arrays would not work.

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.18.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib

  • eslint-plugin: [unbound-method] report on destructuring in function parameters

  • eslint-plugin: [no-duplicate-type-constituents] shouldn't report on error types

  • eslint-plugin: [strict-boolean-expressions] support branded booleans

❤️ Thank You
  • auvred
  • Oliver Salzburg
  • Vinccool96
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7

  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"

🩹 Fixes
  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more)

  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context

  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field

❤️ Thank You
  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

You can read about our versioning strategy and releases on our website.

v7.16.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-parameters] descend into all parts of mapped types in no-unnecessary-type-parameters
❤️ Thank You
  • Dan Vanderkam

You can read about our versioning strategy and releases on our website.

v7.16.0

Compare Source

🚀 Features
  • rule-tester: stricter rule test validations

  • eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule

  • eslint-plugin: add support for nested namespaces to unsafe-member-access

  • eslint-plugin: [no-floating-promises] add checkThenables option

🩹 Fixes
  • deps: update dependency @​eslint-community/regexpp to v4.11.0

  • eslint-plugin: [no-floating-promises] add suggestions to tests from #​9263 checkThenables

  • website: react key error on internal pages of website

  • eslint-plugin: [restrict-template-expressions] don't report tuples if allowArray option is enabled

❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

v7.15.0

Compare Source

🚀 Features
  • eslint-plugin: [array-type] detect Readonly<string[]> case

  • eslint-plugin: back-port new rules around empty object types from v8

🩹 Fixes
  • disable EXPERIMENTAL_useProjectService in disabled-type-checked shared config

  • eslint-plugin: [no-unsafe-return] differentiate a types-error any from a true any

  • eslint-plugin: [no-unsafe-call] differentiate a types-error any from a true any

❤️ Thank You
  • auvred
  • Kim Sang Du
  • rgehbt
  • Vinccool96

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.18.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.17.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.16.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.16.0

Compare Source

🩹 Fixes
❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.

v7.15.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

testing-library/eslint-plugin-jest-dom (eslint-plugin-jest-dom)

v5.5.0

Compare Source

Features
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.2

Compare Source

Fixed
  • [destructuring-assignment]: fix false negative when using typeof props.a (#​3835 @​golopot)
Changed
  • [Refactor] [destructuring-assignment]: use getParentStatelessComponent (#​3835 @​golopot)

v7.37.1

Compare Source

Fixed
Changed

v7.37.0

Compare Source

Added
Changed

v7.36.1

Compare Source

Fixed

v7.36.0

Compare Source

Added
Fixed
  • [function-component-definition], [boolean-prop-naming], [jsx-first-prop-new-line], [jsx-props-no-multi-spaces], propTypes: use type args (#​3629 @​HenryBrown0)
  • JSX pragma: fail gracefully (#​3632 @​ljharb)
  • [jsx-props-no-spreading]: add explicitSpread option to schema (#​3799 @​ljharb)
Changed

v7.35.2

Compare Source

Fixed
  • [jsx-curly-brace-presence]: avoid autofixing attributes with double quotes to a double quoted attribute ([#​3814][] @​ljharb)

undefined
[#​1000]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1000%0A[#​1002]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1002%0A[#​1005]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1005%0A[#​100]: https://github.com/jsx-eslint/eslint-plugin-react/issues/100%0A[#​1010]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1010%0A[#​1013]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1013%0A[#​1022]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1022%0A[#​1029]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1029%0A[#​102]: https://github.com/jsx-eslint/eslint-plugin-react/issues/102%0A[#​1034]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1034%0A[#​1038]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1038%0A[#​1041]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1041%0A[#​1043]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1043%0A[#​1046]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1046%0A[#​1047]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1047%0A[#​1050]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1050%0A[#​1053]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1053%0A[#​1057]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1057%0A[#​105]: https://github.com/jsx-eslint/eslint-plugin-react/issues/105%0A[#​1061]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1061%0A[#​1062]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1062%0A[#​1070]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1070%0A[#​1071]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1071%0A[#​1073]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1073%0A[#​1076]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1076%0A[#​1079]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1079%0A[#​1088]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1088%0A[#​1098]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1098%0A[#​1101]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1101%0A[#​1103]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1103%0A[#​110]: https://github.com/jsx-eslint/eslint-plugin-react/issues/110%0A[#​1116]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1116%0A[#​1117]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1117%0A[#​1119]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1119%0A[#​1121]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1121%0A[#​1122]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1122%0A[#​1123]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1123%0A[#​1130]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1130%0A[#​1131]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1131%0A[#​1132]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1132%0A[#​1134]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1134%0A[#​1135]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1135%0A[#​1139]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1139%0A[#​1148]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1148%0A[#​1149]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1149%0A[#​114]: https://github.com/jsx-eslint/eslint-plugin-react/pull/114%0A[#​1151]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1151%0A[#​1155]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1155%0A[#​1161]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1161%0A[#​1167]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1167%0A[#​1173]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1173%0A[#​1174]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1174%0A[#​1175]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1175%0A[#​1178]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1178%0A[#​1179]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1179%0A[#​117]: https://github.com/jsx-eslint/eslint-plugin-react/pull/117%0A[#​1180]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1180%0A[#​1183]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1183%0A[#​1189]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1189%0A[#​118]: https://github.com/jsx-eslint/eslint-plugin-react/issues/118%0A[#​1192]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1192%0A[#​1195]: [https://github.com/jsx-eslint/eslint-plugin-reac


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.


  • 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/build-angular@17.3.11
npm error Found: typescript@5.6.3
npm error node_modules/typescript
npm error   dev typescript@"5.6.3" from the root project
npm error   peerOptional typescript@">=4.9.5" from cosmiconfig@9.0.0
npm error   node_modules/cosmiconfig
npm error     cosmiconfig@"^9.0.0" from postcss-loader@8.1.1
npm error     node_modules/postcss-loader
npm error       postcss-loader@"8.1.1" from @angular-devkit/build-angular@17.3.11
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/build-angular@17.3.11
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: typescript@5.4.5
npm error node_modules/typescript
npm error   peer typescript@">=5.2 <5.5" from @angular-devkit/build-angular@17.3.11
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-11-17T22_45_57_245Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-11-17T22_45_57_245Z-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 2 times, most recently from 1950b67 to e414549 Compare September 7, 2024 09:46
@renovate renovate bot force-pushed the renovate/all-dev branch 2 times, most recently from a9c1ea1 to a502c67 Compare September 14, 2024 17:06
@renovate renovate bot force-pushed the renovate/all-dev branch 3 times, most recently from c39da89 to 47806b6 Compare September 28, 2024 10:21
@renovate renovate bot force-pushed the renovate/all-dev branch 4 times, most recently from 49b1bea to 5320139 Compare October 5, 2024 15:26
@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
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