fix(deps): update all non-major dependencies #469
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.26.10
->^7.27.1
^7.26.7
->^7.27.1
^7.25.9
->^7.27.1
^7.25.9
->^7.27.1
^7.25.9
->^7.27.1
^9.25.1
->^9.26.0
^9.0.3
->^9.0.4
^7.1.3
->^7.1.5
^22.15.2
->^22.15.18
^19.1.2
->^19.1.4
^19.1.2
->^19.1.5
19.1.0-rc.1
->19.1.0-rc.2
^0.25.3
->^0.25.4
^9.25.1
->^9.26.0
^4.11.0
->^4.11.1
^17.17.0
->^17.18.0
^16.0.0
->^16.1.0
^15.5.1
->^15.5.2
10.9.0
->10.11.0
19.1.0-rc.1
->19.1.0-rc.2
^7.5.2
->^7.6.0
^6.1.17
->^6.1.18
^4.19.3
->^4.19.4
^8.31.0
->^8.32.1
^6.3.5
->^6.3.10
^3.1.2
->^3.1.3
Release Notes
babel/babel (@babel/core)
v7.27.1
Compare Source
👓 Spec Compliance
babel-parser
using of
as lexical declaration within for (@JLHwung)babel-parser
,babel-types
🐛 Bug Fix
babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
,babel-traverse
babel-helper-wrap-function
,babel-plugin-transform-async-to-generator
babel-helper-remap-async-to-generator
,babel-plugin-transform-async-to-generator
babel-helper-fixtures
,babel-parser
babel-generator
,babel-parser
babel-parser
babel-compat-data
,babel-preset-env
babel-traverse
babel-generator
💅 Polish
babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining
,babel-plugin-proposal-decorators
,babel-plugin-transform-arrow-functions
,babel-plugin-transform-class-properties
,babel-plugin-transform-destructuring
,babel-plugin-transform-object-rest-spread
,babel-plugin-transform-optional-chaining
,babel-plugin-transform-parameters
,babel-traverse
🏠 Internal
babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
regenerator-runtime
dep in@babel/runtime
(@nicolo-ribaudo)babel-compat-data
,babel-preset-env
babel-compat-data
,babel-standalone
babel-register
@babel/register
to cts (@liuxingbaoyu)babel-cli
,babel-compat-data
,babel-core
,babel-generator
,babel-helper-compilation-targets
,babel-helper-fixtures
,babel-helper-module-imports
,babel-helper-module-transforms
,babel-helper-plugin-test-runner
,babel-helper-transform-fixture-test-runner
,babel-helpers
,babel-node
,babel-parser
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-systemjs
,babel-plugin-transform-modules-umd
,babel-plugin-transform-react-display-name
,babel-plugin-transform-regenerator
,babel-plugin-transform-runtime
,babel-plugin-transform-typeof-symbol
,babel-plugin-transform-typescript
,babel-preset-env
,babel-register
,babel-standalone
,babel-types
babel-plugin-transform-regenerator
babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
babel-helpers
,babel-plugin-transform-regenerator
babel-helpers
🔬 Output optimization
babel-helpers
,babel-plugin-transform-modules-commonjs
,babel-runtime-corejs3
interopRequireWildcard
size (@liuxingbaoyu)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
regeneratorRuntime
size (@liuxingbaoyu)eslint/eslint (@eslint/js)
v9.26.0
Compare Source
swc-project/plugins (@swc/plugin-emotion)
v9.0.4
Patch Changes
5ddbaeb
: Update swc_core to v23swc-project/plugins (@swc/plugin-styled-components)
v7.1.5
Patch Changes
0d14c35
: Use correct span hygienev7.1.4
Patch Changes
5ddbaeb
: Update swc_core to v23facebook/react (babel-plugin-react-compiler)
v19.1.0-rc.2
Compare Source
evanw/esbuild (esbuild)
v0.25.4
Compare Source
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhost
where the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
cors
option will now set theAccess-Control-Allow-Origin
response header when the request has a matchingOrigin
header. Note that this currently only works for requests that don't send a preflightOPTIONS
request, as esbuild's development server doesn't currently supportOPTIONS
requests.Some examples:
CLI:
JS:
Go:
The special origin
*
can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.Pass through invalid URLs in source maps unmodified (#4169)
This fixes a regression in version 0.25.0 where
sources
in source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation ofsources
from file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs insources
should now be passed through unmodified.Handle exports named
__proto__
in ES modules (#4162, #4163)In JavaScript, the special property name
__proto__
sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named__proto__
so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.This fix was contributed by @magic-akari.
eslint/eslint (eslint)
v9.26.0
Compare Source
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)
v4.11.1
Compare Source
Patch Changes
fc4c72c
Thanks @SukkaW! - fix: accept non-array resolver inresolver-next
settingeslint-community/eslint-plugin-n (eslint-plugin-n)
v17.18.0
Compare Source
🌟 Features
tryExtensions
in the ruleno-unpublished-import
(#429) (002ac9c)process.getBuiltinModule()
(#435) (fca7cf4)process.getBuiltinModule()
(#433) (d4c7831)process.getBuiltinModule()
(#436) (83aa3a7)process.getBuiltinModule()
(#430) (9e97d8e)process.getBuiltinModule()
(#437) (6f5e81d)🩹 Fixes
https
inprefer-node-protocol
, and false negatives fornode:sqlite
innode-builtins
(#432) (bb21bd0)sindresorhus/globals (globals)
v16.1.0
Compare Source
5c58875
lint-staged/lint-staged (lint-staged)
v15.5.2
Compare Source
Patch Changes
5561321
Thanks @YimingIsCOLD! - Correctly handle colon (:
) characters in staged filenames.pnpm/pnpm (pnpm)
v10.11.0
Compare Source
Minor Changes
A new setting added for
pnpm init
to create apackage.json
withtype=module
, wheninit-type
ismodule
. 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 audit
command,--ignore
and--ignore-unfixable
#8474.Ignore all vulnerabilities that have no solution:
> pnpm audit --ignore-unfixable
Provide a list of CVE's to ignore those specifically, even if they have a resolution.
> pnpm audit --ignore=CVE-2021-1234 --ignore=CVE-2021-5678
Added support for recursively running pack in every project of a workspace #4351.
Now you can run
pnpm -r pack
to pack all packages in the workspace.Patch Changes
dangerouslyAllowAllBuilds
is set totrue
#9472.pnpm link
should work from inside a workspace #9506.workspaceConcurrency
toMath.min(os.availableParallelism(), 4)
#9493.strictPeerDependencies
istrue
but all issues are ignored bypeerDependencyRules
#9505.updateConfig
frompnpm-workspace.yaml
#9500.recursive pack
url.parse
usage to fix warning on Node.js 24 #9492.pnpm run
should be able to run commands from the workspace root, ifignoreScripts
is set tottrue
#4858.v10.10.0
Compare Source
Minor Changes
preResolution
,importPackage
, andfetchers
hooks from local pnpmfile.Patch Changes
cd
command, whenshellEmulator
istrue
#7838.pnpm-workspace.yaml
#9453.npm_package_json
environment variable to the executed scripts #9452.--reporter=silent
option.facebook/react (react-compiler-runtime)
v19.1.0-rc.2
Compare Source
remix-run/react-router (react-router-dom)
v7.6.0
Compare Source
Patch Changes
[email protected]
v7.5.3
Compare Source
Patch Changes
[email protected]
styled-components/styled-components (styled-components)
v6.1.18
Compare Source
privatenumber/tsx (tsx)
v4.19.4
Compare Source
typescript-eslint/typescript-eslint (typescript-eslint)
v8.32.1
Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.32.0
Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.31.1
Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
vitejs/rolldown-vite (vite)
v6.3.10
Compare Source
transformWithEsbuild
(#173) (1ee8ef4), closes #173ResolvedConfig.createResolver
and recommendcreateIdResolver
(#20031) (d101d64), closes #20031devEnvironmentOptions.moduleRunnerTransform
(#20035) (338081d), closes #20035v6.3.9
Compare Source
@rolldown/pluginutils
(#166) (3903193), closes #166useDefineForClassFields=false
withtarget>=es2022
(9933779)cleanGlobalCLIOptions()
clean--force
(#19999) (d4a171a), closes #19999v6.3.8
Compare Source
Rollup.RollupWatcherEvent
type (#152) (1b31e92), closes #152v6.3.7
Compare Source
shouldTransformCachedModule
for compat (#150) (f5d2494), closes #150v6.3.6
Compare Source
typescript.removeClassFieldsWithoutInitializer
foruseDefineForClassFields=false
(#148) (fca16ad), closes #148require
to import externals in optimized dependenci (efc5eab), closes #19940Rollup
type more compatible with Rollup (#145) (f086663), closes #145vitest-dev/vitest (vitest)
v3.1.3
Compare Source
🐞 Bug Fixes
inline: true
is set - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/7856 (a83f3)--merge-reports
to shConfiguration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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.