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

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

Closed
Number: #303
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: September 22, 2025 at 04:37 AM UTC
(about 1 month ago)
Updated: September 29, 2025 at 04:21 AM UTC
(about 1 month ago)
Closed: September 29, 2025 at 04:21 AM UTC
(about 1 month ago)
Time to Close: 7 days
Labels:
dependencies javascript
Description:

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

Package From To
esbuild 0.25.8 0.25.10
@aws-sdk/client-cloudfront-keyvaluestore 3.859.0 3.893.0
@aws-sdk/client-dynamodb 3.879.0 3.893.0
@aws-sdk/client-lambda 3.879.0 3.893.0
@aws-sdk/client-secrets-manager 3.859.0 3.893.0
@aws-sdk/client-ses 3.879.0 3.893.0
@aws-sdk/client-sqs 3.879.0 3.893.0
@aws-sdk/client-sts 3.879.0 3.893.0
@aws-sdk/signature-v4-crt 3.879.0 3.893.0
@aws-sdk/util-dynamodb 3.879.0 3.893.0
@azure/msal-node 3.6.4 3.7.4
@fastify/aws-lambda 6.0.0 6.1.1
@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.0
fastify-zod-openapi 5.2.0 5.4.0
pino 9.7.0 9.11.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.23.0
@azure/msal-react 3.0.16 3.0.19
@mantine/core 8.2.2 8.3.1
@mantine/dates 8.2.2 8.3.1
@mantine/form 8.2.2 8.3.1
@mantine/hooks 8.2.2 8.3.1
@mantine/notifications 8.2.2 8.3.1
@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.1
@aws-sdk/client-firehose 3.879.0 3.893.0

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

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 @aws-sdk/client-cloudfront-keyvaluestore from 3.859.0 to 3.893.0

Release notes

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

v3.893.0

3.893.0(2025-09-19)

Chores
Documentation Changes
  • client-sqs: Update invalid character handling documentation for SQS SendMessage API (4ff9d676)
New Features
  • clients: update client endpoints as of 2025-09-19 (3726908c)
  • client-bedrock-agentcore-control: Add tagging and VPC support to AgentCore Runtime, Code Interpreter, and Browser resources. Add support for configuring request headers in Runtime. Fix AgentCore Runtime shape names. (9ab54a28)
  • client-config-service: Add UNKNOWN state to RemediationExecutionState and add IN_PROGRESS/EXITED/UNKNOWN states to RemediationExecutionStepState. (9b89d935)
  • client-connect: This release adds a persistent connection field to UserPhoneConfig that maintains agent's softphone media connection for faster call connections. (59e863ba)
  • client-license-manager-user-subscriptions: Added support for cross-account Active Directories. (22e49d10)
  • client-medialive: Add MinBitrate for QVBR mode under H264/H265/AV1 output codec. Add GopBReference, GopNumBFrames, SubGopLength fields under H265 output codec. (25f22be2)
Tests
  • rekognitionstreaming: remove outdated endpoint tests (#7362) (10b3d03f)

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

v3.892.0

3.892.0(2025-09-18)

Chores
  • scripts: validate no Uint8Array with type parameters are generated by compiler (#7355) (a40013fa)
New Features
  • client-budgets: Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status (e3e7974e)
  • client-ec2: Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames (442403cd)
  • client-chime-sdk-messaging: Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6. (eb921320)
  • client-bedrock: Release includes an increase to the maximum policy build document size, an update to DeleteAutomatedReasoningPolicyBuildWorkflow to add ResourceInUseException, and corrections to UpdateAutomatedReasoningPolicyTestCaseRequest. (b9c1896e)
Tests

... (truncated)

Changelog

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

3.893.0 (2025-09-19)

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

3.891.0 (2025-09-17)

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

3.890.0 (2025-09-16)

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

3.888.0 (2025-09-12)

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

3.887.0 (2025-09-11)

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

3.886.0 (2025-09-10)

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

3.883.0 (2025-09-05)

... (truncated)

Commits

Updates @aws-sdk/client-dynamodb from 3.879.0 to 3.893.0

Release notes

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

v3.893.0

3.893.0(2025-09-19)

Chores
Documentation Changes
  • client-sqs: Update invalid character handling documentation for SQS SendMessage API (4ff9d676)
New Features
  • clients: update client endpoints as of 2025-09-19 (3726908c)
  • client-bedrock-agentcore-control: Add tagging and VPC support to AgentCore Runtime, Code Interpreter, and Browser resources. Add support for configuring request headers in Runtime. Fix AgentCore Runtime shape names. (9ab54a28)
  • client-config-service: Add UNKNOWN state to RemediationExecutionState and add IN_PROGRESS/EXITED/UNKNOWN states to RemediationExecutionStepState. (9b89d935)
  • client-connect: This release adds a persistent connection field to UserPhoneConfig that maintains agent's softphone media connection for faster call connections. (59e863ba)
  • client-license-manager-user-subscriptions: Added support for cross-account Active Directories. (22e49d10)
  • client-medialive: Add MinBitrate for QVBR mode under H264/H265/AV1 output codec. Add GopBReference, GopNumBFrames, SubGopLength fields under H265 output codec. (25f22be2)
Tests
  • rekognitionstreaming: remove outdated endpoint tests (#7362) (10b3d03f)

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

v3.892.0

3.892.0(2025-09-18)

Chores
  • scripts: validate no Uint8Array with type parameters are generated by compiler (#7355) (a40013fa)
New Features
  • client-budgets: Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status (e3e7974e)
  • client-ec2: Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames (442403cd)
  • client-chime-sdk-messaging: Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6. (eb921320)
  • client-bedrock: Release includes an increase to the maximum policy build document size, an update to DeleteAutomatedReasoningPolicyBuildWorkflow to add ResourceInUseException, and corrections to UpdateAutomatedReasoningPolicyTestCaseRequest. (b9c1896e)
Tests

... (truncated)

Changelog

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

3.893.0 (2025-09-19)

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

3.891.0 (2025-09-17)

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

3.890.0 (2025-09-16)

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

3.888.0 (2025-09-12)

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

3.887.0 (2025-09-11)

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

3.886.0 (2025-09-10)

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

3.883.0 (2025-09-05)

... (truncated)

Commits

Updates @aws-sdk/client-lambda from 3.879.0 to 3.893.0

Release notes

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

v3.893.0

3.893.0(2025-09-19)

Chores
Documentation Changes
  • client-sqs: Update invalid character handling documentation for SQS SendMessage API (4ff9d676)
New Features
  • clients: update client endpoints as of 2025-09-19 (3726908c)
  • client-bedrock-agentcore-control: Add tagging and VPC support to AgentCore Runtime, Code Interpreter, and Browser resources. Add support for configuring request headers in Runtime. Fix AgentCore Runtime shape names. (9ab54a28)
  • client-config-service: Add UNKNOWN state to RemediationExecutionState and add IN_PROGRESS/EXITED/UNKNOWN states to RemediationExecutionStepState. (9b89d935)
  • client-connect: This release adds a persistent connection field to UserPhoneConfig that maintains agent's softphone media connection for faster call connections. (59e863ba)
  • client-license-manager-user-subscriptions: Added support for cross-account Active Directories. (22e49d10)
  • client-medialive: Add MinBitrate for QVBR mode under H264/H265/AV1 output codec. Add GopBReference, GopNumBFrames, SubGopLength fields under H265 output codec. (25f22be2)
Tests
  • rekognitionstreaming: remove outdated endpoint tests (#7362) (10b3d03f)

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

v3.892.0

3.892.0(2025-09-18)

Chores
  • scripts: validate no Uint8Array with type parameters are generated by compiler (#7355) (a40013fa)
New Features
  • client-budgets: Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status (e3e7974e)
  • client-ec2: Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames (442403cd)
  • client-chime-sdk-messaging: Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6. (eb921320)
  • client-bedrock: Release includes an increase to the maximum policy build document size, an update to DeleteAutomatedReasoningPolicyBuildWorkflow to add ResourceInUseException, and corrections to UpdateAutomatedReasoningPolicyTestCaseRequest. (b9c1896e)
Tests

... (truncated)

Changelog

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

3.893.0 (2025-09-19)

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

3.891.0 (2025-09-17)

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

3.890.0 (2025-09-16)

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

3.888.0 (2025-09-12)

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

3.887.0 (2025-09-11)

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

3.886.0 (2025-09-10)

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

3.883.0 (2025-09-05)

... (truncated)

Commits

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

Release notes

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

v3.893.0

3.893.0(2025-09-19)

Chores
Documentation Changes
  • client-sqs: Update invalid character handling documentation for SQS SendMessage API (4ff9d676)
New Features
  • clients: update client endpoints as of 2025-09-19 (3726908c)
  • client-bedrock-agentcore-control: Add tagging and VPC support to AgentCore Runtime, Code Interpreter, and Browser resources. Add support for configuring request headers in Runtime. Fix AgentCore Runtime shape names. (9ab54a28)
  • client-config-service: Add UNKNOWN state to RemediationExecutionState and add IN_PROGRESS/EXITED/UNKNOWN states to RemediationExecutionStepState. (9b89d935)
  • client-connect: This release adds a persistent connection field to UserPhoneConfig that maintains agent's softphone media connection for faster call connections. (59e863ba)
  • client-license-manager-user-subscriptions: Added support for cross-account Active Directories. (22e49d10)
  • client-medialive: Add MinBitrate for QVBR mode under H264/H265/AV1 output codec. Add GopBReference, GopNumBFrames, SubGopLength fields under H265 output codec. (25f22be2)
Tests
  • rekognitionstreaming: remove outdated endpoint tests (#7362) (10b3d03f)

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

v3.892.0

3.892.0(2025-09-18)

Chores
  • scripts: validate no Uint8Array with type parameters are generated by compiler (#7355) (a40013fa)
New Features
  • client-budgets: Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status (e3e7974e)
  • client-ec2: Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames (442403cd)
  • client-chime-sdk-messaging: Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6. (eb921320)
  • client-bedrock: Release includes an increase to the maximum policy build document size, an update to DeleteAutomatedReasoningPolicyBuildWorkflow to add ResourceInUseException, and corrections to UpdateAutomatedReasoningPolicyTestCaseRequest. (b9c1896e)
Tests

... (truncated)

Changelog

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

3.893.0 (2025-09-19)

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

3.891.0 (2025-09-17)

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

3.890.0 (2025-09-16)

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

3.888.0 (2025-09-12)

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

3.887.0 (2025-09-11)

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

3.886.0 (2025-09-10)

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

3.883.0 (2025-09-05)

... (truncated)

Commits

Updates @aws-sdk/client-ses from 3.879.0 to 3.893.0

Release notes

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

v3.893.0

3.893.0(2025-09-19)

Chores
Documentation Changes
  • client-sqs: Update invalid character handling documentation for SQS SendMessage API (4ff9d676)
New Features
  • clients: update client endpoints as of 2025-09-19 (3726908c)
  • client-bedrock-agentcore-control: Add tagging and VPC support to AgentCore Runtime, Code Interpreter, and Browser resources. Add support for configuring request headers in Runtime. Fix AgentCore Runtime shape names. (9ab54a28)
  • client-config-service: Add UNKNOWN state to RemediationExecutionState and add IN_PROGRESS/EXITED/UNKNOWN states to RemediationExecutionStepState. (9b89d935)
  • client-connect: This release adds a persistent connection field to UserPhoneConfig that maintains agent's softphone media connection for faster call connections. (59e863ba)
  • client-license-manager-user-subscriptions: Added support for cross-account Active Directories. (22e49d10)
  • client-medialive: Add MinBitrate for QVBR mode under H264/H265/AV1 output codec. Add GopBReference, GopNumBFrames, SubGopLength fields under H265 output codec. (25f22be2)
Tests
  • rekognitionstreaming: remove outdated endpoint tests (#7362) (10b3d03f)

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

v3.892.0

3.892.0(2025-09-18)

Chores
  • scripts: validate no Uint8Array with type parameters are generated by compiler (#7355) (a40013fa)
New Features
  • client-budgets: Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status (e3e7974e)
  • client-ec2: Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames (442403cd)
  • client-chime-sdk-messaging: Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6. (eb921320)
  • client-bedrock: Release includes an increase to the maximum policy build document size, an update to DeleteAutomatedReasoningPolicyBuildWorkflow to add ResourceInUseException, and corrections to UpdateAutomatedReasoningPolicyTestCaseRequest. (b9c1896e)
Tests

... (truncated)

Changelog

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

3.893.0 (2025-09-19)

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

3.891.0 (2025-09-17)

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

3.890.0 (2025-09-16)

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

3.888.0 (2025-09-12)

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

3.887.0 (2025-09-11)

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

3.886.0 (2025-09-10)

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

3.883.0 (2025-09-05)

... (truncated)

Commits

Updates @aws-sdk/client-sqs from 3.879.0 to 3.893.0

Release notes

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

v3.893.0

3.893.0(2025-09-19)

Chores
Documentation Changes
  • client-sqs: Update invalid character handling documentation for SQS SendMessage API (4ff9d676)
New Features
  • clients: update client endpoints as of 2025-09-19 (3726908c)
  • client-bedrock-agentcore-control: Add tagging and VPC support to AgentCore Runtime, Code Interpreter, and Browser resources. Add support for configuring request headers in Runtime. Fix AgentCore Runtime shape names. (9ab54a28)
  • client-config-service: Add UNKNOWN state to RemediationExecutionState and add IN_PROGRESS/EXITED/UNKNOWN states to RemediationExecutionStepState. (9b89d935)
  • client-connect: This release adds a persistent connection field to UserPhoneConfig that maintains agent's softphone media connection for faster call connections. (59e863ba)
  • client-license-manager-user-subscriptions: Added support for cross-account Active Directories. (22e49d10)
  • client-medialive: Add MinBitrate for QVBR mode under H264/H265/AV1 output codec. Add GopBReference, GopNumBFrames, SubGopLength fields under H265 output codec. (25f22be2)
Tests
  • rekognitionstreaming: remove outdated endpoint tests (#7362) (10b3d03f)

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

v3.892.0

3.892.0(2025-09-18)

Chores
  • scripts: validate no Uint8Array with type parameters are generated by compiler (#7355) (a40013fa)
New Features
  • client-budgets: Added BillingViewHealthStatus Exception which is thrown when a Budget is created or updated with a Billing View that is not in the HEALTHY status (e3e7974e)
  • client-ec2: Allowed AMIs adds support for four new parameters - marketplaceProductCodes, deprecationTimeCondition, creationDateCondition and imageNames (442403cd)
  • client-chime-sdk-messaging: Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6. (eb921320)
  • client-bedrock: Release includes an increase to the maximum policy build document size, an update to DeleteAutomatedReasoningPolicyBuildWorkflow to add ResourceInUseException, and corrections to UpdateAutomatedReasoningPolicyTestCaseRequest. (b9c1896e)
Tests
Package Dependencies
Ecosystem:
npm
Version Change:
7.7.1 → 7.9.1
Update Type:
Minor
Package:
zod
Ecosystem:
npm
Version Change:
4.0.14 → 4.1.11
Update Type:
Minor
Package:
axios
Ecosystem:
npm
Version Change:
1.11.0 → 1.12.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.0
Update Type:
Minor
Package:
stripe
Ecosystem:
npm
Version Change:
18.4.0 → 18.5.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.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.10
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 → 9.11.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.6.4 → 3.7.4
Update Type:
Minor
Package:
pdfjs-dist
Ecosystem:
npm
Version Change:
4.10.38 → 5.4.149
Update Type:
Major
Package:
dotenv
Ecosystem:
npm
Version Change:
17.2.1 → 17.2.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.18.0 → 4.23.0
Update Type:
Minor
Package:
@middy/core
Ecosystem:
npm
Version Change:
6.4.1 → 6.4.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.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.893.0
Update Type:
Minor
Package:
fastify
Ecosystem:
npm
Version Change:
5.4.0 → 5.6.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.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.1.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.34.1 → 3.35.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.0.16 → 3.0.19
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.2.2 → 8.3.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.879.0 → 3.893.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.859.0 → 3.893.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.4.0
Update Type:
Minor
Technical Details
ID: 8661098
UUID: 2847878964
Node ID: PR_kwDOMfoAbc6pvy80
Host: GitHub
Repository: acm-uiuc/core
Merge State: Dirty