Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 8, 2025

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

Package From To
esbuild 0.25.8 0.25.9
@aws-sdk/client-cloudfront-keyvaluestore 3.859.0 3.883.0
@aws-sdk/client-dynamodb 3.879.0 3.883.0
@aws-sdk/client-lambda 3.879.0 3.883.0
@aws-sdk/client-secrets-manager 3.859.0 3.883.0
@aws-sdk/client-ses 3.879.0 3.883.0
@aws-sdk/client-sqs 3.879.0 3.883.0
@aws-sdk/client-sts 3.879.0 3.883.0
@aws-sdk/signature-v4-crt 3.879.0 3.883.0
@aws-sdk/util-dynamodb 3.879.0 3.883.0
@azure/msal-node 3.6.4 3.7.3
@fastify/aws-lambda 6.0.0 6.1.1
@middy/core 6.4.1 6.4.4
@middy/event-normalizer 6.4.1 6.4.4
@middy/sqs-partial-batch-failure 6.4.1 6.4.4
argon2 0.43.1 0.44.0
discord.js 14.21.0 14.22.1
fastify 5.4.0 5.6.0
fastify-zod-openapi 5.2.0 5.3.2
pino 9.7.0 9.9.4
stripe 18.4.0 18.5.0
uuid 11.1.0 12.0.0
zod 4.0.14 4.1.5
@azure/msal-browser 4.18.0 4.22.0
@azure/msal-react 3.0.16 3.0.19
@mantine/core 8.2.2 8.2.8
@mantine/dates 8.2.2 8.2.8
@mantine/form 8.2.2 8.2.8
@mantine/hooks 8.2.2 8.2.8
@mantine/notifications 8.2.2 8.2.8
dayjs 1.11.13 1.11.18
dotenv 17.2.1 17.2.2
pdfjs-dist 4.10.38 5.4.149
react-pdf 10.0.1 10.1.0
react-router-dom 7.7.1 7.8.2
@aws-sdk/client-firehose 3.879.0 3.883.0

Bumps the production-dependencies group with 2 updates in the /src/api directory: argon2 and uuid.

Updates esbuild from 0.25.8 to 0.25.9

Release notes

Sourced from esbuild's releases.

v0.25.9

  • Better support building projects that use Yarn on Windows (#3131, #3663)

    With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the C: drive. The problem was as follows:

    1. Yarn in Plug'n'Play mode on Windows stores its global module cache on the C: drive
    2. Some developers put their projects on the D: drive
    3. Yarn generates relative paths that use ../.. to get from the project directory to the cache directory
    4. Windows-style paths don't support directory traversal between drives via .. (so D:\.. is just D:)
    5. I didn't have access to a Windows machine for testing this edge case

    Yarn works around this edge case by pretending Windows-style paths beginning with C:\ are actually Unix-style paths beginning with /C:/, so the ../.. path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.

  • Preserve parentheses around function expressions (#4252)

    The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.

    Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:

    // Original code
    const fn0 = () => 0
    const fn1 = (() => 1)
    console.log(fn0, function() { return fn1() }())
    // Old output
    const fn0 = () => 0;
    const fn1 = () => 1;
    console.log(fn0, function() {
    return fn1();
    }());
    // New output
    const fn0 = () => 0;
    const fn1 = (() => 1);
    console.log(fn0, (function() {
    return fn1();
    })());

    Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.

  • Update Go from 1.23.10 to 1.23.12 (#4257, #4258)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

Changelog

Sourced from esbuild's changelog.

0.25.9

  • Better support building projects that use Yarn on Windows (#3131, #3663)

    With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the C: drive. The problem was as follows:

    1. Yarn in Plug'n'Play mode on Windows stores its global module cache on the C: drive
    2. Some developers put their projects on the D: drive
    3. Yarn generates relative paths that use ../.. to get from the project directory to the cache directory
    4. Windows-style paths don't support directory traversal between drives via .. (so D:\.. is just D:)
    5. I didn't have access to a Windows machine for testing this edge case

    Yarn works around this edge case by pretending Windows-style paths beginning with C:\ are actually Unix-style paths beginning with /C:/, so the ../.. path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.

  • Preserve parentheses around function expressions (#4252)

    The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.

    Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:

    // Original code
    const fn0 = () => 0
    const fn1 = (() => 1)
    console.log(fn0, function() { return fn1() }())
    // Old output
    const fn0 = () => 0;
    const fn1 = () => 1;
    console.log(fn0, function() {
    return fn1();
    }());
    // New output
    const fn0 = () => 0;
    const fn1 = (() => 1);
    console.log(fn0, (function() {
    return fn1();
    })());

    Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.

  • Update Go from 1.23.10 to 1.23.12 (#4257, #4258)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

Commits

Updates @aws-sdk/client-cloudfront-keyvaluestore from 3.859.0 to 3.883.0

Release notes

Sourced from @​aws-sdk/client-cloudfront-keyvaluestore's releases.

v3.883.0

3.883.0(2025-09-05)

Chores
  • core/protocols: add fallback for schema short name (#7314) (f32c1f10)
Documentation Changes
  • client-pcs: Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting. (18968522)
  • client-ecs: This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing. (ada26715)
New Features
  • client-sagemaker: Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting. (308df6ee)
Bug Fixes
  • lib-storage: update Upload params type to intersection of all S3 upload command inputs (#7316) (1f7ccf09)
  • ci: sanitize HEAD_REF using environment variable (#7315) (39f17133)
  • middleware-sdk-s3: handle cross-region redirects for HeadBucket with 400 status (#7313) (bb9e455d)

For list of updated packages, view updated-packages.md in assets-3.883.0.zip

v3.882.0

3.882.0(2025-09-04)

Chores
  • private: set schema serde mode for duplicated protocol tests (#7309) (7f8420a9)
  • codegen: sync for eventstream codegen, schema bucketing (#7306) (b0f91073)
New Features
  • clients: update client endpoints as of 2025-09-04 (c19b98de)
  • client-ec2: Add m8i, m8i-flex and i8ge instance types. (19e055a6)
  • client-rds: Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6 (38f10e0b)
  • client-verifiedpermissions: Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values. (d4b1d361)
  • client-cleanrooms: Add support for configurable compute sizes for PySpark jobs. (9a691611)
  • client-cloudformation: ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN. (61ad5ad5)
  • client-opensearchserverless: Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance (0bdbd8e9)
Bug Fixes
  • ci: rename pull-request-build-yml to pull-request-build.yml (#7307) (b3364f73)
  • credential-provider-node: fix logger binding issue (#7302) (b5ca7c46)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-cloudfront-keyvaluestore's changelog.

3.883.0 (2025-09-05)

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

3.882.0 (2025-09-04)

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

3.879.0 (2025-08-29)

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

3.876.0 (2025-08-26)

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

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

3.864.0 (2025-08-08)

... (truncated)

Commits

Updates @aws-sdk/client-dynamodb from 3.879.0 to 3.883.0

Release notes

Sourced from @​aws-sdk/client-dynamodb's releases.

v3.883.0

3.883.0(2025-09-05)

Chores
  • core/protocols: add fallback for schema short name (#7314) (f32c1f10)
Documentation Changes
  • client-pcs: Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting. (18968522)
  • client-ecs: This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing. (ada26715)
New Features
  • client-sagemaker: Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting. (308df6ee)
Bug Fixes
  • lib-storage: update Upload params type to intersection of all S3 upload command inputs (#7316) (1f7ccf09)
  • ci: sanitize HEAD_REF using environment variable (#7315) (39f17133)
  • middleware-sdk-s3: handle cross-region redirects for HeadBucket with 400 status (#7313) (bb9e455d)

For list of updated packages, view updated-packages.md in assets-3.883.0.zip

v3.882.0

3.882.0(2025-09-04)

Chores
  • private: set schema serde mode for duplicated protocol tests (#7309) (7f8420a9)
  • codegen: sync for eventstream codegen, schema bucketing (#7306) (b0f91073)
New Features
  • clients: update client endpoints as of 2025-09-04 (c19b98de)
  • client-ec2: Add m8i, m8i-flex and i8ge instance types. (19e055a6)
  • client-rds: Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6 (38f10e0b)
  • client-verifiedpermissions: Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values. (d4b1d361)
  • client-cleanrooms: Add support for configurable compute sizes for PySpark jobs. (9a691611)
  • client-cloudformation: ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN. (61ad5ad5)
  • client-opensearchserverless: Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance (0bdbd8e9)
Bug Fixes
  • ci: rename pull-request-build-yml to pull-request-build.yml (#7307) (b3364f73)
  • credential-provider-node: fix logger binding issue (#7302) (b5ca7c46)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-dynamodb's changelog.

3.883.0 (2025-09-05)

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

3.882.0 (2025-09-04)

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

Commits

Updates @aws-sdk/client-lambda from 3.879.0 to 3.883.0

Release notes

Sourced from @​aws-sdk/client-lambda's releases.

v3.883.0

3.883.0(2025-09-05)

Chores
  • core/protocols: add fallback for schema short name (#7314) (f32c1f10)
Documentation Changes
  • client-pcs: Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting. (18968522)
  • client-ecs: This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing. (ada26715)
New Features
  • client-sagemaker: Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting. (308df6ee)
Bug Fixes
  • lib-storage: update Upload params type to intersection of all S3 upload command inputs (#7316) (1f7ccf09)
  • ci: sanitize HEAD_REF using environment variable (#7315) (39f17133)
  • middleware-sdk-s3: handle cross-region redirects for HeadBucket with 400 status (#7313) (bb9e455d)

For list of updated packages, view updated-packages.md in assets-3.883.0.zip

v3.882.0

3.882.0(2025-09-04)

Chores
  • private: set schema serde mode for duplicated protocol tests (#7309) (7f8420a9)
  • codegen: sync for eventstream codegen, schema bucketing (#7306) (b0f91073)
New Features
  • clients: update client endpoints as of 2025-09-04 (c19b98de)
  • client-ec2: Add m8i, m8i-flex and i8ge instance types. (19e055a6)
  • client-rds: Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6 (38f10e0b)
  • client-verifiedpermissions: Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values. (d4b1d361)
  • client-cleanrooms: Add support for configurable compute sizes for PySpark jobs. (9a691611)
  • client-cloudformation: ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN. (61ad5ad5)
  • client-opensearchserverless: Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance (0bdbd8e9)
Bug Fixes
  • ci: rename pull-request-build-yml to pull-request-build.yml (#7307) (b3364f73)
  • credential-provider-node: fix logger binding issue (#7302) (b5ca7c46)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-lambda's changelog.

3.883.0 (2025-09-05)

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

3.882.0 (2025-09-04)

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

Commits

Updates @aws-sdk/client-secrets-manager from 3.859.0 to 3.883.0

Release notes

Sourced from @​aws-sdk/client-secrets-manager's releases.

v3.883.0

3.883.0(2025-09-05)

Chores
  • core/protocols: add fallback for schema short name (#7314) (f32c1f10)
Documentation Changes
  • client-pcs: Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting. (18968522)
  • client-ecs: This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing. (ada26715)
New Features
  • client-sagemaker: Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting. (308df6ee)
Bug Fixes
  • lib-storage: update Upload params type to intersection of all S3 upload command inputs (#7316) (1f7ccf09)
  • ci: sanitize HEAD_REF using environment variable (#7315) (39f17133)
  • middleware-sdk-s3: handle cross-region redirects for HeadBucket with 400 status (#7313) (bb9e455d)

For list of updated packages, view updated-packages.md in assets-3.883.0.zip

v3.882.0

3.882.0(2025-09-04)

Chores
  • private: set schema serde mode for duplicated protocol tests (#7309) (7f8420a9)
  • codegen: sync for eventstream codegen, schema bucketing (#7306) (b0f91073)
New Features
  • clients: update client endpoints as of 2025-09-04 (c19b98de)
  • client-ec2: Add m8i, m8i-flex and i8ge instance types. (19e055a6)
  • client-rds: Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6 (38f10e0b)
  • client-verifiedpermissions: Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values. (d4b1d361)
  • client-cleanrooms: Add support for configurable compute sizes for PySpark jobs. (9a691611)
  • client-cloudformation: ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN. (61ad5ad5)
  • client-opensearchserverless: Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance (0bdbd8e9)
Bug Fixes
  • ci: rename pull-request-build-yml to pull-request-build.yml (#7307) (b3364f73)
  • credential-provider-node: fix logger binding issue (#7302) (b5ca7c46)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-secrets-manager's changelog.

3.883.0 (2025-09-05)

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

3.882.0 (2025-09-04)

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

3.879.0 (2025-08-29)

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

3.876.0 (2025-08-26)

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

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

3.864.0 (2025-08-08)

... (truncated)

Commits

Updates @aws-sdk/client-ses from 3.879.0 to 3.883.0

Release notes

Sourced from @​aws-sdk/client-ses's releases.

v3.883.0

3.883.0(2025-09-05)

Chores
  • core/protocols: add fallback for schema short name (#7314) (f32c1f10)
Documentation Changes
  • client-pcs: Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting. (18968522)
  • client-ecs: This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing. (ada26715)
New Features
  • client-sagemaker: Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting. (308df6ee)
Bug Fixes
  • lib-storage: update Upload params type to intersection of all S3 upload command inputs (#7316) (1f7ccf09)
  • ci: sanitize HEAD_REF using environment variable (#7315) (39f17133)
  • middleware-sdk-s3: handle cross-region redirects for HeadBucket with 400 status (#7313) (bb9e455d)

For list of updated packages, view updated-packages.md in assets-3.883.0.zip

v3.882.0

3.882.0(2025-09-04)

Chores
  • private: set schema serde mode for duplicated protocol tests (#7309) (7f8420a9)
  • codegen: sync for eventstream codegen, schema bucketing (#7306) (b0f91073)
New Features
  • clients: update client endpoints as of 2025-09-04 (c19b98de)
  • client-ec2: Add m8i, m8i-flex and i8ge instance types. (19e055a6)
  • client-rds: Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6 (38f10e0b)
  • client-verifiedpermissions: Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values. (d4b1d361)
  • client-cleanrooms: Add support for configurable compute sizes for PySpark jobs. (9a691611)
  • client-cloudformation: ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN. (61ad5ad5)
  • client-opensearchserverless: Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance (0bdbd8e9)
Bug Fixes
  • ci: rename pull-request-build-yml to pull-request-build.yml (#7307) (b3364f73)
  • credential-provider-node: fix logger binding issue (#7302) (b5ca7c46)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-ses's changelog.

3.883.0 (2025-09-05)

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

3.882.0 (2025-09-04)

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

Commits

Updates @aws-sdk/client-sqs from 3.879.0 to 3.883.0

Release notes

Sourced from @​aws-sdk/client-sqs's releases.

v3.883.0

3.883.0(2025-09-05)

Chores
  • core/protocols: add fallback for schema short name (#7314) (f32c1f10)
Documentation Changes
  • client-pcs: Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting. (18968522)
  • client-ecs: This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing. (ada26715)
New Features
  • client-sagemaker: Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting. (308df6ee)
Bug Fixes
  • lib-storage: update Upload params type to intersection of all S3 upload command inputs (#7316) (1f7ccf09)
  • ci: sanitize HEAD_REF using environment variable (#7315) (39f17133)
  • middleware-sdk-s3: handle cross-region redirects for HeadBucket with 400 status (#7313) (bb9e455d)

For list of updated packages, view updated-packages.md in assets-3.883.0.zip

v3.882.0

3.882.0(2025-09-04)

Chores
  • private: set schema serde mode for duplicated protocol tests (#7309) (7f8420a9)
  • codegen: sync for eventstream codegen, schema bucketing (#7306) (b0f91073)
New Features
  • clients: update client endpoints as of 2025-09-04 (c19b98de)
  • client-ec2: Add m8i, m8i-flex and i8ge instance types. (19e055a6)
  • client-rds: Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6 (38f10e0b)
  • client-verifiedpermissions: Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values. (d4b1d361)
  • client-cleanrooms: Add support for configurable compute sizes for PySpark jobs. (9a691611)
  • client-cloudformation: ListHookResults API now supports retrieving invocation results for all CloudFormation Hooks (previously limited to create change set and Cloud Control operations) with new optional parameters for filtering by Hook status and ARN. (61ad5ad5)
  • client-opensearchserverless: Add support for Federal Information Processing Standards (FIPS) and Federal Risk and Authorization Management Program (FedRAMP) compliance (0bdbd8e9)
Bug Fixes
  • ci: rename pull-request-build-yml to pull-request-build.yml (#7307) (b3364f73)
  • credential-provider-node: fix logger binding issue (#7302) (b5ca7c46)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-sqs's changelog.

3.883.0 (2025-09-05)

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

3.882.0 (2025-09-04)

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

Commits

Updates @aws-sdk/client-sts from 3.879.0 to 3.883.0

Release notes

Sourced from @​aws-sdk/client-sts's releases.

v3.883.0

3.883.0(2025-09-05)

Chores
  • core/protocols: add fallback for schema short name (#7314) (f32c1f10)
Documentation Changes
  • client-pcs: Documentation-only update to add AccountingStorageEnforce to SlurmCustomSetting. (18968522)
  • client-ecs: This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing. (ada26715)
New Features
  • client-sagemaker: Release IPv6 support with dualstack in SageMaker Notebooks, Tiered Storage Checkpointing Support in SageMaker HyperPod and P5.4xlarge instance type for SageMaker Hosting. (308df6ee)
Bug Fixes
  • lib-storage: update Upload params type to intersection of all S3 upload command inputs (#7316) (1f7ccf09)
  • ci: sanitize HEAD_REF using environment variable (#7315) (39f17133)
  • middleware-sdk-s3: handle cross-region redirects for HeadBucket with 400 status (#7313) (bb9e455d)

For list of updated packages, view updated-packages.md in assets-3.883.0.zip

v3.882.0

3.882.0(2025-09-04)

Chores
  • private: set schema serde mode for duplicated protocol tests (#7309) (7f8420a9)
  • codegen: sync for eventstream codegen, schema bucketing (#7306) (b0f91073)
New Features
  • clients: update client endpoints as of 2025-09-04 (c19b98de)
  • client-ec2: Add m8i, m8i-flex and i8ge instance types. (19e055a6)
  • client-rds: Added new EndpointNetworkType and TargetConnectionNetworkType fields in Proxy APIs to support IPv6 (38f10e0b)
  • client-verifiedpermissions: Amazon Verified Permissions / Features : Adds support for datetime and duration attribute values. (d4b1d361)
  • client-cleanrooms: Add support for configurable compute sizes for PySpark j...

    Description has been truncated

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.8` | `0.25.9` |
| [@aws-sdk/client-cloudfront-keyvaluestore](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudfront-keyvaluestore) | `3.859.0` | `3.883.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.879.0` | `3.883.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.879.0` | `3.883.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.859.0` | `3.883.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.879.0` | `3.883.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.879.0` | `3.883.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.879.0` | `3.883.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.879.0` | `3.883.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.879.0` | `3.883.0` |
| [@azure/msal-node](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.6.4` | `3.7.3` |
| [@fastify/aws-lambda](https://github.com/fastify/aws-lambda-fastify) | `6.0.0` | `6.1.1` |
| [@middy/core](https://github.com/middyjs/middy/tree/HEAD/packages/core) | `6.4.1` | `6.4.4` |
| [@middy/event-normalizer](https://github.com/middyjs/middy/tree/HEAD/packages/event-normalizer) | `6.4.1` | `6.4.4` |
| [@middy/sqs-partial-batch-failure](https://github.com/middyjs/middy/tree/HEAD/packages/sqs-partial-batch-failure) | `6.4.1` | `6.4.4` |
| [argon2](https://github.com/ranisalt/node-argon2) | `0.43.1` | `0.44.0` |
| [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js) | `14.21.0` | `14.22.1` |
| [fastify](https://github.com/fastify/fastify) | `5.4.0` | `5.6.0` |
| [fastify-zod-openapi](https://github.com/samchungy/fastify-zod-openapi) | `5.2.0` | `5.3.2` |
| [pino](https://github.com/pinojs/pino) | `9.7.0` | `9.9.4` |
| [stripe](https://github.com/stripe/stripe-node) | `18.4.0` | `18.5.0` |
| [uuid](https://github.com/uuidjs/uuid) | `11.1.0` | `12.0.0` |
| [zod](https://github.com/colinhacks/zod) | `4.0.14` | `4.1.5` |
| [@azure/msal-browser](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `4.18.0` | `4.22.0` |
| [@azure/msal-react](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.0.16` | `3.0.19` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.2.2` | `8.2.8` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.2.2` | `8.2.8` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.2.2` | `8.2.8` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.2.2` | `8.2.8` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.2.2` | `8.2.8` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.13` | `1.11.18` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.2.1` | `17.2.2` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `4.10.38` | `5.4.149` |
| [react-pdf](https://github.com/wojtekmaj/react-pdf/tree/HEAD/packages/react-pdf) | `10.0.1` | `10.1.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.7.1` | `7.8.2` |
| [@aws-sdk/client-firehose](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-firehose) | `3.879.0` | `3.883.0` |

Bumps the production-dependencies group with 2 updates in the /src/api directory: [argon2](https://github.com/ranisalt/node-argon2) and [uuid](https://github.com/uuidjs/uuid).


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

Updates `@aws-sdk/client-cloudfront-keyvaluestore` from 3.859.0 to 3.883.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-cloudfront-keyvaluestore/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.883.0/clients/client-cloudfront-keyvaluestore)

Updates `@aws-sdk/client-dynamodb` from 3.879.0 to 3.883.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.883.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.879.0 to 3.883.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.883.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.859.0 to 3.883.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-secrets-manager/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.883.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.879.0 to 3.883.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.883.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.879.0 to 3.883.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.883.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.879.0 to 3.883.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.883.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.879.0 to 3.883.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.883.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.879.0 to 3.883.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.883.0/packages/util-dynamodb)

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

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

Updates `@middy/core` from 6.4.1 to 6.4.4
- [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.4/packages/core)

Updates `@middy/event-normalizer` from 6.4.1 to 6.4.4
- [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.4/packages/event-normalizer)

Updates `@middy/sqs-partial-batch-failure` from 6.4.1 to 6.4.4
- [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.4/packages/sqs-partial-batch-failure)

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

Updates `discord.js` from 14.21.0 to 14.22.1
- [Release notes](https://github.com/discordjs/discord.js/releases)
- [Changelog](https://github.com/discordjs/discord.js/blob/14.22.1/packages/discord.js/CHANGELOG.md)
- [Commits](https://github.com/discordjs/discord.js/commits/14.22.1/packages/discord.js)

Updates `fastify` from 5.4.0 to 5.6.0
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.4.0...v5.6.0)

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

Updates `pino` from 9.7.0 to 9.9.4
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.7.0...v9.9.4)

Updates `stripe` from 18.4.0 to 18.5.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.4.0...v18.5.0)

Updates `uuid` from 11.1.0 to 12.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.1.0...v12.0.0)

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

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

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

Updates `@mantine/core` from 8.2.2 to 8.2.8
- [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.8/packages/@mantine/core)

Updates `@mantine/dates` from 8.2.2 to 8.2.8
- [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.8/packages/@mantine/dates)

Updates `@mantine/form` from 8.2.2 to 8.2.8
- [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.8/packages/@mantine/form)

Updates `@mantine/hooks` from 8.2.2 to 8.2.8
- [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.8/packages/@mantine/hooks)

Updates `@mantine/notifications` from 8.2.2 to 8.2.8
- [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.8/packages/@mantine/notifications)

Updates `dayjs` from 1.11.13 to 1.11.18
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/v1.11.18/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.13...v1.11.18)

Updates `dotenv` from 17.2.1 to 17.2.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v17.2.1...v17.2.2)

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

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

Updates `react-router-dom` from 7.7.1 to 7.8.2
- [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 `@aws-sdk/client-firehose` from 3.879.0 to 3.883.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-firehose/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.883.0/clients/client-firehose)

Updates `@aws-sdk/client-cloudfront-keyvaluestore` from 3.859.0 to 3.883.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-cloudfront-keyvaluestore/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.883.0/clients/client-cloudfront-keyvaluestore)

Updates `@aws-sdk/client-dynamodb` from 3.879.0 to 3.883.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.883.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.879.0 to 3.883.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.883.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.859.0 to 3.883.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-secrets-manager/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.883.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.879.0 to 3.883.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.883.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.879.0 to 3.883.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.883.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.879.0 to 3.883.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.883.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.879.0 to 3.883.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.883.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.879.0 to 3.883.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.883.0/packages/util-dynamodb)

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

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

Updates `@middy/core` from 6.4.1 to 6.4.4
- [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.4/packages/core)

Updates `@middy/event-normalizer` from 6.4.1 to 6.4.4
- [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.4/packages/event-normalizer)

Updates `@middy/sqs-partial-batch-failure` from 6.4.1 to 6.4.4
- [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.4/packages/sqs-partial-batch-failure)

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

Updates `discord.js` from 14.21.0 to 14.22.1
- [Release notes](https://github.com/discordjs/discord.js/releases)
- [Changelog](https://github.com/discordjs/discord.js/blob/14.22.1/packages/discord.js/CHANGELOG.md)
- [Commits](https://github.com/discordjs/discord.js/commits/14.22.1/packages/discord.js)

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

Updates `fastify` from 5.4.0 to 5.6.0
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.4.0...v5.6.0)

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

Updates `pino` from 9.7.0 to 9.9.4
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.7.0...v9.9.4)

Updates `stripe` from 18.4.0 to 18.5.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.4.0...v18.5.0)

Updates `uuid` from 11.1.0 to 12.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.1.0...v12.0.0)

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

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

Updates `uuid` from 11.1.0 to 12.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.1.0...v12.0.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-cloudfront-keyvaluestore"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-secrets-manager"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.883.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.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.7.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/aws-lambda"
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@middy/core"
  dependency-version: 6.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/event-normalizer"
  dependency-version: 6.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/sqs-partial-batch-failure"
  dependency-version: 6.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify-zod-openapi
  dependency-version: 5.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 9.9.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 18.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.1.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-browser"
  dependency-version: 4.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-react"
  dependency-version: 3.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: dotenv
  dependency-version: 17.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pdfjs-dist
  dependency-version: 5.4.149
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-pdf
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-firehose"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-cloudfront-keyvaluestore"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-secrets-manager"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.883.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.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.883.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.7.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/aws-lambda"
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@middy/core"
  dependency-version: 6.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/event-normalizer"
  dependency-version: 6.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/sqs-partial-batch-failure"
  dependency-version: 6.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify-zod-openapi
  dependency-version: 5.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 9.9.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 18.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.1.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 12.0.0
  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 Sep 8, 2025
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.

0 participants