An open index of dependabot pull requests across open source projects.

Bump the production-dependencies group across 2 directories with 51 updates

Open
Number: #340
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Unknown
Comments: 1
Created: October 23, 2025 at 05:03 AM UTC
(about 2 months ago)
Updated: October 23, 2025 at 05:03 AM UTC
(about 2 months ago)
Labels:
dependencies javascript
Description:

Bumps the production-dependencies group with 50 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-cloudfront-keyvaluestore 3.896.0 3.914.0
@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: https://github.com/acm-uiuc/js-shared/compare/v3.2.0...v3.2.1

v3.2.0

Add org colors

Full Changelog: https://github.com/acm-uiuc/js-shared/compare/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-cloudfront-keyvaluestore from 3.896.0 to 3.914.0

Release notes

Sourced from @​aws-sdk/client-cloudfront-keyvaluestore'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-cloudfront-keyvaluestore's changelog.

3.914.0 (2025-10-21)

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

3.913.0 (2025-10-17)

Features

  • client-cloudfront-keyvaluestore: Update endpoint ruleset parameters casing (5fcd5f7)

3.911.0 (2025-10-15)

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

3.910.0 (2025-10-14)

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

3.908.0 (2025-10-10)

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

3.907.0 (2025-10-09)

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

... (truncated)

Commits
  • 25418b3 Publish v3.914.0
  • 387386b chore(codegen): smithy version update (#7448)
  • c02462c Publish v3.913.0
  • 5fcd5f7 feat(client-cloudfront-keyvaluestore): Update endpoint ruleset parameters casing
  • 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-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
  • codegen: smithy version update (#7448) (387386bd)
  • deps-dev: bump happy-dom from 20.0.0 to 20.0.2 (#7438) (8e2b9385)
  • update dev dependencies...

    Description has been truncated

Package Dependencies
Ecosystem:
npm
Version Change:
7.7.1 → 7.9.4
Update Type:
Minor
Package:
zod
Ecosystem:
npm
Version Change:
4.0.14 → 4.1.12
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Package:
stripe
Ecosystem:
npm
Version Change:
18.4.0 → 19.1.0
Update Type:
Major
Package:
react-dom
Ecosystem:
npm
Version Change:
19.1.1 → 19.2.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Package:
dayjs
Ecosystem:
npm
Version Change:
1.11.13 → 1.11.18
Update Type:
Patch
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.8 → 0.25.11
Update Type:
Patch
Package:
uuid
Ecosystem:
npm
Version Change:
11.1.0 → 13.0.0
Update Type:
Major
Package:
pino
Ecosystem:
npm
Version Change:
9.7.0 → 10.1.0
Update Type:
Major
Ecosystem:
npm
Version Change:
3.6.4 → 3.8.0
Update Type:
Minor
Package:
react
Ecosystem:
npm
Version Change:
19.1.1 → 19.2.0
Update Type:
Minor
Package:
pdfjs-dist
Ecosystem:
npm
Version Change:
4.10.38 → 5.4.296
Update Type:
Major
Package:
dotenv
Ecosystem:
npm
Version Change:
17.2.1 → 17.2.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.18.0 → 4.25.1
Update Type:
Minor
Package:
@middy/core
Ecosystem:
npm
Version Change:
6.4.1 → 6.4.5
Update Type:
Patch
Package:
octokit
Ecosystem:
npm
Version Change:
5.0.3 → 5.0.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Package:
discord.js
Ecosystem:
npm
Version Change:
14.21.0 → 14.23.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Package:
fastify
Ecosystem:
npm
Version Change:
5.4.0 → 5.6.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.5
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Package:
argon2
Ecosystem:
npm
Version Change:
0.43.1 → 0.44.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.0.1 → 4.0.2
Update Type:
Patch
Package:
react-pdf
Ecosystem:
npm
Version Change:
10.0.1 → 10.2.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.0 → 8.3.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
9.5.1 → 9.5.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.34.1 → 3.35.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Package:
ioredis
Ecosystem:
npm
Version Change:
5.7.0 → 5.8.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.5
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.0.16 → 3.0.20
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.5
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.5
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.5
Update Type:
Minor
Ecosystem:
npm
Version Change:
5.0.1 → 5.1.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Package:
aws-crt
Ecosystem:
npm
Version Change:
1.27.3 → 1.27.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.4.0 → 3.5.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.896.0 → 3.914.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
6.0.0 → 6.1.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
6.4.1 → 6.4.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
6.4.1 → 6.4.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
5.2.0 → 5.5.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
5.0.2 → 5.0.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.1.0 → 3.2.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.6.4 → 0.6.5
Update Type:
Patch
Technical Details
ID: 10471885
UUID: 3543166260
Node ID: PR_kwDOMfoAbc6vL-N8
Host: GitHub
Repository: acm-uiuc/core