This PR contains the following updates:
Release Notes
microsoft/playwright (@playwright/test)
Compare Source
vitest-dev/eslint-plugin-vitest (@vitest/eslint-plugin)
Compare Source
Bug Fixes
- consistent-test-filename: match allTestPattern against full file path (#674) (97dcb0f)
nightwatchjs/nightwatch (nightwatch)
Compare Source
What's Changed
Full Changelog: nightwatchjs/nightwatch@v3.11.1...v3.12.0
pnpm/pnpm (pnpm)
Compare Source
Patch Changes
- The pnpm CLI process should not stay hanging, when
--silent
reporting is used.
- When
--loglevel
is set to error
, don't show installation summary, execution time, and big tarball download progress.
- Don't ignore pnpm.patchedDependencies from
package.json
#9226.
- When executing the
approve-builds
command, if package.json contains onlyBuiltDependencies
or ignoredBuiltDependencies
, the selected dependency package will continue to be written into package.json
.
- When a package version cannot be found in the package metadata, print the registry from which the package was fetched.
Compare Source
Minor Changes
-
pnpm-workspace.yaml
can now hold all the settings that .npmrc
accepts. The settings should use camelCase #9211.
pnpm-workspace.yaml
example:
verifyDepsBeforeRun: install
optimisticRepeatInstall: true
publicHoistPattern:
- "*types*"
- "!@​types/react"
-
Projects using a file:
dependency on a local tarball file (i.e. .tgz
, .tar.gz
, .tar
) will see a performance improvement during installation. Previously, using a file:
dependency on a tarball caused the lockfile resolution step to always run. The lockfile will now be considered up-to-date if the tarball is unchanged.
Patch Changes
pnpm self-update
should not leave a directory with a broken pnpm installation if the installation fails.
fast-glob
replace with tinyglobby
to reduce the size of the pnpm CLI dependencies #9169.
pnpm deploy
should not remove fields from the deployed package's package.json
file #9215.
pnpm self-update
should not read the pnpm settings from the package.json
file in the current working directory.
- Fix
pnpm deploy
creating a package.json
without the imports
and license
field #9193.
pnpm update -i
should list only packages that have newer versions #9206.
- Fix a bug causing entries in the
catalogs
section of the pnpm-lock.yaml
file to be removed when dedupe-peer-dependents=false
on a filtered install. #9112
vitest-dev/vitest (vitest)
Compare Source
🐞 Bug Fixes
vuejs/language-tools (vue-tsc)
Compare Source
Bug Fixes
- revert "fix(language-core): validate
v-model
variable against model type"
Compare Source
Features
- feat(language-core): infer prop JSDoc from
defineModel
's leading comments (#5211) - Thanks to @KazariEX!
Bug Fixes
- fix(language-core): map camelized prop name correctly (#5207) - Thanks to @KazariEX!
- fix(component-meta): resolve
defineModel
options to collect default
value (#5209) - Thanks to @KazariEX!
- fix(language-core): avoid duplicate generation of
defineExpose
's codes - Thanks to @KazariEX!
- fix(language-core): generate camelized prop name for
defineModel
(#5213) - Thanks to @KazariEX!
- fix(language-core): validate
v-model
variable against model type (#5214) - Thanks to @KazariEX!
- fix(language-core): use keywords instead of semicolons to separate script sections (#5217) - Thanks to @KazariEX!
Other Changes
- ci: auto close issues with
can't reproduce
label - Thanks to @KazariEX!
- refactor(language-core): defer the calculation of
linkedCodeMappings
offsets (#5220) - Thanks to @KazariEX!
google/zx (zx)
v8.4.0
: – Drip Detective
Compare Source
Try the new batch of enhancements: npm i zx@8.4.0
https://www.npmjs.com/package/zx/v/8.4.0
Changes
- The CLI option
--prefer-local
now allows linking both external binaries and packages #1116 #1117
const cwd = tmpdir()
const external = tmpdir()
await fs.outputJson(path.join(external, 'node_modules/a/package.json'), {
name: 'a',
version: '1.0.0',
type: 'module',
exports: './index.js',
})
await fs.outputFile(
path.join(external, 'node_modules/a/index.js'),
`
export const a = 'AAA'
`
)
const script = `
import {a} from 'a'
console.log(a);
`
const out = await $`zx --cwd=${cwd} --prefer-local=${external} --test <<< ${script}`
assert.equal(out.stdout, 'AAA\n')
- The
quote
has been slightly changed for a conner case, when zx literal gets an array.
#999 #1113
const p = $({prefix: '', postfix: ''})`echo ${[1, '', '*', '2']}`
// before
p.cmd // `echo 1 $'*' 2`)
// after
p.cmd // `echo 1 $'' $'*' 2`)
- Provided support for custom script extensions via CLI #1104 #1105
zx script.zx # Unknown file extension "\.zx"
zx --ext=mjs script.zx # OK
- Enhanced
nothrow
option to suppress any errors #1108 #1109
const err = new Error('BrokenSpawn')
const o = await $({
nothrow: true,
spawn() {
throw err
},
})`echo foo`
o.ok // false
o.exitCode // null
o.message // BrokenSpawn...
o.cause // err
@types/node
and @types/fs-extra
deps replaced with triple-slash typing refs #1102
- Made
ProcessOutput
iterable #1101
- Handle inappropriate
ProcessPromise
instantiation #1097 #1098
- Pass origin error as
ProcessOuput
cause #1110
- Separated build and release steps #1106
- Internal improvements
Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (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 was generated by Mend Renovate. View the repository job log.
Uh oh!
There was an error while loading. Please reload this page.
This PR contains the following updates:
^1.50.1
->^1.51.0
^22.13.5
->^22.13.9
^1.1.35
->^1.1.36
^3.11.1
->^3.12.0
10.5.2
->10.6.1
^3.0.7
->^3.0.8
^2.2.4
->^2.2.8
^8.3.2
->^8.4.0
Release Notes
microsoft/playwright (@playwright/test)
v1.51.0
Compare Source
vitest-dev/eslint-plugin-vitest (@vitest/eslint-plugin)
v1.1.36
Compare Source
Bug Fixes
nightwatchjs/nightwatch (nightwatch)
v3.12.0
Compare Source
What's Changed
describe
title to JUnit reports by @garg3133 in https://github.com/nightwatchjs/nightwatch/pull/4386.(The
name
attribute oftestsuite
tag and theclassname
attribute oftestcase
tag will now contain thedescribe
title instead of testsuite file path for BDDdescribe
tests.)NightwatchClient
instance fromclient.initialize()
call. by @garg3133 in https://github.com/nightwatchjs/nightwatch/pull/4389Full Changelog: nightwatchjs/nightwatch@v3.11.1...v3.12.0
pnpm/pnpm (pnpm)
v10.6.1
Compare Source
Patch Changes
--silent
reporting is used.--loglevel
is set toerror
, don't show installation summary, execution time, and big tarball download progress.package.json
#9226.approve-builds
command, if package.json containsonlyBuiltDependencies
orignoredBuiltDependencies
, the selected dependency package will continue to be written intopackage.json
.v10.6.0
Compare Source
Minor Changes
pnpm-workspace.yaml
can now hold all the settings that.npmrc
accepts. The settings should use camelCase #9211.pnpm-workspace.yaml
example:Projects using a
file:
dependency on a local tarball file (i.e..tgz
,.tar.gz
,.tar
) will see a performance improvement during installation. Previously, using afile:
dependency on a tarball caused the lockfile resolution step to always run. The lockfile will now be considered up-to-date if the tarball is unchanged.Patch Changes
pnpm self-update
should not leave a directory with a broken pnpm installation if the installation fails.fast-glob
replace withtinyglobby
to reduce the size of the pnpm CLI dependencies #9169.pnpm deploy
should not remove fields from the deployed package'spackage.json
file #9215.pnpm self-update
should not read the pnpm settings from thepackage.json
file in the current working directory.pnpm deploy
creating apackage.json
without theimports
andlicense
field #9193.pnpm update -i
should list only packages that have newer versions #9206.catalogs
section of thepnpm-lock.yaml
file to be removed whendedupe-peer-dependents=false
on a filtered install. #9112vitest-dev/vitest (vitest)
v3.0.8
Compare Source
🐞 Bug Fixes
@vitest/spy
- by @mrginglymus in https://github.com/vitest-dev/vitest/issues/7575 (7f7ff)beforeEach/All
cleanup callback timeout - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7500 (0c292)Task.suite
initialization - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7414 (ca9ff)buildStart
on Vite 6 - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/7480 (c0f47)View changes on GitHub
vuejs/language-tools (vue-tsc)
v2.2.8
Compare Source
Bug Fixes
v-model
variable against model type"v2.2.6
Compare Source
Features
defineModel
's leading comments (#5211) - Thanks to @KazariEX!Bug Fixes
defineModel
options to collectdefault
value (#5209) - Thanks to @KazariEX!defineExpose
's codes - Thanks to @KazariEX!defineModel
(#5213) - Thanks to @KazariEX!v-model
variable against model type (#5214) - Thanks to @KazariEX!Other Changes
can't reproduce
label - Thanks to @KazariEX!linkedCodeMappings
offsets (#5220) - Thanks to @KazariEX!google/zx (zx)
v8.4.0
: – Drip DetectiveCompare Source
Try the new batch of enhancements:
npm i zx@8.4.0
https://www.npmjs.com/package/zx/v/8.4.0Changes
--prefer-local
now allows linking both external binaries and packages #1116 #1117quote
has been slightly changed for a conner case, when zx literal gets an array.#999 #1113
nothrow
option to suppress any errors #1108 #1109@types/node
and@types/fs-extra
deps replaced with triple-slash typing refs #1102ProcessOutput
iterable #1101ProcessPromise
instantiation #1097 #1098ProcessOuput
cause #1110ProcessOutput
inners #1096 #1095.ts
extensions for relative imports #1111Configuration
📅 Schedule: Branch creation - "* 0-3 * * 1" (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 was generated by Mend Renovate. View the repository job log.