chore(deps): update all non-major dependencies #251
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:
^1.2.0->^1.4.1^3.17.2->^3.19.1v4.3.0->v4.4.0^1.2.0->^1.15.0^9.22.0->^9.28.0^17.4.4->^17.6.3^1.51.1->^1.53.010.6.5->10.12.1^5.8.2->^5.8.3^3.0.9->^3.2.3Release Notes
nuxt/eslint (@nuxt/eslint-config)
v1.4.1Compare Source
🐞 Bug Fixes
node:prefix to build-in modules - by @danielroe in https://github.com/nuxt/eslint/issues/579 (8180f)View changes on GitHub
v1.4.0Compare Source
🚀 Features
View changes on GitHub
v1.3.1Compare Source
No significant changes
View changes on GitHub
v1.3.0Compare Source
🚀 Features
View changes on GitHub
nuxt/test-utils (@nuxt/test-utils)
v3.19.1Compare Source
👉 Changelog
compare changes
🩹 Fixes
defineConfigfrom vite (467886ea)🏡 Chore
@nuxt/devtoolsupgrade (3ae47b43)❤️ Contributors
v3.19.0Compare Source
👉 Changelog
compare changes
🚀 Enhancements
defineVitestProject(#1258)🩹 Fixes
UserConfigrather thanInlineConfigfromvite(e2a1598b)💅 Refactors
core->e2einternally (a81c4498)✅ Tests
environment: 'nuxt'for browser testing example (96769e55)❤️ Contributors
v3.18.0Compare Source
compare changes
🚀 Enhancements
🩹 Fixes
app.baseURLin manifest path (#1213)WrapperComponentdefault slot in function (#1244)💅 Refactors
setuphook tobeforeAllfor clarity (#1221)📖 Documentation
✅ Tests
tinyglobby(6f16c6dd)❤️ Contributors
actions/setup-node (actions/setup-node)
v4.4.0Compare Source
What's Changed
Bug fixes:
Enhancement:
Dependency update:
New Contributors
Full Changelog: actions/setup-node@v4...v4.4.0
monperrus/crawler-user-agents (crawler-user-agents)
v1.15.0Compare Source
v1.14.0Compare Source
v1.13.0Compare Source
v1.12.0Compare Source
v1.11.0Compare Source
v1.10.0Compare Source
v1.9.0Compare Source
v1.8.0Compare Source
v1.7.0Compare Source
v1.6.0Compare Source
v1.5.0Compare Source
v1.4.0Compare Source
v1.3.0Compare Source
eslint/eslint (eslint)
v9.28.0Compare Source
v9.27.0Compare Source
v9.26.0Compare Source
v9.25.1Compare Source
v9.25.0Compare Source
v9.24.0Compare Source
v9.23.0Compare Source
capricorn86/happy-dom (happy-dom)
v17.6.3Compare Source
👷♂️ Patch fixes
v17.6.2Compare Source
👷♂️ Patch fixes
v17.6.1Compare Source
🎨 Features
fetch.disableStrictSSLunder IBrowserSettings in the Wikiv17.6.0Compare Source
v17.5.9Compare Source
👷♂️ Patch fixes
HTMLLinkElementfor a browser frame property that becomes null during teardown of aWindow- By @capricorn86 in task #1800v17.5.8Compare Source
👷♂️ Patch fixes
Element.classListto return the wrong items - By @capricorn86 in task #1812v17.5.7Compare Source
👷♂️ Patch fixes
v17.5.6Compare Source
👷♂️ Patch fixes
v17.5.5Compare Source
v17.5.4Compare Source
👷♂️ Patch fixes
ReadableStreamwas locked after being cloned - By @MarcMcIntosh in task #1493v17.5.3Compare Source
👷♂️ Patch fixes
previousSiblingandnextSiblingtoMutationObserverrecords when a child is removed - By @uxuip in task #1803v17.5.2Compare Source
v17.5.1Compare Source
👷♂️ Patch fixes
v17.5.0Compare Source
🎨 Features
XMLHttpRequest.overrideMimeType()- By @maxmil in task #1782v17.4.9Compare Source
v17.4.8Compare Source
👷♂️ Patch fixes
v17.4.7Compare Source
👷♂️ Patch fixes
Request- By @elierotenberg in task #1779v17.4.6Compare Source
👷♂️ Patch fixes
File- By @dyabol in task #1788v17.4.5Compare Source
👷♂️ Patch fixes
HTMLAnchorElement- By @maxmil in task #1775microsoft/playwright (playwright)
v1.53.0Compare Source
Trace Viewer and HTML Reporter Updates
New Steps in Trace Viewer and HTML reporter:
New option in
'html'reporter to set the title of a specific test run:Miscellaneous
New option
kindin testInfo.snapshotPath() controls which snapshot path template is used.New method locator.describe() to describe a locator. Used for trace viewer and reports.
npx playwright install --listwill now list all installed browsers, versions and locations.Browser Versions
This version was also tested against the following stable channels:
v1.52.0Compare Source
pnpm/pnpm (pnpm)
v10.12.1Minor Changes
Experimental. Added support for global virtual stores. When enabled,
node_modulescontains only symlinks to a central virtual store, rather tonode_modules/.pnpm. By default, this central store is located at<store-path>/links(you can find the store path by runningpnpm store path).In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.
To enable the global virtual store, set
enableGlobalVirtualStore: truein your rootpnpm-workspace.yaml, or globally via:NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.
Related PR: #8190
pnpm updatecommand now supports updatingcatalog:protocol dependencies and writes new specifiers topnpm-workspace.yaml.--save-catalogand--save-catalog-name=<name>) topnpm addto save new dependencies as catalog entries.catalog:orcatalog:<name>will be added topackage.jsonand the package specifier will be added to thecatalogsorcatalog[<name>]object inpnpm-workspace.yaml#9425.cifor explicitly telling pnpm if the current environment is a CI or not.Patch Changes
pnpm patchusing semantic versioning rules.v10.11.1Compare Source
Patch Changes
pnpm deploy --legacycreates unexpected directories when the rootpackage.jsonhas a workspace package as a peer dependency #9550.strictPeerDependenciesistruebut all issues are ignored bypeerDependencyRules#9505.pnpm_config_env variables instead ofnpm_config_#9571.--lockfile-onlyflag onpnpm updateto produce a differentpnpm-lock.yamlthan an update without the flag.pnpm deploywork in repos withoverrideswheninject-workspace-packages=true#9283.pnpm -r --silent runshould not print out section #9563.v10.11.0Compare Source
Minor Changes
A new setting added for
pnpm initto create apackage.jsonwithtype=module, wheninit-typeismodule. Works as a flag for the init command too #9463.Added support for Nushell to
pnpm setup#6476.Added two new flags to the
pnpm auditcommand,--ignoreand--ignore-unfixable#8474.Ignore all vulnerabilities that have no solution:
> pnpm audit --ignore-unfixableProvide a list of CVE's to ignore those specifically, even if they have a resolution.
> pnpm audit --ignore=CVE-2021-1234 --ignore=CVE-2021-5678Added support for recursively running pack in every project of a workspace #4351.
Now you can run
pnpm -r packto pack all packages in the workspace.Patch Changes
dangerouslyAllowAllBuildsis set totrue#9472.pnpm linkshould work from inside a workspace #9506.workspaceConcurrencytoMath.min(os.availableParallelism(), 4)#9493.strictPeerDependenciesistruebut all issues are ignored bypeerDependencyRules#9505.updateConfigfrompnpm-workspace.yaml#9500.recursive packurl.parseusage to fix warning on Node.js 24 #9492.pnpm runshould be able to run commands from the workspace root, ifignoreScriptsis set tottrue#4858.v10.10.0Compare Source
Minor Changes
preResolution,importPackage, andfetchershooks from local pnpmfile.Patch Changes
cdcommand, whenshellEmulatoristrue#7838.pnpm-workspace.yaml#9453.npm_package_jsonenvironment variable to the executed scripts #9452.--reporter=silentoption.v10.9.0Compare Source
Minor Changes
Added support for installing JSR packages. You can now install JSR packages using the following syntax:
or with a version range:
For example, running:
will add the following entry to your
package.json:{ "dependencies": { "@​foo/bar": "jsr:^0.1.2" } }When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:
{ "dependencies": { "@​foo/bar": "npm:@​jsr/foo__bar@^0.1.2" } }Related issue: #8941.
Note: The
@jsrscope defaults to https://npm.jsr.io/ if the@jsr:registrysetting is not defined.Added a new setting,
dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this topnpm-workspace.yaml:dangerouslyAllowAllBuildshas the same effect but also allows to be set globally via:It can also be set when running a command:
Patch Changes
verifyDepsBeforeRunwhennodeLinkerishoistedand there is a workspace package without dependencies andnode_modulesdirectory #9424.verifyDepsBeforeRunsupport fornodeLinker: pnp. CombiningverifyDepsBeforeRunandnodeLinker: pnpwill now print a warning.v10.8.1Compare Source
Patch Changes
package.json,onlyBuiltDependencieswill be written topnpm-workspace.yamlfile #9404.v10.8.0Compare Source
Minor Changes
Experimental. A new hook is supported for updating configuration settings. The hook can be provided via
.pnpmfile.cjs. For example:Now you can use the
pnpm addcommand with the--configflag to install new configurational dependencies #9377.Patch Changes
!/inpnpm-workspace.yaml. This fixes a regression introduced by #9169.pnpm audit --fixshould update the overrides inpnpm-workspace.yaml.pnpm linkshould update overrides inpnpm-workspace.yaml, not inpackage.json#9365.v10.7.1: pnpm 10.7.1Compare Source
Patch Changes
pnpm config setshould convert the settings to their correct type before adding them topnpm-workspace.yaml#9355.pnpm config getshould read auth related settings via npm CLI #9345.~/in a path in.npmrcwith the home directory #9217.Platinum Sponsors
Gold Sponsors
v10.7.0Compare Source
Minor Changes
pnpm config getandlistalso show settings set inpnpm-workspace.yamlfiles #9316.It should be possible to use env variables in
pnpm-workspace.yamlsetting names and value.Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range
*is the same as name-only, except that patch application failure will not be ignored.For example:
The above configuration would apply
patches/foo-3.patchto[email protected],patches/foo-2.patchto allfooversions which satisfy^2.0.0except2.1.0, andpatches/foo-1.patchto the remainingfooversions.pnpm config set --location=projectsaves the setting to apnpm-workspace.yamlfile if no.npmrcfile is present in the directory #9316.Rename
pnpm.allowNonAppliedPatchestopnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.Add
pnpm.ignorePatchFailuresto manage whether pnpm would ignore patch application failures.If
ignorePatchFailuresis not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.If
ignorePatchFailuresis explicitly set tofalse, pnpm would throw an error when any type of patch fails to apply.If
ignorePatchFailuresis explicitly set totrue, pnpm would print a warning when any type of patch fails to apply.Patch Changes
microsoft/TypeScript (typescript)
v5.8.3Compare Source
vitest-dev/vitest (vitest)
v3.2.3Compare Source
🚀 Features
🐞 Bug Fixes
expect.anyreturn type - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8129 (47514)process.send()- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/8125 (dfe81)View changes on GitHub
v3.2.2Compare Source
🚀 Features
🐞 Bug Fixes
createTesterscall on the main thread - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8101 (142c7)vitest-browser-*packages - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8103 (247ef)toEqual- by @dubzzz in https://github.com/vitest-dev/vitest/issues/8094 (02ec8)dotreporter to work in non interactive terminals - by @bstephen1 and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/7994 (6db9f)View changes on GitHub
v3.2.1Compare Source
🐞 Bug Fixes
DeeplyAllowMatchers- by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8078 (30ab4)View changes on GitHub
v3.2.0Compare Source
v3.1.4[Compare Source](https://redirect.github.c
Configuration
📅 Schedule: Branch creation - "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 was generated by Mend Renovate. View the repository job log.