-
Notifications
You must be signed in to change notification settings - Fork 49
chore(deps): update all non-major dependencies #170
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all-minor-patch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,560
−1,015
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for GitHub.
|
9c62af2
to
6e94182
Compare
6e94182
to
896697a
Compare
896697a
to
bae8ff3
Compare
bae8ff3
to
09ea81d
Compare
09ea81d
to
403baba
Compare
403baba
to
6357b2b
Compare
6357b2b
to
0b1c475
Compare
0b1c475
to
4bc3f01
Compare
4bc3f01
to
2ce5129
Compare
2ce5129
to
97b5eb0
Compare
97b5eb0
to
1a311a0
Compare
1a311a0
to
8295e5b
Compare
8295e5b
to
5caf2de
Compare
5caf2de
to
ab06501
Compare
3c237d7
to
0fe3d03
Compare
0fe3d03
to
12f1119
Compare
12f1119
to
88f878a
Compare
88f878a
to
2b0acb6
Compare
2b0acb6
to
279fa63
Compare
279fa63
to
87b640a
Compare
87b640a
to
7633155
Compare
7633155
to
63843b7
Compare
63843b7
to
cd795a2
Compare
cd795a2
to
bcc37e7
Compare
bcc37e7
to
fa37040
Compare
fa37040
to
f158ff7
Compare
f158ff7
to
888d7d0
Compare
888d7d0
to
8d667ac
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.
This PR contains the following updates:
^1.2.56
->^1.2.68
^3.25.1
->^3.28.0
^1.5.2
->^1.9.0
^1.5.2
->^1.9.0
1.53.2
->1.55.1
^22.16.0
->^22.18.6
v0.1.0
->v0.1.1
^9.30.1
->^9.36.0
v1.53.2-noble
->v1.55.1-noble
^2.2.0
->^2.3.0
10.12.4
->10.17.1
4.1.11
->4.1.13
^0.2.14
->^0.2.15
2.5.4
->2.5.7
5.8.3
->5.9.2
3.5.17
->3.5.21
3.5.17
->3.5.21
3.0.4
->3.0.8
Release Notes
nuxt/cli (@nuxt/cli)
v3.28.0
Compare Source
👉 Changelog
compare changes
🚀 Enhancements
--nightly
flag (#650)🩹 Fixes
latest
(6b80c59)🏡 Chore
join
(e61d334)🤖 CI
pull_request_target
(#999)❤️ Contributors
v3.27.0
Compare Source
👉 Changelog
compare changes
🚀 Enhancements
-e
alias for--extends
(#986)🩹 Fixes
rootDir
(67b9dab)❤️ Contributors
v3.26.4
Compare Source
👉 Changelog
compare changes
🩹 Fixes
devServer.close
(0d9ab2c)❤️ Contributors
v3.26.3
Compare Source
👉 Changelog
compare changes
🩹 Fixes
options.devServer
(#970)get-port-please
to handle socket paths (#973)🤖 CI
❤️ Contributors
v3.26.2
Compare Source
👉 Changelog
compare changes
🩹 Fixes
v4
(beb7fb4)❤️ Contributors
v3.26.1
Compare Source
👉 Changelog
compare changes
🩹 Fixes
💅 Refactors
formatSocketURL
logic (11330aa)❤️ Contributors
v3.26.0
Compare Source
👀 Highlights
Nuxt CLI v3.26 focuses on performance with faster cold starts, intelligent caching, and architectural improvements that prepare the foundation for Nuxt v4. I very much hope it will make your dev workflow noticeably faster and more responsive.
I'm hoping to write up a little bit more about how we did this, but the key changes include:
🚀 Faster Development Server
Starting your Nuxt development server is now significantly faster. We've optimized the initialization sequence to prioritize critical operations and reduce startup time, especially noticeable in larger projects (#902).
🔥 Node.js Compile Cache
The Node.js compile cache is now enabled automatically when supported, providing up to 3x faster startup times for subsequent CLI operations (#911).
The CLI automatically detects support and falls back gracefully when not available. (You can also set
NODE_DISABLE_COMPILE_CACHE=1
to disable it.)📁 Native File Watching
File watching now uses native
fs.watch
APIs for watching configuration files,.env
, and thedist
directory. This provides faster feedback and uses fewer system resources (#913).🔌 Socket-Based Development Proxy
The Nuxt dev server uses an internal connection between the host/port that the CLI starts, and the actual dev server. Previously, we used an internal TCP/IP network port, which had extra overhead, particularly on Windows machines. Now, where supported (currently Nuxt v4 only), we use a socket (#921).
You can also test this with Nuxt v3 by setting the
NUXT_SOCKET
environment variable, but until v3.18 is released, this may actually slow down your dev server as the current Nuxt v3vite-node
dev server does not support sockets and will fall back to the public network interface.⚡ Faster TypeScript Support
TypeScript resolution now happens in parallel with Nuxt type preparation, reducing
nuxt typecheck
times. The CLI also supports TypeScript project references, making it easier to work with monorepos (this also prepares for enhanced TypeScript integration in Nuxt v4) (#928).🛠️ Layer Support with
--extends
Create new Nuxt projects that extend existing layers with the new
--extends
option (#933):It's advised instead to include the layer you extend in your
nuxt.config
file but this can be considered an escape hatch for situations where this is not possible.🎯 Better Module Management
The
nuxt init
command now provides a cleaner module selection experience. Modules that are dependencies of other modules are automatically hidden, and you can skip module selection entirely with--no-modules
.We plan to improve this further in the next release with #910.
🔧 Stability Improvements
This release comes with plenty of bug fixes, of course, as well as prioritising the version of
@nuxt/kit
actually used by the version of Nuxt you have installed. (This should fix some edge cases issues where the CLI was using a different version of@nuxt/kit
than Nuxt itself.)👉 Changelog
compare changes
🚀 Enhancements
🔥 Performance
🩹 Fixes
💅 Refactors
🏡 Chore
✅ Tests
🤖 CI
❤️ Contributors
nuxt/eslint (@nuxt/eslint)
v1.9.0
Compare Source
🚀 Features
🐞 Bug Fixes
defineNuxtConfig
as ESLint's globals, close #603 - by @antfu in #603 (2e67f)View changes on GitHub
v1.8.0
Compare Source
🚀 Features
View changes on GitHub
v1.7.1
Compare Source
🐞 Bug Fixes
eslint-typegen.d.ts
innuxt.node.d.ts
, close #596 - by @antfu in #596 (ab74e)View changes on GitHub
v1.7.0
Compare Source
🚀 Features
View changes on GitHub
v1.6.0
Compare Source
🐞 Bug Fixes
eslint-plugin-import-x
as default, close #590 - by @antfu in #590 (e43d6)View changes on GitHub
microsoft/playwright (@playwright/test)
v1.55.1
Compare Source
Highlights
#37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.
#37147 - [Regression]: Internal error: step id not found.
#37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects.
#37137 - Revert "fix(a11y): track inert elements as hidden".
Browser Versions
This version was also tested against the following stable channels:
v1.55.0
Compare Source
v1.54.2
Compare Source
Highlights
https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore
Browser Versions
This version was also tested against the following stable channels:
v1.54.1
Compare Source
v1.54.0
Compare Source
Highlights
New cookie property
partitionKey
in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.New option
noSnippets
to disable code snippets in the html report.New property
location
in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation liketest.skip
ortest.fixme
was added.Command Line
New option
--user-data-dir
in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.Option
-gv
has been removed from thenpx playwright test
command. Use--grep-invert
instead.npx playwright open
does not open the test recorder anymore. Usenpx playwright codegen
instead.Miscellaneous
Browser Versions
This version was also tested against the following stable channels:
danielroe/provenance-action (danielroe/provenance-action)
v0.1.1
Compare Source
compare changes
🚀 Enhancements
📖 Documentation
@main
constraint for example (237ceea)❤️ Contributors
eslint/eslint (eslint)
v9.36.0
Compare Source
v9.35.0
Compare Source
v9.34.0
Compare Source
v9.33.0
Compare Source
v9.32.0
Compare Source
v9.31.0
Compare Source
unjs/pkg-types (pkg-types)
v2.3.0
Compare Source
compare changes
🚀 Enhancements
workspaces
field (#236)deno.lock
to known lockfiles (#244)package.json5
andpackage.yaml
(#234)updatePackage
,sortPackage
andnormalizePackage
utils (#240)🏡 Chore
❤️ Contributors
pnpm/pnpm (pnpm)
v10.17.1
Compare Source
Patch Changes
minimumReleaseAge
setting, print this information out in the error message #9974.state.json
creation path when executingpnpm patch
in a workspace project #9733.minimumReleaseAge
is set and thelatest
tag is not mature enough, prefer a non-deprecated version as the newlatest
#9987.v10.17.0
Compare Source
Minor Changes
The
minimumReleaseAgeExclude
setting now supports patterns. For instance:Related PR: #9984.
Patch Changes
minimumReleaseAge
check, when the package is requested by exact version and the packument is loaded from cache #9978.minimumReleaseAge
is set and the active version under a dist-tag is not mature enough, do not downgrade to a prerelease version in case the original version wasn't a prerelease one #9979.v10.16.1
Compare Source
Patch Changes
v10.16.0
Compare Source
Minor Changes
There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour.
The new setting is called
minimumReleaseAge
. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, settingminimumReleaseAge: 1440
ensures that only packages released at least one day ago can be installed.If you set
minimumReleaseAge
but need to disable this restriction for certain dependencies, you can list them under theminimumReleaseAgeExclude
setting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:Related issue: #9921.
Added support for
finders
#9946.In the past,
pnpm list
andpnpm why
could only search for dependencies by name (and optionally version). For example:prints the chain of dependencies to any installed instance of
minimist
:What if we want to search by other properties of a dependency, not just its name? For instance, find all packages that have
react@17
in their peer dependencies?This is now possible with "finder functions". Finder functions can be declared in
.pnpmfile.cjs
and invoked with the--find-by=<function name>
flag when runningpnpm list
orpnpm why
.Let's say we want to find any dependencies that have React 17 in peer dependencies. We can add this finder to our
.pnpmfile.cjs
:Now we can use this finder function by running:
pnpm will find all dependencies that have this React in peer dependencies and print their exact locations in the dependency graph.
It is also possible to print out some additional information in the output by returning a string from the finder. For example, with the following finder:
Every matched package will also print out the license from its
package.json
:Patch Changes
nodeVersion
is not set to an exact semver version #9934.pnpm publish
should be able to publish a.tar.gz
file #9927.pnpm run
return a non-zero exit code #9626.v10.15.1
Compare Source
Patch Changes
.pnp.cjs
crash when importing subpath #9904.v10.15.0
Compare Source
Minor Changes
cleanupUnusedCatalogs
configuration. When set totrue
, pnpm will remove unused catalog entries during installation #9793.@*/pnpm-plugin-*
#9780.pnpm config get
now prints an INI string for an object value #9797.pnpm config get
now accepts property paths (e.g.pnpm config get catalog.react
,pnpm config get .catalog.react
,pnpm config get 'packageExtensions["@​babel/parser"].peerDependencies["@​babel/types"]'
), andpnpm config set
now accepts dot-leading or subscripted keys (e.g.pnpm config set .ignoreScripts true
).pnpm config get --json
now prints a JSON serialization of config value, andpnpm config set --json
now parses the input value as JSON.Patch Changes
pnpm create
command, must verify whether the node version is supported even if a cache already exists #9775.*/*
to theAccept
header to avoid getting a 406 error on AWS CodeArtifact #9862.pnpm dlx pkg --help
doesn't pass--help
topkg
#9823.v10.14.0
Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime
(insidepackage.json
) and let pnpm download and pin it automatically.Usage example:
How it works:
pnpm install
resolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersion
andexecutionEnv.nodeVersion
)executionEnv.nodeVersion
). So, different projects in a workspace can use different runtimes.devEngines.runtime
setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu
,--libc
, and--os
topnpm install
,pnpm add
, andpnpm dlx
to customizesupportedArchitectures
via the CLI #7510.Patch Changes
pnpm add
downloads packages whoselibc
differ frompnpm.supportedArchitectures.libc
.dlx
to parse CLI flags and options between thedlx
command and the command to run or between thedlx
command and--
#9719.pnpm install --prod
should removing hoisted dev dependencies #9782.pnpm install
to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.v10.13.1
Compare Source
Patch Changes
v10.13.0
Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfile
setting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjs
file from any config dependency named@pnpm/plugin-*
orpnpm-plugin-*
#9729.The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the
pnpmfile.cjs
files in the config dependencies can be explicitly listed using thepnpmfile
setting inpnpm-workspace.yaml
.Patch Changes
pkg.pr.new
, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds
,onlyBuiltDependencies
,onlyBuiltDependenciesFile
, andneverBuiltDependencies
#9628.pnpm-workspace.yaml
with deep #9701.pnpm rebuild
command should not add pkgs included inignoredBuiltDependencies
toignoredBuilds
innode_modules/.modules.yaml
#9338.shell-quote
withshlex
for quoting command arguments #9381.tailwindlabs/tailwindcss (tailwindcss)
v4.1.13
Compare Source
Changed
Fixed
visibility
when usingtransition
(#18795)matchVariant
values (#18798)clip
withclip-path
insr-only
(#18769)matchUtilities
(#18820).vercel
folders by default (can be overridden by@source …
rules) (#18855)@-
to be invalid (e.g.@-2xl:flex
) (#18869)-
or_
(#18867, #18872)aria
theme keys to@custom-variant
(#18815)data
theme keys to@custom-variant
(#18816)supports
theme keys to@custom-variant
(#18817)v4.1.12
Compare Source
Fixed
@apply
(#18404)flex-<number>
utilities (#18642))
from interfering with extraction in Clojure keywords (#18345)@plugin
and@config
(#18345)process.env.DEBUG
in@tailwindcss/node
(#18485)false
orundefined
properties (#18571)@tailwindcss/postcss
viatransformAssetUrls: false
(#18321)addEventListener
and JavaScript variable names (#18718)--border-color-*
theme keys individe-*
utilities for backwards compatibility (#18704).hdr
and.exr
files for classes by default (#18734)SuperchupuDev/tinyglobby (tinyglobby)
v0.2.15
Compare Source
Added
Documentation page at https://superchupu.dev/tinyglobby,
which also contains a library comparison page and migration guide.
It's been a huge effort that took two months to make.
Big thanks to outslept, 43081j
and benmccann for helping out! ❤️
JSDoc to all functions and options based on the online documentation page
Benchmarks with help from
43081j and benmccann
braceExpansion
optionextglob
optionfs
optionglobstar
option by benmccannsignal
optionpackage.json
export astinyglobby/package.json
Ability to pass readonly types by TomerAberbach
Support for
URL
s incwd
optionChanged
Rewritten path processing algorithm leading to a huge performance increase in many cases
with help from 43081j and benmccann
Deprecated using
patterns
inside the options objectEnabled trusted publishing using npm's OIDC support
Fixed
[!abc]
+++
breaking the partial matchervercel/turborepo (turbo)
v2.5.7
Compare Source
v2.5.6
: Turborepo v2.5.6Compare Source
What's Changed
Docs
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 is behind base branch, 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.