Skip to content

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

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
Jun 8, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 15, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.33.0 -> ^1.34.3 age adoption passing confidence
@types/eslint (source) ^8.37.0 -> ^8.40.0 age adoption passing confidence
@types/node (source) ^18.16.8 -> ^18.16.16 age adoption passing confidence
@vitejs/plugin-vue (source) ^4.1.0 -> ^4.2.3 age adoption passing confidence
chromedriver ^112.0.0 -> ^112.0.1 age adoption passing confidence
cypress ^12.12.0 -> ^12.14.0 age adoption passing confidence
jsdom ^22.0.0 -> ^22.1.0 age adoption passing confidence
nightwatch (source) ^2.6.20 -> ^2.6.21 age adoption passing confidence
pinia ^2.0.36 -> ^2.1.3 age adoption passing confidence
vite (source) ^4.3.5 -> ^4.3.9 age adoption passing confidence
vitest ^0.31.0 -> ^0.32.0 age adoption passing confidence
vue (source) ^3.3.2 -> ^3.3.4 age adoption passing confidence
vue (source) ^3.2.47 -> ^3.3.4 age adoption passing confidence
vue-router ^4.2.0 -> ^4.2.2 age adoption passing confidence
vue-tsc ^1.6.4 -> ^1.6.5 age adoption passing confidence

Release Notes

Microsoft/playwright

v1.34.3

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/23228 - [BUG] Getting "Please install @​playwright/test package..." after upgrading from 1.34.0 to 1.34.1

Browser Versions

  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113

v1.34.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/23225 - [BUG] VSCode Extension broken with Playwright 1.34.1

Browser Versions

  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113

v1.34.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/23186 - [BUG] Container image for v1.34.0 missing library for webkithttps://github.com/microsoft/playwright/issues/232066 - [BUG] Unable to install supported browsers for v1.34.0 from playwright-corhttps://github.com/microsoft/playwright/issues/2320707 - [BUG] importing ES Module JSX component is broken since 1.34

Browser Versions

  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113

v1.34.0

Compare Source

Highlights
  • UI Mode now shows steps, fixtures and attachments:

  • New property testProject.teardown to specify a project that needs to run after this
    and all dependent projects have finished. Teardown is useful to cleanup any resources acquired by this project.

    A common pattern would be a setup dependency with a corresponding teardown:

    // playwright.config.ts
    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      projects: [
        {
          name: 'setup',
          testMatch: /global.setup\.ts/,
          teardown: 'teardown',
        },
        {
          name: 'teardown',
          testMatch: /global.teardown\.ts/,
        },
        {
          name: 'chromium',
          use: devices['Desktop Chrome'],
          dependencies: ['setup'],
        },
        {
          name: 'firefox',
          use: devices['Desktop Firefox'],
          dependencies: ['setup'],
        },
        {
          name: 'webkit',
          use: devices['Desktop Safari'],
          dependencies: ['setup'],
        },
      ],
    });
  • New method expect.configure to create pre-configured expect instance with its own defaults such as timeout and soft.

    const slowExpect = expect.configure({ timeout: 10000 });
    await slowExpect(locator).toHaveText('Submit');
    
    // Always do soft assertions.
    const softExpect = expect.configure({ soft: true });
  • New options stderr and stdout in testConfig.webServer to configure output handling:

    // playwright.config.ts
    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      // Run your local dev server before starting the tests
      webServer: {
        command: 'npm run start',
        url: 'http://127.0.0.1:3000',
        reuseExistingServer: !process.env.CI,
        stdout: 'pipe',
        stderr: 'pipe',
      },
    });
  • New locator.and() to create a locator that matches both locators.

    const button = page.getByRole('button').and(page.getByTitle('Subscribe'));
  • New events browserContext.on('console') and browserContext.on('dialog') to subscribe to any dialogs
    and console messages from any page from the given browser context. Use the new methods consoleMessage.page()
    and dialog.page() to pin-point event source.

⚠️ Breaking changes
  • npx playwright test no longer works if you install both playwright and @playwright/test. There's no need
    to install both, since you can always import browser automation APIs from @playwright/test directly:

    // automation.ts
    import { chromium, firefox, webkit } from '@​playwright/test';
    /* ... */
  • Node.js 14 is no longer supported since it reached its end-of-life on April 30, 2023.

Browser Versions
  • Chromium 114.0.5735.26
  • Mozilla Firefox 113.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 113
  • Microsoft Edge 113
vitejs/vite-plugin-vue

v4.2.3

Compare Source

  • fix(types): widen allowed script options for 3.3 features (3ac08e4)

v4.2.2

Compare Source

  • fix: ignore generic attribute when generating script import (3170af1)
  • chore: bump vite (ffe74e5)
  • chore: bump vue version (799d875)
cypress-io/cypress

v12.14.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​12-14-0

v12.13.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​12-13-0

jsdom/jsdom

v22.1.0

Compare Source

  • Added crypto.randomUUID(). (jamesbvaughan)
  • Added DOMRect and DOMRectReadOnly.
  • Added AbortSignal.timeout().
  • Added abortSignal.throwIfAborted().
  • Added support for the submitter argument to the FormData constructor. (jenseng)
  • Improved getComputedStyle()'s results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt)
  • Updated Window's event handler properties (e.g. oncopy, ontouchstart, etc.) to reflect the latest list from the standard.
  • Fixed DOMParser-created documents to inherit their URL from the creating document.
nightwatchjs/nightwatch

v2.6.21

Compare Source

What's Changed

  • Return correct status code for waitForElementNotPresent (#​3678)
  • skipped tests have categorized as either user-marked or runtime-failed (#​3711)
  • REPL interface exits on error or failed expect assertion.
  • Added rerun functionality for failed test (#​3703)
  • Added describe name, hook timestamps to reporter (#​3680)
  • feat/retry-data: Added retry test data to global reporter (#​3712)
  • Always throw uncaught exceptions (#​3708)
  • Added a fix for assert.hasAttribute (#​3651)

Full Changelog: nightwatchjs/nightwatch@v2.6.20...v2.6.21

vuejs/pinia

v2.1.3

Compare Source

Please refer to CHANGELOG.md for details.

v2.1.2

Compare Source

Please refer to CHANGELOG.md for details.

v2.1.1

Compare Source

Please refer to CHANGELOG.md for details.

v2.1.0

Compare Source

Please refer to CHANGELOG.md for details.

vitejs/vite

v4.3.9

Compare Source

v4.3.8

Compare Source

v4.3.7

Compare Source

v4.3.6

Compare Source

vitest-dev/vitest

v0.32.0

Compare Source

   🚨 Breaking Changes
  • Throw an error, if the module cannot be resolved  -  by @​sheremet-va in https://github.com/vitest-dev/vitest/issues/3307 (1ad63)
    • Vitest used to fall back to the original import when it could not resolve it to the file path or the virtual module. This leads to hard-to-find module graph mismatches if you had incorrect alias or relied on relative imports to be resolved to the project root (which is usual behavior in TypeScript) because the code accidentally "worked". With this release, Vitest will now throw an error if it cannot resolve the module - there are possible edge cases that are not covered yet, so if you have any problems with this, please open a separate issue with reproduction.
  • Improve globs  -  by @​nickmccurdy in https://github.com/vitest-dev/vitest/issues/3392 (19ecc)
    • Vitest now has glob patterns similar to Jest for better compatibility. It's possible that some files will be considered test files when previously they were not. For example, Vitest now considers test.js to be a test file. Also any file in __tests__ is now considered to be a test, not just files with test or spec suffix.
  • Add @vitest/coverage-v8 package  -  by @​AriPerkkio in https://github.com/vitest-dev/vitest/issues/3339 (82112)
    • Vitest now uses v8 code coverage directly for better performance. @vitest/coverage-c8 is deprecated as Vitest no longer uses c8 package for coverage output. It will not be updated anymore, and Vitest will fail in the next version if the user has c8 as their coverage provider. Please, install the new @vitest/coverage-v8 package if you previously used @vitest/coverage-c8.
  • mocker: Don't restore mock to the original if the module is automocked  -  by @​sheremet-va in https://github.com/vitest-dev/vitest/issues/3518 (c1004)
    • spy.mockRestore on auto-mocked named exports will no longer restore their implementation to the actual function. This behavior better matches what Jest does.
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core

v3.3.4

Compare Source

Bug Fixes
  • build: ensure correct typing for node esm (d621d4c)
  • build: fix DEV flag replacement edge case (8b7c04b), closes #​8353
  • compiler-sfc: handle imported types from default exports (5aec717), closes #​8355

v3.3.3

Compare Source

Bug Fixes
vuejs/router

v4.2.2

Compare Source

Please refer to CHANGELOG.md for details.

v4.2.1

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/language-tools

v1.6.5

Compare Source

  • chore: bump vue deps to 3.3 stable (#​3167) - thanks @​ferferga
  • fix(vue-tsc): avoid throw when composite is enabled (#​2622)
  • perf(language-service): avoid request name casing from language client multiple times (#​3158) - thanks @​kalvenschraut
  • fix: avoid slot name report TS8013 in js component (#​3121)

Full-time Support by


WebContainer API is here.


Our Sponsors ⭐✨




Add you via GitHub Sponsors or Open Collective


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 force-pushed the renovate/all-minor-patch branch 12 times, most recently from 6d50637 to 822ea5d Compare May 21, 2023 21:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 859cccd to 3530a03 Compare May 29, 2023 19:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 749409c to 5656ce9 Compare June 1, 2023 10:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42eed6d to 9835352 Compare June 8, 2023 07:21
@haoqunjiang haoqunjiang merged commit 3aa4161 into main Jun 8, 2023
@renovate renovate bot deleted the renovate/all-minor-patch branch June 8, 2023 09:29
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.

1 participant