chore(deps): update all non-major dependencies #323
Merged
+520
−401
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.36.1
->^1.37.0
^8.44.0
->^8.44.2
^2.3.24
->^2.3.25
^18.17.0
->^18.17.5
^4.2.3
->^4.3.1
^3.0.1
->^3.0.2
^0.3.0
->^0.3.1
^12.17.2
->^12.17.4
^2.13.3
->^2.14.0
^4.0.5
->^4.2.0
^3.0.1
->^3.1.2
^2.1.4
->^2.1.6
^3.0.0
->^3.0.2
^4.4.6
->^4.4.9
^0.33.0
->^0.34.2
^1.8.6
->^1.8.8
Release Notes
Microsoft/playwright (@playwright/test)
v1.37.0
Compare Source
✨ New tool to merge reports
If you run tests on multiple shards, you can now merge all reports in a single HTML report (or any other report)
using the new
merge-reports
CLI tool.Using
merge-reports
tool requires the following steps:Adding a new "blob" reporter to the config when running on CI:
The "blob" reporter will produce ".zip" files that contain all the information
about the test run.
Copying all "blob" reports in a single shared location and running
npx playwright merge-reports
:Read more in our documentation.
📚 Debian 12 Bookworm Support
Playwright now supports Debian 12 Bookworm on both x86_64 and arm64 for Chromium, Firefox and WebKit.
Let us know if you encounter any issues!
Linux support looks like this:
🌈 UI Mode Updates
Browser Versions
This version was also tested against the following stable channels:
v1.36.2
: 1.36.2Compare Source
Highlights
https://github.com/microsoft/playwright/issues/24316 - [REGRESSION] Character classes are not working in globs in 1.36
Browser Versions
This version was also tested against the following stable channels:
vitejs/vite-plugin-vue (@vitejs/plugin-vue)
v4.3.1
Compare Source
v4.3.0
Compare Source
hoistStatic
option for script compilation (#198) (7466b4f), closes #198vitejs/vite-plugin-vue (@vitejs/plugin-vue-jsx)
v3.0.2
Compare Source
vuejs/create-eslint-config (@vue/create-eslint-config)
v0.3.1
Compare Source
cypress-io/cypress (cypress)
v12.17.4
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#12-17-4
v12.17.3
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#12-17-3
cypress-io/eslint-plugin-cypress (eslint-plugin-cypress)
v2.14.0
Compare Source
Features
v2.13.4
Compare Source
Bug Fixes
webdriverio-community/node-geckodriver (geckodriver)
v4.2.0
: Release 4.2.0Compare Source
0abe390
)21fd29b
)f0d8ee6
)bb3d568
)3c0ca31
)a785e82
)96f1c3d
)0485df1
)cdbbc4b
)43f0870
)7adc3dc
)caf8f1e
)6bf8db0
)bc99d93
)2a1392b
)v4.1.3
: Release 4.1.3Compare Source
e4ad2a9
)v4.1.2
: Release 4.1.2Compare Source
de01d35
)v4.1.1
: Release 4.1.1Compare Source
48c38a4
)eab499e
)v4.1.0
: Release 4.1.0Compare Source
296f4d4
)a9eeaf1
)a73f68c
)5589e16
)4d3619b
)8f950b4
)8d6d169
)033c05f
)6a1c5f7
)nightwatchjs/nightwatch (nightwatch)
v3.1.2
Compare Source
96e1b34
222c603
v3.1.1
Compare Source
v3.1.0
Compare Source
We’re super excited to announce the release of Nightwatch v3. It that has been built around these three pillars:
Developer Experience: The entire experience from getting started, to writing and debugging tests, has been redesigned for speed, stability, and consistent non-flaky results.
Mobile first: Test your web or native, iOS and Android, mobile applications on simulators, real mobile devices or a cloud grid like BrowserStack.
One test automation framework: Run all types of tests from unit, component, and E2E to API, visual, and accessibility with a single framework.
What's Changed
New Features
Fixes
TypeScript Fixes
Dependency Updates
Cucumber
General
src_folders
is empty when using tags by @itsspriyansh in https://github.com/nightwatchjs/nightwatch/pull/3824New Contributors
Full Changelog: nightwatchjs/nightwatch@v3.0.1...v3.1.0
vuejs/pinia (pinia)
v2.1.6
Compare Source
Please refer to CHANGELOG.md for details.
v2.1.5
Compare Source
Please refer to CHANGELOG.md for details.
prettier/prettier (prettier)
v3.0.2
Compare Source
diff
Break after
=
of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (#15204 by @seiyab)Do not add trailing comma for grouped scss comments (#15217 by @auvred)
Print
declare
andexport
keywords for nested namespace (#15249 by @sosukesuzuki)v3.0.1
Compare Source
diff
Fix cursor positioning for a special case (#14812 by @fisker)
Fix plugins/estree.d.ts to make it a module (#15018 by @kingyue737)
Add
export {}
inplugins/estree.d.ts
to fix the "File is not a module" errorAdd parenthesis around leading multiline comment in return statement (#15037 by @auvred)
Add support for Vue "Generic Components" (#15066 by @auvred)
https://blog.vuejs.org/posts/vue-3-3#generic-components
<!-- Input --> <script setup lang="ts" generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"></script> <!-- Prettier 3.0.0 --> <script setup lang="ts" generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean" ></script> <!-- Prettier 3.0.1 --> <script setup lang="ts" generic=" T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean " ></script>
Fix comments print in
IfStatement
(#15076 by @fisker)Add missing type definition for
printer.preprocess
(#15123 by @so1ve)Add missing
getVisitorKeys
method type definition forPrinter
(#15125 by @auvred)Add typing to support
readonly
array properties of AST Node (#15127 by @auvred)Add space before unary minus followed by a function call (#15129 by @pamelalozano)
vitejs/vite (vite)
v4.4.9
Compare Source
v4.4.8
Compare Source
moduleResolution: 'node16'
(#13947) (aeef670), closes #13947v4.4.7
Compare Source
optimizeDeps.include
not working with paths inside packages (#13922) (06e4f57), closes #13922config.base
to vite/env path (#13941) (8e6cee8), closes #13941import.meta.env
define replacement without quotes (#13425) (883089c), closes #13425vitest-dev/vitest (vitest)
v0.34.2
Compare Source
🚀 Features
--experimental-vm-threads
- by @sheremet-va in https://github.com/vitest-dev/vitest/issues/3880 (f4e6e)ctx.skip()
inside the running test - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/3966 (5c88d)🐞 Bug Fixes
execute.d.ts
- by @btea in https://github.com/vitest-dev/vitest/issues/3970 (0f8e6)?inline
query is specified - by @thebanjomatic and Adam Hines in https://github.com/vitest-dev/vitest/issues/3952 (3891d)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.
This PR has been generated by Mend Renovate. View repository job log here.