Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(deps): update all non-major dependencies #223

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

Merged
merged 1 commit into from
Mar 4, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 4, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.41.2 -> ^1.42.1 age adoption passing confidence
@tanstack/vue-query (source) ^5.24.1 -> ^5.24.7 age adoption passing confidence
@types/eslint (source) ^8.56.3 -> ^8.56.5 age adoption passing confidence
@types/node (source) ^20.11.20 -> ^20.11.24 age adoption passing confidence
@vueuse/core (source) ^10.8.0 -> ^10.9.0 age adoption passing confidence
autoprefixer ^10.4.17 -> ^10.4.18 age adoption passing confidence
chromedriver ^122.0.3 -> ^122.0.4 age adoption passing confidence
eslint-plugin-playwright ^1.3.1 -> ^1.5.1 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.0.15 -> ^7.0.16 age adoption passing confidence
vue (source) ^3.4.20 -> ^3.4.21 age adoption passing confidence
vue-i18n (source) ^9.9.1 -> ^9.10.1 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.42.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29732 - [Regression]: HEAD requests to webServer.url since v1.42.0https://github.com/microsoft/playwright/issues/297466 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin imporhttps://github.com/microsoft/playwright/issues/2973939 - [Bug]: Component tests fails when imported a module with a dot in a nahttps://github.com/microsoft/playwright/issues/29731731 - [Regression]: 1.42.0 breaks some import statemehttps://github.com/microsoft/playwright/issues/297609760 - [Bug]: Possible regression with chained locators in v1.42

Browser Versions
  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.42.0

Compare Source

New APIs

  • Test tags

    New tag syntax for adding tags to the tests (@​-tokens in the test title are still supported).

    test('test customer login', { tag: ['@​fast', '@​login'] }, async ({ page }) => {
      // ...
    });

    Use --grep command line option to run only tests with certain tags.

    npx playwright test --grep @​fast
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    test('test full report', {
      annotation: [
        { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
        { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
      ],
    }, async ({ page }) => {
      // ...
    });
  • page.addLocatorHandler()

    New method page.addLocatorHandler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears.

    // Setup the handler.
    await page.addLocatorHandler(
        page.getByRole('heading', { name: 'Hej! You are in control of your cookies.' }),
        async () => {
          await page.getByRole('button', { name: 'Accept all' }).click();
        });
    // Write the test as usual.
    await page.goto('https://www.ikea.com/');
    await page.getByRole('link', { name: 'Collection of blue and white' }).click();
    await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible();
  • Project wildcard filter
    Playwright command line flag now supports '*' wildcard when filtering by project.

    npx playwright test --project='*mobile*'
  • Other APIs

    • expect(callback).toPass({ timeout })
      The timeout can now be configured by expect.toPass.timeout option globally or in project config

    • electronApplication.on('console')
      electronApplication.on('console') event is emitted when Electron main process calls console API methods.

      electronApp.on('console', async msg => {
        const values = [];
        for (const arg of msg.args())
          values.push(await arg.jsonValue());
        console.log(...values);
      });
      await electronApp.evaluate(() => console.log('hello', 5, { foo: 'bar' }));
    • page.pdf() accepts two new options tagged and outline.

Breaking changes

Mixing the test instances in the same suite is no longer supported. Allowing it was an oversight as it makes reasoning about the semantics unnecessarily hard.

const test = baseTest.extend({ item: async ({}, use) => {} });
baseTest.describe('Admin user', () => {
  test('1', async ({ page, item }) => {});
  test('2', async ({ page, item }) => {});
});

Announcements

  • ⚠️ Ubuntu 18 is not supported anymore.

Browser Versions

  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123
TanStack/query (@​tanstack/vue-query)

v5.24.7

Compare Source

Version 5.24.7 - 3/3/2024, 9:24 PM

Changes
Fix
  • query-core: make sure accessing one property on a query result in useQueries tracks properties across all observers (#​7014) (5e64873) by Dominik Dorfmeister
Docs
Test
Packages

v5.24.6

Compare Source

Version 5.24.6 - 3/2/2024, 8:30 PM

Changes
Fix
  • core: do not rely on dataUpdatedAt truthiness (#​7008) (3191ae8) by Dominik Dorfmeister
Packages

v5.24.5

Compare Source

Version 5.24.5 - 3/2/2024, 8:17 PM

Changes
Fix
  • types: make getQueryState types work with queryOptions (#​7010) (93d442c) by Dominik Dorfmeister
Packages

v5.24.2

Compare Source

Version 5.24.2 - 3/2/2024, 1:10 PM

Changes
Fix
Refactor
  • switch typeof undefined checks with strict comparison of the value undefined (#​7006) (11e9650) by Dominik Dorfmeister
  • *: Import noop function from utils (#​6964) (b7b5096) by Sol Lee
Chore
  • fix lint (55782ae) by Dominik Dorfmeister
  • angular-query: disable cache in Angular examples (#​6970) (ef3a0df) by Arnoud
Ci
Docs
  • Updated installation commands with bun package manger (#​6971) (d83aa27) by Ekam Ahuja
Test
Packages
vueuse/vueuse (@​vueuse/core)

v10.9.0

Compare Source

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

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).
giggio/node-chromedriver (chromedriver)

v122.0.4

Compare Source

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

v1.5.1

Compare Source

Bug Fixes
  • require-hook: False positive when using new options argument (8a06748)
  • valid-describe-callback: False positive when using new options argument (c25d200), closes #​266
Documentation
  • Add missing URLs to rules (26998b5)

v1.5.0

Compare Source

Features
Bug Fixes
  • no-useless-not: Add support for visible and enabled options (e97a62b)
Documentation
  • no-standalone-expect: Improve documentation around best practices (95fcfd8)

v1.4.2

Compare Source

Bug Fixes
  • valid-describe-callback: False positive with test.describe.configure (91988d5)
Tests
  • Add more test cases test configuration (6bc2576)

v1.4.1

Compare Source

Bug Fixes
  • valid-describe-callback: Fix false negatives (dd1db89)
  • valid-title: False positives with test.use, test.describe.configure, and test.slow (33b2905), closes #​258
  • valid-title: Fix more false positives and reduce future chance of error (3e99e55)
Documentation

v1.4.0

Compare Source

Features
  • Add valid-describe-callback rule (c0bd18e)
  • Add valid-expect-in-promise rule (cbf356d)
  • Add require-to-throw-message rule (3bb8c6a)
Tests
  • require-hook: Add more test cases (7258d98)
  • require-hook: Add test for valid test.use usage (13141cc)
Refactoring

This release brings with it some major refactoring to the internals of the plugin to improve consistency, performance, and future enhancements. This should not cause any issues as we have a very extensive test suite, but if you encounter any issues, please let us know!

vuejs/devtools-next (vite-plugin-vue-devtools)

v7.0.16

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core (vue)

v3.4.21

Compare Source

Bug Fixes
intlify/vue-i18n-next (vue-i18n)

v9.10.1

Compare Source

This changelog is generated by GitHub Releases

What's Changed

⚡ Improvement Features
📝️ Documentations

New Contributors

Full Changelog: intlify/vue-i18n@v9.10.0...v9.10.1

v9.10.0

Compare Source

This changelog is generated by GitHub Releases

What's Changed

🌟 Features
📝️ Documentations

New Contributors

Full Changelog: intlify/vue-i18n@v9.9.1...v9.10.0


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 4, 2024
@Yordan-Ramchev Yordan-Ramchev merged commit 410f333 into main Mar 4, 2024
@Yordan-Ramchev Yordan-Ramchev deleted the renovate/all-minor-patch branch March 4, 2024 06:26
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.

1 participant