An open index of dependabot pull requests across open source projects.

Bump the production-dependencies group across 3 directories with 38 updates

Closed
Number: #239
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: August 03, 2025 at 04:46 AM UTC
(about 1 month ago)
Updated: August 03, 2025 at 04:54 AM UTC
(about 1 month ago)
Closed: August 03, 2025 at 04:54 AM UTC
(about 1 month ago)
Time to Close: 8 minutes
Labels:
dependencies javascript
Description:

⚠️ 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 #private identifier 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 defer and source import phases in JavaScript:

    • defer

      This 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>" or import defer { foo } from "<specifier>".

    • source

      This 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 #private identifier 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 defer and source import phases in JavaScript:

    • defer

      This 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>" or import defer { foo } from "<specifier>".

    • source

      This 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
  • 8c71947 publish 0.25.8 to npm
  • 0508f24 some parsing fixes for source phase imports
  • 6e4be2f js parser: recover from bad #private identifiers
  • c9c6357 fix #4248: #private ids in arrow fn body in ?:
  • 9b42f68 publish 0.25.7 to npm
  • 9ba01d1 abs-paths: js api and tests
  • ca196c9 fix for parser backtracking crash
  • 2979b84 fix #4241: ts arrow function type backtrack (hack)
  • 1180410 fix an unused variable warning
  • fc3da57 fix #4238: add defer and source import 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
  • codegen: sync for omitting protocols files from schema-serde (#7242) (b25304f1)
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
  • token-providers: add integ test for fromEnvSigningName (#7241) (08c6c214)

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-dynamodb

3.858.0 (2025-07-31)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.857.0 (2025-07-30)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.856.0 (2025-07-29)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.855.0 (2025-07-28)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.848.0 (2025-07-17)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.846.0 (2025-07-16)

... (truncated)

Commits

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
  • codegen: sync for omitting protocols files from schema-serde (#7242) (b25304f1)
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
  • token-providers: add integ test for fromEnvSigningName (#7241) (08c6c214)

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-lambda

3.858.0 (2025-07-31)

Note: Version bump only for package @​aws-sdk/client-lambda

3.857.0 (2025-07-30)

Note: Version bump only for package @​aws-sdk/client-lambda

3.856.0 (2025-07-29)

Note: Version bump only for package @​aws-sdk/client-lambda

3.855.0 (2025-07-28)

Note: Version bump only for package @​aws-sdk/client-lambda

3.851.0 (2025-07-22)

Features

  • client-lambda: This release migrated the model to Smithy keeping all features unchanged. (ba8907d)

... (truncated)

Commits

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
  • codegen: sync for omitting protocols files from schema-serde (#7242) (b25304f1)
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
  • token-providers: add integ test for fromEnvSigningName (#7241) (08c6c214)

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-ses

3.858.0 (2025-07-31)

Note: Version bump only for package @​aws-sdk/client-ses

3.857.0 (2025-07-30)

Note: Version bump only for package @​aws-sdk/client-ses

3.856.0 (2025-07-29)

Note: Version bump only for package @​aws-sdk/client-ses

3.855.0 (2025-07-28)

Note: Version bump only for package @​aws-sdk/client-ses

3.848.0 (2025-07-17)

Note: Version bump only for package @​aws-sdk/client-ses

3.846.0 (2025-07-16)

... (truncated)

Commits

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
  • codegen: sync for omitting protocols files from schema-serde (#7242) (b25304f1)
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
  • token-providers: add integ test for fromEnvSigningName (#7241) (08c6c214)

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-sqs

3.858.0 (2025-07-31)

Note: Version bump only for package @​aws-sdk/client-sqs

3.857.0 (2025-07-30)

Note: Version bump only for package @​aws-sdk/client-sqs

3.856.0 (2025-07-29)

Note: Version bump only for package @​aws-sdk/client-sqs

3.855.0 (2025-07-28)

Note: Version bump only for package @​aws-sdk/client-sqs

3.854.0 (2025-07-25)

Note: Version bump only for package @​aws-sdk/client-sqs

3.848.0 (2025-07-17)

... (truncated)

Commits

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
  • codegen: sync for omitting protocols files from schema-serde (#7242) (b25304f1)
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
  • token-providers: add integ test for fromEnvSigningName (#7241) (08c6c214)

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-sts

3.858.0 (2025-07-31)

Note: Version bump only for package @​aws-sdk/client-sts

3.857.0 (2025-07-30)

Note: Version bump only for package @​aws-sdk/client-sts

3.856.0 (2025-07-29)

Note: Version bump only for package @​aws-sdk/client-sts

3.855.0 (2025-07-28)

Note: Version bump only for package @​aws-sdk/client-sts

3.848.0 (2025-07-17)

Note: Version bump only for package @​aws-sdk/client-sts

3.846.0 (2025-07-16)

... (truncated)

Commits
Package Dependencies
Ecosystem:
npm
Version Change:
7.6.3 → 7.7.1
Update Type:
Minor
Package:
zod
Ecosystem:
npm
Version Change:
3.25.74 → 4.0.14
Update Type:
Major
Package:
axios
Ecosystem:
npm
Version Change:
1.10.0 → 1.11.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.840.0 → 3.859.0
Update Type:
Minor
Package:
stripe
Ecosystem:
npm
Version Change:
18.3.0 → 18.4.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
19.1.8 → 19.1.9
Update Type:
Patch
Package:
react-dom
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.1.6 → 19.1.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.840.0 → 3.859.0
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.5 → 0.25.8
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.6.2 → 3.6.4
Update Type:
Patch
Package:
react
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Package:
pdfjs-dist
Ecosystem:
npm
Version Change:
4.10.38 → 5.4.54
Update Type:
Major
Package:
dotenv-cli
Ecosystem:
npm
Version Change:
8.0.0 → 10.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
3.840.0 → 3.859.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.14.0 → 4.18.0
Update Type:
Minor
Package:
@middy/core
Ecosystem:
npm
Version Change:
6.3.2 → 6.4.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
11.0.1 → 11.1.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.840.0 → 3.859.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
7.17.8 → 8.2.2
Update Type:
Major
Ecosystem:
npm
Version Change:
3.840.0 → 3.859.0
Update Type:
Minor
Package:
argon2
Ecosystem:
npm
Version Change:
0.43.0 → 0.43.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.5.2 → 4.0.1
Update Type:
Major
Package:
react-pdf
Ecosystem:
npm
Version Change:
9.2.1 → 10.0.1
Update Type:
Major
Ecosystem:
npm
Version Change:
3.34.0 → 3.34.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.840.0 → 3.859.0
Update Type:
Minor
Package:
ioredis
Ecosystem:
npm
Version Change:
5.6.1 → 5.7.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
7.17.8 → 8.2.2
Update Type:
Major
Ecosystem:
npm
Version Change:
3.0.14 → 3.0.16
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.17.8 → 8.2.2
Update Type:
Major
Ecosystem:
npm
Version Change:
7.17.8 → 8.2.2
Update Type:
Major
Ecosystem:
npm
Version Change:
3.840.0 → 3.858.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.1.1 → 9.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
5.1.4 → 6.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
6.3.2 → 6.4.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
6.3.2 → 6.4.1
Update Type:
Minor
Package:
fastify-ip
Ecosystem:
npm
Version Change:
1.2.0 → 2.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
5.0.1 → 5.2.0
Update Type:
Minor
Technical Details
ID: 4483231
UUID: 2715617922
Node ID: PR_kwDOMfoAbc6h3QqC
Host: GitHub
Repository: acm-uiuc/core
Mergeable: Yes
Merge State: Unstable