Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
@acm-uiuc/js-shared 2.2.0 2.3.0
esbuild 0.25.8 0.25.10
@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/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
discord.js 14.21.0 14.22.1
fastify 5.4.0 5.6.1
fastify-plugin 5.0.1 5.1.0
fastify-zod-openapi 5.2.0 5.4.0
ioredis 5.7.0 5.8.0
pino 9.7.0 9.12.0
stripe 18.4.0 18.5.0
uuid 11.1.0 13.0.0
zod 4.0.14 4.1.11
zod-validation-error 4.0.1 4.0.2
@azure/msal-browser 4.18.0 4.24.0
@azure/msal-react 3.0.16 3.0.20
@mantine/core 8.2.2 8.3.2
@mantine/dates 8.2.2 8.3.2
@mantine/form 8.2.2 8.3.2
@mantine/hooks 8.2.2 8.3.2
@mantine/notifications 8.2.2 8.3.2
@tabler/icons-react 3.34.1 3.35.0
axios 1.11.0 1.12.2
dayjs 1.11.13 1.11.18
dotenv 17.2.1 17.2.2
pdfjs-dist 4.10.38 5.4.149
react-pdf 10.0.1 10.1.0
react-router-dom 7.7.1 7.9.3

Bumps the production-dependencies group with 2 updates in the /src/api directory: argon2 and uuid.

Updates @acm-uiuc/js-shared from 2.2.0 to 2.3.0

Release notes

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

v2.3.0

What's Changed

Full Changelog: acm-uiuc/js-shared@v2.2.0...v2.3.0

Commits

Updates esbuild from 0.25.8 to 0.25.10

Release notes

Sourced from esbuild's releases.

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.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @supports (color: blue) { color: blue }
    }
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    {
    color: blue;
    }
    }
    /* New output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    ::placeholder {
    color: blue;
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

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:

    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.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @supports (color: blue) { color: blue }
    }
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    {
    color: blue;
    }
    }
    /* New output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    ::placeholder {
    color: blue;

... (truncated)

Commits

Updates @azure/msal-node from 3.6.4 to 3.8.0

Release notes

Sourced from @​azure/msal-node's releases.

@​azure/msal-node v3.8.0

3.8.0

Wed, 24 Sep 2025 21:54:45 GMT

Minor changes

  • Instrument data boundary claim #8054 (kshabelko@microsoft.com)
  • Bump @​azure/msal-common to v15.13.0 (beachball)
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump rollup-msal to v0.0.0 (beachball)

@​azure/msal-node v3.7.4

3.7.4

Wed, 17 Sep 2025 09:50:42 GMT

Patches

  • broker redirect uri changes (akaliugonna@microsoft.com)
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump rollup-msal to v0.0.0 (beachball)

@​azure/msal-node v3.7.3

3.7.3

Wed, 27 Aug 2025 00:59:59 GMT

Patches

  • enable passing of redirect uri (akaliugonna@microsoft.com)
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump rollup-msal to v0.0.0 (beachball)

@​azure/msal-node v3.7.2

3.7.2

Tue, 19 Aug 2025 21:26:21 GMT

Patches

  • Bump @​azure/msal-common to v15.12.0 (beachball)
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump rollup-msal to v0.0.0 (beachball)

@​azure/msal-node v3.7.1

3.7.1

Tue, 12 Aug 2025 21:24:31 GMT

... (truncated)

Commits

Updates @fastify/auth from 5.0.2 to 5.0.3

Release notes

Sourced from @​fastify/auth's releases.

v5.0.3

What's Changed

Full Changelog: fastify/fastify-auth@v5.0.2...v5.0.3

Commits
  • 3d1531a Bumped v5.0.3
  • 10d6831 build(deps-dev): remove @​fastify/pre-commit (#266)
  • 5ad856a chore(.npmrc): ignore scripts (#265)
  • ed10d9d build(deps-dev): bump @​fastify/jwt from 9.1.0 to 10.0.0 (#264)
  • 7df61e4 build(deps-dev): bump tsd from 0.32.0 to 0.33.0 (#263)
  • 47183fe build(deps-dev): bump @​types/node from 22.15.34 to 24.0.8 (#262)
  • 17f9c89 chore(license): update date ranges; standardise style (#261)
  • d5b014c build(deps-dev): bump tsd from 0.31.2 to 0.32.0 (#259)
  • 2cd7cba ci: restore job level permissions (#257)
  • 0518d23 ci: set permissions at workflow level (#256)
  • Additional commits viewable in compare view

Updates @fastify/aws-lambda from 6.0.0 to 6.1.1

Release notes

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

v6.1.1

  • fix - update type declaration to include albMultiValueHeaders in the options #273

v6.1.0

  • introduce albMultiValueHeaders option #272
Commits

Updates @fastify/swagger from 9.5.1 to 9.5.2

Release notes

Sourced from @​fastify/swagger's releases.

v9.5.2

What's Changed

New Contributors

Full Changelog: fastify/fastify-swagger@v9.5.1...v9.5.2

Commits
  • 16cd0a2 v9.5.2
  • 56dbc02 fix: remove defs when ref already defined in schema (#888)
  • 041a3f3 build(deps-dev): remove @​fastify/pre-commit (#897)
  • c74a6c7 chore(.npmrc): ignore scripts (#896)
  • 97dd2c8 Remove redundant check (#895)
  • fe63809 docs(readme): fix note style (#892)
  • 9993c62 docs: add note on @​fastify/swagger registration order for route discovery (#891)
  • 7694000 chore(deps-dev): bump @​types/node from 22.15.34 to 24.0.8 (#886)
  • d5281b1 chore(deps-dev): bump @​apidevtools/swagger-parser from 10.1.1 to 12.0.0 (#885)
  • 07253cf test: move typing tests to seperate folder (#883)
  • Additional commits viewable in compare view

Updates @middy/core from 6.4.1 to 6.4.5

Release notes

Sourced from @​middy/core's releases.

6.4.3

What's changed

Full Changelog: middyjs/middy@6.4.2...6.4.3

6.4.2

What's Changed

New Contributors

Full Changelog: middyjs/middy@6.4.1...6.4.2

Commits

Updates @middy/event-normalizer from 6.4.1 to 6.4.5

Release notes

Sourced from @​middy/event-normalizer's releases.

6.4.3

What's changed

Full Changelog: middyjs/middy@6.4.2...6.4.3

6.4.2

What's Changed

New Contributors

Full Changelog: middyjs/middy@6.4.1...6.4.2

Commits

Updates @middy/sqs-partial-batch-failure from 6.4.1 to 6.4.5

Release notes

Sourced from @​middy/sqs-partial-batch-failure's releases.

6.4.3

What's changed

Full Changelog: middyjs/middy@6.4.2...6.4.3

6.4.2

What's Changed

New Contributors

Full Changelog: middyjs/middy@6.4.1...6.4.2

Commits

Updates argon2 from 0.43.1 to 0.44.0

Release notes

Sourced from argon2's releases.

v0.44.0

What's Changed

Full Changelog: ranisalt/node-argon2@v0.43.1...v0.44.0

Commits
  • cd4eae5 v0.44.0
  • 0d88d0d Build system tweaks for reproducible builds
  • a6ca2fd Bump @​biomejs/biome from 1.9.4 to 2.1.4
  • c33250d Bump node-gyp from 11.2.0 to 11.3.0 (#467)
  • e4ff08c Bump node-addon-api from 8.4.0 to 8.5.0 (#466)
  • b3de3a2 Potential fix for code scanning alert no. 35: Workflow does not contain permi...
  • See full diff in compare view

Updates discord.js from 14.21.0 to 14.22.1

Release notes

Sourced from discord.js's releases.

14.22.1

14.22.1 - (2025-08-22)

Bug Fixes

  • GuildChannel: Account for everyone base permissions (#11053) (ecef7bd)

14.22.0

Bug Fixes

  • Remove trailing color references (#11007) (b532df6)
  • Emoji: Remove incorrect nullables, add ApplicationEmoji#available (#10990) (90d3b28)
  • GuildChannelManager: Properly resolve avatar for createWebhook (#10772) (63f5261)
  • Message: Forwarded messages are not crosspostable (#10821) (b36b751)
  • DirectoryChannel: Export class (#10985) (51ceb20)
  • Events: WebhooksUpdate enum value (#10970) (1404e32)

Documentation

Features

  • Support user guilds (#10995) (baa08b8)
  • MessageManager: New pinned messages routes (#10993) (f469f74)
    • fetchPinned() has been renamed to fetchPins(), which is a paginated endpoint to fetch pinned messages.
  • User: Add collectibles (#10939) (8ac0e1e)
  • Role gradient colours (#10986) (9d6fdf8)
  • Support animated WebP (#10987) (cafe58b)

Refactor

Typings

  • Invite: Approximate fields should be nullable (#10997) (d60e0bf)
  • ModalSubmitFields: Fix fields type (#10816) (500712d)
  • InteractionCallbackResponse: Add missing InGuild generic (#10963) (19e74b1)
Changelog

Sourced from discord.js's changelog.

14.22.1 - (2025-08-22)

Bug Fixes

  • GuildChannel: Account for everyone base permissions (#11053) (ecef7bd)

14.22.0 - (2025-08-20)

Bug Fixes

  • Remove trailing color references (#11007) (b532df6)
  • Emoji: Remove incorrect nullables, add ApplicationEmoji#available (#10990) (90d3b28)
  • GuildChannelManager: Properly resolve avatar for createWebhook (#10772) (63f5261)
  • Message: Forwarded messages are not crosspostable (#10821) (b36b751)
  • DirectoryChannel: Export class (#10985) (51ceb20)
  • Events: WebhooksUpdate enum value (#10970) (1404e32)

Documentation

Features

  • Support user guilds (#10995) (baa08b8)
  • MessageManager: New pinned messages routes (#10993) (f469f74)
    • fetchPinned() has been renamed to fetchPins(), which is a paginated endpoint to fetch pinned messages.
  • User: Add collectibles (#10939) (8ac0e1e)
  • Role gradient colours (#10986) (9d6fdf8)
  • Support animated WebP (#10987) (cafe58b)

Refactor

Typings

  • Invite: Approximate fields should be nullable (#10997) (d60e0bf)
  • ModalSubmitFields: Fix fields type (#10816) (500712d)
  • InteractionCallbackResponse: Add missing InGuild generic (#10963) (19e74b1)
Commits
  • a294b47 chore(discord.js): release discord.js@14.22.1
  • ecef7bd fix(GuildChannel): account for everyone base permissions (#11053)
  • 4057839 chore: add @​discordjs/collection in api-extractor.json
  • 86ecb37 chore(discord.js): correct changelog and version
  • 311e826 chore(discord.js): release discord.js@15.0.0
  • b532df6 fix: Remove trailing color references (#11007)
  • d60e0bf types(Invite): Approximate fields should be nullable (#10997)
  • baa08b8 feat: support user guilds (#10995)
  • f469f74 feat(MessageManager): New pinned messages routes (#10993)
  • 90d3b28 fix(Emoji): remove incorrect nullables, add ApplicationEmoji#available (#10...
  • Additional commits viewable in compare view

Updates fastify from 5.4.0 to 5.6.1

Release notes

Sourced from fastify's releases.

v5.6.1

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.6.0...v5.6.1

v5.6.0

What's Changed

New Contributors

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [@acm-uiuc/js-shared](https://github.com/acm-uiuc/js-shared) | `2.2.0` | `2.3.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.8` | `0.25.10` |
| [@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/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` |
| [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js) | `14.21.0` | `14.22.1` |
| [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.4.0` |
| [ioredis](https://github.com/luin/ioredis) | `5.7.0` | `5.8.0` |
| [pino](https://github.com/pinojs/pino) | `9.7.0` | `9.12.0` |
| [stripe](https://github.com/stripe/stripe-node) | `18.4.0` | `18.5.0` |
| [uuid](https://github.com/uuidjs/uuid) | `11.1.0` | `13.0.0` |
| [zod](https://github.com/colinhacks/zod) | `4.0.14` | `4.1.11` |
| [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.24.0` |
| [@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.2` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.2.2` | `8.3.2` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.2.2` | `8.3.2` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.2.2` | `8.3.2` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.2.2` | `8.3.2` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.34.1` | `3.35.0` |
| [axios](https://github.com/axios/axios) | `1.11.0` | `1.12.2` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.13` | `1.11.18` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.2.1` | `17.2.2` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `4.10.38` | `5.4.149` |
| [react-pdf](https://github.com/wojtekmaj/react-pdf/tree/HEAD/packages/react-pdf) | `10.0.1` | `10.1.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.7.1` | `7.9.3` |

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


Updates `@acm-uiuc/js-shared` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/acm-uiuc/js-shared/releases)
- [Commits](acm-uiuc/js-shared@v2.2.0...v2.3.0)

Updates `esbuild` from 0.25.8 to 0.25.10
- [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.10)

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/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 `discord.js` from 14.21.0 to 14.22.1
- [Release notes](https://github.com/discordjs/discord.js/releases)
- [Changelog](https://github.com/discordjs/discord.js/blob/14.22.1/packages/discord.js/CHANGELOG.md)
- [Commits](https://github.com/discordjs/discord.js/commits/14.22.1/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.4.0
- [Release notes](https://github.com/samchungy/fastify-zod-openapi/releases)
- [Commits](samchungy/fastify-zod-openapi@v5.2.0...v5.4.0)

Updates `ioredis` from 5.7.0 to 5.8.0
- [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.0)

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

Updates `stripe` from 18.4.0 to 18.5.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...v18.5.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.11
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.0.14...v4.1.11)

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

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.2
- [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.2/packages/@mantine/core)

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

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

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

Updates `@mantine/notifications` from 8.2.2 to 8.3.2
- [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.2/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.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v17.2.1...v17.2.2)

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

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

Updates `react-router-dom` from 7.7.1 to 7.9.3
- [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.9.3/packages/react-router-dom)

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/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 `discord.js` from 14.21.0 to 14.22.1
- [Release notes](https://github.com/discordjs/discord.js/releases)
- [Changelog](https://github.com/discordjs/discord.js/blob/14.22.1/packages/discord.js/CHANGELOG.md)
- [Commits](https://github.com/discordjs/discord.js/commits/14.22.1/packages/discord.js)

Updates `esbuild` from 0.25.8 to 0.25.10
- [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.10)

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.4.0
- [Release notes](https://github.com/samchungy/fastify-zod-openapi/releases)
- [Commits](samchungy/fastify-zod-openapi@v5.2.0...v5.4.0)

Updates `ioredis` from 5.7.0 to 5.8.0
- [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.0)

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

Updates `stripe` from 18.4.0 to 18.5.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...v18.5.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.11
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.0.14...v4.1.11)

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 `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: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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/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: discord.js
  dependency-version: 14.22.1
  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.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ioredis
  dependency-version: 5.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 9.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 18.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.11
  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.24.0
  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.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.3.2
  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.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pdfjs-dist
  dependency-version: 5.4.149
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-pdf
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.9.3
  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/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: discord.js
  dependency-version: 14.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.10
  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.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ioredis
  dependency-version: 5.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 9.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 18.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.11
  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: 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] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 29, 2025
@devksingh4 devksingh4 closed this Sep 30, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-2625ac0010 branch September 30, 2025 19:49
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.

2 participants