fix(deps): update all non-major dependencies #29
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:
^3.879.0->^3.925.0^3.879.0->^3.925.0^0.25.9->^0.25.12^1.113.0->^1.118.0^1.113.0->^1.118.0^0.2.1013->^0.2.1025^29.4.1->^29.4.5Release Notes
aws/aws-sdk-js-v3 (@aws-sdk/client-cloudwatch)
v3.925.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.922.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.921.0Compare Source
Features
v3.920.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.919.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.918.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.917.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.916.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.914.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.913.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.911.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.910.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.908.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.907.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.906.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.901.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.899.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.896.0Compare Source
Features
v3.895.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.894.0Compare Source
Features
v3.893.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.891.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.890.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.888.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.887.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.886.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.885.0Compare Source
Features
v3.883.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
v3.882.0Compare Source
Note: Version bump only for package @aws-sdk/client-cloudwatch
aws/aws-sdk-js-v3 (@aws-sdk/client-ec2)
v3.925.0Compare Source
Features
v3.923.0Compare Source
Features
v3.922.0Compare Source
Features
v3.921.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.920.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.919.0Compare Source
Features
v3.918.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.917.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.916.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.915.0Compare Source
Features
v3.914.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.913.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.911.0Compare Source
Features
v3.910.0Compare Source
Features
v3.909.0Compare Source
Features
v3.908.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.907.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.906.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.901.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.899.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.898.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.896.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.895.0Compare Source
Features
v3.894.0Compare Source
Features
v3.893.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.892.0Compare Source
Features
v3.891.0Compare Source
Features
v3.890.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.888.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.887.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.886.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.883.0Compare Source
Note: Version bump only for package @aws-sdk/client-ec2
v3.882.0Compare Source
Features
v3.880.0Compare Source
Features
evanw/esbuild (esbuild)
v0.25.12Compare Source
Fix a minification regression with CSS media queries (#4315)
The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for
@media <media-type> and <media-condition-without-or> { ... }was missing an equality check for the<media-condition-without-or>part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.Update the list of known JavaScript globals (#4310)
This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global
Arrayproperty is considered to be side-effect free but accessing the globalscrollYproperty can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:From ES2017:
AtomicsSharedArrayBufferFrom ES2020:
BigInt64ArrayBigUint64ArrayFrom ES2021:
FinalizationRegistryWeakRefFrom ES2025:
Float16ArrayIteratorNote that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from
Iterator:Add support for the new
@view-transitionCSS rule (#4313)With this release, esbuild now has improved support for pretty-printing and minifying the new
@view-transitionrule (which esbuild was previously unaware of):The new view transition feature provides a mechanism for creating animated transitions between documents in a multi-page app. You can read more about view transition rules here.
This change was contributed by @yisibl.
Trim CSS rules that will never match
The CSS minifier will now remove rules whose selectors contain
:is()and:where()as those selectors will never match. These selectors can currently be automatically generated by esbuild when you give esbuild nonsensical input such as the following:This input is nonsensical because CSS nesting is (unfortunately) not supported inside of pseudo-elements such as
:before. Currently esbuild generates a rule containing:is()in this case when you tell esbuild to transform nested CSS into non-nested CSS. I think it's reasonable to do that as it sort of helps explain what's going on (or at least indicates that something is wrong in the output). It shouldn't be present in minified code, however, so this release now strips it out.v0.25.11Compare Source
Add support for
with { type: 'bytes' }imports (#4292)The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing
binaryloader. Here's an example:Lower CSS media query range syntax (#3748, #4293)
With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using
min-/max-prefixes for older browsers. For example, the following CSS:will be transformed like this with a target such as
--target=chrome100(or more specifically with--supported:media-range=falseif desired):v0.25.10Compare Source
Fix a panic in a minification edge case (#4287)
This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value
undefinedin this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):Fix
@supportsnested inside pseudo-element (#4265)When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as
::placeholderfor correctness. The CSS nesting specification says the following:However, it seems like this behavior is different for nested at-rules such as
@supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:aws/jsii (jsii-diff)
v1.118.0Compare Source
Features
Bug Fixes
v1.117.0Compare Source
Features
Bug Fixes
v1.116.0Compare Source
Bug Fixes
v1.115.0Compare Source
Features
class-covariant-overrides(#4924) (bac5377)Bug Fixes
v1.114.1Compare Source
Features
cdklabs/publib (jsii-release)
v0.2.1025Compare Source
0.2.1025 (2025-10-20)
Bug Fixes
v0.2.1024Compare Source
0.2.1024 (2025-10-13)
Bug Fixes
v0.2.1023Compare Source
0.2.1023 (2025-10-06)
Bug Fixes
v0.2.1022Compare Source
0.2.1022 (2025-09-30)
Features
v0.2.1021Compare Source
0.2.1021 (2025-09-29)
Bug Fixes
v0.2.1020Compare Source
0.2.1020 (2025-09-24)
Features
v0.2.1019Compare Source
0.2.1019 (2025-09-22)
Bug Fixes
v0.2.1018Compare Source
0.2.1018 (2025-09-16)
Bug Fixes
v0.2.1017Compare Source
0.2.1017 (2025-09-16)
Bug Fixes
v0.2.1016Compare Source
0.2.1016 (2025-09-15)
Bug Fixes
v0.2.1015Compare Source
0.2.1015 (2025-09-08)
Bug Fixes
v0.2.1014Compare Source
0.2.1014 (2025-09-01)
Bug Fixes
kulshekhar/ts-jest (ts-jest)
v29.4.5Compare Source
Bug Fixes
v29.4.4Compare Source
Bug Fixes
v29.4.3Compare Source
Bug Fixes
transpilationoption to replaceisolatedModulesoption (#5044) (5868761)v29.4.2Compare Source
Configuration
📅 Schedule: Branch creation - "before 2am 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 has been generated by Renovate Bot.