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 #188

Merged
merged 1 commit into from Nov 24, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 31, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.27.1 -> ^1.28.1 age adoption passing confidence
@types/eslint (source) ^8.4.7 -> ^8.4.10 age adoption passing confidence
@types/jsdom (source) ^20.0.0 -> ^20.0.1 age adoption passing confidence
@types/node (source) ^16.11.68 -> ^16.18.3 age adoption passing confidence
@vitejs/plugin-vue (source) ^3.1.2 -> ^3.2.0 age adoption passing confidence
@vitejs/plugin-vue-jsx (source) ^2.0.1 -> ^2.1.1 age adoption passing confidence
@vue/test-utils ^2.1.0 -> ^2.2.4 age adoption passing confidence
cypress ^11.1.0 -> ^11.2.0 age adoption passing confidence
husky (source) ^8.0.1 -> ^8.0.2 age adoption passing confidence
jsdom ^20.0.1 -> ^20.0.3 age adoption passing confidence
pinia ^2.0.23 -> ^2.0.26 age adoption passing confidence
prettier (source) ^2.7.1 -> ^2.8.0 age adoption passing confidence
vite (source) ^3.1.8 -> ^3.2.4 age adoption passing confidence
vitest ^0.24.3 -> ^0.25.3 age adoption passing confidence
vue (source) ^3.2.41 -> ^3.2.45 age adoption passing confidence
vue-router ^4.1.5 -> ^4.1.6 age adoption passing confidence
vue-tsc ^1.0.8 -> ^1.0.9 age adoption passing confidence

Release Notes

Microsoft/playwright

v1.28.1

Compare Source

Highlights

This patch release includes the following bug fixes:

https://github.com/microsoft/playwright/issues/18928 - [BUG] Electron firstWindow times out after upgrading to 1.28.0https://github.com/microsoft/playwright/issues/189200 - [BUG] [expanded=false] in role selector returns elements without aria-expanded attribuhttps://github.com/microsoft/playwright/issues/18865865 - [BUG] regression in killing web server process in 1.28.0

Browser Versions

  • Chromium 108.0.5359.29
  • Mozilla Firefox 106.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 107
  • Microsoft Edge 107

v1.28.0: v1.28

Compare Source

Playwright Tools

  • Record at Cursor in VSCode. You can run the test, position the cursor at the end of the test and continue generating the test.
New VSCode Extension
  • Live Locators in VSCode. You can hover and edit locators in VSCode to get them highlighted in the opened browser.
  • Live Locators in CodeGen. Generate a locator for any element on the page using "Explore" tool.
Locator Explorer
  • Codegen and Trace Viewer Dark Theme. Automatically picked up from operating system settings.
Dark Theme
Test Runner
New APIs
Browser Versions
  • Chromium 108.0.5359.29
  • Mozilla Firefox 106.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 107
  • Microsoft Edge 107
vitejs/vite (@​vitejs/plugin-vue)

v3.2.0

Compare Source

vitejs/vite (@​vitejs/plugin-vue-jsx)

v2.1.1

Compare Source

v2.1.0

Compare Source

vuejs/test-utils

v2.2.4

Compare Source

What's Changed

Full Changelog: vuejs/test-utils@v2.2.3...v2.2.4

v2.2.3

Compare Source

What's Changed

Full Changelog: vuejs/test-utils@v2.2.2...v2.2.3

v2.2.2

Compare Source

Fixes

Other

Full Changelog: vuejs/test-utils@v2.2.1...v2.2.2

v2.2.1

Compare Source

What's Changed

Full Changelog: vuejs/test-utils@v2.2.0...v2.2.1

v2.2.0

Compare Source

What's Changed

Features
Fixes
Other

New Contributors

Full Changelog: vuejs/test-utils@v2.1.0...v2.2.0

cypress-io/cypress

v11.2.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#​11-2-0

typicode/husky

v8.0.2

Compare Source

  • docs: remove deprecated npm set-script
jsdom/jsdom

v20.0.3

Compare Source

  • Updated dependencies, notably w3c-xmlserializer, which fixes using DOMParser on XML documents containing emoji.

v20.0.2

Compare Source

  • Fixed xhr.abort() to no longer give an exception when the constructed XMLHttpRequest was invalid. (whamtet)
  • Fixed event.getModifierState() on MouseEvent and KeyboardEvent instances to properly consult the ctrlKey, altKey, metaKey, and shiftKey properties of the event. (juzerzarif)
  • Fixed custom element creation to not be affected by any modifications to the window.customElements property. (bicknellr)
vuejs/pinia

v2.0.26

Compare Source

Please refer to CHANGELOG.md for details.

v2.0.25

Compare Source

Please refer to CHANGELOG.md for details.

v2.0.24

Compare Source

Please refer to CHANGELOG.md for details.

prettier/prettier

v2.8.0

Compare Source

diff

🔗 Release Notes

vitejs/vite (vite)

v3.2.4

Compare Source

Please refer to CHANGELOG.md for details.

v3.2.3

Compare Source

v3.2.2

Compare Source

v3.2.1

Compare Source

v3.2.0

Compare Source

Main Changes
Multiple Entries for Library Mode

Library mode now supports multiple entries:

  lib: {
    entry: {
        primary: 'src/index.ts',
        secondary: 'src/secondary.ts'
    },
    formats: ['es', 'cjs']
  }
  // => primary.es.js, primary.cjs.js, secondary.es.js, secondary.cjs.js

Check out the PR #​7047, and the build.lib config docs

build.modulePreload options

Vite now allows filtering and modifying module preload dependencies for each entry and async chunk. experimental.renderBuiltUrl will also get called for preload asset paths. And build.modulePreload.resolveDependencies will be called both for JS dynamic imports preload lists and also for HTML preload lists for chunks imported from entry HTML files. Refer to the PR for more context #​9938 and check out the modulePreload config docs. Note: build.modulePreloadPolyfill is now deprecated, please migrate to build.modulePreload.polyfill.

Include Duplicate Assets in the Manifest

Laravel and other backends integrations will now get entries for every asset file, even if they have been de-duplicated. See #​9928 for more information.

Customizable ErrorOverlay

You can now customize the ErrorOverlay by using css parts. Check out the PR for more details: #​10234.

Features
Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 3am 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 4 times, most recently from f985360 to 1abc71f Compare November 4, 2022 17:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from d6162bd to 38ad3d8 Compare November 13, 2022 10:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 540ee79 to 5132d5b Compare November 20, 2022 22:46
@sodatea
Copy link
Member

sodatea commented Nov 21, 2022

Seems blocked by microsoft/playwright#18865

@benmccann
Copy link

Users will already be ending up with @playwright/test version 1.28.0 since it's in the semver range. You'd need to pin the playwright version to avoid that

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 279e99b to 8479906 Compare November 23, 2022 15:43
@sodatea
Copy link
Member

sodatea commented Nov 24, 2022

Fixed in Playwright 1.28.1

@sodatea sodatea merged commit 68c2167 into main Nov 24, 2022
@sodatea sodatea deleted the renovate/all-minor-patch branch November 24, 2022 08:12
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.

None yet

2 participants