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 (minor) #293

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/ui (source) ^2.20.0 -> ^2.21.0 age adoption passing confidence
@nuxtjs/critters ^0.7.2 -> ^0.8.0 age adoption passing confidence
@playwright/test (source) 1.48.2 -> 1.50.1 age adoption passing confidence
@vueuse/nuxt (source) ^12.3.0 -> ^12.7.0 age adoption passing confidence
pnpm (source) 10.2.1 -> 10.4.0 age adoption passing confidence
vue-tsc (source) 2.1.10 -> 2.2.2 age adoption passing confidence

Release Notes

nuxt/ui (@​nuxt/ui)

v2.21.0

Compare Source

🚀 Features

🐛 Bug Fixes

New Contributors

Full Changelog: nuxt/ui@v2.20.0...v2.21.0

nuxt-modules/critters (@​nuxtjs/critters)

v0.8.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
microsoft/playwright (@​playwright/test)

v1.50.1

Compare Source

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.

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

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions
  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.49.0

Compare Source

vueuse/vueuse (@​vueuse/nuxt)

v12.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v12.6.1

Compare Source

No significant changes

    View changes on GitHub

v12.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v12.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
pnpm/pnpm (pnpm)

v10.4.0

Compare Source

Minor Changes
  • pnpm approve-builds --global works now for allowing dependencies of globally installed packages to run postinstall scripts.

  • The pnpm add command now supports a new flag, --allow-build, which allows building the specified dependencies. For instance, if you want to install a package called bundle that has esbuild as a dependency and want to allow esbuild to run postinstall scripts, you can run:

    pnpm --allow-build=esbuild add bundle
    

    This will run esbuild's postinstall script and also add it to the pnpm.onlyBuiltDependencies field of package.json. So, esbuild will always be allowed to run its scripts in the future.

    Related PR: #​9086.

  • The pnpm init command adds a packageManager field with the current version of pnpm CLI #​9069. To disable this behaviour, set the init-package-manager setting to false.

Patch Changes
  • pnpm approve-builds should work after two consecutive pnpm install runs #​9083.
  • Fix instruction for updating pnpm with corepack #​9101.
  • The pnpm version specified by packageManager cannot start with v.

v10.3.0

Compare Source

Minor Changes
  • Added a new setting called strict-dep-builds. When enabled, the installation will exit with a non-zero exit code if any dependencies have unreviewed build scripts (aka postinstall scripts) #​9071.
Patch Changes
  • Fix a false negative of verify-deps-before-run after pnpm install --production|--no-optional #​9019.
  • Print the warning about blocked installation scripts at the end of the installation output and make it more prominent.
vuejs/language-tools (vue-tsc)

v2.2.2

Compare Source

v2.2.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

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.

Copy link

codesandbox bot commented Nov 18, 2024

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Copy link

vercel bot commented Nov 18, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nuxt-new ❌ Failed (Inspect) Feb 16, 2025 8:44pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 69dc2cc to 014a886 Compare November 19, 2024 03:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 014a886 to bb819dc Compare November 19, 2024 19:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bb819dc to 0b01522 Compare November 20, 2024 00:42
@renovate renovate bot changed the title chore(deps): update dependency @playwright/test to v1.49.0 chore(deps): update all non-major dependencies (minor) Nov 20, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0b01522 to 5f2e338 Compare November 20, 2024 14:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f2e338 to 84fdc27 Compare November 20, 2024 17:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 84fdc27 to 29e1b26 Compare November 21, 2024 11:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 29e1b26 to e96939c Compare November 22, 2024 05:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 72ca191 to 3a4e0db Compare February 7, 2025 14:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3a4e0db to b8d3d17 Compare February 10, 2025 15:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b8d3d17 to afc866a Compare February 11, 2025 02:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from afc866a to 51e68ca Compare February 14, 2025 01:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 51e68ca to 3d79de7 Compare February 14, 2025 09:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3d79de7 to 984a005 Compare February 15, 2025 13:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 984a005 to 7dbc817 Compare February 15, 2025 16:52
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