Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 3, 2025

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

…pdates

Bumps the production-dependencies group with 38 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.5` | `0.25.8` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.840.0` | `3.859.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.840.0` | `3.859.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.840.0` | `3.859.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.840.0` | `3.859.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.840.0` | `3.859.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.840.0` | `3.858.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.840.0` | `3.859.0` |
| [@azure/msal-node](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.6.2` | `3.6.4` |
| [@fastify/aws-lambda](https://github.com/fastify/aws-lambda-fastify) | `5.1.4` | `6.0.0` |
| [@fastify/cors](https://github.com/fastify/fastify-cors) | `11.0.1` | `11.1.0` |
| [@middy/core](https://github.com/middyjs/middy/tree/HEAD/packages/core) | `6.3.2` | `6.4.1` |
| [@middy/event-normalizer](https://github.com/middyjs/middy/tree/HEAD/packages/event-normalizer) | `6.3.2` | `6.4.1` |
| [@middy/sqs-partial-batch-failure](https://github.com/middyjs/middy/tree/HEAD/packages/sqs-partial-batch-failure) | `6.3.2` | `6.4.1` |
| [argon2](https://github.com/ranisalt/node-argon2) | `0.43.0` | `0.43.1` |
| [fastify-ip](https://github.com/metcoder95/fastify-ip) | `1.2.0` | `2.0.0` |
| [fastify-zod-openapi](https://github.com/samchungy/fastify-zod-openapi) | `5.0.1` | `5.2.0` |
| [ical-generator](https://github.com/sebbo2002/ical-generator) | `8.1.1` | `9.0.0` |
| [ioredis](https://github.com/luin/ioredis) | `5.6.1` | `5.7.0` |
| [stripe](https://github.com/stripe/stripe-node) | `18.3.0` | `18.4.0` |
| [zod](https://github.com/colinhacks/zod) | `3.25.74` | `4.0.14` |
| [zod-validation-error](https://github.com/causaly/zod-validation-error) | `3.5.2` | `4.0.1` |
| [@azure/msal-browser](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `4.14.0` | `4.18.0` |
| [@azure/msal-react](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.0.14` | `3.0.16` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.17.8` | `8.2.2` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `7.17.8` | `8.2.2` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.17.8` | `8.2.2` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.17.8` | `8.2.2` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.34.0` | `3.34.1` |
| [axios](https://github.com/axios/axios) | `1.10.0` | `1.11.0` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `8.0.0` | `10.0.0` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `4.10.38` | `5.4.54` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.1.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.1.9` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.1.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.1.7` |
| [react-pdf](https://github.com/wojtekmaj/react-pdf/tree/HEAD/packages/react-pdf) | `9.2.1` | `10.0.1` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/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](https://github.com/fastify/aws-lambda-fastify) | `5.1.4` | `6.0.0` |
| [fastify-ip](https://github.com/metcoder95/fastify-ip) | `1.2.0` | `2.0.0` |
| [ical-generator](https://github.com/sebbo2002/ical-generator) | `8.1.1` | `9.0.0` |
| [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.0.14` |
| [zod-validation-error](https://github.com/causaly/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](https://github.com/colinhacks/zod) | `3.25.76` | `4.0.14` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.17.8` | `8.2.2` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `7.17.8` | `8.2.2` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.17.8` | `8.2.2` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.17.8` | `8.2.2` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `8.0.0` | `10.0.0` |
| [react-pdf](https://github.com/wojtekmaj/react-pdf/tree/HEAD/packages/react-pdf) | `9.2.1` | `10.0.1` |



Updates `esbuild` from 0.25.5 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.5...v0.25.8)

Updates `@aws-sdk/client-dynamodb` from 3.840.0 to 3.859.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.859.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.840.0 to 3.859.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-lambda/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.859.0/clients/client-lambda)

Updates `@aws-sdk/client-ses` from 3.840.0 to 3.859.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ses/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.859.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.840.0 to 3.859.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sqs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.859.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.840.0 to 3.859.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sts/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.859.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.840.0 to 3.858.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/signature-v4-crt/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.858.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.840.0 to 3.859.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.859.0/packages/util-dynamodb)

Updates `@azure/msal-node` from 3.6.2 to 3.6.4
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-node-v3.6.2...msal-node-v3.6.4)

Updates `@fastify/aws-lambda` from 5.1.4 to 6.0.0
- [Release notes](https://github.com/fastify/aws-lambda-fastify/releases)
- [Commits](fastify/aws-lambda-fastify@v5.1.4...v6.0.0)

Updates `@fastify/cors` from 11.0.1 to 11.1.0
- [Release notes](https://github.com/fastify/fastify-cors/releases)
- [Commits](fastify/fastify-cors@v11.0.1...v11.1.0)

Updates `@middy/core` from 6.3.2 to 6.4.1
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.1/packages/core)

Updates `@middy/event-normalizer` from 6.3.2 to 6.4.1
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.1/packages/event-normalizer)

Updates `@middy/sqs-partial-batch-failure` from 6.3.2 to 6.4.1
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.1/packages/sqs-partial-batch-failure)

Updates `argon2` from 0.43.0 to 0.43.1
- [Release notes](https://github.com/ranisalt/node-argon2/releases)
- [Commits](ranisalt/node-argon2@v0.43.0...v0.43.1)

Updates `fastify-ip` from 1.2.0 to 2.0.0
- [Release notes](https://github.com/metcoder95/fastify-ip/releases)
- [Changelog](https://github.com/metcoder95/fastify-ip/blob/main/CHANGELOG.md)
- [Commits](metcoder95/fastify-ip@v1.2.0...v2.0.0)

Updates `fastify-zod-openapi` from 5.0.1 to 5.2.0
- [Release notes](https://github.com/samchungy/fastify-zod-openapi/releases)
- [Commits](samchungy/fastify-zod-openapi@v5.0.1...v5.2.0)

Updates `ical-generator` from 8.1.1 to 9.0.0
- [Release notes](https://github.com/sebbo2002/ical-generator/releases)
- [Changelog](https://github.com/sebbo2002/ical-generator/blob/develop/CHANGELOG.md)
- [Commits](sebbo2002/ical-generator@v8.1.1...v9.0.0)

Updates `ioredis` from 5.6.1 to 5.7.0
- [Release notes](https://github.com/luin/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.6.1...v5.7.0)

Updates `stripe` from 18.3.0 to 18.4.0
- [Release notes](https://github.com/stripe/stripe-node/releases)
- [Changelog](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-node@v18.3.0...v18.4.0)

Updates `zod` from 3.25.74 to 4.0.14
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.74...v4.0.14)

Updates `zod-validation-error` from 3.5.2 to 4.0.1
- [Release notes](https://github.com/causaly/zod-validation-error/releases)
- [Changelog](https://github.com/causaly/zod-validation-error/blob/main/CHANGELOG.md)
- [Commits](causaly/zod-validation-error@v3.5.2...v4.0.1)

Updates `@azure/msal-browser` from 4.14.0 to 4.18.0
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-browser-v4.14.0...msal-browser-v4.18.0)

Updates `@azure/msal-react` from 3.0.14 to 3.0.16
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-react-v3.0.14...msal-react-v3.0.16)

Updates `@mantine/core` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/core)

Updates `@mantine/form` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/form)

Updates `@mantine/hooks` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/hooks)

Updates `@mantine/notifications` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/notifications)

Updates `@tabler/icons-react` from 3.34.0 to 3.34.1
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.34.1/packages/icons-react)

Updates `axios` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.10.0...v1.11.0)

Updates `dotenv-cli` from 8.0.0 to 10.0.0
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v8.0.0...v10.0.0)

Updates `pdfjs-dist` from 4.10.38 to 5.4.54
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](mozilla/pdf.js@v4.10.38...v5.4.54)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `@types/react` from 19.1.8 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom)

Updates `@types/react-dom` from 19.1.6 to 19.1.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-pdf` from 9.2.1 to 10.0.1
- [Release notes](https://github.com/wojtekmaj/react-pdf/releases)
- [Commits](https://github.com/wojtekmaj/react-pdf/commits/v10.0.1/packages/react-pdf)

Updates `react-router-dom` from 7.6.3 to 7.7.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `@fastify/aws-lambda` from 5.1.4 to 6.0.0
- [Release notes](https://github.com/fastify/aws-lambda-fastify/releases)
- [Commits](fastify/aws-lambda-fastify@v5.1.4...v6.0.0)

Updates `fastify-ip` from 1.2.0 to 2.0.0
- [Release notes](https://github.com/metcoder95/fastify-ip/releases)
- [Changelog](https://github.com/metcoder95/fastify-ip/blob/main/CHANGELOG.md)
- [Commits](metcoder95/fastify-ip@v1.2.0...v2.0.0)

Updates `ical-generator` from 8.1.1 to 9.0.0
- [Release notes](https://github.com/sebbo2002/ical-generator/releases)
- [Changelog](https://github.com/sebbo2002/ical-generator/blob/develop/CHANGELOG.md)
- [Commits](sebbo2002/ical-generator@v8.1.1...v9.0.0)

Updates `zod` from 3.25.76 to 4.0.14
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.74...v4.0.14)

Updates `zod-validation-error` from 3.5.3 to 4.0.1
- [Release notes](https://github.com/causaly/zod-validation-error/releases)
- [Changelog](https://github.com/causaly/zod-validation-error/blob/main/CHANGELOG.md)
- [Commits](causaly/zod-validation-error@v3.5.2...v4.0.1)

Updates `zod` from 3.25.76 to 4.0.14
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.74...v4.0.14)

Updates `@mantine/core` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/core)

Updates `@mantine/form` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/form)

Updates `@mantine/hooks` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/hooks)

Updates `@mantine/notifications` from 7.17.8 to 8.2.2
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.2.2/packages/@mantine/notifications)

Updates `dotenv-cli` from 8.0.0 to 10.0.0
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v8.0.0...v10.0.0)

Updates `react-pdf` from 9.2.1 to 10.0.1
- [Release notes](https://github.com/wojtekmaj/react-pdf/releases)
- [Commits](https://github.com/wojtekmaj/react-pdf/commits/v10.0.1/packages/react-pdf)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.859.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.859.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.859.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.859.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.859.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/signature-v4-crt"
  dependency-version: 3.858.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.859.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@fastify/aws-lambda"
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@fastify/cors"
  dependency-version: 11.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@middy/core"
  dependency-version: 6.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@middy/event-normalizer"
  dependency-version: 6.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@middy/sqs-partial-batch-failure"
  dependency-version: 6.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.43.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fastify-ip
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: fastify-zod-openapi
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ical-generator
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: ioredis
  dependency-version: 5.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 18.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.0.14
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod-validation-error
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-browser"
  dependency-version: 4.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-react"
  dependency-version: 3.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.34.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: axios
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: dotenv-cli
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: pdfjs-dist
  dependency-version: 5.4.54
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-pdf
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/aws-lambda"
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: fastify-ip
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: ical-generator
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.0.14
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod-validation-error
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.0.14
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: dotenv-cli
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-pdf
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 3, 2025
@devksingh4
Copy link
Member

@dependabot recreate

@devksingh4 devksingh4 closed this Aug 3, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 3, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-60c72dfff0 branch August 3, 2025 04:54
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 3, 2025

Oh no! Something went wrong on our end. Please try again later.

If the problem persists, please contact GitHub support for assistance 🙇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants