Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 23, 2025

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

Package From To
@acm-uiuc/js-shared 3.1.0 3.2.1
esbuild 0.25.8 0.25.11
@aws-sdk/client-dynamodb 3.896.0 3.914.0
@aws-sdk/client-lambda 3.896.0 3.914.0
@aws-sdk/client-secrets-manager 3.896.0 3.914.0
@aws-sdk/client-ses 3.896.0 3.914.0
@aws-sdk/client-sqs 3.896.0 3.914.0
@aws-sdk/client-sts 3.896.0 3.914.0
@aws-sdk/signature-v4-crt 3.896.0 3.914.0
@aws-sdk/util-dynamodb 3.896.0 3.914.0
@azure/msal-node 3.6.4 3.8.0
@fastify/auth 5.0.2 5.0.3
@fastify/aws-lambda 6.0.0 6.1.1
@fastify/static 8.2.0 8.3.0
@fastify/swagger 9.5.1 9.5.2
@middy/core 6.4.1 6.4.5
@middy/event-normalizer 6.4.1 6.4.5
@middy/sqs-partial-batch-failure 6.4.1 6.4.5
argon2 0.43.1 0.44.0
aws-crt 1.27.3 1.27.5
discord.js 14.21.0 14.23.2
fastify 5.4.0 5.6.1
fastify-plugin 5.0.1 5.1.0
fastify-zod-openapi 5.2.0 5.5.0
ioredis 5.7.0 5.8.2
octokit 5.0.3 5.0.4
passkit-generator 3.4.0 3.5.2
pino 9.7.0 10.1.0
redlock-universal 0.6.4 0.6.5
stripe 18.4.0 19.1.0
uuid 11.1.0 13.0.0
zod 4.0.14 4.1.12
zod-validation-error 4.0.1 4.0.2
@azure/msal-browser 4.18.0 4.25.1
@azure/msal-react 3.0.16 3.0.20
@mantine/core 8.2.2 8.3.5
@mantine/dates 8.2.2 8.3.5
@mantine/form 8.2.2 8.3.5
@mantine/hooks 8.2.2 8.3.5
@mantine/notifications 8.2.2 8.3.5
@tabler/icons-react 3.34.1 3.35.0
dayjs 1.11.13 1.11.18
dotenv 17.2.1 17.2.3
pdfjs-dist 4.10.38 5.4.296
react 19.1.1 19.2.0
react-dom 19.1.1 19.2.0
react-pdf 10.0.1 10.2.0
react-router-dom 7.7.1 7.9.4
@aws-sdk/client-firehose 3.896.0 3.914.0

Bumps the production-dependencies group with 4 updates in the /src/api directory: argon2, pino, stripe and uuid.

Updates @acm-uiuc/js-shared from 3.1.0 to 3.2.1

Release notes

Sourced from @​acm-uiuc/js-shared's releases.

v3.2.1

Full Changelog: acm-uiuc/js-shared@v3.2.0...v3.2.1

v3.2.0

Add org colors

Full Changelog: acm-uiuc/js-shared@v3.1.0...v3.2.0

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​acm-uiuc/js-shared since your current version.


Updates esbuild from 0.25.8 to 0.25.11

Release notes

Sourced from esbuild's releases.

v0.25.11

  • Add support for with { type: 'bytes' } imports (#4292)

    The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing binary loader. Here's an example:

    import data from './image.png' with { type: 'bytes' }
    const view = new DataView(data.buffer, 0, 24)
    const width = view.getInt32(16)
    const height = view.getInt32(20)
    console.log('size:', width + '\xD7' + height)
  • Lower CSS media query range syntax (#3748, #4293)

    With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using min-/max- prefixes for older browsers. For example, the following CSS:

    @media (640px <= width <= 960px) {
      main {
        display: flex;
      }
    }

    will be transformed like this with a target such as --target=chrome100 (or more specifically with --supported:media-range=false if desired):

    @media (min-width: 640px) and (max-width: 960px) {
      main {
        display: flex;
      }
    }

v0.25.10

  • Fix a panic in a minification edge case (#4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.25.11

  • Add support for with { type: 'bytes' } imports (#4292)

    The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing binary loader. Here's an example:

    import data from './image.png' with { type: 'bytes' }
    const view = new DataView(data.buffer, 0, 24)
    const width = view.getInt32(16)
    const height = view.getInt32(20)
    console.log('size:', width + '\xD7' + height)
  • Lower CSS media query range syntax (#3748, #4293)

    With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using min-/max- prefixes for older browsers. For example, the following CSS:

    @media (640px <= width <= 960px) {
      main {
        display: flex;
      }
    }

    will be transformed like this with a target such as --target=chrome100 (or more specifically with --supported:media-range=false if desired):

    @media (min-width: 640px) and (max-width: 960px) {
      main {
        display: flex;
      }
    }

0.25.10

  • Fix a panic in a minification edge case (#4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

... (truncated)

Commits

Updates @aws-sdk/client-dynamodb from 3.896.0 to 3.914.0

Release notes

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

v3.914.0

3.914.0(2025-10-21)

Chores
New Features
  • clients: update client endpoints as of 2025-10-21 (1164402e)
  • client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
  • client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
  • client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
  • client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
  • nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
  • cloudfront-signer: encode uri components in base url (#7437) (8458bab0)

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

v3.913.0

3.913.0(2025-10-17)

Chores
  • build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
  • deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
  • client-ec2: Documentation updates for Amazon EC2. (2ce38470)
  • client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
  • clients: update client endpoints as of 2025-10-17 (ea0970e0)
  • client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
  • client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
  • client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
  • client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
  • client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
  • client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)

... (truncated)

Changelog

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

3.914.0 (2025-10-21)

Features

  • client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed85)

3.913.0 (2025-10-17)

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

3.911.0 (2025-10-15)

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

3.910.0 (2025-10-14)

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

3.908.0 (2025-10-10)

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

3.907.0 (2025-10-09)

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

... (truncated)

Commits
  • 25418b3 Publish v3.914.0
  • e23ed85 feat(client-dynamodb): Add AccountID based endpoint metric to endpoint rules.
  • 387386b chore(codegen): smithy version update (#7448)
  • c02462c Publish v3.913.0
  • 7cf6665 Publish v3.911.0
  • e8539ae Publish v3.910.0
  • c8809d4 chore(codegen): sync for node-http timeout fixes, deprecated documentation (#...
  • c5dbfc6 Publish v3.908.0
  • 511167d chore(codegen): sync for bowser removal, lstat fixes (#7418)
  • 20bfe7d Publish v3.907.0
  • Additional commits viewable in compare view

Updates @aws-sdk/client-lambda from 3.896.0 to 3.914.0

Release notes

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

v3.914.0

3.914.0(2025-10-21)

Chores
New Features
  • clients: update client endpoints as of 2025-10-21 (1164402e)
  • client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
  • client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
  • client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
  • client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
  • nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
  • cloudfront-signer: encode uri components in base url (#7437) (8458bab0)

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

v3.913.0

3.913.0(2025-10-17)

Chores
  • build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
  • deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
  • client-ec2: Documentation updates for Amazon EC2. (2ce38470)
  • client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
  • clients: update client endpoints as of 2025-10-17 (ea0970e0)
  • client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
  • client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
  • client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
  • client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
  • client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
  • client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)

... (truncated)

Changelog

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

3.914.0 (2025-10-21)

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

3.913.0 (2025-10-17)

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

3.911.0 (2025-10-15)

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

3.910.0 (2025-10-14)

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

3.908.0 (2025-10-10)

Features

  • client-lambda: Add InvokedViaFunctionUrl context key to limit invocations to only FURL invokes. (cf1e3be)

3.907.0 (2025-10-09)

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

... (truncated)

Commits
  • 25418b3 Publish v3.914.0
  • 387386b chore(codegen): smithy version update (#7448)
  • c02462c Publish v3.913.0
  • 7cf6665 Publish v3.911.0
  • e8539ae Publish v3.910.0
  • c8809d4 chore(codegen): sync for node-http timeout fixes, deprecated documentation (#...
  • c5dbfc6 Publish v3.908.0
  • cf1e3be feat(client-lambda): Add InvokedViaFunctionUrl context key to limit invocatio...
  • 511167d chore(codegen): sync for bowser removal, lstat fixes (#7418)
  • 20bfe7d Publish v3.907.0
  • Additional commits viewable in compare view

Updates @aws-sdk/client-secrets-manager from 3.896.0 to 3.914.0

Release notes

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

v3.914.0

3.914.0(2025-10-21)

Chores
New Features
  • clients: update client endpoints as of 2025-10-21 (1164402e)
  • client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
  • client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
  • client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
  • client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
  • nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
  • cloudfront-signer: encode uri components in base url (#7437) (8458bab0)

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

v3.913.0

3.913.0(2025-10-17)

Chores
  • build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
  • deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
  • client-ec2: Documentation updates for Amazon EC2. (2ce38470)
  • client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
  • clients: update client endpoints as of 2025-10-17 (ea0970e0)
  • client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
  • client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
  • client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
  • client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
  • client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
  • client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)

... (truncated)

Changelog

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

3.914.0 (2025-10-21)

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

3.913.0 (2025-10-17)

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

3.911.0 (2025-10-15)

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

3.910.0 (2025-10-14)

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

3.908.0 (2025-10-10)

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

3.907.0 (2025-10-09)

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

3.906.0 (2025-10-08)

... (truncated)

Commits

Updates @aws-sdk/client-ses from 3.896.0 to 3.914.0

Release notes

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

v3.914.0

3.914.0(2025-10-21)

Chores
New Features
  • clients: update client endpoints as of 2025-10-21 (1164402e)
  • client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
  • client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
  • client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
  • client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
  • nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
  • cloudfront-signer: encode uri components in base url (#7437) (8458bab0)

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

v3.913.0

3.913.0(2025-10-17)

Chores
  • build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
  • deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
  • client-ec2: Documentation updates for Amazon EC2. (2ce38470)
  • client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
  • clients: update client endpoints as of 2025-10-17 (ea0970e0)
  • client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
  • client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
  • client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
  • client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
  • client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
  • client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)

... (truncated)

Changelog

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

3.914.0 (2025-10-21)

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

3.913.0 (2025-10-17)

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

3.911.0 (2025-10-15)

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

3.910.0 (2025-10-14)

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

3.908.0 (2025-10-10)

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

3.907.0 (2025-10-09)

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

3.906.0 (2025-10-08)

... (truncated)

Commits

Updates @aws-sdk/client-sqs from 3.896.0 to 3.914.0

Release notes

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

v3.914.0

3.914.0(2025-10-21)

Chores
New Features
  • clients: update client endpoints as of 2025-10-21 (1164402e)
  • client-marketplace-metering: Added ClientToken parameter to MeterUsage API for specifying idempotent requests. (fcf86371)
  • client-dynamodb: Add AccountID based endpoint metric to endpoint rules. (e23ed853)
  • client-mediaconvert: This release adds the ability to set resolution for the black video generator and also adds the StartJobsQuery and GetJobsQueryResults APIs which allow asynchronous search of job history using new filters. (3dbc5fe9)
  • client-emr: Added RECONFIGURING to the InstanceFleetState convenience enum. (321c78e2)
Bug Fixes
  • nested-clients: propagate clientConfig to inner STS client in role assumption (#7445) (6ec7126b)
  • cloudfront-signer: encode uri components in base url (#7437) (8458bab0)

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

v3.913.0

3.913.0(2025-10-17)

Chores
  • build: throw error on CJS rollup circular dependency (#7432) (9ecb6d6c)
  • deps-dev: bump happy-dom from 16.3.0 to 20.0.0 (#7431) (8b193e9f)
Documentation Changes
  • client-ec2: Documentation updates for Amazon EC2. (2ce38470)
  • client-gameliftstreams: Updates documentation to clarify valid application binaries for an Amazon GameLift Streams application and provide descriptions of stream session error status reasons (9f9708cc)
New Features
  • clients: update client endpoints as of 2025-10-17 (ea0970e0)
  • client-imagebuilder: Update endpoint ruleset parameters casing (986c9ed0)
  • client-networkmanager: Update endpoint ruleset parameters casing (c86c0dc8)
  • client-iotthingsgraph: Update endpoint ruleset parameters casing (94413b01)
  • client-pi: Update endpoint ruleset parameters casing (0f6f3e8d)
  • client-kendra-ranking: Update endpoint ruleset parameters casing (73c5dbe4)
  • client-elasticsearch-service: Update endpoint ruleset parameters casing (eefda1be)

... (truncated)

Changelog

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

3.914.0 (2025-10-21)

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

3.913.0 (2025-10-17)

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

3.911.0 (2025-10-15)

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

3.910.0 (2025-10-14)

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

3.908.0 (2025-10-10)

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

3.907.0 (2025-10-09)

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

3.906.0 (2025-10-08)

... (truncated)

Commits

Updates @aws-sdk/client-sts from 3.896.0 to 3.914.0

Release notes

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

v3.914.0

3.914.0(2025-10-21)

Chores
New Features
  • ...

    Description has been truncated

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [@acm-uiuc/js-shared](https://github.com/acm-uiuc/js-shared) | `3.1.0` | `3.2.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.8` | `0.25.11` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.896.0` | `3.914.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.896.0` | `3.914.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.896.0` | `3.914.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.896.0` | `3.914.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.896.0` | `3.914.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.896.0` | `3.914.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.896.0` | `3.914.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.896.0` | `3.914.0` |
| [@azure/msal-node](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.6.4` | `3.8.0` |
| [@fastify/auth](https://github.com/fastify/fastify-auth) | `5.0.2` | `5.0.3` |
| [@fastify/aws-lambda](https://github.com/fastify/aws-lambda-fastify) | `6.0.0` | `6.1.1` |
| [@fastify/static](https://github.com/fastify/fastify-static) | `8.2.0` | `8.3.0` |
| [@fastify/swagger](https://github.com/fastify/fastify-swagger) | `9.5.1` | `9.5.2` |
| [@middy/core](https://github.com/middyjs/middy/tree/HEAD/packages/core) | `6.4.1` | `6.4.5` |
| [@middy/event-normalizer](https://github.com/middyjs/middy/tree/HEAD/packages/event-normalizer) | `6.4.1` | `6.4.5` |
| [@middy/sqs-partial-batch-failure](https://github.com/middyjs/middy/tree/HEAD/packages/sqs-partial-batch-failure) | `6.4.1` | `6.4.5` |
| [argon2](https://github.com/ranisalt/node-argon2) | `0.43.1` | `0.44.0` |
| [aws-crt](https://github.com/awslabs/aws-crt-nodejs) | `1.27.3` | `1.27.5` |
| [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js) | `14.21.0` | `14.23.2` |
| [fastify](https://github.com/fastify/fastify) | `5.4.0` | `5.6.1` |
| [fastify-plugin](https://github.com/fastify/fastify-plugin) | `5.0.1` | `5.1.0` |
| [fastify-zod-openapi](https://github.com/samchungy/fastify-zod-openapi) | `5.2.0` | `5.5.0` |
| [ioredis](https://github.com/luin/ioredis) | `5.7.0` | `5.8.2` |
| [octokit](https://github.com/octokit/octokit.js) | `5.0.3` | `5.0.4` |
| [passkit-generator](https://github.com/alexandercerutti/passkit-generator) | `3.4.0` | `3.5.2` |
| [pino](https://github.com/pinojs/pino) | `9.7.0` | `10.1.0` |
| [redlock-universal](https://github.com/alexpota/redlock-universal) | `0.6.4` | `0.6.5` |
| [stripe](https://github.com/stripe/stripe-node) | `18.4.0` | `19.1.0` |
| [uuid](https://github.com/uuidjs/uuid) | `11.1.0` | `13.0.0` |
| [zod](https://github.com/colinhacks/zod) | `4.0.14` | `4.1.12` |
| [zod-validation-error](https://github.com/causaly/zod-validation-error) | `4.0.1` | `4.0.2` |
| [@azure/msal-browser](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `4.18.0` | `4.25.1` |
| [@azure/msal-react](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.0.16` | `3.0.20` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.2.2` | `8.3.5` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.2.2` | `8.3.5` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.2.2` | `8.3.5` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.2.2` | `8.3.5` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.2.2` | `8.3.5` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.34.1` | `3.35.0` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.13` | `1.11.18` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.2.1` | `17.2.3` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `4.10.38` | `5.4.296` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.1` | `19.2.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.1` | `19.2.0` |
| [react-pdf](https://github.com/wojtekmaj/react-pdf/tree/HEAD/packages/react-pdf) | `10.0.1` | `10.2.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.7.1` | `7.9.4` |
| [@aws-sdk/client-firehose](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-firehose) | `3.896.0` | `3.914.0` |

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


Updates `@acm-uiuc/js-shared` from 3.1.0 to 3.2.1
- [Release notes](https://github.com/acm-uiuc/js-shared/releases)
- [Commits](acm-uiuc/js-shared@v3.1.0...v3.2.1)

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

Updates `@aws-sdk/client-dynamodb` from 3.896.0 to 3.914.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.914.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.896.0 to 3.914.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.914.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.896.0 to 3.914.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.914.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.896.0 to 3.914.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.914.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.896.0 to 3.914.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.914.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.896.0 to 3.914.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.914.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.896.0 to 3.914.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.914.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.896.0 to 3.914.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.914.0/packages/util-dynamodb)

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

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

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

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

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

Updates `@middy/core` from 6.4.1 to 6.4.5
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.5/packages/core)

Updates `@middy/event-normalizer` from 6.4.1 to 6.4.5
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.5/packages/event-normalizer)

Updates `@middy/sqs-partial-batch-failure` from 6.4.1 to 6.4.5
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.5/packages/sqs-partial-batch-failure)

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

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

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

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

Updates `fastify-plugin` from 5.0.1 to 5.1.0
- [Release notes](https://github.com/fastify/fastify-plugin/releases)
- [Commits](fastify/fastify-plugin@v5.0.1...v5.1.0)

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

Updates `ioredis` from 5.7.0 to 5.8.2
- [Release notes](https://github.com/luin/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.7.0...v5.8.2)

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

Updates `passkit-generator` from 3.4.0 to 3.5.2
- [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.4.0...v3.5.2)

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

Updates `redlock-universal` from 0.6.4 to 0.6.5
- [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.6.4...v0.6.5)

Updates `stripe` from 18.4.0 to 19.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@v18.4.0...v19.1.0)

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

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

Updates `zod-validation-error` from 4.0.1 to 4.0.2
- [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.1...v4.0.2)

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

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

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

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

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

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

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

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

Updates `axios` from 1.11.0 to 1.12.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.11.0...v1.12.2)

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

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

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

Updates `react` from 19.1.1 to 19.2.0
- [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.0/packages/react)

Updates `react-dom` from 19.1.1 to 19.2.0
- [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.0/packages/react-dom)

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

Updates `react-router-dom` from 7.7.1 to 7.9.4
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `@aws-sdk/client-firehose` from 3.896.0 to 3.914.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.914.0/clients/client-firehose)

Updates `@aws-sdk/client-dynamodb` from 3.896.0 to 3.914.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.914.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.896.0 to 3.914.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.914.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.896.0 to 3.914.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.914.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.896.0 to 3.914.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.914.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.896.0 to 3.914.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.914.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.896.0 to 3.914.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.914.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.896.0 to 3.914.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.914.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.896.0 to 3.914.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.914.0/packages/util-dynamodb)

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

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

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

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

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

Updates `@middy/core` from 6.4.1 to 6.4.5
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.5/packages/core)

Updates `@middy/event-normalizer` from 6.4.1 to 6.4.5
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.5/packages/event-normalizer)

Updates `@middy/sqs-partial-batch-failure` from 6.4.1 to 6.4.5
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.5/packages/sqs-partial-batch-failure)

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

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

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

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

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

Updates `fastify-plugin` from 5.0.1 to 5.1.0
- [Release notes](https://github.com/fastify/fastify-plugin/releases)
- [Commits](fastify/fastify-plugin@v5.0.1...v5.1.0)

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

Updates `ioredis` from 5.7.0 to 5.8.2
- [Release notes](https://github.com/luin/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.7.0...v5.8.2)

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

Updates `passkit-generator` from 3.4.0 to 3.5.2
- [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.4.0...v3.5.2)

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

Updates `redlock-universal` from 0.6.4 to 0.6.5
- [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.6.4...v0.6.5)

Updates `stripe` from 18.4.0 to 19.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@v18.4.0...v19.1.0)

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

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

Updates `zod-validation-error` from 4.0.1 to 4.0.2
- [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.1...v4.0.2)

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

Updates `pino` from 9.14.0 to 10.1.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v9.7.0...v10.1.0)

Updates `stripe` from 18.5.0 to 19.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@v18.4.0...v19.1.0)

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

---
updated-dependencies:
- dependency-name: "@acm-uiuc/js-shared"
  dependency-version: 3.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.914.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.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.914.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.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/auth"
  dependency-version: 5.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@fastify/aws-lambda"
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/static"
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/swagger"
  dependency-version: 9.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/core"
  dependency-version: 6.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/event-normalizer"
  dependency-version: 6.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/sqs-partial-batch-failure"
  dependency-version: 6.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: aws-crt
  dependency-version: 1.27.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.23.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify-plugin
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify-zod-openapi
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ioredis
  dependency-version: 5.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: octokit
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: passkit-generator
  dependency-version: 3.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 19.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.1.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: zod-validation-error
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-browser"
  dependency-version: 4.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-react"
  dependency-version: 3.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: axios
  dependency-version: 1.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: dotenv
  dependency-version: 17.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pdfjs-dist
  dependency-version: 5.4.296
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-pdf
  dependency-version: 10.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.9.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-firehose"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.914.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.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.914.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.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.914.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/auth"
  dependency-version: 5.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@fastify/aws-lambda"
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/static"
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fastify/swagger"
  dependency-version: 9.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/core"
  dependency-version: 6.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/event-normalizer"
  dependency-version: 6.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/sqs-partial-batch-failure"
  dependency-version: 6.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: aws-crt
  dependency-version: 1.27.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.23.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify-plugin
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify-zod-openapi
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ioredis
  dependency-version: 5.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: octokit
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: passkit-generator
  dependency-version: 3.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 19.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.1.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: zod-validation-error
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 19.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 23, 2025
@coderabbitai
Copy link

coderabbitai bot commented Oct 23, 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.

0 participants