Bump the dev-dependencies group in /resources with 4 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 0
(about 1 month ago)
(about 1 month ago)
(about 1 month ago)
by SebRamsland
dependencies javascript
Bumps the dev-dependencies group in /resources with 4 updates: @types/aws-lambda, @types/node, @aws-sdk/client-cognito-identity-provider and esbuild.
Updates @types/aws-lambda from 8.10.152 to 8.10.153
Commits
- See full diff in compare view
Updates @types/node from 24.3.0 to 24.6.0
Commits
- See full diff in compare view
Updates @aws-sdk/client-cognito-identity-provider from 3.879.0 to 3.899.0
Release notes
Sourced from @aws-sdk/client-cognito-identity-provider's releases.
v3.899.0
3.899.0(2025-09-29)
Chores
- codegen:
New Features
- clients: update client endpoints as of 2025-09-29 (341145bf)
- client-imagebuilder: This release introduces several new features and improvements to enhance pipeline management, logging, and resource configuration. (3659afe3)
- client-bedrock: Release for fixing GetFoundationModel API behavior. Imported and custom models have their own exclusive API and GetFM should not accept those ARNS as input (e8e4a5d6)
- client-vpc-lattice: Adds support for specifying the number of IPv4 addresses in each ENI for the resource gateway for VPC Lattice. (7baea902)
- client-bedrock-runtime: New stop reason for Converse and ConverseStream (323c12bd)
Bug Fixes
For list of updated packages, view updated-packages.md in assets-3.899.0.zip
v3.898.0
3.898.0(2025-09-26)
Documentation Changes
- client-ec2: This release includes documentation updates for Amazon EBS General Purpose SSD (gp3) volumes with larger size and higher IOPS and throughput. (bb0e673b)
New Features
- clients: update client endpoints as of 2025-09-26 (6ffe6c11)
- client-redshift: Support tagging and tag propagation to IAM Identity Center for Redshift Idc Applications (82795e3a)
- client-bedrock-agent-runtime: This release enhances the information provided through Flow Traces. New information includes source/next node tracking, execution chains for complex nodes, dependency action (operation) details, and dependency traces. (0444d5c2)
- client-dynamodb-streams: Added support for IPv6 compatible endpoints for DynamoDB Streams. (c763e405)
- client-billing: Add ability to combine custom billing views to create new consolidated views. (dcc6ea33)
- client-connect: Adds supports for manual contact picking (WorkList) operations on Routing Profiles, Agent Management and SearchContacts APIs. (3dbdb5f0)
- client-cost-explorer: Support for payer account dimension and billing view health status. (8ddf547e)
- client-bedrock-data-automation: Added support for configurable Speaker Labeling and Channel Labeling features for Audio modality. (c81765a4)
For list of updated packages, view updated-packages.md in assets-3.898.0.zip
v3.897.0
... (truncated)
Changelog
Sourced from @aws-sdk/client-cognito-identity-provider's changelog.
3.899.0 (2025-09-29)
Note: Version bump only for package
@aws-sdk/client-cognito-identity-provider3.896.0 (2025-09-24)
Note: Version bump only for package
@aws-sdk/client-cognito-identity-provider3.895.0 (2025-09-23)
Note: Version bump only for package
@aws-sdk/client-cognito-identity-provider3.894.0 (2025-09-22)
Note: Version bump only for package
@aws-sdk/client-cognito-identity-provider3.893.0 (2025-09-19)
Note: Version bump only for package
@aws-sdk/client-cognito-identity-provider3.891.0 (2025-09-17)
Note: Version bump only for package
@aws-sdk/client-cognito-identity-provider3.890.0 (2025-09-16)
... (truncated)
Commits
99ff240Publish v3.899.0ad1514dchore(codegen): sync for separating error schema & ctor (#7377)115af67Publish v3.896.076ac1dechore(codegen): bump '@smithy/*' versions (#7370)717bb16Publish v3.895.0de69eb5Publish v3.894.06cdb1aePublish v3.893.0ef0345cchore(codegen): sync for Uint8Array genericity (#7359)3cace3ePublish v3.891.02922063chore(codegen): codegen sync for command doc update and retry trait (#7353)- Additional commits viewable in compare view
Updates esbuild from 0.25.9 to 0.25.10
Release notes
Sourced from esbuild's releases.
v0.25.10
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):function identity(x) { return x } identity({ y: identity(123) })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:The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.
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:/* Original code */ ::placeholder { color: red; body & { color: green } @supports (color: blue) { color: blue } }/* Old output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
{
color: blue;
}
}/* New output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
::placeholder {
color: blue;
}
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.25.10
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):function identity(x) { return x } identity({ y: identity(123) })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:The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.
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:/* Original code */ ::placeholder { color: red; body & { color: green } @supports (color: blue) { color: blue } }/* Old output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
{
color: blue;
}
}/* New output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
::placeholder {
color: blue;
... (truncated)
Commits
d6b668fpublish 0.25.10 to npm5088c19refactor: use strings.Builder (#4290)755da31runmake update-compat-tablea1d9c86fix #4287: marked the wrong issue as fixed73a0b2afix #4286: minifier panic due to identity function134dadffix #4265:@supportsnested inside::pseudo- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
2
+650
-649
Package Dependencies
@types/node
npm
24.3.0 → 24.6.0
Minor
/resources
esbuild
npm
0.25.9 → 0.25.10
Patch
/resources
npm
3.879.0 → 3.899.0
Minor
/resources
@types/aws-lambda
npm
8.10.152 → 8.10.153
Patch
/resources
Technical Details
| ID: | 8876412 |
| UUID: | 2875930904 |
| Node ID: | PR_kwDOM-UeGc6razkY |
| Host: | GitHub |
| Repository: | skrastrek/terraform-modules-aws-lambda-cognito-link-federated-user |
| Merge State: | Unknown |