chore(deps): update all non-major dependencies #9347
Merged
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:
^7.28.4
->^7.28.6
^5.30.6
->^5.30.7
^5.30.6
->^5.30.7
^8.7.1
->^8.8.0
^3.23.5
->^3.24.0
^2.2.7
->^2.2.8
^0.5.4
->^0.5.5
^3.2.8
->^3.2.9
^1.23.4
->^1.24.0
7.5.2
->7.6.0
^7.5.2
->^7.6.0
^1.53.0
->^1.54.0
^0.7.4
->^0.7.6
^3.0.1
->^3.0.2
^0.18.1
->^0.19.0
^0.38.8
->^0.39.0
Release Notes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.30.7
Compare Source
Bug Fixes
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.30.7
Compare Source
Bug Fixes
acornjs/acorn
v8.8.0
Compare Source
zloirock/core-js
v3.24.0
Compare Source
.asIndexedPairs
renamed to.indexed
, proposal-iterator-helpers/183:Iterator.prototype.asIndexedPairs
->Iterator.prototype.indexed
AsyncIterator.prototype.asIndexedPairs
->AsyncIterator.prototype.indexed
%AsyncFromSyncIteratorPrototype%
inAsyncIterator.from
andIterator.prototype.toAsync
, proposal-iterator-helpers/182, proposal-iterator-helpers/202%WrapForValidAsyncIteratorPrototype%.next
, proposal-iterator-helpers/197%WrapForValid(Async)IteratorPrototype%.next
, proposal-iterator-helpers/197 and proposal-iterator-helpers/205.next
/.return
to an underlying iterator by the extended iterator protocol, a part of proposal-iterator-helpers/194.throw
methods removed from all wrappers / helpers prototypes, a part of proposal-iterator-helpers/194{ Iterator, AsyncIterator }.prototype.flatMap
proxy iterators on.return
, proposal-iterator-helpers/195RangeError
onNaN
in{ Iterator, AsyncIterator }.prototype.{ drop, take }
, proposal-iterator-helpers/181%TypedArray%.prototype.toSpliced
method removed from the change array by copy proposal and marked as obsolete incore-js
, proposal-change-array-by-copy/88Promise
withunhandledrejection
event support (browser style) in Deno < 1.24core-js-compat
/core-js-builder
and added compat data for them:bun
), compat data for 0.1.1-0.1.5, #1103hermes
), compat data for 0.1-0.11, #1099oculus
), compat data mapping for 3.0-22.0, #1098lit/lit
v2.2.8
Compare Source
Patch Changes
#3130
1f0567f1
- Export the underlying type of thekeyed
directive.#3132
2fe2053f
- Added "types" entry to package exports. This tells newer versions of TypeScript where to look for typings for each module.unjs/mlly
v0.5.5
Compare Source
node-fetch/node-fetch
v3.2.9
Compare Source
Bug Fixes
Microsoft/playwright
v1.24.0
Compare Source
🌍 Multiple Web Servers in
playwright.config.ts
Launch multiple web servers, databases, or other processes by passing an array of configurations:
🐂 Debian 11 Bullseye Support
Playwright now supports Debian 11 Bullseye on x86_64 for Chromium, Firefox and WebKit. Let us know
if you encounter any issues!
Linux support looks like this:
🕵️ Anonymous Describe
It is now possible to call
test.describe(callback)
to create suites without a title. This is useful for giving a group of tests a common option withtest.use(options)
.🧩 Component Tests Update
Playwright 1.24 Component Tests introduce
beforeMount
andafterMount
hooks.Use these to configure your app for tests.
For example, this could be used to setup App router in Vue.js:
A similar configuration in Next.js would look like this:
Browser Versions
This version was also tested against the following stable channels:
pnpm/pnpm
v7.6.0
Compare Source
Minor Changes
A new setting supported:
prefer-symlinked-executables
. Whentrue
, pnpm will create symlinks to executables innode_modules/.bin
instead of command shims (but on POSIX systems only).This setting is
true
by default whennode-linker
is set tohoisted
.Related issue: #4782.
When
lockfile-include-tarball-url
is set totrue
, every entry inpnpm-lock.yaml
will contain the full URL to the package's tarball #5054.Patch Changes
pnpm deploy
should include all dependencies by default #5035.Don't print warnings about file verifications. Just print info messages instead.
pnpm publish --help
should print the--recursive
and--filter
options #5019.It should be possible to run exec/run/dlx with the
--use-node-version
option.pnpm deploy
should not modify the lockfile #5071pnpm deploy
should not fail in CI #5071When
auto-install-peers
is set totrue
, automatically install direct peer dependencies #5028.So if your project the next manifest:
pnpm will install both lodash and react as a regular dependencies.
Our Gold Sponsors
Full Changelog: pnpm/pnpm@v7.5.2...v7.6.0
sass/dart-sass
v1.54.0
Compare Source
Deprecate selectors with leading or trailing combinators, or with multiple
combinators in a row. If they're included in style rules after nesting is
resolved, Sass will now produce a deprecation warning and, in most cases, omit
the selector. Leading and trailing combinators can still be freely used for
nesting purposes.
See https://sass-lang.com/d/bogus-combinators for more details.
Add partial support for new media query syntax from Media Queries Level 4. The
only exception are logical operations nested within parentheses, as these were
previously interpreted differently as SassScript expressions.
A parenthesized media condition that begins with
not
or an openingparenthesis now produces a deprecation warning. In a future release, these
will be interpreted as plain CSS instead.
Deprecate passing non-
deg
units tocolor.hwb()
's$hue
argument.Fix a number of bugs when determining whether selectors with pseudo-elements
are superselectors.
Treat
*
as a superselector of all selectors.Dart API
fakeFromImport()
function for testing custom importersthat use
AsyncImporter.fromImport
.JS API
Add a
charset
option that controls whether or not Sass emits a@charset
/BOM for non-ASCII stylesheets.Fix Sass npm package types for TS 4.7+ Node16 and NodeNext module resolution.
unjs/unbuild
v0.7.6
Compare Source
v0.7.5
Compare Source
vitejs/vite
v3.0.2
Compare Source
vitest-dev/vitest
v0.19.0
Compare Source
🚨 Breaking Changes
🚀 Features
🐞 Bug Fixes
View changes on GitHub
johnsoncodehk/volar
v0.39.0
Compare Source
@volar/vue-language-core
Breaking changes
@volar/vue-typescript
,@volar/vue-language-service
apis refactoredOur Sponsors
v0.38.9
Compare Source
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.
This PR has been generated by Mend Renovate. View repository job log here.