Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/lucide 1.2.20 -> 1.2.32 age adoption passing confidence
@iconify/vue (source) 4.2.0 -> 4.3.0 age adoption passing confidence
@playwright/test (source) 1.49.1 -> 1.51.1 age adoption passing confidence
@rushstack/eslint-patch (source) 1.10.4 -> 1.11.0 age adoption passing confidence
@types/node (source) 22.10.5 -> 22.13.13 age adoption passing confidence
@vitejs/plugin-vue (source) 5.2.1 -> 5.2.3 age adoption passing confidence
autoprefixer 10.4.20 -> 10.4.21 age adoption passing confidence
axios (source) 1.7.9 -> 1.8.4 age adoption passing confidence
eslint-plugin-prettier 5.2.1 -> 5.2.5 age adoption passing confidence
eslint-plugin-vue (source) 9.32.0 -> 9.33.0 age adoption passing confidence
lint-staged 15.3.0 -> 15.5.0 age adoption passing confidence
pinia 2.3.0 -> 2.3.1 age adoption passing confidence
postcss (source) 8.4.49 -> 8.5.3 age adoption passing confidence
prettier (source) 3.4.2 -> 3.5.3 age adoption passing confidence
radix-vue 1.9.12 -> 1.9.17 age adoption passing confidence
typescript (source) 5.7.2 -> 5.8.2 age adoption passing confidence
vite (source) 5.4.11 -> 5.4.15 age adoption passing confidence
vitest (source) 1.6.0 -> 1.6.1 age adoption passing confidence
vue-i18n (source) 9.14.2 -> 9.14.3 age adoption passing confidence
vue-tsc (source) 2.2.0 -> 2.2.8 age adoption passing confidence
zod (source) 3.24.1 -> 3.24.2 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.51.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/35093 - [Regression]: TimeoutOverflowWarning: 2149630.634 does not fit into a 32-bit signed integer
https://github.com/microsoft/playwright/issues/35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

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
microsoft/rushstack (@​rushstack/eslint-patch)

v1.11.0

Compare Source

Tue, 11 Mar 2025 02:12:33 GMT

Minor changes
  • Bump the @typescript-eslint/* packages to add support for TypeScript 5.8.

v1.10.5

Compare Source

Tue, 07 Jan 2025 16:11:06 GMT

Patches
  • Fix a performance issue when locating ".eslint-bulk-suppressions.json".
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.2.3

v5.2.2

postcss/autoprefixer (autoprefixer)

v10.4.21

Compare Source

axios/axios (axios)

v1.8.4

Compare Source

Bug Fixes
  • buildFullPath: handle allowAbsoluteUrls: false without baseURL (#​6833) (f10c2e0)
Contributors to this release

v1.8.3

Compare Source

Bug Fixes
  • add missing type for allowAbsoluteUrls (#​6818) (10fa70e)
  • xhr/fetch: pass allowAbsoluteUrls to buildFullPath in xhr and fetch adapters (#​6814) (ec159e5)
Contributors to this release

v1.8.2

Compare Source

Bug Fixes
  • http-adapter: add allowAbsoluteUrls to path building (#​6810) (fb8eec2)
Contributors to this release

v1.8.1

Compare Source

Bug Fixes
  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#​6789) (36a5a62)
Contributors to this release

v1.8.0

Compare Source

Bug Fixes
Features
Reverts
BREAKING CHANGES
  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

1.7.9 (2024-12-04)

Reverts
Contributors to this release

1.7.8 (2024-11-25)

Bug Fixes
Contributors to this release

1.7.7 (2024-08-31)

Bug Fixes
  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#​6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#​5731) (364993f)
Contributors to this release

1.7.6 (2024-08-30)

Bug Fixes
Contributors to this release

1.7.5 (2024-08-23)

Bug Fixes
  • adapter: fix undefined reference to hasBrowserEnv (#​6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#​6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#​6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#​6533) (550d885)
Contributors to this release

1.7.4 (2024-08-13)

Bug Fixes
Contributors to this release

1.7.3 (2024-08-01)

Bug Fixes
Contributors to this release

1.7.2 (2024-05-21)

Bug Fixes
Contributors to this release

1.7.1 (2024-05-20)

Bug Fixes
  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#​6410) (733f15f)
Contributors to this release
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.5

Compare Source

Patch Changes

v5.2.4

Compare Source

Patch Changes

v5.2.3

Compare Source

Patch Changes

v5.2.2

Compare Source

Patch Changes
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

lint-staged/lint-staged (lint-staged)

v15.5.0

Compare Source

Minor Changes

Configuration

📅 Schedule: Branch creation - "on the 1st day of the month" (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 force-pushed the renovate/all-minor-patch branch 4 times, most recently from 5d4599d to 1f7f846 Compare February 9, 2025 14:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 9e9ee4b to aa5079d Compare February 15, 2025 18:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1b11bc0 to b339ada Compare February 23, 2025 14:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 8cb8a6b to 6e18991 Compare March 3, 2025 17:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from d2fe732 to c5aca5c Compare March 10, 2025 06:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from fdcb412 to d6fbb0f Compare March 17, 2025 17:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 81ae85a to d43bd6c Compare March 24, 2025 13:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d43bd6c to c658520 Compare March 25, 2025 10:49
@bramanda48 bramanda48 merged commit 4f6a788 into master Mar 26, 2025
5 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch March 26, 2025 08:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants