fix(deps): update all dependencies #1057
Open
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.9
->7.27.2
7.27.0
->7.27.1
2.29.2
->2.29.4
19.8.0
->19.8.1
19.8.0
->19.8.1
0.23.0
->0.24.0
^0.58.0
->^0.59.0
^0.200.0
->^0.201.0
^0.200.0
->^0.201.0
22.15.3
->22.15.18
22.15.0
->22.15.1
20.19.1
->20.19.2
0.25.3
->0.25.4
15.5.1
->15.5.2
22.15.0
->22.15.1
29.3.2
->29.3.4
0.28.3
->0.28.4
5.99.7
->5.99.8
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)changesets/changesets (@changesets/cli)
v2.29.4
Compare Source
Patch Changes
#1668
65d6632
Thanks @Andarist! - Fixed a crash in pre mode when trying to version private packages when tagging for private package is disabledUpdated dependencies [
65d6632
]:v2.29.3
Compare Source
Patch Changes
#1589
de8bebc
Thanks @remorses, @vzt7! - Fixed a crash in prerelease mode when a package misses the version field in itspackage.json
#1619
c1e8a78
Thanks @manucorporat! - Support../
inpublishConfig.directory
when publishing packagesUpdated dependencies [
de8bebc
]:conventional-changelog/commitlint (@commitlint/cli)
v19.8.1
Compare Source
Bug Fixes
conventional-changelog/commitlint (@commitlint/config-conventional)
v19.8.1
Compare Source
Note: Version bump only for package @commitlint/config-conventional
Thinkmill/manypkg (@manypkg/cli)
v0.24.0
Compare Source
Minor Changes
#248
456ca21
Thanks @bluwy! - Change the default value of thedefaultBranch
config from"master"
to"main"
#242
1763058
Thanks @spanishpear! - This package is now published as a pure ESM package.#245
a00f5f7
Thanks @Andarist! - Drop support for Bolt#244
f29df03
Thanks @Andarist! - Add"engines"
field for explicit node version support. The supported node versions are>=20.0.0
.Patch Changes
3cf8c4e
,1763058
,a00f5f7
,f29df03
]:open-telemetry/opentelemetry-js-contrib (@opentelemetry/auto-instrumentations-node)
v0.59.0
Compare Source
v0.58.1
Compare Source
open-telemetry/opentelemetry-js (@opentelemetry/exporter-metrics-otlp-http)
v0.201.0
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.
lint-staged/lint-staged (lint-staged)
v15.5.2
Compare Source
Patch Changes
5561321
Thanks @YimingIsCOLD! - Correctly handle colon (:
) characters in staged filenames.nodejs/node (node)
v22.15.1
Compare Source
kulshekhar/ts-jest (ts-jest)
v29.3.4
Compare Source
Bug Fixes
TsJestTransformerOptions
type (3b11e29), closes #4247rewriteRelativeImportExtensions
always (9b1f472), closes #4855v29.3.3
Compare Source
Bug Fixes
isolatedDeclarations
(5d6b35f), closes #4847TypeStrong/TypeDoc (typedoc)
v0.28.4
Compare Source
Features
Bug Fixes
The
chevronSmall
helper is now deprecated and will be removed with v0.29.0.@hidden
will no longer appear in the"Hierarchy" section of the docs.
Thanks!
webpack/webpack (webpack)
v5.99.8
Compare Source
Fixes
@types/node
Configuration
📅 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 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.