Bump the production-dependencies group across 3 directories with 38 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 1
(3 months ago)
(3 months ago)
(3 months ago)
dependencies javascript
⚠️ Dependabot is rebasing this PR ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps the production-dependencies group with 38 updates in the / directory:
| Package | From | To | 
|---|---|---|
| esbuild | 0.25.5 | 
0.25.8 | 
| @aws-sdk/client-dynamodb | 3.840.0 | 
3.859.0 | 
| @aws-sdk/client-lambda | 3.840.0 | 
3.859.0 | 
| @aws-sdk/client-ses | 3.840.0 | 
3.859.0 | 
| @aws-sdk/client-sqs | 3.840.0 | 
3.859.0 | 
| @aws-sdk/client-sts | 3.840.0 | 
3.859.0 | 
| @aws-sdk/signature-v4-crt | 3.840.0 | 
3.858.0 | 
| @aws-sdk/util-dynamodb | 3.840.0 | 
3.859.0 | 
| @azure/msal-node | 3.6.2 | 
3.6.4 | 
| @fastify/aws-lambda | 5.1.4 | 
6.0.0 | 
| @fastify/cors | 11.0.1 | 
11.1.0 | 
| @middy/core | 6.3.2 | 
6.4.1 | 
| @middy/event-normalizer | 6.3.2 | 
6.4.1 | 
| @middy/sqs-partial-batch-failure | 6.3.2 | 
6.4.1 | 
| argon2 | 0.43.0 | 
0.43.1 | 
| fastify-ip | 1.2.0 | 
2.0.0 | 
| fastify-zod-openapi | 5.0.1 | 
5.2.0 | 
| ical-generator | 8.1.1 | 
9.0.0 | 
| ioredis | 5.6.1 | 
5.7.0 | 
| stripe | 18.3.0 | 
18.4.0 | 
| zod | 3.25.74 | 
4.0.14 | 
| zod-validation-error | 3.5.2 | 
4.0.1 | 
| @azure/msal-browser | 4.14.0 | 
4.18.0 | 
| @azure/msal-react | 3.0.14 | 
3.0.16 | 
| @mantine/core | 7.17.8 | 
8.2.2 | 
| @mantine/form | 7.17.8 | 
8.2.2 | 
| @mantine/hooks | 7.17.8 | 
8.2.2 | 
| @mantine/notifications | 7.17.8 | 
8.2.2 | 
| @tabler/icons-react | 3.34.0 | 
3.34.1 | 
| axios | 1.10.0 | 
1.11.0 | 
| dotenv-cli | 8.0.0 | 
10.0.0 | 
| pdfjs-dist | 4.10.38 | 
5.4.54 | 
| react | 19.1.0 | 
19.1.1 | 
| @types/react | 19.1.8 | 
19.1.9 | 
| react-dom | 19.1.0 | 
19.1.1 | 
| @types/react-dom | 19.1.6 | 
19.1.7 | 
| react-pdf | 9.2.1 | 
10.0.1 | 
| react-router-dom | 7.6.3 | 
7.7.1 | 
Bumps the production-dependencies group with 5 updates in the /src/api directory:
| Package | From | To | 
|---|---|---|
| @fastify/aws-lambda | 5.1.4 | 
6.0.0 | 
| fastify-ip | 1.2.0 | 
2.0.0 | 
| ical-generator | 8.1.1 | 
9.0.0 | 
| zod | 3.25.76 | 
4.0.14 | 
| zod-validation-error | 3.5.3 | 
4.0.1 | 
Bumps the production-dependencies group with 7 updates in the /src/ui directory:
| Package | From | To | 
|---|---|---|
| zod | 3.25.76 | 
4.0.14 | 
| @mantine/core | 7.17.8 | 
8.2.2 | 
| @mantine/form | 7.17.8 | 
8.2.2 | 
| @mantine/hooks | 7.17.8 | 
8.2.2 | 
| @mantine/notifications | 7.17.8 | 
8.2.2 | 
| dotenv-cli | 8.0.0 | 
10.0.0 | 
| react-pdf | 9.2.1 | 
10.0.1 | 
Updates esbuild from 0.25.5 to 0.25.8
Release notes
Sourced from esbuild's releases.
v0.25.8
Fix another TypeScript parsing edge case (#4248)
This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the
?:operator. The regression specifically involves parsing an arrow function containing a#privateidentifier inside the middle of a?:ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:class CachedDict { #has = (a: string) => dict.has(a); has = window ? (word: string): boolean => this.#has(word) : this.#has; }Fix a regression with the parsing of source phase imports
The change in the previous release to parse source phase imports failed to properly handle the following cases:
import source from 'bar' import source from from 'bar' import source type foo from 'bar'Parsing for these cases should now be fixed. The first case was incorrectly treated as a syntax error because esbuild was expecting the second case. And the last case was previously allowed but is now forbidden. TypeScript hasn't added this feature yet so it remains to be seen whether the last case will be allowed, but it's safer to disallow it for now. At least Babel doesn't allow the last case when parsing TypeScript, and Babel was involved with the source phase import specification.
v0.25.7
Parse and print JavaScript imports with an explicit phase (#4238)
This release adds basic syntax support for the
deferandsourceimport phases in JavaScript:
deferThis is a stage 3 proposal for an upcoming JavaScript feature that will provide one way to eagerly load but lazily initialize imported modules. The imported module is automatically initialized on first use. Support for this syntax will also be part of the upcoming release of TypeScript 5.9. The syntax looks like this:
import defer * as foo from "<specifier>"; const bar = await import.defer("<specifier>");Note that this feature deliberately cannot be used with the syntax
import defer foo from "<specifier>"orimport defer { foo } from "<specifier>".
sourceThis is a stage 3 proposal for an upcoming JavaScript feature that will provide another way to eagerly load but lazily initialize imported modules. The imported module is returned in an uninitialized state. Support for this syntax may or may not be a part of TypeScript 5.9 (see this issue for details). The syntax looks like this:
import source foo from "<specifier>"; const bar = await import.source("<specifier>");
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.25.8
Fix another TypeScript parsing edge case (#4248)
This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the
?:operator. The regression specifically involves parsing an arrow function containing a#privateidentifier inside the middle of a?:ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:class CachedDict { #has = (a: string) => dict.has(a); has = window ? (word: string): boolean => this.#has(word) : this.#has; }Fix a regression with the parsing of source phase imports
The change in the previous release to parse source phase imports failed to properly handle the following cases:
import source from 'bar' import source from from 'bar' import source type foo from 'bar'Parsing for these cases should now be fixed. The first case was incorrectly treated as a syntax error because esbuild was expecting the second case. And the last case was previously allowed but is now forbidden. TypeScript hasn't added this feature yet so it remains to be seen whether the last case will be allowed, but it's safer to disallow it for now. At least Babel doesn't allow the last case when parsing TypeScript, and Babel was involved with the source phase import specification.
0.25.7
Parse and print JavaScript imports with an explicit phase (#4238)
This release adds basic syntax support for the
deferandsourceimport phases in JavaScript:
deferThis is a stage 3 proposal for an upcoming JavaScript feature that will provide one way to eagerly load but lazily initialize imported modules. The imported module is automatically initialized on first use. Support for this syntax will also be part of the upcoming release of TypeScript 5.9. The syntax looks like this:
import defer * as foo from "<specifier>"; const bar = await import.defer("<specifier>");Note that this feature deliberately cannot be used with the syntax
import defer foo from "<specifier>"orimport defer { foo } from "<specifier>".
sourceThis is a stage 3 proposal for an upcoming JavaScript feature that will provide another way to eagerly load but lazily initialize imported modules. The imported module is returned in an uninitialized state. Support for this syntax may or may not be a part of TypeScript 5.9 (see this issue for details). The syntax looks like this:
import source foo from "<specifier>";
... (truncated)
Commits
8c71947publish 0.25.8 to npm0508f24some parsing fixes for source phase imports6e4be2fjs parser: recover from bad#privateidentifiersc9c6357fix #4248:#privateids in arrow fn body in?:9b42f68publish 0.25.7 to npm9ba01d1abs-paths: js api and testsca196c9fix for parser backtracking crash2979b84fix #4241: ts arrow function type backtrack (hack)1180410fix an unused variable warningfc3da57fix #4238: adddeferandsourceimport phases- Additional commits viewable in compare view
 
Updates @aws-sdk/client-dynamodb from 3.840.0 to 3.859.0
Release notes
Sourced from @aws-sdk/client-dynamodb's releases.
v3.859.0
3.859.0(2025-08-01)
Chores
Documentation Changes
- client-sns: Amazon SNS support for Amazon SQS fair queues (749eb139)
 - client-acm-pca: Doc-only update to add more information to GetCertificate action. (0309a7ef)
 New Features
- clients: update client endpoints as of 2025-08-01 (3c53767b)
 - client-aiops: This release includes fix for InvestigationGroup timestamp conversion issue. (ec627aee)
 - client-pcs: Add support for IPv6 Networking for Clusters. (e8774c17)
 - client-observabilityadmin: CloudWatch Observability Admin adds the ability to enable telemetry on AWS resources such as Amazon VPCs (Flow Logs) in customers AWS Accounts and Organizations. The release introduces new APIs to manage telemetry rules, which define telemetry settings to be applied on AWS resources. (39e204f9)
 - client-securityhub: Release new resource detail type CodeRepository (fb750f9a)
 - client-lightsail: This release adds support for the Asia Pacific (Jakarta) (ap-southeast-3) Region. (32d73d71)
 - client-auditmanager: Added a note to Framework APIs (CreateAssessmentFramework, GetAssessmentFramework, UpdateAssessmentFramework) clarifying that the Controls object returns a partial response when called through Framework APIs. Added documentation that the Framework's controlSources parameter is no longer supported. (dbff0ec3)
 - client-arc-region-switch: This is the initial SDK release for Region switch (6cc73c6a)
 Tests
For list of updated packages, view updated-packages.md in assets-3.859.0.zip
v3.858.0
3.858.0(2025-07-31)
Documentation Changes
- client-elastic-load-balancing-v2: This release enables secondary IP addresses for Network Load Balancers. (0a12a4ec)
 - update PR template (#7240) (205fd3ca)
 New Features
- clients: update client endpoints as of 2025-07-31 (38d91b61)
 - client-sesv2: This release introduces support for Multi-tenant management (41eae73b)
 - client-entityresolution: Add support for creating advanced rule-based matching workflows in AWS Entity Resolution. (f36fbb40)
 - client-quicksight: Added Impala connector support (1af8f7e6)
 - client-customer-profiles: The release updates standard profile with 2 new fields that supports account-level engagement. Updated APIs include CreateProfile, UpdateProfile, MergeProfiles, SearchProfiles, BatchGetProfile, GetSegmentMembership, CreateSegmentDefinition, CreateSegmentEstimate. (04e0957b)
 - client-glue: Added support for Route node, S3 Iceberg sources/targets, catalog Iceberg sources, DynamoDB ELT connector, AutoDataQuality evaluation, enhanced PII detection with redaction, Kinesis fan-out support, and new R-series worker types. (3cf6f20a)
 - client-workspaces-web: Added ability to log session activity on a portal to an S3 bucket. (1d75d430)
 - client-ec2: Added support for the force option for the EC2 instance terminate command. This feature enables customers to recover resources associated with an instance stuck in the shutting-down state as a result of rare issues caused by a frozen operating system or an underlying hardware problem. (d8adec80)
 
... (truncated)
Changelog
Sourced from @aws-sdk/client-dynamodb's changelog.
3.859.0 (2025-08-01)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.858.0 (2025-07-31)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.857.0 (2025-07-30)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.856.0 (2025-07-29)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.855.0 (2025-07-28)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.848.0 (2025-07-17)
Note: Version bump only for package
@aws-sdk/client-dynamodb3.846.0 (2025-07-16)
... (truncated)
Commits
0295172Publish v3.859.06e8cd3dPublish v3.858.0b94ebffPublish v3.857.0fe419e4chore(deps): bump @smithy/* to include fixes in core (#7232)6005f8aPublish v3.856.029842bfPublish v3.855.0c63c1e3Publish v3.848.0da10587Publish v3.846.08a37039Publish v3.845.037a6275fix(clients): upgrade@smithy/middleware-endpointto fix file/env endpoint re...- Additional commits viewable in compare view
 
Updates @aws-sdk/client-lambda from 3.840.0 to 3.859.0
Release notes
Sourced from @aws-sdk/client-lambda's releases.
v3.859.0
3.859.0(2025-08-01)
Chores
Documentation Changes
- client-sns: Amazon SNS support for Amazon SQS fair queues (749eb139)
 - client-acm-pca: Doc-only update to add more information to GetCertificate action. (0309a7ef)
 New Features
- clients: update client endpoints as of 2025-08-01 (3c53767b)
 - client-aiops: This release includes fix for InvestigationGroup timestamp conversion issue. (ec627aee)
 - client-pcs: Add support for IPv6 Networking for Clusters. (e8774c17)
 - client-observabilityadmin: CloudWatch Observability Admin adds the ability to enable telemetry on AWS resources such as Amazon VPCs (Flow Logs) in customers AWS Accounts and Organizations. The release introduces new APIs to manage telemetry rules, which define telemetry settings to be applied on AWS resources. (39e204f9)
 - client-securityhub: Release new resource detail type CodeRepository (fb750f9a)
 - client-lightsail: This release adds support for the Asia Pacific (Jakarta) (ap-southeast-3) Region. (32d73d71)
 - client-auditmanager: Added a note to Framework APIs (CreateAssessmentFramework, GetAssessmentFramework, UpdateAssessmentFramework) clarifying that the Controls object returns a partial response when called through Framework APIs. Added documentation that the Framework's controlSources parameter is no longer supported. (dbff0ec3)
 - client-arc-region-switch: This is the initial SDK release for Region switch (6cc73c6a)
 Tests
For list of updated packages, view updated-packages.md in assets-3.859.0.zip
v3.858.0
3.858.0(2025-07-31)
Documentation Changes
- client-elastic-load-balancing-v2: This release enables secondary IP addresses for Network Load Balancers. (0a12a4ec)
 - update PR template (#7240) (205fd3ca)
 New Features
- clients: update client endpoints as of 2025-07-31 (38d91b61)
 - client-sesv2: This release introduces support for Multi-tenant management (41eae73b)
 - client-entityresolution: Add support for creating advanced rule-based matching workflows in AWS Entity Resolution. (f36fbb40)
 - client-quicksight: Added Impala connector support (1af8f7e6)
 - client-customer-profiles: The release updates standard profile with 2 new fields that supports account-level engagement. Updated APIs include CreateProfile, UpdateProfile, MergeProfiles, SearchProfiles, BatchGetProfile, GetSegmentMembership, CreateSegmentDefinition, CreateSegmentEstimate. (04e0957b)
 - client-glue: Added support for Route node, S3 Iceberg sources/targets, catalog Iceberg sources, DynamoDB ELT connector, AutoDataQuality evaluation, enhanced PII detection with redaction, Kinesis fan-out support, and new R-series worker types. (3cf6f20a)
 - client-workspaces-web: Added ability to log session activity on a portal to an S3 bucket. (1d75d430)
 - client-ec2: Added support for the force option for the EC2 instance terminate command. This feature enables customers to recover resources associated with an instance stuck in the shutting-down state as a result of rare issues caused by a frozen operating system or an underlying hardware problem. (d8adec80)
 
... (truncated)
Changelog
Sourced from @aws-sdk/client-lambda's changelog.
3.859.0 (2025-08-01)
Note: Version bump only for package
@aws-sdk/client-lambda3.858.0 (2025-07-31)
Note: Version bump only for package
@aws-sdk/client-lambda3.857.0 (2025-07-30)
Note: Version bump only for package
@aws-sdk/client-lambda3.856.0 (2025-07-29)
Note: Version bump only for package
@aws-sdk/client-lambda3.855.0 (2025-07-28)
Note: Version bump only for package
@aws-sdk/client-lambda3.851.0 (2025-07-22)
Features
- client-lambda: This release migrated the model to Smithy keeping all features unchanged. (ba8907d)
 
... (truncated)
Commits
0295172Publish v3.859.06e8cd3dPublish v3.858.0b94ebffPublish v3.857.0fe419e4chore(deps): bump @smithy/* to include fixes in core (#7232)6005f8aPublish v3.856.029842bfPublish v3.855.0de286bbPublish v3.851.0ba8907dfeat(client-lambda): This release migrated the model to Smithy keeping all fe...c63c1e3Publish v3.848.0da10587Publish v3.846.0- Additional commits viewable in compare view
 
Updates @aws-sdk/client-ses from 3.840.0 to 3.859.0
Release notes
Sourced from @aws-sdk/client-ses's releases.
v3.859.0
3.859.0(2025-08-01)
Chores
Documentation Changes
- client-sns: Amazon SNS support for Amazon SQS fair queues (749eb139)
 - client-acm-pca: Doc-only update to add more information to GetCertificate action. (0309a7ef)
 New Features
- clients: update client endpoints as of 2025-08-01 (3c53767b)
 - client-aiops: This release includes fix for InvestigationGroup timestamp conversion issue. (ec627aee)
 - client-pcs: Add support for IPv6 Networking for Clusters. (e8774c17)
 - client-observabilityadmin: CloudWatch Observability Admin adds the ability to enable telemetry on AWS resources such as Amazon VPCs (Flow Logs) in customers AWS Accounts and Organizations. The release introduces new APIs to manage telemetry rules, which define telemetry settings to be applied on AWS resources. (39e204f9)
 - client-securityhub: Release new resource detail type CodeRepository (fb750f9a)
 - client-lightsail: This release adds support for the Asia Pacific (Jakarta) (ap-southeast-3) Region. (32d73d71)
 - client-auditmanager: Added a note to Framework APIs (CreateAssessmentFramework, GetAssessmentFramework, UpdateAssessmentFramework) clarifying that the Controls object returns a partial response when called through Framework APIs. Added documentation that the Framework's controlSources parameter is no longer supported. (dbff0ec3)
 - client-arc-region-switch: This is the initial SDK release for Region switch (6cc73c6a)
 Tests
For list of updated packages, view updated-packages.md in assets-3.859.0.zip
v3.858.0
3.858.0(2025-07-31)
Documentation Changes
- client-elastic-load-balancing-v2: This release enables secondary IP addresses for Network Load Balancers. (0a12a4ec)
 - update PR template (#7240) (205fd3ca)
 New Features
- clients: update client endpoints as of 2025-07-31 (38d91b61)
 - client-sesv2: This release introduces support for Multi-tenant management (41eae73b)
 - client-entityresolution: Add support for creating advanced rule-based matching workflows in AWS Entity Resolution. (f36fbb40)
 - client-quicksight: Added Impala connector support (1af8f7e6)
 - client-customer-profiles: The release updates standard profile with 2 new fields that supports account-level engagement. Updated APIs include CreateProfile, UpdateProfile, MergeProfiles, SearchProfiles, BatchGetProfile, GetSegmentMembership, CreateSegmentDefinition, CreateSegmentEstimate. (04e0957b)
 - client-glue: Added support for Route node, S3 Iceberg sources/targets, catalog Iceberg sources, DynamoDB ELT connector, AutoDataQuality evaluation, enhanced PII detection with redaction, Kinesis fan-out support, and new R-series worker types. (3cf6f20a)
 - client-workspaces-web: Added ability to log session activity on a portal to an S3 bucket. (1d75d430)
 - client-ec2: Added support for the force option for the EC2 instance terminate command. This feature enables customers to recover resources associated with an instance stuck in the shutting-down state as a result of rare issues caused by a frozen operating system or an underlying hardware problem. (d8adec80)
 
... (truncated)
Changelog
Sourced from @aws-sdk/client-ses's changelog.
3.859.0 (2025-08-01)
Note: Version bump only for package
@aws-sdk/client-ses3.858.0 (2025-07-31)
Note: Version bump only for package
@aws-sdk/client-ses3.857.0 (2025-07-30)
Note: Version bump only for package
@aws-sdk/client-ses3.856.0 (2025-07-29)
Note: Version bump only for package
@aws-sdk/client-ses3.855.0 (2025-07-28)
Note: Version bump only for package
@aws-sdk/client-ses3.848.0 (2025-07-17)
Note: Version bump only for package
@aws-sdk/client-ses3.846.0 (2025-07-16)
... (truncated)
Commits
0295172Publish v3.859.06e8cd3dPublish v3.858.0b94ebffPublish v3.857.0fe419e4chore(deps): bump @smithy/* to include fixes in core (#7232)6005f8aPublish v3.856.029842bfPublish v3.855.0c63c1e3Publish v3.848.0da10587Publish v3.846.08a37039Publish v3.845.037a6275fix(clients): upgrade@smithy/middleware-endpointto fix file/env endpoint re...- Additional commits viewable in compare view
 
Updates @aws-sdk/client-sqs from 3.840.0 to 3.859.0
Release notes
Sourced from @aws-sdk/client-sqs's releases.
v3.859.0
3.859.0(2025-08-01)
Chores
Documentation Changes
- client-sns: Amazon SNS support for Amazon SQS fair queues (749eb139)
 - client-acm-pca: Doc-only update to add more information to GetCertificate action. (0309a7ef)
 New Features
- clients: update client endpoints as of 2025-08-01 (3c53767b)
 - client-aiops: This release includes fix for InvestigationGroup timestamp conversion issue. (ec627aee)
 - client-pcs: Add support for IPv6 Networking for Clusters. (e8774c17)
 - client-observabilityadmin: CloudWatch Observability Admin adds the ability to enable telemetry on AWS resources such as Amazon VPCs (Flow Logs) in customers AWS Accounts and Organizations. The release introduces new APIs to manage telemetry rules, which define telemetry settings to be applied on AWS resources. (39e204f9)
 - client-securityhub: Release new resource detail type CodeRepository (fb750f9a)
 - client-lightsail: This release adds support for the Asia Pacific (Jakarta) (ap-southeast-3) Region. (32d73d71)
 - client-auditmanager: Added a note to Framework APIs (CreateAssessmentFramework, GetAssessmentFramework, UpdateAssessmentFramework) clarifying that the Controls object returns a partial response when called through Framework APIs. Added documentation that the Framework's controlSources parameter is no longer supported. (dbff0ec3)
 - client-arc-region-switch: This is the initial SDK release for Region switch (6cc73c6a)
 Tests
For list of updated packages, view updated-packages.md in assets-3.859.0.zip
v3.858.0
3.858.0(2025-07-31)
Documentation Changes
- client-elastic-load-balancing-v2: This release enables secondary IP addresses for Network Load Balancers. (0a12a4ec)
 - update PR template (#7240) (205fd3ca)
 New Features
- clients: update client endpoints as of 2025-07-31 (38d91b61)
 - client-sesv2: This release introduces support for Multi-tenant management (41eae73b)
 - client-entityresolution: Add support for creating advanced rule-based matching workflows in AWS Entity Resolution. (f36fbb40)
 - client-quicksight: Added Impala connector support (1af8f7e6)
 - client-customer-profiles: The release updates standard profile with 2 new fields that supports account-level engagement. Updated APIs include CreateProfile, UpdateProfile, MergeProfiles, SearchProfiles, BatchGetProfile, GetSegmentMembership, CreateSegmentDefinition, CreateSegmentEstimate. (04e0957b)
 - client-glue: Added support for Route node, S3 Iceberg sources/targets, catalog Iceberg sources, DynamoDB ELT connector, AutoDataQuality evaluation, enhanced PII detection with redaction, Kinesis fan-out support, and new R-series worker types. (3cf6f20a)
 - client-workspaces-web: Added ability to log session activity on a portal to an S3 bucket. (1d75d430)
 - client-ec2: Added support for the force option for the EC2 instance terminate command. This feature enables customers to recover resources associated with an instance stuck in the shutting-down state as a result of rare issues caused by a frozen operating system or an underlying hardware problem. (d8adec80)
 
... (truncated)
Changelog
Sourced from @aws-sdk/client-sqs's changelog.
3.859.0 (2025-08-01)
Note: Version bump only for package
@aws-sdk/client-sqs3.858.0 (2025-07-31)
Note: Version bump only for package
@aws-sdk/client-sqs3.857.0 (2025-07-30)
Note: Version bump only for package
@aws-sdk/client-sqs3.856.0 (2025-07-29)
Note: Version bump only for package
@aws-sdk/client-sqs3.855.0 (2025-07-28)
Note: Version bump only for package
@aws-sdk/client-sqs3.854.0 (2025-07-25)
Note: Version bump only for package
@aws-sdk/client-sqs3.848.0 (2025-07-17)
... (truncated)
Commits
0295172Publish v3.859.06e8cd3dPublish v3.858.0b94ebffPublish v3.857.0fe419e4chore(deps): bump @smithy/* to include fixes in core (#7232)6005f8aPublish v3.856.029842bfPublish v3.855.0512c493Publish v3.854.0eaee979docs(client-sqs): Documentation updates for Amazon SQS fair queues feature.c63c1e3Publish v3.848.0da10587Publish v3.846.0- Additional commits viewable in compare view
 
Updates @aws-sdk/client-sts from 3.840.0 to 3.859.0
Release notes
Sourced from @aws-sdk/client-sts's releases.
v3.859.0
3.859.0(2025-08-01)
Chores
Documentation Changes
- client-sns: Amazon SNS support for Amazon SQS fair queues (749eb139)
 - client-acm-pca: Doc-only update to add more information to GetCertificate action. (0309a7ef)
 New Features
- clients: update client endpoints as of 2025-08-01 (3c53767b)
 - client-aiops: This release includes fix for InvestigationGroup timestamp conversion issue. (ec627aee)
 - client-pcs: Add support for IPv6 Networking for Clusters. (e8774c17)
 - client-observabilityadmin: CloudWatch Observability Admin adds the ability to enable telemetry on AWS resources such as Amazon VPCs (Flow Logs) in customers AWS Accounts and Organizations. The release introduces new APIs to manage telemetry rules, which define telemetry settings to be applied on AWS resources. (39e204f9)
 - client-securityhub: Release new resource detail type CodeRepository (fb750f9a)
 - client-lightsail: This release adds support for the Asia Pacific (Jakarta) (ap-southeast-3) Region. (32d73d71)
 - client-auditmanager: Added a note to Framework APIs (CreateAssessmentFramework, GetAssessmentFramework, UpdateAssessmentFramework) clarifying that the Controls object returns a partial response when called through Framework APIs. Added documentation that the Framework's controlSources parameter is no longer supported. (dbff0ec3)
 - client-arc-region-switch: This is the initial SDK release for Region switch (6cc73c6a)
 Tests
For list of updated packages, view updated-packages.md in assets-3.859.0.zip
v3.858.0
3.858.0(2025-07-31)
Documentation Changes
- client-elastic-load-balancing-v2: This release enables secondary IP addresses for Network Load Balancers. (0a12a4ec)
 - update PR template (#7240) (205fd3ca)
 New Features
- clients: update client endpoints as of 2025-07-31 (38d91b61)
 - client-sesv2: This release introduces support for Multi-tenant management (41eae73b)
 - client-entityresolution: Add support for creating advanced rule-based matching workflows in AWS Entity Resolution. (f36fbb40)
 - client-quicksight: Added Impala connector support (1af8f7e6)
 - client-customer-profiles: The release updates standard profile with 2 new fields that supports account-level engagement. Updated APIs include CreateProfile, UpdateProfile, MergeProfiles, SearchProfiles, BatchGetProfile, GetSegmentMembership, CreateSegmentDefinition, CreateSegmentEstimate. (04e0957b)
 - client-glue: Added support for Route node, S3 Iceberg sources/targets, catalog Iceberg sources, DynamoDB ELT connector, AutoDataQuality evaluation, enhanced PII detection with redaction, Kinesis fan-out support, and new R-series worker types. (3cf6f20a)
 - client-workspaces-web: Added ability to log session activity on a portal to an S3 bucket. (1d75d430)
 - client-ec2: Added support for the force option for the EC2 instance terminate command. This feature enables customers to recover resources associated with an instance stuck in the shutting-down state as a result of rare issues caused by a frozen operating system or an underlying hardware problem. (d8adec80)
 
... (truncated)
Changelog
Sourced from @aws-sdk/client-sts's changelog.
3.859.0 (2025-08-01)
Note: Version bump only for package
@aws-sdk/client-sts3.858.0 (2025-07-31)
Note: Version bump only for package
@aws-sdk/client-sts3.857.0 (2025-07-30)
Note: Version bump only for package
@aws-sdk/client-sts3.856.0 (2025-07-29)
Note: Version bump only for package
@aws-sdk/client-sts3.855.0 (2025-07-28)
Note: Version bump only for package
@aws-sdk/client-sts3.848.0 (2025-07-17)
Note: Version bump only for package
@aws-sdk/client-sts3.846.0 (2025-07-16)
... (truncated)
Commits
0295172Publish v3.859.06e8cd3dPublish v3.858.0b94ebffPublish v3.857.0fe419e4chore(deps): bump @smithy/* to include fixes in core (#7232)6005f8aPublish v3.856.029842bfPublish v3.855.0c63c1e3Publish v3.848.0- 
          
Pull Request Statistics
Commits:
2Files Changed:
4Additions:
+486Deletions:
-777 
Package Dependencies
@aws-sdk/client-dynamodb
                  npm
3.840.0 → 3.859.0
                    Minor
@aws-sdk/signature-v4-crt
                  npm
3.840.0 → 3.858.0
                    Minor
@middy/sqs-partial-batch-failure
                  npm
6.3.2 → 6.4.1
                    Minor
Technical Details
| ID: | 4483231 | 
            
| UUID: | 2715617922 | 
            
| Node ID: | PR_kwDOMfoAbc6h3QqC | 
            
| Host: | GitHub | 
| Repository: | acm-uiuc/core | 
| Mergeable: | Yes | 
| Merge State: | Unstable |