Bump the miscs group with 39 updates
Type: Pull Request
State: Closed
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 2
(4 months ago)
(4 months ago)
(4 months ago)
dependencies javascript
poad
Bumps the miscs group with 39 updates:
Updates typescript-eslint
from 8.32.1 to 8.33.0
Release notes
Sourced from typescript-eslint's releases.
v8.33.0
8.33.0 (2025-05-26)
🚀 Features
- create standalone project-service, tsconfig-utils packages (#11182)
❤️ Thank You
- Josh Goldberg ✨
You can read about our versioning strategy and releases on our website.
Changelog
Sourced from typescript-eslint's changelog.
8.33.0 (2025-05-26)
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.
Commits
Updates @types/node
from 22.15.21 to 22.15.23
Commits
- See full diff in compare view
Updates @types/react
from 19.1.5 to 19.1.6
Commits
- See full diff in compare view
Updates aws-cdk-lib
from 2.198.0 to 2.199.0
Release notes
Sourced from aws-cdk-lib's releases.
v2.199.0
âš BREAKING CHANGES TO EXPERIMENTAL FEATURES
- cloudformation: Some L1 resources experienced breaking changes due to updated CloudFormation resources. Please check the notes for each specific module for more information.
- vpc-lattice: the
name
andresourceConfigurationType
property inCfnResourceConfigurationProps
has changed from optional to required. Also, thename
,subnetIds
andvpcIdentifier
properties inCfnResourceGatewayProps
have changed from optional to mandatory.Features
- appconfig: deletion protection check for configuration profile (#34418) (ce88c76)
- cloudformation: update L1 CloudFormation resource definitions (#34555) (64662b2)
- ecs-patterns: add minHealthyPercent and maxHealthyPercent props to NetworkMultipleTargetGroupsFargateService (#34516) (a434aed), closes #34368
- eks:
Addon
support configurationValues (#34061) (b420033), closes #34001- events-targets: enable opt-in to use an IAM role for SnsTopic target (#34259) (a3a0cf0)
- stepfunctions-tasks: bedrock createModelCustomizationJob integration (#31913) (0c653d3), closes #29042
Bug Fixes
- elasticloadbalancingv2: add validation on application listeners for certificates on HTTP protocol (#34233) (ca065bb)
- rds: fix incorrect import/export combination check in AuroraMysqlEngineVersion.of() (#33564) (9e41154), closes #33562 #33562
Alpha modules (2.199.0-alpha.0)
Changelog
Sourced from aws-cdk-lib's changelog.
Changelog
All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
2.199.0-alpha.0 (2025-05-27)
2.198.0-alpha.0 (2025-05-22)
âš BREAKING CHANGES TO EXPERIMENTAL FEATURES
- amplify: A compute role is created when
platform
isPlatform.WEB_COMPUTE
orPlatform.WEB_DYNAMIC
.Features
- amplify: add compute role support for Amplify app (#33962) (7490b92), closes #33882
- ec2: add i7i instance class (#34453) (3fe8ab4)
2.197.0-alpha.0 (2025-05-20)
2.196.1-alpha.0 (2025-05-19)
2.196.0-alpha.0 (2025-05-15)
Features
- msk: support Kafka versions 3.9.x and 3.9.x Kraft (#34213) (a1226db)
- pipes-targets: add SNS (#34159) (2f846b3)
- s3tables: server-side encryption by customer managed KMS key (#34229) (488f0db)
Bug Fixes
- ec2: dual-stack vpc without private subnets creates EgressOnlyInternetGateway (under feature flag) (#34437) (35e818b), closes #30981
- ec2-alpha: fix resource id references and tags for migration behind feature flag (#34377) (aa73534)
2.195.0-alpha.0 (2025-05-07)
âš BREAKING CHANGES TO EXPERIMENTAL FEATURES
- iot: By default,
deviceDertificateAgeCheck
is automatically enabled.Features
... (truncated)
Commits
bba02df
chore: update analytics metadata blueprints64662b2
feat(cloudformation): update L1 CloudFormation resource definitions (#34555)0bce2f0
revert(ec2): updatePrefixList.fromLookup()
to expect the result from CcApi...b420033
feat(eks):Addon
support configurationValues (#34061)04061f2
chore(ec2): updatePrefixList.fromLookup()
to expect the result from CcApi ...ca065bb
fix(elasticloadbalancingv2): add validation on application listeners for cert...ef5edf5
chore(ec2): update vpc README with vpc lookup method (#34544)7fa3bbd
chore: npm-check-updates && yarn upgrade (#34513)0c653d3
feat(stepfunctions-tasks): bedrock createModelCustomizationJob integration (#...a3a0cf0
feat(events-targets): enable opt-in to use an IAM role for SnsTopic target (#...- Additional commits viewable in compare view
Updates esbuild
from 0.25.4 to 0.25.5
Release notes
Sourced from esbuild's releases.
v0.25.5
Fix a regression with
browser
inpackage.json
(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browser
overrides specified inpackage.json
to fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0
package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?
modifier. These labels includedfunction
,import
,infer
,new
,readonly
, andtypeof
. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ]
Add CSS prefixes for the
stretch
sizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }
. That CSS is now transformed into this depending on what the--target=
setting includes:div { width: -webkit-fill-available; width: -moz-available; width: stretch; }
Changelog
Sourced from esbuild's changelog.
0.25.5
Fix a regression with
browser
inpackage.json
(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browser
overrides specified inpackage.json
to fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0
package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?
modifier. These labels includedfunction
,import
,infer
,new
,readonly
, andtypeof
. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ]
Add CSS prefixes for the
stretch
sizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }
. That CSS is now transformed into this depending on what the--target=
setting includes:div { width: -webkit-fill-available; width: -moz-available; width: stretch; }
Commits
ea453bf
publish 0.25.5 to npm223ddc6
fix #4187: browserpackage.json
regressionb2c8251
fix #4192: typescript tuple label parser edge case28cf2f3
fix #4184: css prefixes forstretch
bee1b09
fix comment indents9ddfe5f
runmake update-compat-table
c339f34
fix a misplaced comment- See full diff in compare view
Updates @babel/compat-data
from 7.27.2 to 7.27.3
Release notes
Sourced from @​babel/compat-data
's releases.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)Committers: 7
- Babel Bot (
@​babel-bot
)- Huáng Jùnlià ng (
@​JLHwung
)- Nicolò Ribaudo (
@​nicolo-ribaudo
)- Vik R (
@​vikr01
)@​liuxingbaoyu
@​magic-akari
- fisker Cheung (
@​fisker
)
Changelog
Sourced from @​babel/compat-data
's changelog.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)
Commits
da5e371
v7.27.3ce7a631
Update compat data (#17325)- See full diff in compare view
Updates @babel/generator
from 7.27.1 to 7.27.3
Release notes
Sourced from @​babel/generator
's releases.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)Committers: 7
- Babel Bot (
@​babel-bot
)- Huáng Jùnlià ng (
@​JLHwung
)- Nicolò Ribaudo (
@​nicolo-ribaudo
)- Vik R (
@​vikr01
)@​liuxingbaoyu
@​magic-akari
- fisker Cheung (
@​fisker
)v7.27.2 (2025-05-06)
:bug: Bug Fix
babel-parser
- #17289 fix:
@babel/parser/bin/index.js
containsnode:
protocol require (@​liuxingbaoyu
)- #17291 fix: Private class method not found when TS and estree (
@​liuxingbaoyu
)babel-plugin-transform-object-rest-spread
- #17281 Fix: improve object rest handling in array pattern (
@​JLHwung
)babel-plugin-transform-modules-commonjs
,babel-template
- #17284 fix(babel-template): Properly handle empty string replacements (
@​magic-akari
):running_woman: Performance
babel-cli
- #17285 Enable Node compile cache for
@babel/cli
(@​JLHwung
)Committers: 5
- Babel Bot (
@​babel-bot
)- Huáng Jùnlià ng (
@​JLHwung
)- Nicolò Ribaudo (
@​nicolo-ribaudo
)@​liuxingbaoyu
@​magic-akari
Changelog
Sourced from @​babel/generator
's changelog.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)v7.27.2 (2025-05-06)
:bug: Bug Fix
babel-parser
- #17289 fix:
@babel/parser/bin/index.js
containsnode:
protocol require (@​liuxingbaoyu
)- #17291 fix: Private class method not found when TS and estree (
@​liuxingbaoyu
)babel-plugin-transform-object-rest-spread
- #17281 Fix: improve object rest handling in array pattern (
@​JLHwung
)babel-plugin-transform-modules-commonjs
,babel-template
- #17284 fix(babel-template): Properly handle empty string replacements (
@​magic-akari
):running_woman: Performance
babel-cli
- #17285 Enable Node compile cache for
@babel/cli
(@​JLHwung
)
Commits
Updates @babel/helper-annotate-as-pure
from 7.27.1 to 7.27.3
Release notes
Sourced from @​babel/helper-annotate-as-pure
's releases.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)Committers: 7
- Babel Bot (
@​babel-bot
)- Huáng Jùnlià ng (
@​JLHwung
)- Nicolò Ribaudo (
@​nicolo-ribaudo
)- Vik R (
@​vikr01
)@​liuxingbaoyu
@​magic-akari
- fisker Cheung (
@​fisker
)v7.27.2 (2025-05-06)
:bug: Bug Fix
babel-parser
- #17289 fix:
@babel/parser/bin/index.js
containsnode:
protocol require (@​liuxingbaoyu
)- #17291 fix: Private class method not found when TS and estree (
@​liuxingbaoyu
)babel-plugin-transform-object-rest-spread
- #17281 Fix: improve object rest handling in array pattern (
@​JLHwung
)babel-plugin-transform-modules-commonjs
,babel-template
- #17284 fix(babel-template): Properly handle empty string replacements (
@​magic-akari
):running_woman: Performance
babel-cli
- #17285 Enable Node compile cache for
@babel/cli
(@​JLHwung
)Committers: 5
- Babel Bot (
@​babel-bot
)- Huáng Jùnlià ng (
@​JLHwung
)- Nicolò Ribaudo (
@​nicolo-ribaudo
)@​liuxingbaoyu
@​magic-akari
Changelog
Sourced from @​babel/helper-annotate-as-pure
's changelog.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)v7.27.2 (2025-05-06)
:bug: Bug Fix
babel-parser
- #17289 fix:
@babel/parser/bin/index.js
containsnode:
protocol require (@​liuxingbaoyu
)- #17291 fix: Private class method not found when TS and estree (
@​liuxingbaoyu
)babel-plugin-transform-object-rest-spread
- #17281 Fix: improve object rest handling in array pattern (
@​JLHwung
)babel-plugin-transform-modules-commonjs
,babel-template
- #17284 fix(babel-template): Properly handle empty string replacements (
@​magic-akari
):running_woman: Performance
babel-cli
- #17285 Enable Node compile cache for
@babel/cli
(@​JLHwung
)
Commits
da5e371
v7.27.34b76a5f
Enabledot-notation
rule (#17301)- See full diff in compare view
Updates @babel/helper-module-transforms
from 7.27.1 to 7.27.3
Release notes
Sourced from @​babel/helper-module-transforms
's releases.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)Committers: 7
- Babel Bot (
@​babel-bot
)- Huáng Jùnlià ng (
@​JLHwung
)- Nicolò Ribaudo (
@​nicolo-ribaudo
)- Vik R (
@​vikr01
)@​liuxingbaoyu
@​magic-akari
- fisker Cheung (
@​fisker
)v7.27.2 (2025-05-06)
:bug: Bug Fix
babel-parser
- #17289 fix:
@babel/parser/bin/index.js
containsnode:
protocol require (@​liuxingbaoyu
)- #17291 fix: Private class method not found when TS and estree (
@​liuxingbaoyu
)babel-plugin-transform-object-rest-spread
- #17281 Fix: improve object rest handling in array pattern (
@​JLHwung
)babel-plugin-transform-modules-commonjs
,babel-template
- #17284 fix(babel-template): Properly handle empty string replacements (
@​magic-akari
):running_woman: Performance
babel-cli
- #17285 Enable Node compile cache for
@babel/cli
(@​JLHwung
)Committers: 5
- Babel Bot (
@​babel-bot
)- Huáng Jùnlià ng (
@​JLHwung
)- Nicolò Ribaudo (
@​nicolo-ribaudo
)@​liuxingbaoyu
@​magic-akari
Changelog
Sourced from @​babel/helper-module-transforms
's changelog.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
- #17257 Preserve class id when transforming using declarations with exported class (
@​JLHwung
)babel-parser
- #17312 fix(parser): properly handle optional markers in generator class methods (
@​magic-akari
)- #17307 fix(parser): Terminate modifier parsing at newline (
@​magic-akari
)babel-generator
,babel-parser
- #17308 Improve import phase parsing (
@​JLHwung
)v7.27.2 (2025-05-06)
:bug: Bug Fix
babel-parser
- #17289 fix:
@babel/parser/bin/index.js
containsnode:
protocol require (@​liuxingbaoyu
)- #17291 fix: Private class method not found when TS and estree (
@​liuxingbaoyu
)babel-plugin-transform-object-rest-spread
- #17281 Fix: improve object rest handling in array pattern (
@​JLHwung
)babel-plugin-transform-modules-commonjs
,babel-template
- #17284 fix(babel-template): Properly handle empty string replacements (
@​magic-akari
):running_woman: Performance
babel-cli
- #17285 Enable Node compile cache for
@babel/cli
(@​JLHwung
)
Commits
da5e371
v7.27.31d4546b
Preserve class id when transforming using declarations with exported class (#...- See full diff in compare view
Updates @babel/helpers
from 7.27.1 to 7.27.3
Release notes
Sourced from @​babel/helpers
's releases.
v7.27.3 (2025-05-27)
:bug: Bug Fix
babel-generator
- #17324 Improve multiline comments handling in yield/await expression (
@​JLHwung
)babel-helpers
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-regenerator
,babel-preset-env
,babel-runtime-corejs3
- #17328 Correctly set
.displayName
onGeneratorFunction
(@​nicolo-ribaudo
)babel-plugin-proposal-explicit-resource-management
- #17319 fix: handle shadowed binding in
for using of
body (@​JLHwung
)- #17317 fix: support named evaluation for using declaration (
@​JLHwung
)babel-plugin-proposal-decorators
,babel-types
- #17321 fix(converter): Remove
abstract
modifiers in class declaration to expression conversion (@​magic-akari
)babel-helper-module-transforms
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-tra...
Description has been truncated
Pull Request Statistics
0
0
+0
-0
Package Dependencies
@babel/helper-annotate-as-pure
npm
7.27.1 → 7.27.3
Patch
@babel/helper-module-transforms
npm
7.27.1 → 7.27.3
Patch
@esbuild/linux-mips64el
npm
0.25.4 → 0.25.5
Patch
Technical Details
ID: | 700395 |
UUID: | 3095632334 |
Node ID: | PR_kwDOKYCPlM6X341b |
Host: | GitHub |
Repository: | poad/next-ts-lambda-ssr-template |