Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
esbuild 0.25.12 0.27.2
@aws-sdk/s3-request-presigner 3.922.0 3.956.0
@aws-sdk/client-s3 3.922.0 3.956.0
@aws-sdk/client-dynamodb 3.922.0 3.956.0
@aws-sdk/client-lambda 3.922.0 3.956.0
@aws-sdk/client-secrets-manager 3.922.0 3.956.0
@aws-sdk/client-ses 3.922.0 3.956.0
@aws-sdk/client-sqs 3.922.0 3.956.0
@aws-sdk/client-sts 3.922.0 3.956.0
@aws-sdk/signature-v4-crt 3.922.0 3.956.0
@aws-sdk/util-dynamodb 3.922.0 3.956.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/swagger 9.5.2 9.6.1
aws-crt 1.27.5 1.28.1
discord.js 14.24.2 14.25.1
fastify 5.6.1 5.6.2
jsonwebtoken 9.0.2 9.0.3
passkit-generator 3.5.5 3.5.6
redlock-universal 0.7.0 0.7.6
stripe 19.2.0 20.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.449
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.956.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.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.956.0

Release notes

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

v3.956.0

3.956.0(2025-12-19)

Chores
Documentation Changes
New Features
  • clients: update client endpoints as of 2025-12-19 (e0360a8f)
  • client-wickr: AWS Wickr now provides a suite of admin APIs to allow you to programmatically manage secure communication for Wickr networks at scale. These APIs enable you to automate administrative workflows including user lifecycle management, network configuration, and security group administration. (d105e0ef)
  • client-arc-region-switch: Automatic Plan Execution Reports allow customers to maintain a concise record of their Region switch Plan executions. This enables customer SREs and leadership to have a clear view of their recovery posture based on the generated reports for their Plan executions. (33dbf8d8)
  • client-workspaces-web: Add support for WebAuthn under user settings. (a42b84c4)
  • client-iot: This release adds event-based logging feature that enables granular event logging controls for AWS IoT logs. (bbbf580b)
  • client-qbusiness: It is a internal bug fix for region expansion (42a80dd7)
  • client-connect: Adding support for Custom Metrics and Pre-Defined Attributes to GetCurrentMetricData API. (43dab925)
  • client-emr-serverless: Added JobLevelCostAllocationConfiguration field to enable cost allocation reporting at the job level, providing more granular visibility into EMR Serverless charges (e95db238)
Bug Fixes
  • ec2-metadata-service: add configurable options for ttl and port precedence (#7584) (184cf70c)
  • core/protocols: $unknown union member support (#7593) (596fc405)

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

v3.955.0

3.955.0(2025-12-18)

Chores
New Features
  • clients: update client endpoints as of 2025-12-18 (11335218)
  • client-ec2: This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs. (4d1a66b9)
  • client-ecs: Adding support for Event Windows via a new ECS account setting "fargateEventWindows". When enabled, ECS Fargate will use the configured event window for patching tasks. Introducing "CapacityOptionType" for CreateCapacityProvider API, allowing support for Spot capacity for ECS Managed Instances. (751c797f)
  • client-arc-region-switch: New API to list Route 53 health checks created by ARC region switch for a plan in a specific AWS Region using the Region switch Regional data plane. (406035c4)

... (truncated)

Changelog

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

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)

3.952.0 (2025-12-15)

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

3.948.0 (2025-12-09)

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

... (truncated)

Commits

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

Release notes

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

v3.956.0

3.956.0(2025-12-19)

Chores
Documentation Changes
New Features
  • clients: update client endpoints as of 2025-12-19 (e0360a8f)
  • client-wickr: AWS Wickr now provides a suite of admin APIs to allow you to programmatically manage secure communication for Wickr networks at scale. These APIs enable you to automate administrative workflows including user lifecycle management, network configuration, and security group administration. (d105e0ef)
  • client-arc-region-switch: Automatic Plan Execution Reports allow customers to maintain a concise record of their Region switch Plan executions. This enables customer SREs and leadership to have a clear view of their recovery posture based on the generated reports for their Plan executions. (33dbf8d8)
  • client-workspaces-web: Add support for WebAuthn under user settings. (a42b84c4)
  • client-iot: This release adds event-based logging feature that enables granular event logging controls for AWS IoT logs. (bbbf580b)
  • client-qbusiness: It is a internal bug fix for region expansion (42a80dd7)
  • client-connect: Adding support for Custom Metrics and Pre-Defined Attributes to GetCurrentMetricData API. (43dab925)
  • client-emr-serverless: Added JobLevelCostAllocationConfiguration field to enable cost allocation reporting at the job level, providing more granular visibility into EMR Serverless charges (e95db238)
Bug Fixes
  • ec2-metadata-service: add configurable options for ttl and port precedence (#7584) (184cf70c)
  • core/protocols: $unknown union member support (#7593) (596fc405)

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

v3.955.0

3.955.0(2025-12-18)

Chores
New Features
  • clients: update client endpoints as of 2025-12-18 (11335218)
  • client-ec2: This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs. (4d1a66b9)
  • client-ecs: Adding support for Event Windows via a new ECS account setting "fargateEventWindows". When enabled, ECS Fargate will use the configured event window for patching tasks. Introducing "CapacityOptionType" for CreateCapacityProvider API, allowing support for Spot capacity for ECS Managed Instances. (751c797f)
  • client-arc-region-switch: New API to list Route 53 health checks created by ARC region switch for a plan in a specific AWS Region using the Region switch Regional data plane. (406035c4)

... (truncated)

Changelog

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

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)

3.952.0 (2025-12-15)

Features

  • client-s3: This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations. (55955e0)

3.948.0 (2025-12-09)

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

... (truncated)

Commits

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

Release notes

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

v3.956.0

3.956.0(2025-12-19)

Chores
Documentation Changes
New Features
  • clients: update client endpoints as of 2025-12-19 (e0360a8f)
  • client-wickr: AWS Wickr now provides a suite of admin APIs to allow you to programmatically manage secure communication for Wickr networks at scale. These APIs enable you to automate administrative workflows including user lifecycle management, network configuration, and security group administration. (d105e0ef)
  • client-arc-region-switch: Automatic Plan Execution Reports allow customers to maintain a concise record of their Region switch Plan executions. This enables customer SREs and leadership to have a clear view of their recovery posture based on the generated reports for their Plan executions. (33dbf8d8)
  • client-workspaces-web: Add support for WebAuthn under user settings. (a42b84c4)
  • client-iot: This release adds event-based logging feature that enables granular event logging controls for AWS IoT logs. (bbbf580b)
  • client-qbusiness: It is a internal bug fix for region expansion (42a80dd7)
  • client-connect: Adding support for Custom Metrics and Pre-Defined Attributes to GetCurrentMetricData API. (43dab925)
  • client-emr-serverless: Added JobLevelCostAllocationConfiguration field to enable cost allocation reporting at the job level, providing more granular visibility into EMR Serverless charges (e95db238)
Bug Fixes
  • ec2-metadata-service: add configurable options for ttl and port precedence (#7584) (184cf70c)
  • core/protocols: $unknown union member support (#7593) (596fc405)

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

v3.955.0

3.955.0(2025-12-18)

Chores
New Features
  • clients: update client endpoints as of 2025-12-18 (11335218)
  • client-ec2: This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs. (4d1a66b9)
  • client-ecs: Adding support for Event Windows via a new ECS account setting "fargateEventWindows". When enabled, ECS Fargate will use the configured event window for patching tasks. Introducing "CapacityOptionType" for CreateCapacityProvider API, allowing support for Spot capacity for ECS Managed Instances. (751c797f)
  • client-arc-region-switch: New API to list Route 53 health checks created by ARC region switch for a plan in a specific AWS Region using the Region switch Regional data plane. (406035c4)

... (truncated)

Changelog

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

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)

3.952.0 (2025-12-15)

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

3.948.0 (2025-12-09)

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

... (truncated)

Commits

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

Release notes

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

v3.956.0

3.956.0(2025-12-19)

Chores
Documentation Changes
New Features
  • clients: update client endpoints as of 2025-12-19 (e0360a8f)
  • client-wickr: AWS Wickr now provides a suite of admin APIs to allow you to programmatically manage secure communication for Wickr networks at scale. These APIs enable you to automate administrative workflows including user lifecycle management, network configuration, and security group administration. (d105e0ef)
  • client-arc-region-switch: Automatic Plan Execution Reports allow customers to maintain a concise record of their Region switch Plan executions. This enables customer SREs and leadership to have a clear view of their recovery posture based on the generated reports for their Plan executions. (33dbf8d8)
  • client-workspaces-web: Add support for WebAuthn under user settings. (a42b84c4)
  • client-iot: This release adds event-based logging feature that enables granular event logging controls for AWS IoT logs. (bbbf580b)
  • client-qbusiness: It is a internal bug fix for region expansion (42a80dd7)
  • client-connect: Adding support for Custom Metrics and Pre-Defined Attributes to GetCurrentMetricData API. (43dab925)
  • client-emr-serverless: Added JobLevelCostAllocationConfiguration field to enable cost allocation reporting at the job level, providing more granular visibility into EMR Serverless charges (e95db238)
Bug Fixes
  • ec2-metadata-service: add configurable options for ttl and port precedence (#7584) (184cf70c)
  • core/protocols: $unknown union member support (#7593) (596fc405)

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

v3.955.0

3.955.0(2025-12-18)

Chores
New Features
  • clients: update client endpoints as of 2025-12-18 (11335218)
  • client-ec2: This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs. (4d1a66b9)
  • client-ecs: Adding support for Event Windows via a new ECS account setting "fargateEventWindows". When enabled, ECS Fargate will use the configured event window for patching tasks. Introducing "CapacityOptionType" for CreateCapacityProvider API, allowing support for Spot capacity for ECS Managed Instances. (751c797f)
  • client-arc-region-switch: New API to list Route 53 health checks created by ARC region switch for a plan in a specific AWS Region using the Region switch Regional data plane. (406035c4)

... (truncated)

Changelog

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

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)

3.952.0 (2025-12-15)

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

3.950.0 (2025-12-11)

Features

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

... (truncated)

Commits

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

Release notes

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

v3.956.0

3.956.0(2025-12-19)

Chores
Documentation Changes
New Features
  • clients: update client endpoints as of 2025-12-19 (e0360a8f)
  • client-wickr: AWS Wickr now provides a suite of admin APIs to allow you to programmatically manage secure communication for Wickr networks at scale. These APIs enable you to automate administrative workflows including user lifecycle management, network configuration, and security group administration. (d105e0ef)
  • client-arc-region-switch: Automatic Plan Execution Reports allow customers to maintain a concise record of their Region switch Plan executions. This enables customer SREs and leadership to have a clear view of their recovery posture based on the generated reports for their Plan executions. (33dbf8d8)
  • client-workspaces-web: Add support for WebAuthn under user settings. (a42b84c4)
  • client-iot: This release adds event-based logging feature that enables granular event logging controls for AWS IoT logs. (bbbf580b)
  • client-qbusiness: It is a internal bug fix for region expansion (42a80dd7)
  • client-connect: Adding support for Custom Metrics and Pre-Defined Attributes to GetCurrentMetricData API. (43dab925)
  • client-emr-serverless: Added JobLevelCostAllocationConfiguration field to enable cost allocation reporting at the job level, providing more granular visibility into EMR Serverless charges (e95db238)
Bug Fixes
  • ec2-metadata-service: add configurable options for ttl and port precedence (#7584) (184cf70c)
  • core/protocols: $unknown union member support (#7593) (596fc405)

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

v3.955.0

3.955.0(2025-12-18)

Chores
New Features
  • clients: update client endpoints as of 2025-12-18 (11335218)
  • client-ec2: This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs. (4d1a66b9)
  • client-ecs: Adding support for Event Windows via a new ECS account setting "fargateEventWindows". When enabled, ECS Fargate will use the configured event window for patching tasks. Introducing "CapacityOptionType" for CreateCapacityProvider API, allowing support for Spot capacity for ECS Managed Instances. (751c797f)
  • client-arc-region-switch: New API to list Route 53 health checks created by ARC region switch for a plan in a specific AWS Region using the Region switch Regional data plane. (406035c4)

... (truncated)

Changelog

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

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)

3.952.0 (2025-12-15)

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

3.950.0 (2025-12-11)

Features

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

... (truncated)

Commits

…pdates

Bumps the production-dependencies group with 40 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.956.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.922.0` | `3.956.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.922.0` | `3.956.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.922.0` | `3.956.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.922.0` | `3.956.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.922.0` | `3.956.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.922.0` | `3.956.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.922.0` | `3.956.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.922.0` | `3.956.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.922.0` | `3.956.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/swagger](https://github.com/fastify/fastify-swagger) | `9.5.2` | `9.6.1` |
| [aws-crt](https://github.com/awslabs/aws-crt-nodejs) | `1.27.5` | `1.28.1` |
| [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js) | `14.24.2` | `14.25.1` |
| [fastify](https://github.com/fastify/fastify) | `5.6.1` | `5.6.2` |
| [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) | `9.0.2` | `9.0.3` |
| [passkit-generator](https://github.com/alexandercerutti/passkit-generator) | `3.5.5` | `3.5.6` |
| [redlock-universal](https://github.com/alexpota/redlock-universal) | `0.7.0` | `0.7.6` |
| [stripe](https://github.com/stripe/stripe-node) | `19.2.0` | `20.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.449` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.1` | `19.2.3` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.1` | `19.2.3` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.10.0` | `7.11.0` |
| [@aws-sdk/client-firehose](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-firehose) | `3.922.0` | `3.956.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.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.956.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.956.0/packages/s3-request-presigner)

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

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

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

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

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

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

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

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

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.956.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.956.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/swagger` from 9.5.2 to 9.6.1
- [Release notes](https://github.com/fastify/fastify-swagger/releases)
- [Commits](fastify/fastify-swagger@v9.5.2...v9.6.1)

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

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

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

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

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

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

Updates `stripe` from 19.2.0 to 20.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.449
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](mozilla/pdf.js@v4.10.38...v5.4.449)

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

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

Updates `react-router-dom` from 7.10.0 to 7.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/react-router-dom@7.11.0/packages/react-router-dom)

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

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

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

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

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

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

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

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

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

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

Updates `@aws-sdk/util-dynamodb` from 3.922.0 to 3.956.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.956.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/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.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.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 `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.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.956.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.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.956.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.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.956.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/swagger"
  dependency-version: 9.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: aws-crt
  dependency-version: 1.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: jsonwebtoken
  dependency-version: 9.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: passkit-generator
  dependency-version: 3.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 20.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.449
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.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.956.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.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.956.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.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.956.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.956.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.956.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/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.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.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: 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] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 22, 2025
@coderabbitai
Copy link
Contributor

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