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 non-major dependencies #44

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 24, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) ^2.28.0 -> ^2.28.1 age adoption passing confidence
@playwright/test (source) ^1.49.1 -> ^1.51.0 age adoption passing confidence
@types/node (source) ^22.10.7 -> ^22.13.10 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^8.24.1 -> ^8.26.0 age adoption passing confidence
@vitest/eslint-plugin ^1.1.25 -> ^1.1.36 age adoption passing confidence
@vue/eslint-config-prettier ^10.1.0 -> ^10.2.0 age adoption passing confidence
@vue/eslint-config-typescript ^14.3.0 -> ^14.5.0 age adoption passing confidence
eslint (source) ^9.20.1 -> ^9.22.0 age adoption passing confidence
eslint (source) ^9.18.0 -> ^9.22.0 age adoption passing confidence
eslint-import-resolver-typescript ^3.8.2 -> ^3.8.3 age adoption passing confidence
eslint-plugin-n ^17.15.1 -> ^17.16.2 age adoption passing confidence
eslint-plugin-playwright ^2.1.0 -> ^2.2.0 age adoption passing confidence
eslint-plugin-vue (source) ^9.32.0 -> ^9.33.0 age adoption passing confidence
pinia ^2.3.0 -> ^2.3.1 age adoption passing confidence
vitest (source) ^2.1.8 -> ^2.1.9 age adoption passing confidence
vue-tsc (source) ^2.2.0 -> ^2.2.8 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.28.1

Compare Source

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

v1.51.0

Compare Source

v1.50.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/34483 - [Feature]: single aria snapshot for different engines/browsershttps://github.com/microsoft/playwright/issues/344977 - [Bug]: Firefox not handling keepalive: true fetch requesthttps://github.com/microsoft/playwright/issues/3450404 - [Bug]: update snapshots not creating good difhttps://github.com/microsoft/playwright/issues/34507507 - [Bug]: snapshotPathTemplate doesnt work when multiple projehttps://github.com/microsoft/playwright/issues/344624462 - [Bug]: updateSnapshots "changed" throws an error

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

  • New option pathTemplate for toHaveScreenshot and toMatchAriaSnapshot assertions in the testConfig.expect configuration.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.26.0

Compare Source

🚀 Features
  • eslint-plugin: [unified-signatures] support ignoring overload signatures with different JSDoc comments (#​10781)
  • eslint-plugin: [explicit-module-boundary-types] add an option to ignore overload implementations (#​10889)
  • eslint-plugin: [no-unused-var] handle implicit exports in declaration files (#​10714)
  • support TypeScript 5.8 (#​10903)
  • eslint-plugin: [no-unnecessary-type-parameters] special case tuples and parameter location arrays as single-use (#​9536)
🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] handle unknown (#​10875)
  • eslint-plugin: [no-invalid-void-type] report accessor properties with an invalid void type (#​10864)
  • eslint-plugin: [unified-signatures] does not differentiate truly private methods (#​10806)
❤️ Thank You

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

v8.25.0

Compare Source

🚀 Features
  • eslint-plugin: [no-misused-spread] add suggestions (#​10719)
🩹 Fixes
  • eslint-plugin: [prefer-nullish-coalescing] report on chain expressions in a ternary (#​10708)
  • eslint-plugin: [no-deprecated] report usage of deprecated private identifiers (#​10844)
  • eslint-plugin: [unified-signatures] handle getter-setter (#​10818)
❤️ Thank You

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

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

v1.1.36

Compare Source

Bug Fixes
  • consistent-test-filename: match allTestPattern against full file path (#​674) (97dcb0f)

v1.1.35

Compare Source

Bug Fixes

v1.1.34

Compare Source

v1.1.33

Compare Source

v1.1.32

Compare Source

v1.1.31

Compare Source

Bug Fixes
  • require-mock-type-parameters: fixed checking of type annotation (#​661) (20a56a7)

v1.1.30

Compare Source

v1.1.29

Compare Source

Bug Fixes

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.28...v1.1.29

v1.1.28

Compare Source

Bug Fixes

v1.1.27

Compare Source

Features

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.26...v1.1.27

v1.1.26

Compare Source

Features

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.25...v1.1.26

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

v10.2.0

Compare Source

New Features

Full Changelog: vuejs/eslint-config-prettier@v10.1.0...v10.2.0

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

v14.5.0

Compare Source

What's Changed

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

v14.4.0

Compare Source

What's Changed

Full Changelog: vuejs/eslint-config-typescript@v14.3.0...v14.4.0

eslint/eslint (eslint)

v9.22.0

Compare Source

v9.21.0

Compare Source

Features
Bug Fixes
  • db5340d fix: update missing plugin message template (#​19445) (Milos Djermanovic)
  • d8ffdd4 fix: do not exit process on rule crash (#​19436) (Francesco Trotta)
Documentation
  • c5561ea docs: Update README (GitHub Actions Bot)
  • 80b0485 docs: replace var with let and const in rule example (#​19434) (Tanuj Kanti)
  • f67d5e8 docs: Update README (GitHub Actions Bot)
  • 75afc61 docs: Update README (GitHub Actions Bot)
  • 0636cab docs: Update Eleventy from v2 to v3 (#​19415) (Amaresh S M)
  • dd7d930 docs: Update README (GitHub Actions Bot)
Chores
  • a8c9a9f chore: update @eslint/eslintrc and @eslint/js (#​19453) (Francesco Trotta)
  • 265e0cf chore: package.json update for @​eslint/js release (Jenkins)
  • 3401b85 test: add test for Rule.ReportDescriptor type (#​19449) (Francesco Trotta)
  • e497aa7 chore: update rewrite dependencies (#​19448) (Francesco Trotta)
  • dab5478 chore: better error message for missing plugin in config (#​19402) (Tanuj Kanti)
  • ebfe2eb chore: set js language for bug report issue config block (#​19439) (Josh Goldberg ✨)
  • 5fd211d test: processors can return subpaths (#​19425) (Milos Djermanovic)
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.8.3

Compare Source

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

v17.16.2

Compare Source

🩹 Fixes
  • Revert "feat: add support for ignoring sync methods from certain locations" (#​416) (0779e2f)

v17.16.1

Compare Source

🩹 Fixes
🧹 Chores
playwright-community/eslint-plugin-playwright (eslint-plugin-playwright)

v2.2.0

Compare Source

Features
Bug Fixes
  • expect-expert: report on test function identifier rather than body (#​337) (35e37a1)
  • prefer-comparison-matcher: Fix typo in docs (c269371), closes #​343
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.33.0

Compare Source

✨ Enhancements

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.32.0...v9.33.0

vuejs/pinia (pinia)

v2.3.1

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/language-tools (vue-tsc)

v2.2.8

Compare Source

Bug Fixes
  • revert "fix(language-core): validate v-model variable against model type"

v2.2.6

Compare Source

Features
  • feat(language-core): infer prop JSDoc from defineModel's leading comments (#​5211) - Thanks to @​KazariEX!
Bug Fixes
  • fix(language-core): map camelized prop name correctly (#​5207) - Thanks to @​KazariEX!
  • fix(component-meta): resolve defineModel options to collect default value (#​5209) - Thanks to @​KazariEX!
  • fix(language-core): avoid duplicate generation of defineExpose's codes - Thanks to @​KazariEX!
  • fix(language-core): generate camelized prop name for defineModel (#​5213) - Thanks to @​KazariEX!
  • fix(language-core): validate v-model variable against model type (#​5214) - Thanks to @​KazariEX!
  • fix(language-core): use keywords instead of semicolons to separate script sections (#​5217) - Thanks to @​KazariEX!
Other Changes
  • ci: auto close issues with can't reproduce label - Thanks to @​KazariEX!
  • refactor(language-core): defer the calculation of linkedCodeMappings offsets (#​5220) - Thanks to @​KazariEX!

v2.2.4

Compare Source

Features
  • feat(language-service): map sfc compiler errors outside the template inner content (#​5045) - Thanks to @​KazariEX!
  • feat(language-core): introduce options to control type inference of $attrs, $el, $refs and $slots (#​5135) - Thanks to @​KazariEX!
  • feat(language-core): enhance single root nodes collection (#​4819) - Thanks to @​KazariEX!
Bug Fixes
  • fix(language-core): move generateSfcBlockSection to the end to fix missing comma errors (#​5184) - Thanks to @​zhiyuanzmj!
  • fix(language-core): handle edge case of default slot name mismatch - Thanks to @​KazariEX!
  • fix(language-core): combine dollar variable keys from the upper level interface - Thanks to @​KazariEX!
  • fix(language-core): hoist the variables that may cause TS4081 (#​5192) - Thanks to @​KazariEX!
  • fix(language-core): adjust regex match for @vue-generic to improve offset calculation (#​5193) - Thanks to @​Gehbt!
  • fix(language-core): correct codegen of native element refs - Thanks to @​KazariEX!
  • fix(language-core): ignore latex block content (#​5151) - Thanks to @​KazariEX!
  • fix(language-core): do not emit undefined for model with default value (#​5198) - Thanks to @​RylanBueckert-Broadsign!
  • fix(language-service): typescript-semantic renaming first in style blocks (#​4685) - Thanks to @​KazariEX!
  • fix(typescript-plugin): prevent removed components from appearing in the completion list - Thanks to @​KazariEX!
Other Changes
  • refactor(language-core): drop invalid v-scope implemention - Thanks to @​KazariEX!
  • refactor(language-core): improve type declaration of v-for - Thanks to @​KazariEX!
  • test: enable declaration to track more errors - Thanks to @​KazariEX!
  • refactor(language-core): remove semantic highlight of style module names - Thanks to @​KazariEX!
  • chore(language-core): add docs for @vue-expect-error support (#​5176) - Thanks to @​machty!
  • ci: upload extension as artifact for each commit - Thanks to @​KazariEX!

v2.2.2

Compare Source

Features
  • feat(language-core): navigation support for $attrs, $slots, $refs and $el in the template (#​5056) - Thanks to @​KazariEX!
  • feat(language-service): support global directives completion (#​4989) - Thanks to @​KazariEX!
  • feat(language-core): type support of useAttrs (#​5106) - Thanks to @​KazariEX!
  • feat(language-core): add options for fine-grained configuration of strictTemplates (#​5138)
  • feat(language-service): display deprecated info of props in completion (#​5134) - Thanks to @​KazariEX!
  • feat(component-meta): collect destructured props defaults (#​5101) - Thanks to @​Akryum!
  • feat(language-core): add checkUnknownDirectives option (#​5141) - Thanks to @​KazariEX!
  • feat(language-core): support <script vapor> - Thanks to @​KazariEX!
Bug Fixes
  • fix(language-core): ignore ts errors in function-scoped declare expressions (#​5090) - Thanks to @​zhiyuanzmj!
  • fix(language-core, typescript-plugin): handle self-reference component correctly (#​5102) - Thanks to @​KazariEX!
  • fix(language-core): do not generate element for <template> with v-slot (#​5077) - Thanks to @​KazariEX!
  • fix(language-service): set code action kinds to avoid warning (#​5096) - Thanks to @​KazariEX!
  • fix(language-core): handle parentheses in v-for exp
  • fix(language-core): slot exp formatting virtual code syntax incorrect
  • fix(language-core): arrow function formatting virtual code syntax incorrect in interpolation
  • fix(language-core): improve multiple lines event formatting result
  • fix(language-core): prefer loc.source instead of node content
  • fix(language-core): intersect local $attrs with __VLS_ctx.$attrs (#​5113) - Thanks to @​KazariEX!
  • fix(language-core): only generate model modifiers for components - Thanks to @​KazariEX!
  • fix(language-plugin-pug): ignore duplicate attribute error of class (#​5100) - Thanks to @​KazariEX!
  • fix(language-core): align types of v-for with core (#​5084) - Thanks to @​KazariEX!
  • fix(language-core): map interpolation error with multiple variables correctly (#​5158) - Thanks to @​KazariEX!
  • fix(vscode): ask user to reload extension host when configuration changes (#​5160) - Thanks to @​typed-sigterm!
  • fix(typescript-plugin): update component names correctly for the first time - Thanks to @​KazariEX!
  • fix(language-core): add undefined to first param type of optional model emits (#​5171) - Thanks to @​KazariEX!
  • fix(language-core): intersect __VLS_slots with __VLS_ctx.$slots (#​5083) - Thanks to @​KazariEX!
  • fix(language-core): complete codegen of slot name prop (#​5139) - Thanks to @​KazariEX!
Other Changes
  • refactor(language-service): read ast from codegen instead of parsing it repeatedly (#​5086) - Thanks to @​KazariEX!
  • refactor(language-core): rewrite vueCompilerOptions resolution logic
  • refactor(component-meta): read scriptSetupRanges from codegen - Thanks to @​KazariEX!
  • refactor(component-meta): read node directly instead of creating sub ast - Thanks to @​KazariEX!
  • refactor(component-meta): read ast from sfc.script - Thanks to @​KazariEX!
  • refactor(language-core): generate the type of slots with function property (#​5173) - Thanks to @​KazariEX!
  • refactor(language-core): reduce codegen size of template returns - Thanks to @​KazariEX!
  • refactor(language-core): remove semantic highlight of directives - Thanks to @​KazariEX!
  • refactor: update alien-signals to 1.0.3 (#​5181) - Thanks to @​KazariEX!

Configuration

📅 Schedule: Branch creation - "* 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 Feb 24, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 946af30 to 862ed56 Compare March 2, 2025 13:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from f97d504 to 14c3ead Compare March 7, 2025 22:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 14c3ead to 58124b3 Compare March 8, 2025 09:51
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