Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2025

This PR contains the following updates:

Package Change Age Confidence
@changesets/cli (source) ^2.29.4 -> ^2.29.7 age confidence
@playwright/test (source) ^1.53.0 -> ^1.56.0 age confidence
@types/node (source) ^22.15.31 -> ^22.18.8 age confidence
@typescript-eslint/eslint-plugin (source) ^8.34.0 -> ^8.46.0 age confidence
@vitest/eslint-plugin ^1.2.2 -> ^1.3.16 age confidence
@vue/eslint-config-typescript ^14.5.0 -> ^14.6.0 age confidence
eslint (source) ^9.28.0 -> ^9.37.0 age confidence
eslint-import-resolver-typescript ^4.4.3 -> ^4.4.4 age confidence
eslint-plugin-import-x ^4.15.2 -> ^4.16.1 age confidence
eslint-plugin-n ^17.19.0 -> ^17.23.1 age confidence
eslint-plugin-playwright ^2.2.0 -> ^2.2.2 age confidence
eslint-plugin-vue (source) ^10.2.0 -> ^10.5.0 age confidence
globals ^16.2.0 -> ^16.4.0 age confidence
jiti ^2.4.2 -> ^2.6.1 age confidence
vitest (source) ^3.2.3 -> ^3.2.4 age confidence
vue (source) ^3.5.16 -> ^3.5.22 age confidence
vue-tsc (source) ^2.2.10 -> ^2.2.12 age confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.29.7

Compare Source

Patch Changes

v2.29.6

Compare Source

Patch Changes

v2.29.5

Compare Source

Patch Changes
microsoft/playwright (@​playwright/test)

v1.56.0

Compare Source

v1.55.1

Compare Source

Highlights

#​37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.
#​37147 - [Regression]: Internal error: step id not found.
#​37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects.
#​37137 - Revert "fix(a11y): track inert elements as hidden".

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.55.0

Compare Source

v1.54.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.1

Compare Source

v1.54.0

Compare Source

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { noSnippets: true }]]
    });
  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option -gv has been removed from the npx playwright test command. Use --grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Use npx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.53.2

Compare Source

v1.53.1

Compare Source

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

v8.46.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unsafe-member-access] add allowOptionalChaining option (#​11659)
  • rule-schema-to-typescript-types: clean up and make public (#​11633)
🩹 Fixes
  • eslint-plugin: [prefer-readonly-parameter-types] ignore tagged primitives (#​11660)
  • typescript-estree: forbid abstract method and accessor to have implementation (#​11657)
  • eslint-plugin: removed error type previously deprecated (#​11674)
  • eslint-plugin: [no-deprecated] ignore deprecated export imports (#​11603)
  • eslint-plugin: [unbound-method] improve wording around this: void and binding (#​11634)
  • rule-tester: deprecate TestCaseError#type and LintMessage#nodeType (#​11628)
  • eslint-plugin: [no-floating-promises] remove excess parentheses in suggestions (#​11487)
❤️ Thank You

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

v8.45.0

Compare Source

🚀 Features
  • eslint-plugin: expose rule name via RuleModule interface (#​11616)
🩹 Fixes
  • eslint-plugin: [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (#​11614)
  • eslint-plugin: [no-base-to-string] check if superclass is ignored (#​11617)
❤️ Thank You

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

v8.44.1

Compare Source

🩹 Fixes
  • eslint-plugin: [await-thenable] should not report passing values to promise aggregators which may be a promise in an array literal (#​11611)
  • eslint-plugin: [no-unsafe-enum-comparison] support unions of literals (#​11599)
  • eslint-plugin: [no-base-to-string] make ignoredTypeNames match type names without generics (#​11597)
❤️ Thank You

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

v8.44.0

Compare Source

🚀 Features
  • eslint-plugin: [await-thenable] report invalid (non-promise) values passed to promise aggregator methods (#​11267)
🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-conversion] ignore enum members (#​11490)
❤️ Thank You

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

v8.43.0

Compare Source

🚀 Features
  • typescript-estree: disallow empty type parameter/argument lists (#​11563)
🩹 Fixes
  • eslint-plugin: [prefer-return-this-type] don't report an error when returning a union type that includes a classType (#​11432)
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#​11359)
  • eslint-plugin: [no-floating-promises] allowForKnownSafeCalls now supports function names (#​11423, #​11430)
  • eslint-plugin: [consistent-type-exports] fix declaration shadowing (#​11457)
  • eslint-plugin: [no-unnecessary-type-conversion] only report ~~ on integer literal types (#​11517)
  • scope-manager: exclude Program from DefinitionBase node types (#​11469)
  • eslint-plugin: [no-non-null-assertion] do not suggest optional chain on LHS of assignment (#​11489)
  • type-utils: add union type support to TypeOrValueSpecifier (#​11526)
❤️ Thank You

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

v8.42.0

Compare Source

🩹 Fixes
  • deps: update eslint monorepo to v9.33.0 (#​11482)

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

v8.41.0

Compare Source

🩹 Fixes
  • deps: update dependency prettier to v3.6.2 (#​11496)

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

v8.40.0

Compare Source

🚀 Features
  • typescript-estree: forbid invalid keys in EnumMember (#​11232)
❤️ Thank You

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

v8.39.1

Compare Source

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

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

v8.39.0

Compare Source

🚀 Features
  • eslint-plugin: [only-throw-error] support yield/await expressions (#​11417)
  • eslint-plugin: add no-unnecessary-type-conversion to strict-type-checked ruleset (#​11427)
  • update to TypeScript 5.9.2 (#​11445)
  • eslint-plugin: [naming-convention] add enumMember PascalCase default option (#​11127)
🩹 Fixes
  • eslint-plugin: [no-unsafe-assignment] add an unsafeObjectPattern message (#​11403)
  • eslint-plugin: [prefer-optional-chain] ignore check option for most RHS of a chain (#​11272)
❤️ Thank You

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

v8.38.0

Compare Source

🩹 Fixes
  • disallow extra properties in rule options (#​11397)
  • eslint-plugin: [consistent-generic-constructors] resolve conflict with isolatedDeclarations if enabled in constructor option (#​11351)
❤️ Thank You

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

v8.37.0

Compare Source

🩹 Fixes
  • eslint-plugin: [unified-signatures] fix false positives for ignoreOverloadsWithDifferentJSDoc option (#​11381)
❤️ Thank You

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

v8.36.0

Compare Source

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

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

v8.35.1

Compare Source

🩹 Fixes
  • remove prettier from eslint-plugin (#​11339)
❤️ Thank You

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

v8.35.0

Compare Source

🚀 Features
  • eslint-plugin: [no-base-to-string] add checkUnknown Option (#​11128)
❤️ Thank You

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

v8.34.1

Compare Source

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

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

vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.3.16

Compare Source

v1.3.15

Compare Source

v1.3.14

Compare Source

v1.3.13

Compare Source

v1.3.12

Compare Source

v1.3.10

Compare Source

v1.3.9

Compare Source

v1.3.8

Compare Source

v1.3.7

Compare Source

v1.3.6

Compare Source

v1.3.5

Compare Source

Bug Fixes
  • docs: fix incorrect rule name in vitest/require-mock-type-parameters example (#​740) (d48741a)
Features
  • prefer-describe-function-title: Check for unnecessary .name (#​744) (5f1fe04)

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.3.4...v1.3.5

v1.3.4

Compare Source

v1.3.3

Compare Source

v1.3.2

Compare Source

v1.3.1

Compare Source

v1.3.0: v1.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.2.7...v1.3.0

v1.2.7

Compare Source

v1.2.5

Compare Source

v1.2.4

Compare Source

v1.2.3

Compare Source

What's Changed

  • Add no-importing-from-vitest-globals and prefer-importing-from-vitest-globals rules by @​samuelko123 in #​711

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.2.2...v1.2.3

vuejs/eslint-config-typescript (@​vue/eslint-config-typescript)

v14.6.0

Compare Source

New Features

  • feat: allowComponentTypeUnsafety option to configure the strictness of no-unsafe-* rules by @​haoqunjiang in #​185

Full Changelog: vuejs/eslint-config-typescript@v14.5.1...v14.6.0

v14.5.1

Compare Source

Notable Changes

  • fix: ensure there's only one instance of eslint-plugin-vue in the config, to avoid Cannot redefine plugin "vue" errors by @​haoqunjiang in #​184

Full Changelog: vuejs/eslint-config-typescript@v14.5.0...v14.5.1

eslint/eslint (eslint)

v9.37.0

Compare Source

v9.36.0

Compare Source

v9.35.0

Compare Source

v9.34.0

Compare Source

v9.33.0

Compare Source

v9.32.0

Compare Source

v9.31.0

Compare Source

v9.30.1

Compare Source

v9.30.0

Compare Source

v9.29.0

Compare Source

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v4.4.4

Compare Source

Patch Changes
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.16.1

Compare Source

Patch Changes

v4.16.0

Compare Source

Minor Changes
Patch Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.23.1

Compare Source

🩹 Fixes
  • node-builtins-modules/tls.js: Update minimal version (#​484) (fe94432)
📚 Documentation
  • improve clarity of no-missing-import and no-missing-require (#​455) (92ea876)

v17.23.0

Compare Source

🌟 Features

v17.22.0

Compare Source

🌟 Features
🩹 Fixes
  • ci: bump markdowncli-lint version (#​468) (91a56d0)
  • no-unsupported: URL.createObjectURL, URL.revokeObjectURL are supported (#​471) (844155c)

v17.21.3

Compare Source

🩹 Fixes

v17.21.2

Compare Source

🧹 Chores

v17.21.1

Compare Source

🩹 Fixes
  • ci: Ignore type test failures for types present in ESLint 8 that we removed in ESLint 9.31.0 (#​460) (76f8150)
  • no-restricted-require: Handle .. paths (#​458) (34719e8)

v17.21.0

Compare Source

🌟 Features
🩹 Fixes
  • correctly handle version ranges in prefer-node-protocol (#​454) (d60439d)
🧹 Chores

v17.20.0

Compare Source

🌟 Features
playwright-community/eslint-plugin-playwright (eslint-plugin-playwright)

v2.2.2

Compare Source

Bug Fixes
  • prefer-web-first-assertions: Fix false positive (#​384) (38a559e)
  • valid-test-tags: disallow extra properties in rule options and add to recommended (#​381) (4762bbd)

v2.2.1

Compare Source

Features
  • Support addInitScript in no-unsafe-references
  • Add toContainClass method
  • Add valid-test-tags rule
  • Add no-wait-for-navigation rule
Bug Fixes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 added the dependencies Pull requests that update a dependency file label Jun 16, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from d7273fb to ce311ca Compare June 20, 2025 07:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from cd5a640 to 96fbb5c Compare June 30, 2025 19:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 49452b5 to 68f507c Compare July 7, 2025 19:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 58e2cfc to 335c82f Compare July 11, 2025 22:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 55d7fea to 74d4e12 Compare September 9, 2025 21:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 329fc7c to 46b7144 Compare September 19, 2025 16:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from a07155b to 33f390e Compare September 26, 2025 00:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from d9c4f14 to f51fb04 Compare October 6, 2025 16:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f51fb04 to 98e0ef3 Compare October 6, 2025 20:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants