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

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

Closed
Number: #263
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: August 25, 2025 at 07:37 AM UTC
(13 days ago)
Updated: August 31, 2025 at 05:26 AM UTC
(7 days ago)
Closed: August 31, 2025 at 05:26 AM UTC
(7 days ago)
Time to Close: 6 days
Labels:
dependencies javascript
Description:

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


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

Package From To
esbuild 0.25.8 0.25.9
@aws-sdk/client-cloudfront-keyvaluestore 3.859.0 3.873.0
@aws-sdk/client-dynamodb 3.859.0 3.873.0
@aws-sdk/client-lambda 3.859.0 3.873.0
@aws-sdk/client-secrets-manager 3.859.0 3.873.0
@aws-sdk/client-ses 3.859.0 3.873.0
@aws-sdk/client-sqs 3.859.0 3.873.0
@aws-sdk/client-sts 3.859.0 3.873.0
@aws-sdk/signature-v4-crt 3.858.0 3.873.0
@aws-sdk/util-dynamodb 3.859.0 3.873.0
@azure/msal-node 3.6.4 3.7.2
@middy/core 6.4.1 6.4.4
@middy/event-normalizer 6.4.1 6.4.4
@middy/sqs-partial-batch-failure 6.4.1 6.4.4
argon2 0.43.1 0.44.0
discord.js 14.21.0 14.22.1
fastify 5.4.0 5.5.0
fastify-zod-openapi 5.2.0 5.3.0
pino 9.7.0 9.9.0
zod 4.0.14 4.1.1
@azure/msal-browser 4.18.0 4.21.0
@azure/msal-react 3.0.16 3.0.19
@mantine/core 8.2.2 8.2.7
@mantine/dates 8.2.2 8.2.7
@mantine/form 8.2.2 8.2.7
@mantine/hooks 8.2.2 8.2.7
@mantine/notifications 8.2.2 8.2.7
pdfjs-dist 4.10.38 5.4.54
react-pdf 10.0.1 10.1.0
react-router-dom 7.7.1 7.8.2

Bumps the production-dependencies group with 1 update in the /src/api directory: argon2.

Updates esbuild from 0.25.8 to 0.25.9

Release notes

Sourced from esbuild's releases.

v0.25.9

  • Better support building projects that use Yarn on Windows (#3131, #3663)

    With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the C: drive. The problem was as follows:

    1. Yarn in Plug'n'Play mode on Windows stores its global module cache on the C: drive
    2. Some developers put their projects on the D: drive
    3. Yarn generates relative paths that use ../.. to get from the project directory to the cache directory
    4. Windows-style paths don't support directory traversal between drives via .. (so D:\.. is just D:)
    5. I didn't have access to a Windows machine for testing this edge case

    Yarn works around this edge case by pretending Windows-style paths beginning with C:\ are actually Unix-style paths beginning with /C:/, so the ../.. path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.

  • Preserve parentheses around function expressions (#4252)

    The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.

    Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:

    // Original code
    const fn0 = () => 0
    const fn1 = (() => 1)
    console.log(fn0, function() { return fn1() }())
    

    // Old output
    const fn0 = () => 0;
    const fn1 = () => 1;
    console.log(fn0, function() {
    return fn1();
    }());

    // New output
    const fn0 = () => 0;
    const fn1 = (() => 1);
    console.log(fn0, (function() {
    return fn1();
    })());

    Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.

  • Update Go from 1.23.10 to 1.23.12 (#4257, #4258)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

Changelog

Sourced from esbuild's changelog.

0.25.9

  • Better support building projects that use Yarn on Windows (#3131, #3663)

    With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the C: drive. The problem was as follows:

    1. Yarn in Plug'n'Play mode on Windows stores its global module cache on the C: drive
    2. Some developers put their projects on the D: drive
    3. Yarn generates relative paths that use ../.. to get from the project directory to the cache directory
    4. Windows-style paths don't support directory traversal between drives via .. (so D:\.. is just D:)
    5. I didn't have access to a Windows machine for testing this edge case

    Yarn works around this edge case by pretending Windows-style paths beginning with C:\ are actually Unix-style paths beginning with /C:/, so the ../.. path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.

  • Preserve parentheses around function expressions (#4252)

    The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.

    Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:

    // Original code
    const fn0 = () => 0
    const fn1 = (() => 1)
    console.log(fn0, function() { return fn1() }())
    

    // Old output
    const fn0 = () => 0;
    const fn1 = () => 1;
    console.log(fn0, function() {
    return fn1();
    }());

    // New output
    const fn0 = () => 0;
    const fn1 = (() => 1);
    console.log(fn0, (function() {
    return fn1();
    })());

    Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.

  • Update Go from 1.23.10 to 1.23.12 (#4257, #4258)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

Commits

Updates @aws-sdk/client-cloudfront-keyvaluestore from 3.859.0 to 3.873.0

Release notes

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

v3.873.0

3.873.0(2025-08-21)

Chores
Documentation Changes
  • client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
  • client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
  • client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
  • client-guardduty: Remove Pattern trait from email field (1d689d7f)
  • client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
  • aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
  • use accurate errors in testing (#7273) (97e916ee)
  • aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)

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

v3.872.0

3.872.0(2025-08-20)

Chores
  • clients: use 'include' in tsconfig.json (#7266) (b2eec675)
  • protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
  • clients: update client endpoints as of 2025-08-20 (87f16686)
  • client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
  • client-efs: Remove incorrect endpoint tests (fd49ae01)
  • client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)

... (truncated)

Changelog

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

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

3.864.0 (2025-08-08)

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

3.863.0 (2025-08-07)

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

3.862.0 (2025-08-06)

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

Commits

Updates @aws-sdk/client-dynamodb from 3.859.0 to 3.873.0

Release notes

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

v3.873.0

3.873.0(2025-08-21)

Chores
Documentation Changes
  • client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
  • client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
  • client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
  • client-guardduty: Remove Pattern trait from email field (1d689d7f)
  • client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
  • aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
  • use accurate errors in testing (#7273) (97e916ee)
  • aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)

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

v3.872.0

3.872.0(2025-08-20)

Chores
  • clients: use 'include' in tsconfig.json (#7266) (b2eec675)
  • protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
  • clients: update client endpoints as of 2025-08-20 (87f16686)
  • client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
  • client-efs: Remove incorrect endpoint tests (fd49ae01)
  • client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)

... (truncated)

Changelog

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

Features

  • client-dynamodb: Remove incorrect endpoint tests (16a3ca8)

3.868.0 (2025-08-14)

Features

  • client-dynamodb: This release 1/ Adds support for throttled keys mode for CloudWatch Contributor Insights, 2/ Adds throttling reasons to exceptions across dataplane APIs. 3/ Explicitly models ThrottlingException as a class in statically typed languages. Refer to the launch day blog post for more details. (a2e4992)

3.864.0 (2025-08-08)

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

3.863.0 (2025-08-07)

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

3.862.0 (2025-08-06)

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

Commits
  • 308b00e Publish v3.873.0
  • 0b2e67c Publish v3.872.0
  • 16a3ca8 feat(client-dynamodb): Remove incorrect endpoint tests
  • b2eec67 chore(clients): use 'include' in tsconfig.json (#7266)
  • 370b0e4 Publish v3.868.0
  • a2e4992 feat(client-dynamodb): This release 1/ Adds support for throttled keys mode f...
  • ab7208b Publish v3.864.0
  • 2cea144 Publish v3.863.0
  • faadcc4 Publish v3.862.0
  • 25b3eb1 chore(codegen): sync for CborCodec idempotencyToken (#7246)
  • See full diff in compare view

Updates @aws-sdk/client-lambda from 3.859.0 to 3.873.0

Release notes

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

v3.873.0

3.873.0(2025-08-21)

Chores
Documentation Changes
  • client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
  • client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
  • client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
  • client-guardduty: Remove Pattern trait from email field (1d689d7f)
  • client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
  • aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
  • use accurate errors in testing (#7273) (97e916ee)
  • aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)

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

v3.872.0

3.872.0(2025-08-20)

Chores
  • clients: use 'include' in tsconfig.json (#7266) (b2eec675)
  • protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
  • clients: update client endpoints as of 2025-08-20 (87f16686)
  • client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
  • client-efs: Remove incorrect endpoint tests (fd49ae01)
  • client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)

... (truncated)

Changelog

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

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

3.865.0 (2025-08-11)

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

3.864.0 (2025-08-08)

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

3.863.0 (2025-08-07)

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

3.862.0 (2025-08-06)

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

Commits

Updates @aws-sdk/client-secrets-manager from 3.859.0 to 3.873.0

Release notes

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

v3.873.0

3.873.0(2025-08-21)

Chores
Documentation Changes
  • client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
  • client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
  • client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
  • client-guardduty: Remove Pattern trait from email field (1d689d7f)
  • client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
  • aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
  • use accurate errors in testing (#7273) (97e916ee)
  • aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)

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

v3.872.0

3.872.0(2025-08-20)

Chores
  • clients: use 'include' in tsconfig.json (#7266) (b2eec675)
  • protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
  • clients: update client endpoints as of 2025-08-20 (87f16686)
  • client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
  • client-efs: Remove incorrect endpoint tests (fd49ae01)
  • client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)

... (truncated)

Changelog

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

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

3.864.0 (2025-08-08)

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

3.863.0 (2025-08-07)

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

3.862.0 (2025-08-06)

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

Commits

Updates @aws-sdk/client-ses from 3.859.0 to 3.873.0

Release notes

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

v3.873.0

3.873.0(2025-08-21)

Chores
Documentation Changes
  • client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
  • client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
  • client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
  • client-guardduty: Remove Pattern trait from email field (1d689d7f)
  • client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
  • aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
  • use accurate errors in testing (#7273) (97e916ee)
  • aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)

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

v3.872.0

3.872.0(2025-08-20)

Chores
  • clients: use 'include' in tsconfig.json (#7266) (b2eec675)
  • protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
  • clients: update client endpoints as of 2025-08-20 (87f16686)
  • client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
  • client-efs: Remove incorrect endpoint tests (fd49ae01)
  • client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)

... (truncated)

Changelog

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

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

3.864.0 (2025-08-08)

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

3.863.0 (2025-08-07)

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

3.862.0 (2025-08-06)

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

Commits

Updates @aws-sdk/client-sqs from 3.859.0 to 3.873.0

Release notes

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

v3.873.0

3.873.0(2025-08-21)

Chores
Documentation Changes
  • client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
  • client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
  • client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
  • client-guardduty: Remove Pattern trait from email field (1d689d7f)
  • client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
  • aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
  • use accurate errors in testing (#7273) (97e916ee)
  • aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)

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

v3.872.0

3.872.0(2025-08-20)

Chores
  • clients: use 'include' in tsconfig.json (#7266) (b2eec675)
  • protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
  • clients: update client endpoints as of 2025-08-20 (87f16686)
  • client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
  • client-efs: Remove incorrect endpoint tests (fd49ae01)
  • client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)

... (truncated)

Changelog

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

3.873.0 (2025-08-21)

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

3.872.0 (2025-08-20)

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

3.864.0 (2025-08-08)

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

3.863.0 (2025-08-07)

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

3.862.0 (2025-08-06)

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

Commits
  • 308b00e Publish v3.873.0
  • 0b2e67c Publish v3.872.0
  • b2eec67 chore(clients): use 'include' in tsconfig.json (#7266)
  • <...

    Description has been truncated

Pull Request Statistics
Commits:
1
Files Changed:
4
Additions:
+1177
Deletions:
-1154
Package Dependencies
Ecosystem:
npm
Version Change:
7.7.1 → 7.8.2
Update Type:
Minor
Package:
zod
Ecosystem:
npm
Version Change:
4.0.14 → 4.1.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.8 → 0.25.9
Update Type:
Patch
Package:
pino
Ecosystem:
npm
Version Change:
9.7.0 → 9.9.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.6.4 → 3.7.2
Update Type:
Minor
Package:
pdfjs-dist
Ecosystem:
npm
Version Change:
4.10.38 → 5.4.54
Update Type:
Major
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.18.0 → 4.21.0
Update Type:
Minor
Package:
@middy/core
Ecosystem:
npm
Version Change:
6.4.1 → 6.4.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Package:
discord.js
Ecosystem:
npm
Version Change:
14.21.0 → 14.22.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Package:
fastify
Ecosystem:
npm
Version Change:
5.4.0 → 5.5.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.2.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Package:
argon2
Ecosystem:
npm
Version Change:
0.43.1 → 0.44.0
Update Type:
Minor
Package:
react-pdf
Ecosystem:
npm
Version Change:
10.0.1 → 10.1.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.2.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.0.16 → 3.0.19
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.2.2 → 8.2.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.2.2 → 8.2.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.2.2 → 8.2.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.858.0 → 3.873.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.859.0 → 3.873.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
6.4.1 → 6.4.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
6.4.1 → 6.4.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
5.2.0 → 5.3.0
Update Type:
Minor
Technical Details
ID: 6023081
UUID: 2770896831
Node ID: PR_kwDOMfoAbc6lKIe_
Host: GitHub
Repository: acm-uiuc/core
Merge State: Dirty