Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
esbuild 0.25.12 0.27.2
@aws-sdk/s3-request-presigner 3.922.0 3.958.0
@aws-sdk/client-s3 3.922.0 3.958.0
@aws-sdk/client-dynamodb 3.922.0 3.958.0
@aws-sdk/client-lambda 3.922.0 3.958.0
@aws-sdk/client-secrets-manager 3.922.0 3.958.0
@aws-sdk/client-ses 3.922.0 3.958.0
@aws-sdk/client-sqs 3.922.0 3.958.0
@aws-sdk/client-sts 3.922.0 3.958.0
@aws-sdk/signature-v4-crt 3.922.0 3.957.0
@aws-sdk/util-dynamodb 3.922.0 3.958.0
@azure/msal-node 3.8.1 3.8.4
@fastify/auth 5.0.3 5.0.4
@fastify/aws-lambda 6.1.1 6.3.0
@fastify/cors 11.1.0 11.2.0
@fastify/static 8.3.0 9.0.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.7
redlock-universal 0.7.0 0.7.7
stripe 19.2.0 20.1.0
zod 4.1.12 4.2.1
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.530
react 19.2.1 19.2.3
react-dom 19.2.1 19.2.3
react-router-dom 7.10.0 7.11.0
@aws-sdk/client-firehose 3.922.0 3.958.0

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

Updates esbuild from 0.25.12 to 0.27.2

Release notes

Sourced from esbuild's releases.

v0.27.2

  • Allow import path specifiers starting with #/ (#4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#4357, #4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    /* Old output (with --target=chrome110) */
    main {
    mask: url(x.png) center/5rem no-repeat;
    }
    /* New output (with --target=chrome110) */
    main {
    -webkit-mask: url(x.png) center/5rem no-repeat;
    mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#4176, #4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}
    // New output (with --minify)

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.2

  • Allow import path specifiers starting with #/ (#4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#4357, #4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    /* Old output (with --target=chrome110) */
    main {
    mask: url(x.png) center/5rem no-repeat;
    }
    /* New output (with --target=chrome110) */
    main {
    -webkit-mask: url(x.png) center/5rem no-repeat;
    mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#4176, #4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}

... (truncated)

Commits
  • cd83297 publish 0.27.2 to npm
  • 2759721 additional tests for switch with break
  • fd2b4b3 update release notes
  • c8d93a7 fix #4357: -webkit- prefix for mask shorthand (#4358)
  • 92ff12c compat table: update @types/node
  • a35eceb compat table: fix a type error with the new types
  • f598984 fix make compat-table to install dependencies
  • f7f6df0 release notes for #4361
  • 6f8ec15 fix: allow subpath imports that start with #/ (#4361)
  • f7ae61f minify some switch statements to if-else statement
  • 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.958.0

Release notes

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

v3.958.0

3.958.0(2025-12-23)

Chores
  • client-elastic-transcoder: remove elastic transcoder due to service shutdown (#7602) (4381b2dc)
  • build: generate clients without formatting prettier/eslint (#7599) (da9c913a)
  • codegen: bump codegen version to 0.40.0 (#7601) (4dc2bcb7)
New Features
  • clients: update client endpoints as of 2025-12-23 (f5aa61b9)
  • client-s3: Add additional validation to Outpost bucket names. (2f30457f)
  • client-geo-places: Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode. (1c6374da)
  • client-pinpoint-sms-voice-v2: This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review. (ac0c236b)
Tests

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

v3.957.0

3.957.0(2025-12-22)

Chores
  • move crc64NvmeCrtContainer to '@​aws-sdk/crc64-nvme' (#7600) (69196b71)
  • move e2e tests from cucumber to vitest (#7539) (561b8900)
  • build: replace lerna partial-tree build with turbo (#7597) (04bdba3e)
Documentation Changes
  • client-pcs: Change API Reference Documentation for default Mode in Accounting and SlurmRest (966f60ac)
New Features
  • client-config-service: Added supported resourceTypes for Config from July to November 2025 (2c7dab27)
  • client-ec2: Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use. (a492f734)
  • client-guardduty: Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior. (53e59c65)
  • middleware-flexible-checksums: use CRC64NVME JS implementation if CRT is not available (#7595) (4c6ad409)
Bug Fixes
  • middleware-flexible-checksums: advise user on InvalidChunkSizeError (#7598) (6fa3b4cc)

... (truncated)

Changelog

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

3.958.0 (2025-12-23)

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

3.957.0 (2025-12-22)

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

3.956.0 (2025-12-19)

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

3.955.0 (2025-12-18)

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

3.954.0 (2025-12-17)

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

3.953.0 (2025-12-16)

Features

  • clients: allow protocol selection by class constructor (#7568) (5c5fd2e)

... (truncated)

Commits

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

Release notes

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

v3.958.0

3.958.0(2025-12-23)

Chores
  • client-elastic-transcoder: remove elastic transcoder due to service shutdown (#7602) (4381b2dc)
  • build: generate clients without formatting prettier/eslint (#7599) (da9c913a)
  • codegen: bump codegen version to 0.40.0 (#7601) (4dc2bcb7)
New Features
  • clients: update client endpoints as of 2025-12-23 (f5aa61b9)
  • client-s3: Add additional validation to Outpost bucket names. (2f30457f)
  • client-geo-places: Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode. (1c6374da)
  • client-pinpoint-sms-voice-v2: This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review. (ac0c236b)
Tests

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

v3.957.0

3.957.0(2025-12-22)

Chores
  • move crc64NvmeCrtContainer to '@​aws-sdk/crc64-nvme' (#7600) (69196b71)
  • move e2e tests from cucumber to vitest (#7539) (561b8900)
  • build: replace lerna partial-tree build with turbo (#7597) (04bdba3e)
Documentation Changes
  • client-pcs: Change API Reference Documentation for default Mode in Accounting and SlurmRest (966f60ac)
New Features
  • client-config-service: Added supported resourceTypes for Config from July to November 2025 (2c7dab27)
  • client-ec2: Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use. (a492f734)
  • client-guardduty: Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior. (53e59c65)
  • middleware-flexible-checksums: use CRC64NVME JS implementation if CRT is not available (#7595) (4c6ad409)
Bug Fixes
  • middleware-flexible-checksums: advise user on InvalidChunkSizeError (#7598) (6fa3b4cc)

... (truncated)

Changelog

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

3.958.0 (2025-12-23)

Features

  • client-s3: Add additional validation to Outpost bucket names. (2f30457)

3.957.0 (2025-12-22)

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

3.956.0 (2025-12-19)

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

3.955.0 (2025-12-18)

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

3.954.0 (2025-12-17)

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

3.953.0 (2025-12-16)

Features

  • clients: allow protocol selection by class constructor (#7568) (5c5fd2e)

... (truncated)

Commits
  • 57ab7df Publish v3.958.0
  • 2f30457 feat(client-s3): Add additional validation to Outpost bucket names.
  • da9c913 chore(build): generate clients without formatting prettier/eslint (#7599)
  • bd65e3e Publish v3.957.0
  • 04bdba3 chore(build): replace lerna partial-tree build with turbo (#7597)
  • 7804018 Publish v3.956.0
  • a3f0202 chore(codegen): differentiate union and struct schema (#7594)
  • 2c73829 chore(codegen): update for $unknown union member handling (#7591)
  • 8e9ad47 chore(codegen): upgrade smithy to 1.65.0 (#7588)
  • 821ba3b Publish v3.955.0
  • Additional commits viewable in compare view

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

Release notes

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

v3.958.0

3.958.0(2025-12-23)

Chores
  • client-elastic-transcoder: remove elastic transcoder due to service shutdown (#7602) (4381b2dc)
  • build: generate clients without formatting prettier/eslint (#7599) (da9c913a)
  • codegen: bump codegen version to 0.40.0 (#7601) (4dc2bcb7)
New Features
  • clients: update client endpoints as of 2025-12-23 (f5aa61b9)
  • client-s3: Add additional validation to Outpost bucket names. (2f30457f)
  • client-geo-places: Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode. (1c6374da)
  • client-pinpoint-sms-voice-v2: This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review. (ac0c236b)
Tests

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

v3.957.0

3.957.0(2025-12-22)

Chores
  • move crc64NvmeCrtContainer to '@​aws-sdk/crc64-nvme' (#7600) (69196b71)
  • move e2e tests from cucumber to vitest (#7539) (561b8900)
  • build: replace lerna partial-tree build with turbo (#7597) (04bdba3e)
Documentation Changes
  • client-pcs: Change API Reference Documentation for default Mode in Accounting and SlurmRest (966f60ac)
New Features
  • client-config-service: Added supported resourceTypes for Config from July to November 2025 (2c7dab27)
  • client-ec2: Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use. (a492f734)
  • client-guardduty: Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior. (53e59c65)
  • middleware-flexible-checksums: use CRC64NVME JS implementation if CRT is not available (#7595) (4c6ad409)
Bug Fixes
  • middleware-flexible-checksums: advise user on InvalidChunkSizeError (#7598) (6fa3b4cc)

... (truncated)

Changelog

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

3.958.0 (2025-12-23)

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

3.957.0 (2025-12-22)

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

3.956.0 (2025-12-19)

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

3.955.0 (2025-12-18)

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

3.954.0 (2025-12-17)

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

3.953.0 (2025-12-16)

Features

  • clients: allow protocol selection by class constructor (#7568) (5c5fd2e)

... (truncated)

Commits
  • 57ab7df Publish v3.958.0
  • da9c913 chore(build): generate clients without formatting prettier/eslint (#7599)
  • bd65e3e Publish v3.957.0
  • 04bdba3 chore(build): replace lerna partial-tree build with turbo (#7597)
  • 561b890 chore: move e2e tests from cucumber to vitest (#7539)
  • 7804018 Publish v3.956.0
  • a3f0202 chore(codegen): differentiate union and struct schema (#7594)
  • 2c73829 chore(codegen): update for $unknown union member handling (#7591)
  • 821ba3b Publish v3.955.0
  • e9b7f20 chore(clients): export star from models_N (#7586)
  • Additional commits viewable in compare view

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

Release notes

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

v3.958.0

3.958.0(2025-12-23)

Chores
  • client-elastic-transcoder: remove elastic transcoder due to service shutdown (#7602) (4381b2dc)
  • build: generate clients without formatting prettier/eslint (#7599) (da9c913a)
  • codegen: bump codegen version to 0.40.0 (#7601) (4dc2bcb7)
New Features
  • clients: update client endpoints as of 2025-12-23 (f5aa61b9)
  • client-s3: Add additional validation to Outpost bucket names. (2f30457f)
  • client-geo-places: Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode. (1c6374da)
  • client-pinpoint-sms-voice-v2: This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review. (ac0c236b)
Tests

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

v3.957.0

3.957.0(2025-12-22)

Chores
  • move crc64NvmeCrtContainer to '@​aws-sdk/crc64-nvme' (#7600) (69196b71)
  • move e2e tests from cucumber to vitest (#7539) (561b8900)
  • build: replace lerna partial-tree build with turbo (#7597) (04bdba3e)
Documentation Changes
  • client-pcs: Change API Reference Documentation for default Mode in Accounting and SlurmRest (966f60ac)
New Features
  • client-config-service: Added supported resourceTypes for Config from July to November 2025 (2c7dab27)
  • client-ec2: Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use. (a492f734)
  • client-guardduty: Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior. (53e59c65)
  • middleware-flexible-checksums: use CRC64NVME JS implementation if CRT is not available (#7595) (4c6ad409)
Bug Fixes
  • middleware-flexible-checksums: advise user on InvalidChunkSizeError (#7598) (6fa3b4cc)

... (truncated)

Changelog

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

3.958.0 (2025-12-23)

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

3.957.0 (2025-12-22)

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

3.956.0 (2025-12-19)

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

3.955.0 (2025-12-18)

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

3.954.0 (2025-12-17)

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

3.953.0 (2025-12-16)

Features

  • clients: allow protocol selection by class constructor (#7568) (5c5fd2e)

... (truncated)

Commits
  • 57ab7df Publish v3.958.0
  • da9c913 chore(build): generate clients without formatting prettier/eslint (#7599)
  • bd65e3e Publish v3.957.0
  • 04bdba3 chore(build): replace lerna partial-tree build with turbo (#7597)
  • 561b890 chore: move e2e tests from cucumber to vitest (#7539)
  • 7804018 Publish v3.956.0
  • a3f0202 chore(codegen): differentiate union and struct schema (#7594)
  • 2c73829 chore(codegen): update for $unknown union member handling (#7591)
  • 821ba3b Publish v3.955.0
  • e9b7f20 chore(clients): export star from models_N (#7586)
  • Additional commits viewable in compare view

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

Release notes

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

v3.958.0

3.958.0(2025-12-23)

Chores
  • client-elastic-transcoder: remove elastic transcoder due to service shutdown (#7602) (4381b2dc)
  • build: generate clients without formatting prettier/eslint (#7599) (da9c913a)
  • codegen: bump codegen version to 0.40.0 (#7601) (4dc2bcb7)
New Features
  • clients: update client endpoints as of 2025-12-23 (f5aa61b9)
  • client-s3: Add additional validation to Outpost bucket names. (2f30457f)
  • client-geo-places: Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode. (1c6374da)
  • client-pinpoint-sms-voice-v2: This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review. (ac0c236b)
Tests

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

v3.957.0

3.957.0(2025-12-22)

Chores
  • move crc64NvmeCrtContainer to '@​aws-sdk/crc64-nvme' (#7600) (69196b71)
  • move e2e tests from cucumber to vitest (#7539) (561b8900)
  • build: replace lerna partial-tree build with turbo (#7597) (04bdba3e)
Documentation Changes
  • client-pcs: Change API Reference Documentation for default Mode in Accounting and SlurmRest (966f60ac)
New Features
  • client-config-service: Added supported resourceTypes for Config from July to November 2025 (2c7dab27)
  • client-ec2: Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use. (a492f734)
  • client-guardduty: Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior. (53e59c65)
  • middleware-flexible-checksums: use CRC64NVME JS implementation if CRT is not available (#7595) (4c6ad409)
Bug Fixes
  • middleware-flexible-checksums: advise user on InvalidChunkSizeError (#7598) (6fa3b4cc)

... (truncated)

Changelog

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

3.958.0 (2025-12-23)

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

3.957.0 (2025-12-22)

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

3.956.0 (2025-12-19)

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

3.955.0 (2025-12-18)

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

3.954.0 (2025-12-17)

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

3.953.0 (2025-12-16)

Features

  • clients: allow protocol selection by class constructor (#7568) (5c5fd2e)

... (truncated)

Commits

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

Release notes

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

v3.958.0

3.958.0(2025-12-23)

Chores
  • client-elastic-transcoder: remove elastic transcoder due to service shutdown (#7602) (4381b2dc)
  • build: generate clients without formatting prettier/eslint (#7599) (da9c913a)
  • codegen: bump codegen version to 0.40.0 (#7601) (4dc2bcb7)
New Features
  • clients: update client endpoints as of 2025-12-23 (f5aa61b9)
  • client-s3: Add additional validation to Outpost bucket names. (2f30457f)
  • client-geo-places: Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode. (1c6374da)
  • client-pinpoint-sms-voice-v2: This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review. (ac0c236b)
Tests

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

v3.957.0

3.957.0(2025-12-22)

Chores
  • move crc64NvmeCrtContainer to '@​aws-sdk/crc64-nvme' (#7600) (69196b71)
  • move e2e tests from cucumber to vitest (#7539) (561b8900)
  • build: replace lerna partial-tree build with turbo (#7597) (04bdba3e)
Documentation Changes
  • client-pcs: Change API Reference Documentation for default Mode in Accounting and SlurmRest (966f60ac)
New Features
  • client-config-service: Added supported resourceTypes for Config from July to November 2025 (2c7dab27)
  • client-ec2: Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use. (a492f734)
  • client-guardduty: Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior. (53e59c65)
  • middleware-flexible-checksums: use CRC64NVME JS implementation if CRT is not available (#7595) (4c6ad409)
Bug Fixes
  • middleware-flexible-checksums: advise user on InvalidChunkSizeError (#7598) (6fa3b4cc)

... (truncated)

Changelog

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

3.958.0 (2025-12-23)

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

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.12` | `0.27.2` |
| [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner) | `3.922.0` | `3.958.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.922.0` | `3.958.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.922.0` | `3.958.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.922.0` | `3.958.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.922.0` | `3.958.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.922.0` | `3.958.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.922.0` | `3.958.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.922.0` | `3.958.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.922.0` | `3.957.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.922.0` | `3.958.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/aws-lambda](https://github.com/fastify/aws-lambda-fastify) | `6.1.1` | `6.3.0` |
| [@fastify/cors](https://github.com/fastify/fastify-cors) | `11.1.0` | `11.2.0` |
| [@fastify/static](https://github.com/fastify/fastify-static) | `8.3.0` | `9.0.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.7` |
| [redlock-universal](https://github.com/alexpota/redlock-universal) | `0.7.0` | `0.7.7` |
| [stripe](https://github.com/stripe/stripe-node) | `19.2.0` | `20.1.0` |
| [zod](https://github.com/colinhacks/zod) | `4.1.12` | `4.2.1` |
| [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.530` |
| [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.11.0` |
| [@aws-sdk/client-firehose](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-firehose) | `3.922.0` | `3.958.0` |

Bumps the production-dependencies group with 4 updates in the /src/api directory: [esbuild](https://github.com/evanw/esbuild), [@fastify/static](https://github.com/fastify/fastify-static), [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.2
- [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.2)

Updates `@aws-sdk/s3-request-presigner` from 3.922.0 to 3.958.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.958.0/packages/s3-request-presigner)

Updates `@aws-sdk/client-s3` from 3.922.0 to 3.958.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.958.0/clients/client-s3)

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

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

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

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

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

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

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

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.958.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.958.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/aws-lambda` from 6.1.1 to 6.3.0
- [Release notes](https://github.com/fastify/aws-lambda-fastify/releases)
- [Commits](fastify/aws-lambda-fastify@v6.1.1...v6.3.0)

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/static` from 8.3.0 to 9.0.0
- [Release notes](https://github.com/fastify/fastify-static/releases)
- [Commits](fastify/fastify-static@v8.3.0...v9.0.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.7
- [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.7)

Updates `redlock-universal` from 0.7.0 to 0.7.7
- [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.7)

Updates `stripe` from 19.2.0 to 20.1.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.1.0)

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

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.530
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](mozilla/pdf.js@v4.10.38...v5.4.530)

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.11.0
- [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.958.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.958.0/clients/client-firehose)

Updates `@aws-sdk/s3-request-presigner` from 3.922.0 to 3.958.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.958.0/packages/s3-request-presigner)

Updates `@aws-sdk/client-s3` from 3.922.0 to 3.958.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.958.0/clients/client-s3)

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

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

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

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

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

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

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

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.958.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.958.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/aws-lambda` from 6.1.1 to 6.3.0
- [Release notes](https://github.com/fastify/aws-lambda-fastify/releases)
- [Commits](fastify/aws-lambda-fastify@v6.1.1...v6.3.0)

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/static` from 8.3.0 to 9.0.0
- [Release notes](https://github.com/fastify/fastify-static/releases)
- [Commits](fastify/fastify-static@v8.3.0...v9.0.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.2
- [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.2)

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.7
- [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.7)

Updates `redlock-universal` from 0.7.0 to 0.7.7
- [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.7)

Updates `stripe` from 19.2.0 to 20.1.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.1.0)

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

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.2
- [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.2)

Updates `@fastify/static` from 8.3.0 to 9.0.0
- [Release notes](https://github.com/fastify/fastify-static/releases)
- [Commits](fastify/fastify-static@v8.3.0...v9.0.0)

Updates `stripe` from 19.3.1 to 20.1.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.1.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.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/s3-request-presigner"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.958.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.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.958.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.957.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.958.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/aws-lambda"
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/static"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  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.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.7.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 20.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.530
  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.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-firehose"
  dependency-version: 3.958.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.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.958.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.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.958.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.958.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.957.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.958.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/aws-lambda"
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/static"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  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.2
  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.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.7.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 20.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/static"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 20.1.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 29, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 29, 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