Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
esbuild 0.25.12 0.27.1
@aws-sdk/s3-request-presigner 3.922.0 3.946.0
@aws-sdk/client-s3 3.922.0 3.946.0
@aws-sdk/client-dynamodb 3.922.0 3.946.0
@aws-sdk/client-lambda 3.922.0 3.946.0
@aws-sdk/client-secrets-manager 3.922.0 3.946.0
@aws-sdk/client-ses 3.922.0 3.946.0
@aws-sdk/client-sqs 3.922.0 3.946.0
@aws-sdk/client-sts 3.922.0 3.946.0
@aws-sdk/signature-v4-crt 3.922.0 3.946.0
@aws-sdk/util-dynamodb 3.922.0 3.946.0
@azure/msal-node 3.8.1 3.8.4
@fastify/auth 5.0.3 5.0.4
@fastify/swagger 9.5.2 9.6.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.9
@mantine/dates 8.3.6 8.3.9
@mantine/dropzone 8.3.6 8.3.9
@mantine/form 8.3.6 8.3.9
@mantine/hooks 8.3.6 8.3.9
@mantine/notifications 8.3.6 8.3.9
axios 1.13.1 1.13.2
pdfjs-dist 4.10.38 5.4.449
react-router-dom 7.10.0 7.10.1
@aws-sdk/client-firehose 3.922.0 3.946.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.946.0

Release notes

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

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

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

v3.945.0

3.945.0(2025-12-04)

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

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

v3.944.0

3.944.0(2025-12-03)

New Features

... (truncated)

Changelog

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

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)

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

3.936.0 (2025-11-19)

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

3.935.0 (2025-11-19)

... (truncated)

Commits

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

Release notes

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

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

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

v3.945.0

3.945.0(2025-12-04)

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

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

v3.944.0

3.944.0(2025-12-03)

New Features

... (truncated)

Changelog

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

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

3.937.0 (2025-11-20)

Features

  • client-s3: Enable / Disable ABAC on a general purpose bucket. (9816b26)

3.936.0 (2025-11-19)

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

... (truncated)

Commits

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

Release notes

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

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

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

v3.945.0

3.945.0(2025-12-04)

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

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

v3.944.0

3.944.0(2025-12-03)

New Features

... (truncated)

Changelog

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

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)

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

3.935.0 (2025-11-19)

Features

  • client-dynamodb: Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes. (622ef03)

... (truncated)

Commits
  • 309a20f Publish v3.946.0
  • da6eee7 chore(codegen): sync for typescript formatting (#7546)
  • eb4e29b chore(codegen): type imports and index tests (#7545)
  • 6900953 Publish v3.943.0
  • ae3e73d chore(core/protocols): dynamodb serde performance adjustments (#7536)
  • e9962f1 Publish v3.940.0
  • 1592379 Publish v3.939.0
  • a180cc7 Publish v3.936.0
  • c31b14b Publish v3.935.0
  • 622ef03 feat(client-dynamodb): Extended Global Secondary Index (GSI) composite keys t...
  • Additional commits viewable in compare view

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

Release notes

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

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

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

v3.945.0

3.945.0(2025-12-04)

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

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

v3.944.0

3.944.0(2025-12-03)

New Features

... (truncated)

Changelog

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

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

  • client-lambda: Launching Lambda durable functions - a new feature to build reliable multi-step applications and AI workflows natively within the Lambda developer experience. (01476cf)

3.942.0 (2025-12-01)

Features

  • client-lambda: Launching Lambda Managed Instances - a new feature to run Lambda on EC2. (ea7080c)

3.940.0 (2025-11-25)

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

3.939.0 (2025-11-24)

... (truncated)

Commits
  • 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...
  • 6900953 Publish v3.943.0
  • 01476cf feat(client-lambda): Launching Lambda durable functions - a new feature to bu...
  • c44350d Publish v3.942.0
  • ea7080c feat(client-lambda): Launching Lambda Managed Instances - a new feature to ru...
  • e9962f1 Publish v3.940.0
  • Additional commits viewable in compare view

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

Release notes

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

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

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

v3.945.0

3.945.0(2025-12-04)

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

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

v3.944.0

3.944.0(2025-12-03)

New Features

... (truncated)

Changelog

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

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

3.939.0 (2025-11-24)

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

3.936.0 (2025-11-19)

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

3.935.0 (2025-11-19)

Features

  • client-secrets-manager: Adds support to create, update, retrieve, rotate, and delete managed external secrets. (c13b6f9)

... (truncated)

Commits

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

Release notes

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

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

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

v3.945.0

3.945.0(2025-12-04)

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

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

v3.944.0

3.944.0(2025-12-03)

New Features

... (truncated)

Changelog

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

3.946.0 (2025-12-05)

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

3.943.0 (2025-12-02)

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

3.940.0 (2025-11-25)

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

3.939.0 (2025-11-24)

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

3.936.0 (2025-11-19)

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

3.935.0 (2025-11-19)

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

3.934.0 (2025-11-18)

... (truncated)

Commits

Updates @aws-sdk/client-sqs from 3.922.0 to 3.946.0

Release notes

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

v3.946.0

3.946.0(2025-12-05)

Chores
Documentation Changes
  • client-ecs: Updating stop-task API to encapsulate containers with custom stop signal (d7a58e20)
New Features
  • client-iam: Adding the ExpirationTime attribute to the delegation request resource. (2de73924)
  • client-inspector2: This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. (30b100c9)
  • client-partnercentral-account: Adding Verification API's to Partner Central Account SDK. (b9bad198)
  • client-sesv2: Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2 (4e8746ff)
Bug Fixes
  • core/protocols:
  • ec2-metadata-service: discard response body stream on failed request (#7543) (2dc10c6f)

For list of updated packages, view updated-packages.mdDescription has been truncated

…pdates

Bumps the production-dependencies group with 34 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.946.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.922.0` | `3.946.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.922.0` | `3.946.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.922.0` | `3.946.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.922.0` | `3.946.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.922.0` | `3.946.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.922.0` | `3.946.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.922.0` | `3.946.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.922.0` | `3.946.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.922.0` | `3.946.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/swagger](https://github.com/fastify/fastify-swagger) | `9.5.2` | `9.6.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.9` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.3.6` | `8.3.9` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `8.3.6` | `8.3.9` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.3.6` | `8.3.9` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.3.6` | `8.3.9` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.3.6` | `8.3.9` |
| [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-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.946.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.946.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.946.0/packages/s3-request-presigner)

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

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

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

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

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

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

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

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

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.946.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.946.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/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 `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.9
- [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.9/packages/@mantine/core)

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

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

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

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

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

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-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/react-router-dom@7.10.1/packages/react-router-dom)

Updates `@aws-sdk/client-firehose` from 3.922.0 to 3.946.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.946.0/clients/client-firehose)

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

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

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

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

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

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

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

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

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

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.946.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.946.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/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 `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.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.946.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.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.946.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.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.946.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/swagger"
  dependency-version: 9.6.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.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/dropzone"
  dependency-version: 8.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-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.946.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.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.946.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.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.946.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.946.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.946.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/swagger"
  dependency-version: 9.6.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] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 8, 2025
@coderabbitai
Copy link
Contributor

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