Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 15, 2025

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

Package From To
esbuild 0.25.12 0.27.1
@aws-sdk/s3-request-presigner 3.922.0 3.948.0
@aws-sdk/client-s3 3.922.0 3.948.0
@aws-sdk/client-dynamodb 3.922.0 3.948.0
@aws-sdk/client-lambda 3.922.0 3.950.0
@aws-sdk/client-secrets-manager 3.922.0 3.950.0
@aws-sdk/client-ses 3.922.0 3.948.0
@aws-sdk/client-sqs 3.922.0 3.948.0
@aws-sdk/client-sts 3.922.0 3.948.0
@aws-sdk/signature-v4-crt 3.922.0 3.947.0
@aws-sdk/util-dynamodb 3.922.0 3.948.0
@azure/msal-node 3.8.1 3.8.4
@fastify/auth 5.0.3 5.0.4
@fastify/cors 11.1.0 11.2.0
@fastify/swagger 9.5.2 9.6.1
aws-crt 1.27.5 1.28.1
discord.js 14.24.2 14.25.1
fastify 5.6.1 5.6.2
jsonwebtoken 9.0.2 9.0.3
passkit-generator 3.5.5 3.5.6
redlock-universal 0.7.0 0.7.6
stripe 19.2.0 20.0.0
zod 4.1.12 4.1.13
zod-validation-error 4.0.2 5.0.0
@azure/msal-browser 4.26.0 4.27.0
@azure/msal-react 3.0.21 3.0.23
@mantine/core 8.3.6 8.3.10
@mantine/dates 8.3.6 8.3.10
@mantine/dropzone 8.3.6 8.3.10
@mantine/form 8.3.6 8.3.10
@mantine/hooks 8.3.6 8.3.10
@mantine/notifications 8.3.6 8.3.10
@tabler/icons-react 3.35.0 3.36.0
axios 1.13.1 1.13.2
pdfjs-dist 4.10.38 5.4.449
react 19.2.1 19.2.3
react-dom 19.2.1 19.2.3
react-router-dom 7.10.0 7.10.1
@aws-sdk/client-firehose 3.922.0 3.948.0

Bumps the production-dependencies group with 3 updates in the /src/api directory: esbuild, stripe and zod-validation-error.

Updates esbuild from 0.25.12 to 0.27.1

Release notes

Sourced from esbuild's releases.

v0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Commits
  • 5e0e56d publish 0.27.1 to npm
  • 5a89732 fix #4354: improve IIFE inlining for expressions
  • b940218 minify: move unused expr simplification later
  • c46d498 fix #4353: remove empty try/finally clauses
  • 7a72735 fix #4348: bundler bug with var inside if
  • 4e4e177 fix #4351: label + try + for minifier bug
  • d6427c9 fix: deno release url wrong comment (#4326)
  • 48e3e19 calling Symbol.for with a primitive never throws
  • 4ff88d0 update decorator-tests.js snapshot
  • 1877e60 calling Symbol with a primitive will never throw
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for esbuild since your current version.


Updates @aws-sdk/s3-request-presigner from 3.922.0 to 3.948.0

Release notes

Sourced from @​aws-sdk/s3-request-presigner's releases.

v3.948.0

3.948.0(2025-12-09)

Chores
  • middleware-recursion-detection: upgrade lambda-invoke-store dependency (#7559) (dbc65195)
New Features
  • clients: update client endpoints as of 2025-12-09 (012e1f9a)
  • client-mgn: Added parameters encryption, IPv4/IPv6 protocol configuration, and enhanced tagging support for replication operations. (a0a347c6)
  • client-guardduty: Adding support for Ec2LaunchTemplate Version field (4903763d)
  • client-appsync: Update Event API to require EventConfig parameter in creation and update requests. (6298ec44)
  • client-route-53: Amazon Route 53 now supports the EU (Germany) Region (eusc-de-east-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (c21e90bc)
  • client-account: This release adds a new API (GetGovCloudAccountInformation) used to retrieve information about a linked GovCloud account from the standard AWS partition. (ae9e6fce)
  • client-ivs-realtime: Token Exchange introduces seamless token exchange capabilities for IVS RTX, enabling customers to upgrade or downgrade token capabilities and update token attributes within the IVS client SDK without forcing clients to disconnect and reconnect. (db225910)

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

v3.947.0

3.947.0(2025-12-08)

Chores
  • codegen: service closure knowledge index (#7554) (731dbfef)
  • core/client: emit warning for Node.js 18.x end-of-support (#7540) (fee7ba1d)
Documentation Changes
  • add support policy section for Node.js/ECMAScript versions (#7556) (bf1f6e0b)
New Features
  • clients: update client endpoints as of 2025-12-08 (7e0d61b2)
  • client-cost-explorer: Add support for Cost Category resource associations including filtering by resource type on ListCostCategoryDefinitions and new ListCostCategoryResourceAssociations API. (011b4f65)
  • client-sesv2: Update Mail Manager Archive ARN validation (18c203b2)
  • client-redshift-serverless: Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages. (c3d27769)
  • client-identitystore: Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support. (14887fde)
  • client-rds: Adding support for tagging RDS Instance/Cluster Automated Backups (41b9a139)
  • client-partnercentral-selling: Deal Sizing Service for AI-based deal size estimation with AWS service-level breakdown, supporting Expansion and Migration deals across Technology, and Reseller partner cohorts, including Pricing Calculator AddOn for MAP deals and funding incentives. (867598e2)
  • client-rolesanywhere: Increases certificate string length for trust anchor source data to support ML-DSA certificates. (481b863e)
  • client-ec2: Amazon EC2 P6-B300 instances provide 8x NVIDIA Blackwell Ultra GPUs with 2.1 TB high bandwidth GPU memory, 6.4 Tbps EFA networking, 300 Gbps dedicated ENA throughput, and 4 TB of system memory. Amazon EC2 C8a instances are powered by 5th Gen AMD EPYC processors with a maximum frequency of 4.5 GHz. (229ff011)
Tests
  • core/protocols: add test and additional condition for xml declaration (#7552) (c83c986a)

... (truncated)

Changelog

Sourced from @​aws-sdk/s3-request-presigner's changelog.

3.948.0 (2025-12-09)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.947.0 (2025-12-08)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.946.0 (2025-12-05)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.943.0 (2025-12-02)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.940.0 (2025-11-25)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.939.0 (2025-11-24)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.937.0 (2025-11-20)

... (truncated)

Commits

Updates @aws-sdk/client-s3 from 3.922.0 to 3.948.0

Release notes

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

v3.948.0

3.948.0(2025-12-09)

Chores
  • middleware-recursion-detection: upgrade lambda-invoke-store dependency (#7559) (dbc65195)
New Features
  • clients: update client endpoints as of 2025-12-09 (012e1f9a)
  • client-mgn: Added parameters encryption, IPv4/IPv6 protocol configuration, and enhanced tagging support for replication operations. (a0a347c6)
  • client-guardduty: Adding support for Ec2LaunchTemplate Version field (4903763d)
  • client-appsync: Update Event API to require EventConfig parameter in creation and update requests. (6298ec44)
  • client-route-53: Amazon Route 53 now supports the EU (Germany) Region (eusc-de-east-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (c21e90bc)
  • client-account: This release adds a new API (GetGovCloudAccountInformation) used to retrieve information about a linked GovCloud account from the standard AWS partition. (ae9e6fce)
  • client-ivs-realtime: Token Exchange introduces seamless token exchange capabilities for IVS RTX, enabling customers to upgrade or downgrade token capabilities and update token attributes within the IVS client SDK without forcing clients to disconnect and reconnect. (db225910)

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

v3.947.0

3.947.0(2025-12-08)

Chores
  • codegen: service closure knowledge index (#7554) (731dbfef)
  • core/client: emit warning for Node.js 18.x end-of-support (#7540) (fee7ba1d)
Documentation Changes
  • add support policy section for Node.js/ECMAScript versions (#7556) (bf1f6e0b)
New Features
  • clients: update client endpoints as of 2025-12-08 (7e0d61b2)
  • client-cost-explorer: Add support for Cost Category resource associations including filtering by resource type on ListCostCategoryDefinitions and new ListCostCategoryResourceAssociations API. (011b4f65)
  • client-sesv2: Update Mail Manager Archive ARN validation (18c203b2)
  • client-redshift-serverless: Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages. (c3d27769)
  • client-identitystore: Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support. (14887fde)
  • client-rds: Adding support for tagging RDS Instance/Cluster Automated Backups (41b9a139)
  • client-partnercentral-selling: Deal Sizing Service for AI-based deal size estimation with AWS service-level breakdown, supporting Expansion and Migration deals across Technology, and Reseller partner cohorts, including Pricing Calculator AddOn for MAP deals and funding incentives. (867598e2)
  • client-rolesanywhere: Increases certificate string length for trust anchor source data to support ML-DSA certificates. (481b863e)
  • client-ec2: Amazon EC2 P6-B300 instances provide 8x NVIDIA Blackwell Ultra GPUs with 2.1 TB high bandwidth GPU memory, 6.4 Tbps EFA networking, 300 Gbps dedicated ENA throughput, and 4 TB of system memory. Amazon EC2 C8a instances are powered by 5th Gen AMD EPYC processors with a maximum frequency of 4.5 GHz. (229ff011)
Tests
  • core/protocols: add test and additional condition for xml declaration (#7552) (c83c986a)

... (truncated)

Changelog

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

3.948.0 (2025-12-09)

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

3.947.0 (2025-12-08)

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

3.946.0 (2025-12-05)

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

3.943.0 (2025-12-02)

Features

  • client-s3: New S3 Storage Class FSX_ONTAP (56ffa40)

3.940.0 (2025-11-25)

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

3.939.0 (2025-11-24)

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

... (truncated)

Commits

Updates @aws-sdk/client-dynamodb from 3.922.0 to 3.948.0

Release notes

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

v3.948.0

3.948.0(2025-12-09)

Chores
  • middleware-recursion-detection: upgrade lambda-invoke-store dependency (#7559) (dbc65195)
New Features
  • clients: update client endpoints as of 2025-12-09 (012e1f9a)
  • client-mgn: Added parameters encryption, IPv4/IPv6 protocol configuration, and enhanced tagging support for replication operations. (a0a347c6)
  • client-guardduty: Adding support for Ec2LaunchTemplate Version field (4903763d)
  • client-appsync: Update Event API to require EventConfig parameter in creation and update requests. (6298ec44)
  • client-route-53: Amazon Route 53 now supports the EU (Germany) Region (eusc-de-east-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region (c21e90bc)
  • client-account: This release adds a new API (GetGovCloudAccountInformation) used to retrieve information about a linked GovCloud account from the standard AWS partition. (ae9e6fce)
  • client-ivs-realtime: Token Exchange introduces seamless token exchange capabilities for IVS RTX, enabling customers to upgrade or downgrade token capabilities and update token attributes within the IVS client SDK without forcing clients to disconnect and reconnect. (db225910)

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

v3.947.0

3.947.0(2025-12-08)

Chores
  • codegen: service closure knowledge index (#7554) (731dbfef)
  • core/client: emit warning for Node.js 18.x end-of-support (#7540) (fee7ba1d)
Documentation Changes
  • add support policy section for Node.js/ECMAScript versions (#7556) (bf1f6e0b)
New Features
  • clients: update client endpoints as of 2025-12-08 (7e0d61b2)
  • client-cost-explorer: Add support for Cost Category resource associations including filtering by resource type on ListCostCategoryDefinitions and new ListCostCategoryResourceAssociations API. (011b4f65)
  • client-sesv2: Update Mail Manager Archive ARN validation (18c203b2)
  • client-redshift-serverless: Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages. (c3d27769)
  • client-identitystore: Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support. (14887fde)
  • client-rds: Adding support for tagging RDS Instance/Cluster Automated Backups (41b9a139)
  • client-partnercentral-selling: Deal Sizing Service for AI-based deal size estimation with AWS service-level breakdown, supporting Expansion and Migration deals across Technology, and Reseller partner cohorts, including Pricing Calculator AddOn for MAP deals and funding incentives. (867598e2)
  • client-rolesanywhere: Increases certificate string length for trust anchor source data to support ML-DSA certificates. (481b863e)
  • client-ec2: Amazon EC2 P6-B300 instances provide 8x NVIDIA Blackwell Ultra GPUs with 2.1 TB high bandwidth GPU memory, 6.4 Tbps EFA networking, 300 Gbps dedicated ENA throughput, and 4 TB of system memory. Amazon EC2 C8a instances are powered by 5th Gen AMD EPYC processors with a maximum frequency of 4.5 GHz. (229ff011)
Tests
  • core/protocols: add test and additional condition for xml declaration (#7552) (c83c986a)

... (truncated)

Changelog

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

3.948.0 (2025-12-09)

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

3.947.0 (2025-12-08)

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

3.946.0 (2025-12-05)

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

3.943.0 (2025-12-02)

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

3.940.0 (2025-11-25)

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

3.939.0 (2025-11-24)

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

3.936.0 (2025-11-19)

... (truncated)

Commits

Updates @aws-sdk/client-lambda from 3.922.0 to 3.950.0

Release notes

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

v3.950.0

3.950.0(2025-12-11)

New Features
  • clients: update client endpoints as of 2025-12-11 (d4b9bdf7)
  • client-secrets-manager: Add SortBy parameter to ListSecrets (82c6ffdd)
  • client-organizations: Add support for policy operations on the NETWORK SECURITY DIRECTOR POLICY policy type. (b4aea822)
  • client-quicksight: This release adds new GetIdentityContext API, Dashboard customization options for tables and pivot tables, Visual styling options- borders and decals, map GeocodingPreferences, KeyPairCredentials for DataSourceCredentials. Snapshot APIs now support registered users. Parameters limit increased to 400 (e8bba45c)
  • client-lambda: Add Dotnet 10 (dotnet10) support to AWS Lambda. (e154bc72)
  • client-sesv2: Update GetEmailIdentity and CreateEmailIdentity response to include SigningHostedZone in DkimAttributes. Updated PutEmailIdentityDkimSigningAttributes Response to include SigningHostedZone. (6bceff3d)

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

v3.949.0

3.949.0(2025-12-10)

Chores
New Features
  • client-bedrock: Automated Reasoning checks in Amazon Bedrock Guardrails is capable of generating policy scenarios to validate policies. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API now adds POLICY SCENARIO asset type, allowing customers to retrieve scenarios generated by the build workflow. (8effad7b)
  • client-opensearch: The CreateApplication API now supports an optional kms key arn parameter to allow customers to specify a CMK for application encryption. (2bd525c2)
  • client-partnercentral-selling: Adds support for the new Project.AwsPartition field on Opportunity and AWS Opportunity Summary. Use this field to specify the AWS partition where the opportunity will be deployed. (885fb630)
  • client-cloudwatch: This release introduces two additional protocols AWS JSON 1.1 and Smithy RPC v2 CBOR, replacing the currently utilized one, AWSQuery. AWS SDKs will prioritize the protocol that is the most performant for each language. (82cfae7d)
  • client-billingconductor: Launch itemized custom line item and service line item filter (a4ba672c)
  • client-odb: The following APIs now return CloudExadataInfrastructureArn and OdbNetworkArn fields for improved resource identification and AWS service integration - GetCloudVmCluster, ListCloudVmClusters, GetCloudAutonomousVmCluster, and ListCloudAutonomousVmClusters. (0cfa1d42)
  • client-signer: Adds support for Signer GetRevocationStatus with updated endpoints (12376a15)

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

v3.948.0

3.948.0(2025-12-09)

Chores
  • middleware-recursion-detection: upgrade lambda-invoke-store dependency (#7559) (dbc65195)
New Features
  • clients: update client endpoints as of 2025-12-09 (012e1f9a)
  • client-mgn: Added parameters encryption, IPv4/IPv6 protocol configuration, and enhanced tagging support for replication operations. (a0a347c6)

... (truncated)

Changelog

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

3.950.0 (2025-12-11)

Features

  • client-lambda: Add Dotnet 10 (dotnet10) support to AWS Lambda. (e154bc7)

3.948.0 (2025-12-09)

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

3.947.0 (2025-12-08)

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

3.946.0 (2025-12-05)

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

3.945.0 (2025-12-04)

Features

  • client-lambda: Add DisallowedByVpcEncryptionControl to the LastUpdateStatusReasonCode and StateReasonCode enums to represent failures caused by VPC Encryption Controls. (cc1ebe7)

3.943.0 (2025-12-02)

Features

... (truncated)

Commits
  • 856e4f9 Publish v3.950.0
  • e154bc7 feat(client-lambda): Add Dotnet 10 (dotnet10) support to AWS Lambda.
  • c6e71bf Publish v3.948.0
  • 656bd00 Publish v3.947.0
  • 731dbfe chore(codegen): service closure knowledge index (#7554)
  • 309a20f Publish v3.946.0
  • da6eee7 chore(codegen): sync for typescript formatting (#7546)
  • eb4e29b chore(codegen): type imports and index tests (#7545)
  • fce0442 Publish v3.945.0
  • cc1ebe7 feat(client-lambda): Add DisallowedByVpcEncryptionControl to the LastUpdateSt...
  • Additional commits viewable in compare view

Updates @aws-sdk/client-secrets-manager from 3.922.0 to 3.950.0

Release notes

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

v3.950.0

3.950.0(2025-12-11)

New Features
  • clients: update client endpoints as of 2025-12-11 (d4b9bdf7)
  • client-secrets-manager: Add SortBy parameter to ListSecrets (82c6ffdd)
  • client-organizations: Add support for policy operations on the NETWORK SECURITY DIRECTOR POLICY policy type. (b4aea822)
  • client-quicksight: This release adds new GetIdentityContext API, Dashboard customization options for tables and pivot tables, Visual styling options- borders and decals, map GeocodingPreferences, KeyPairCredentials for DataSourceCredentials. Snapshot APIs now support registered users. Parameters limit increased to 400 (e8bba45c)
  • client-lambda: Add Dotnet 10 (dotnet10) support to AWS Lambda. (e154bc72)
  • client-sesv2: Update GetEmailIdentity and CreateEmailIdentity response to include SigningHostedZone in DkimAttributes. Updated PutEmailIdentityDkimSigningAttributes Response to include SigningHostedZone. (6bceff3d)

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

v3.949.0

3.949.0(2025-12-10)

Chores
New Features
  • client-bedrock: Automated Reasoning checks in Amazon Bedrock Guardrails is capable of generating policy scenarios to validate policies. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API now adds POLICY SCENARIO asset type, allowing customers to retrieve scenarios generated by the build workflow. (8effad7b)
  • client-opensearch: The CreateApplication API now supports an optional kms key arn parameter to allow customers to specify a CMK for application encryption. (2bd525c2)
  • client-partnercentral-selling: Adds support for the new Project.AwsPartition field on Opportunity and AWS Opportunity Summary. Use this field to specify the AWS partition where the opportunity will be deployed. (885fb630)
  • client-cloudwatch: This release introduces two additional protocols AWS JSON 1.1 and Smithy RPC v2 CBOR, replacing the currently utilized one, AWSQuery. AWS SDKs will prioritize the protocol that is the most performant for each language. (82cfae7d)
  • client-billingconductor: Launch itemized custom line item and service line item filter (a4ba672c)
  • client-odb: The following APIs now return CloudExadataInfrastructureArn and OdbNetworkArn fields for improved resource identification and AWS service integration - GetCloudVmCluster, ListCloudVmClusters, GetCloudAutonomousVmCluster, and ListCloudAutonomousVmClusters. (0cfa1d42)
  • client-signer: Adds support for Signer GetRevocationStatus with updated endpoints (12376a15)

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

v3.948.0

3.948.0(2025-12-09)

Chores
  • middleware-recursion-detection: upgrade lambda-invoke-store dependency (#7559) (dbc65195)
New Features
  • clients: update client endpoints as of 2025-12-09 (012e1f9a)
  • client-mgn: Added parameters encryption, IPv4/IPv6 protocol configuration, and enhanced tagging support for replication operations. (a0a347c6)

... (truncated)

Changelog

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

3.950.0 (2025-12-11)

Features

  • client-secrets-manager: Add SortBy parameter to ListSecrets (82c6ffd)

3.948.0 (2025-12-09)

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

3.947.0 (2025-12-08)

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

3.946.0 (2025-12-05)

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

3.943.0 (2025-12-02)

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

3.940.0 (2025-11-25)

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

... (truncated)

Commits

Updates @aws-sdk/client-ses from 3.922.0 to 3.948.0

Release notes

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

v3.948.0

3.948.0(2025-12-09)

Chores
  • middleware-recursion-detection: upgrade lambda-invoke-store dependency (

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.12` | `0.27.1` |
| [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner) | `3.922.0` | `3.948.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.922.0` | `3.948.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.922.0` | `3.948.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.922.0` | `3.950.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.922.0` | `3.950.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.922.0` | `3.948.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.922.0` | `3.948.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.922.0` | `3.948.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.922.0` | `3.947.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.922.0` | `3.948.0` |
| [@azure/msal-node](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.8.1` | `3.8.4` |
| [@fastify/auth](https://github.com/fastify/fastify-auth) | `5.0.3` | `5.0.4` |
| [@fastify/cors](https://github.com/fastify/fastify-cors) | `11.1.0` | `11.2.0` |
| [@fastify/swagger](https://github.com/fastify/fastify-swagger) | `9.5.2` | `9.6.1` |
| [aws-crt](https://github.com/awslabs/aws-crt-nodejs) | `1.27.5` | `1.28.1` |
| [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js) | `14.24.2` | `14.25.1` |
| [fastify](https://github.com/fastify/fastify) | `5.6.1` | `5.6.2` |
| [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) | `9.0.2` | `9.0.3` |
| [passkit-generator](https://github.com/alexandercerutti/passkit-generator) | `3.5.5` | `3.5.6` |
| [redlock-universal](https://github.com/alexpota/redlock-universal) | `0.7.0` | `0.7.6` |
| [stripe](https://github.com/stripe/stripe-node) | `19.2.0` | `20.0.0` |
| [zod](https://github.com/colinhacks/zod) | `4.1.12` | `4.1.13` |
| [zod-validation-error](https://github.com/causaly/zod-validation-error) | `4.0.2` | `5.0.0` |
| [@azure/msal-browser](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `4.26.0` | `4.27.0` |
| [@azure/msal-react](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.0.21` | `3.0.23` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.3.6` | `8.3.10` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.3.6` | `8.3.10` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `8.3.6` | `8.3.10` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.3.6` | `8.3.10` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.3.6` | `8.3.10` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.3.6` | `8.3.10` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.35.0` | `3.36.0` |
| [axios](https://github.com/axios/axios) | `1.13.1` | `1.13.2` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `4.10.38` | `5.4.449` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.1` | `19.2.3` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.1` | `19.2.3` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.10.0` | `7.10.1` |
| [@aws-sdk/client-firehose](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-firehose) | `3.922.0` | `3.948.0` |

Bumps the production-dependencies group with 3 updates in the /src/api directory: [esbuild](https://github.com/evanw/esbuild), [stripe](https://github.com/stripe/stripe-node) and [zod-validation-error](https://github.com/causaly/zod-validation-error).


Updates `esbuild` from 0.25.12 to 0.27.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.12...v0.27.1)

Updates `@aws-sdk/s3-request-presigner` from 3.922.0 to 3.948.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/s3-request-presigner/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.948.0/packages/s3-request-presigner)

Updates `@aws-sdk/client-s3` from 3.922.0 to 3.948.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-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.948.0/clients/client-s3)

Updates `@aws-sdk/client-dynamodb` from 3.922.0 to 3.948.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.948.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.922.0 to 3.950.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.950.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.922.0 to 3.950.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.950.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.922.0 to 3.948.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.948.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.922.0 to 3.948.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.948.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.922.0 to 3.948.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.948.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.922.0 to 3.947.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.947.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.948.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.948.0/packages/util-dynamodb)

Updates `@azure/msal-node` from 3.8.1 to 3.8.4
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-node-v3.8.1...msal-node-v3.8.4)

Updates `@fastify/auth` from 5.0.3 to 5.0.4
- [Release notes](https://github.com/fastify/fastify-auth/releases)
- [Commits](fastify/fastify-auth@v5.0.3...v5.0.4)

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

Updates `@fastify/swagger` from 9.5.2 to 9.6.1
- [Release notes](https://github.com/fastify/fastify-swagger/releases)
- [Commits](fastify/fastify-swagger@v9.5.2...v9.6.1)

Updates `aws-crt` from 1.27.5 to 1.28.1
- [Release notes](https://github.com/awslabs/aws-crt-nodejs/releases)
- [Commits](awslabs/aws-crt-nodejs@v1.27.5...v1.28.1)

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

Updates `fastify` from 5.6.1 to 5.6.2
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.6.1...v5.6.2)

Updates `jsonwebtoken` from 9.0.2 to 9.0.3
- [Changelog](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](auth0/node-jsonwebtoken@v9.0.2...v9.0.3)

Updates `passkit-generator` from 3.5.5 to 3.5.6
- [Release notes](https://github.com/alexandercerutti/passkit-generator/releases)
- [Changelog](https://github.com/alexandercerutti/passkit-generator/blob/master/CHANGELOG.md)
- [Commits](alexandercerutti/passkit-generator@v3.5.5...v3.5.6)

Updates `redlock-universal` from 0.7.0 to 0.7.6
- [Release notes](https://github.com/alexpota/redlock-universal/releases)
- [Changelog](https://github.com/alexpota/redlock-universal/blob/main/CHANGELOG.md)
- [Commits](alexpota/redlock-universal@v0.7.0...v0.7.6)

Updates `stripe` from 19.2.0 to 20.0.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@v19.2.0...v20.0.0)

Updates `zod` from 4.1.12 to 4.1.13
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.1.12...v4.1.13)

Updates `zod-validation-error` from 4.0.2 to 5.0.0
- [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@v4.0.2...v5.0.0)

Updates `@azure/msal-browser` from 4.26.0 to 4.27.0
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-browser-v4.26.0...msal-browser-v4.27.0)

Updates `@azure/msal-react` from 3.0.21 to 3.0.23
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-react-v3.0.21...msal-react-v3.0.23)

Updates `@mantine/core` from 8.3.6 to 8.3.10
- [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.3.10/packages/@mantine/core)

Updates `@mantine/dates` from 8.3.6 to 8.3.10
- [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.3.10/packages/@mantine/dates)

Updates `@mantine/dropzone` from 8.3.6 to 8.3.10
- [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.3.10/packages/@mantine/dropzone)

Updates `@mantine/form` from 8.3.6 to 8.3.10
- [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.3.10/packages/@mantine/form)

Updates `@mantine/hooks` from 8.3.6 to 8.3.10
- [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.3.10/packages/@mantine/hooks)

Updates `@mantine/notifications` from 8.3.6 to 8.3.10
- [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.3.10/packages/@mantine/notifications)

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

Updates `axios` from 1.13.1 to 1.13.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.13.1...v1.13.2)

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

Updates `react` from 19.2.1 to 19.2.3
- [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.2.3/packages/react)

Updates `react-dom` from 19.2.1 to 19.2.3
- [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.2.3/packages/react-dom)

Updates `react-router-dom` from 7.10.0 to 7.10.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 `@aws-sdk/client-firehose` from 3.922.0 to 3.948.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.948.0/clients/client-firehose)

Updates `@aws-sdk/s3-request-presigner` from 3.922.0 to 3.948.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/s3-request-presigner/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.948.0/packages/s3-request-presigner)

Updates `@aws-sdk/client-s3` from 3.922.0 to 3.948.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-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.948.0/clients/client-s3)

Updates `@aws-sdk/client-dynamodb` from 3.922.0 to 3.948.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.948.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.922.0 to 3.950.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.950.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.922.0 to 3.950.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.950.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.922.0 to 3.948.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.948.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.922.0 to 3.948.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.948.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.922.0 to 3.948.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.948.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.922.0 to 3.947.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.947.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.948.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.948.0/packages/util-dynamodb)

Updates `@azure/msal-node` from 3.8.1 to 3.8.4
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-node-v3.8.1...msal-node-v3.8.4)

Updates `@fastify/auth` from 5.0.3 to 5.0.4
- [Release notes](https://github.com/fastify/fastify-auth/releases)
- [Commits](fastify/fastify-auth@v5.0.3...v5.0.4)

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

Updates `@fastify/swagger` from 9.5.2 to 9.6.1
- [Release notes](https://github.com/fastify/fastify-swagger/releases)
- [Commits](fastify/fastify-swagger@v9.5.2...v9.6.1)

Updates `aws-crt` from 1.27.5 to 1.28.1
- [Release notes](https://github.com/awslabs/aws-crt-nodejs/releases)
- [Commits](awslabs/aws-crt-nodejs@v1.27.5...v1.28.1)

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

Updates `esbuild` from 0.25.12 to 0.27.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.12...v0.27.1)

Updates `fastify` from 5.6.1 to 5.6.2
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.6.1...v5.6.2)

Updates `jsonwebtoken` from 9.0.2 to 9.0.3
- [Changelog](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](auth0/node-jsonwebtoken@v9.0.2...v9.0.3)

Updates `passkit-generator` from 3.5.5 to 3.5.6
- [Release notes](https://github.com/alexandercerutti/passkit-generator/releases)
- [Changelog](https://github.com/alexandercerutti/passkit-generator/blob/master/CHANGELOG.md)
- [Commits](alexandercerutti/passkit-generator@v3.5.5...v3.5.6)

Updates `redlock-universal` from 0.7.0 to 0.7.6
- [Release notes](https://github.com/alexpota/redlock-universal/releases)
- [Changelog](https://github.com/alexpota/redlock-universal/blob/main/CHANGELOG.md)
- [Commits](alexpota/redlock-universal@v0.7.0...v0.7.6)

Updates `stripe` from 19.2.0 to 20.0.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@v19.2.0...v20.0.0)

Updates `zod` from 4.1.12 to 4.1.13
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.1.12...v4.1.13)

Updates `zod-validation-error` from 4.0.2 to 5.0.0
- [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@v4.0.2...v5.0.0)

Updates `esbuild` from 0.25.12 to 0.27.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.12...v0.27.1)

Updates `stripe` from 19.3.1 to 20.0.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@v19.2.0...v20.0.0)

Updates `zod-validation-error` from 4.0.2 to 5.0.0
- [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@v4.0.2...v5.0.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/s3-request-presigner"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.950.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.950.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.948.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.947.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@fastify/auth"
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@fastify/cors"
  dependency-version: 11.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/swagger"
  dependency-version: 9.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: aws-crt
  dependency-version: 1.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: jsonwebtoken
  dependency-version: 9.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: passkit-generator
  dependency-version: 3.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 20.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: zod-validation-error
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-browser"
  dependency-version: 4.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-react"
  dependency-version: 3.0.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/dropzone"
  dependency-version: 8.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pdfjs-dist
  dependency-version: 5.4.449
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-firehose"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/s3-request-presigner"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.950.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.950.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.948.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.947.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.948.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@fastify/auth"
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@fastify/cors"
  dependency-version: 11.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/swagger"
  dependency-version: 9.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: aws-crt
  dependency-version: 1.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: jsonwebtoken
  dependency-version: 9.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: passkit-generator
  dependency-version: 3.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 20.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: zod-validation-error
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 20.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod-validation-error
  dependency-version: 5.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 Dec 15, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 15, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

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.

1 participant