Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 2, 2025

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

Package From To
esbuild 0.25.11 0.25.12
@aws-sdk/client-dynamodb 3.914.0 3.922.0
@aws-sdk/client-lambda 3.917.0 3.922.0
@aws-sdk/client-secrets-manager 3.917.0 3.922.0
@aws-sdk/client-ses 3.917.0 3.922.0
@aws-sdk/client-sqs 3.917.0 3.922.0
@aws-sdk/client-sts 3.917.0 3.922.0
@aws-sdk/signature-v4-crt 3.916.0 3.922.0
@aws-sdk/util-dynamodb 3.914.0 3.922.0
@azure/msal-node 3.8.0 3.8.1
discord.js 14.24.0 14.24.2
ical-generator 9.0.0 10.0.0
octokit 5.0.4 5.0.5
passkit-generator 3.5.2 3.5.5
redlock-universal 0.6.5 0.7.0
stripe 19.1.0 19.2.0
@azure/msal-browser 4.25.1 4.26.0
@azure/msal-react 3.0.20 3.0.21
@mantine/core 8.3.5 8.3.6
@mantine/dates 8.3.5 8.3.6
@mantine/form 8.3.5 8.3.6
@mantine/hooks 8.3.5 8.3.6
@mantine/notifications 8.3.5 8.3.6
axios 1.12.2 1.13.1
dayjs 1.11.18 1.11.19
dotenv-cli 10.0.0 11.0.0
react-router-dom 7.9.4 7.9.5
@aws-sdk/client-firehose 3.914.0 3.922.0

Updates esbuild from 0.25.11 to 0.25.12

Release notes

Sourced from esbuild's releases.

v0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @view-transition {
      navigation: auto;
      types: check;
    }
    /* Old output */
    @​view-transition { navigation: auto; types: check; }
    /* New output */
    @​view-transition {
    navigation: auto;
    types: check;

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @view-transition {
      navigation: auto;
      types: check;
    }
    /* Old output */
    @​view-transition { navigation: auto; types: check; }
    /* New output */
    @​view-transition {
    navigation: auto;

... (truncated)

Commits
  • 208f539 publish 0.25.12 to npm
  • 5f03afd update release notes
  • 6b2ee78 minify: remove css rules containing empty :is()
  • f361deb add some additional known static methods
  • 07aa646 automatically mark "RegExp.escape()" calls as pure
  • 9039c46 simplify some call expression checks
  • 188944d add some additional known static methods
  • d3c67f9 fix #4310: add Iterator and other known globals
  • 4a51f0b fix: escape dev server breadcrumb hrefs properly (#4316)
  • 26b29ed fix #4315: @media deduplication bug edge case
  • Additional commits viewable in compare view

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

Release notes

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

v3.922.0

3.922.0(2025-10-31)

New Features
  • clients: update client endpoints as of 2025-10-31 (a3fc323e)
  • client-fms: Update endpoint ruleset parameters casing (52136e4a)
  • client-sagemaker: Allow update of platform identifier via UpdateNotebookInstance operation. (7e15a9e2)
  • client-lambda: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda (833a43f4)
  • client-cloudwatch-logs: Update endpoint ruleset parameters casing (e778e04b)
  • client-mediaconvert: Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts. (ad80a044)
  • client-redshift: Update endpoint ruleset parameters casing (8dab0d0c)
  • client-ec2: Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria. (21a7dd38)
  • client-emr: Update endpoint ruleset parameters casing (647ff669)
  • client-connectcases: Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates. (c5f00435)
  • client-health: Update endpoint ruleset parameters casing (91db038d)
  • client-snowball: Update endpoint ruleset parameters casing (dbcb489e)
  • client-resource-groups-tagging-api: Update endpoint ruleset parameters casing (808f229f)
  • client-textract: Update endpoint ruleset parameters casing (2d00f767)
  • client-fsx: Update endpoint ruleset parameters casing (fa7903c3)
  • client-kinesis: Update endpoint ruleset parameters casing (1fbd3b63)
  • client-waf: Update endpoint ruleset parameters casing (88423667)
  • client-marketplace-catalog: Update endpoint ruleset parameters casing (84ab3c44)
  • client-ssm-quicksetup: Update endpoint ruleset parameters casing (6bda7950)
  • client-payment-cryptography: Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API. (71d7f21d)
  • client-savingsplans: Add dual-stack endpoint support for Savings Plans (bbb2fe9f)
  • client-omics: Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types (efb1c6fb)
Bug Fixes
  • middleware-user-agent: allow hash in userAgentAppId and propagate to inner clients (#7469) (03d94d1e)
Tests

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

v3.921.0

3.921.0(2025-10-30)

Chores
Documentation Changes

... (truncated)

Changelog

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

3.922.0 (2025-10-31)

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

3.921.0 (2025-10-30)

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

3.920.0 (2025-10-29)

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

3.919.0 (2025-10-28)

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

3.918.0 (2025-10-27)

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

3.917.0 (2025-10-24)

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

3.916.0 (2025-10-23)

... (truncated)

Commits

Updates @aws-sdk/client-lambda from 3.917.0 to 3.922.0

Release notes

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

v3.922.0

3.922.0(2025-10-31)

New Features
  • clients: update client endpoints as of 2025-10-31 (a3fc323e)
  • client-fms: Update endpoint ruleset parameters casing (52136e4a)
  • client-sagemaker: Allow update of platform identifier via UpdateNotebookInstance operation. (7e15a9e2)
  • client-lambda: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda (833a43f4)
  • client-cloudwatch-logs: Update endpoint ruleset parameters casing (e778e04b)
  • client-mediaconvert: Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts. (ad80a044)
  • client-redshift: Update endpoint ruleset parameters casing (8dab0d0c)
  • client-ec2: Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria. (21a7dd38)
  • client-emr: Update endpoint ruleset parameters casing (647ff669)
  • client-connectcases: Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates. (c5f00435)
  • client-health: Update endpoint ruleset parameters casing (91db038d)
  • client-snowball: Update endpoint ruleset parameters casing (dbcb489e)
  • client-resource-groups-tagging-api: Update endpoint ruleset parameters casing (808f229f)
  • client-textract: Update endpoint ruleset parameters casing (2d00f767)
  • client-fsx: Update endpoint ruleset parameters casing (fa7903c3)
  • client-kinesis: Update endpoint ruleset parameters casing (1fbd3b63)
  • client-waf: Update endpoint ruleset parameters casing (88423667)
  • client-marketplace-catalog: Update endpoint ruleset parameters casing (84ab3c44)
  • client-ssm-quicksetup: Update endpoint ruleset parameters casing (6bda7950)
  • client-payment-cryptography: Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API. (71d7f21d)
  • client-savingsplans: Add dual-stack endpoint support for Savings Plans (bbb2fe9f)
  • client-omics: Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types (efb1c6fb)
Bug Fixes
  • middleware-user-agent: allow hash in userAgentAppId and propagate to inner clients (#7469) (03d94d1e)
Tests

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

v3.921.0

3.921.0(2025-10-30)

Chores
Documentation Changes

... (truncated)

Changelog

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

3.922.0 (2025-10-31)

Features

  • client-lambda: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda (833a43f)

3.921.0 (2025-10-30)

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

3.920.0 (2025-10-29)

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

3.919.0 (2025-10-28)

Features

  • client-lambda: Added SerializedRequestEntityTooLargeException to Lambda Invoke API (2a5606e)

3.918.0 (2025-10-27)

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

Commits
  • ed7ac2a Publish v3.922.0
  • 833a43f feat(client-lambda): Add Python3.14 (python3.14) and Java 25 (java25) support...
  • e8b9fd8 Publish v3.921.0
  • da06f0e chore(codegen): sync for waiter and proxy fixes (#7467)
  • 1d4bdbf Publish v3.920.0
  • 6865eb6 Publish v3.919.0
  • 2a5606e feat(client-lambda): Added SerializedRequestEntityTooLargeException to Lambda...
  • 58bb924 Publish v3.918.0
  • See full diff in compare view

Updates @aws-sdk/client-secrets-manager from 3.917.0 to 3.922.0

Release notes

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

v3.922.0

3.922.0(2025-10-31)

New Features
  • clients: update client endpoints as of 2025-10-31 (a3fc323e)
  • client-fms: Update endpoint ruleset parameters casing (52136e4a)
  • client-sagemaker: Allow update of platform identifier via UpdateNotebookInstance operation. (7e15a9e2)
  • client-lambda: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda (833a43f4)
  • client-cloudwatch-logs: Update endpoint ruleset parameters casing (e778e04b)
  • client-mediaconvert: Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts. (ad80a044)
  • client-redshift: Update endpoint ruleset parameters casing (8dab0d0c)
  • client-ec2: Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria. (21a7dd38)
  • client-emr: Update endpoint ruleset parameters casing (647ff669)
  • client-connectcases: Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates. (c5f00435)
  • client-health: Update endpoint ruleset parameters casing (91db038d)
  • client-snowball: Update endpoint ruleset parameters casing (dbcb489e)
  • client-resource-groups-tagging-api: Update endpoint ruleset parameters casing (808f229f)
  • client-textract: Update endpoint ruleset parameters casing (2d00f767)
  • client-fsx: Update endpoint ruleset parameters casing (fa7903c3)
  • client-kinesis: Update endpoint ruleset parameters casing (1fbd3b63)
  • client-waf: Update endpoint ruleset parameters casing (88423667)
  • client-marketplace-catalog: Update endpoint ruleset parameters casing (84ab3c44)
  • client-ssm-quicksetup: Update endpoint ruleset parameters casing (6bda7950)
  • client-payment-cryptography: Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API. (71d7f21d)
  • client-savingsplans: Add dual-stack endpoint support for Savings Plans (bbb2fe9f)
  • client-omics: Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types (efb1c6fb)
Bug Fixes
  • middleware-user-agent: allow hash in userAgentAppId and propagate to inner clients (#7469) (03d94d1e)
Tests

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

v3.921.0

3.921.0(2025-10-30)

Chores
Documentation Changes

... (truncated)

Changelog

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

3.922.0 (2025-10-31)

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

3.921.0 (2025-10-30)

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

3.920.0 (2025-10-29)

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

3.919.0 (2025-10-28)

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

3.918.0 (2025-10-27)

Features

  • client-secrets-manager: Update endpoint ruleset parameters casing (462f87a)
Commits

Updates @aws-sdk/client-ses from 3.917.0 to 3.922.0

Release notes

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

v3.922.0

3.922.0(2025-10-31)

New Features
  • clients: update client endpoints as of 2025-10-31 (a3fc323e)
  • client-fms: Update endpoint ruleset parameters casing (52136e4a)
  • client-sagemaker: Allow update of platform identifier via UpdateNotebookInstance operation. (7e15a9e2)
  • client-lambda: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda (833a43f4)
  • client-cloudwatch-logs: Update endpoint ruleset parameters casing (e778e04b)
  • client-mediaconvert: Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts. (ad80a044)
  • client-redshift: Update endpoint ruleset parameters casing (8dab0d0c)
  • client-ec2: Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria. (21a7dd38)
  • client-emr: Update endpoint ruleset parameters casing (647ff669)
  • client-connectcases: Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates. (c5f00435)
  • client-health: Update endpoint ruleset parameters casing (91db038d)
  • client-snowball: Update endpoint ruleset parameters casing (dbcb489e)
  • client-resource-groups-tagging-api: Update endpoint ruleset parameters casing (808f229f)
  • client-textract: Update endpoint ruleset parameters casing (2d00f767)
  • client-fsx: Update endpoint ruleset parameters casing (fa7903c3)
  • client-kinesis: Update endpoint ruleset parameters casing (1fbd3b63)
  • client-waf: Update endpoint ruleset parameters casing (88423667)
  • client-marketplace-catalog: Update endpoint ruleset parameters casing (84ab3c44)
  • client-ssm-quicksetup: Update endpoint ruleset parameters casing (6bda7950)
  • client-payment-cryptography: Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API. (71d7f21d)
  • client-savingsplans: Add dual-stack endpoint support for Savings Plans (bbb2fe9f)
  • client-omics: Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types (efb1c6fb)
Bug Fixes
  • middleware-user-agent: allow hash in userAgentAppId and propagate to inner clients (#7469) (03d94d1e)
Tests

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

v3.921.0

3.921.0(2025-10-30)

Chores
Documentation Changes

... (truncated)

Changelog

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

3.922.0 (2025-10-31)

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

3.921.0 (2025-10-30)

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

3.920.0 (2025-10-29)

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

3.919.0 (2025-10-28)

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

3.918.0 (2025-10-27)

Features

  • client-ses: Update endpoint ruleset parameters casing (9c056ab)
Commits

Updates @aws-sdk/client-sqs from 3.917.0 to 3.922.0

Release notes

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

v3.922.0

3.922.0(2025-10-31)

New Features
  • clients: update client endpoints as of 2025-10-31 (a3fc323e)
  • client-fms: Update endpoint ruleset parameters casing (52136e4a)
  • client-sagemaker: Allow update of platform identifier via UpdateNotebookInstance operation. (7e15a9e2)
  • client-lambda: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda (833a43f4)
  • client-cloudwatch-logs: Update endpoint ruleset parameters casing (e778e04b)
  • client-mediaconvert: Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts. (ad80a044)
  • client-redshift: Update endpoint ruleset parameters casing (8dab0d0c)
  • client-ec2: Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria. (21a7dd38)
  • client-emr: Update endpoint ruleset parameters casing (647ff669)
  • client-connectcases: Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates. (c5f00435)
  • client-health: Update endpoint ruleset parameters casing (91db038d)
  • client-snowball: Update endpoint ruleset parameters casing (dbcb489e)
  • client-resource-groups-tagging-api: Update endpoint ruleset parameters casing (808f229f)
  • client-textract: Update endpoint ruleset parameters casing (2d00f767)
  • client-fsx: Update endpoint ruleset parameters casing (fa7903c3)
  • client-kinesis: Update endpoint ruleset parameters casing (1fbd3b63)
  • client-waf: Update endpoint ruleset parameters casing (88423667)
  • client-marketplace-catalog: Update endpoint ruleset parameters casing (84ab3c44)
  • client-ssm-quicksetup: Update endpoint ruleset parameters casing (6bda7950)
  • client-payment-cryptography: Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API. (71d7f21d)
  • client-savingsplans: Add dual-stack endpoint support for Savings Plans (bbb2fe9f)
  • client-omics: Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types (efb1c6fb)
Bug Fixes
  • middleware-user-agent: allow hash in userAgentAppId and propagate to inner clients (#7469) (03d94d1e)
Tests

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

v3.921.0

3.921.0(2025-10-30)

Chores
Documentation Changes

... (truncated)

Changelog

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

3.922.0 (2025-10-31)

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

3.921.0 (2025-10-30)

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

3.920.0 (2025-10-29)

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

3.919.0 (2025-10-28)

Features

  • client-sqs: Update endpoint ruleset parameters casing (250af94)

3.918.0 (2025-10-27)

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

Commits

Updates @aws-sdk/client-sts from 3.917.0 to 3.922.0

Release notes

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

v3.922.0

3.922.0(2025-10-31)

New Features
  • clients: update client endpoints as of 2025-10-31 (a3fc323e)
  • client-fms: Update endpoint ruleset parameters casing (52136e4a)
  • client-sagemaker: Allow update of platform identifier via UpdateNotebookInstance operation. (7e15a9e2)
  • client-lambda: Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda (833a43f4)
  • client-cloudwatch-logs: Update endpoint ruleset parameters casing (e778e04b)
  • client-mediaconvert: Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts. (ad80a044)
  • client-redshift: Update endpoint ruleset parameters casing (8dab0d0c)
  • client-ec2: Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria. (21a7dd38)
  • client-emr: Update endpoint ruleset parameters casing (647ff669)
  • client-connectcases: Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates. (c5f00435)
  • client-health: Update endpoint ruleset parameters casing (91db038d)
  • client-snowball: Update endpoint ruleset parameters casing (dbcb489e)
  • client-resource-groups-tagging-api: Update endpoint ruleset parameters casing (808f229f)
  • client-textract: Update endpoint ruleset parameters casing (2d00f767)
  • client-fsx: Update endpoint ruleset parameters casing (fa7903c3)
  • client-kinesis: Update endpoint ruleset parameters casing (1fbd3b63)
  • client-waf: Update endpoint ruleset parameters casing (88423667)
  • client-marketplace-catalog: Update endpoint ruleset parameters casing (84ab3c44)
  • client-ssm-quicksetup: Update endpoint ruleset parameters casing (6bda7950)
  • client-payment-cryptography: Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API. (71d7f21d)
  • client-savingsplans: Add dual-stack endpoint support for Savings Plans (bbb2fe9f)
  • client-omics: Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types (

…ates

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

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.11` | `0.25.12` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.914.0` | `3.922.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.917.0` | `3.922.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.917.0` | `3.922.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.917.0` | `3.922.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.917.0` | `3.922.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.917.0` | `3.922.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.916.0` | `3.922.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.914.0` | `3.922.0` |
| [@azure/msal-node](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.8.0` | `3.8.1` |
| [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js) | `14.24.0` | `14.24.2` |
| [ical-generator](https://github.com/sebbo2002/ical-generator) | `9.0.0` | `10.0.0` |
| [octokit](https://github.com/octokit/octokit.js) | `5.0.4` | `5.0.5` |
| [passkit-generator](https://github.com/alexandercerutti/passkit-generator) | `3.5.2` | `3.5.5` |
| [redlock-universal](https://github.com/alexpota/redlock-universal) | `0.6.5` | `0.7.0` |
| [stripe](https://github.com/stripe/stripe-node) | `19.1.0` | `19.2.0` |
| [@azure/msal-browser](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `4.25.1` | `4.26.0` |
| [@azure/msal-react](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.0.20` | `3.0.21` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.3.5` | `8.3.6` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.3.5` | `8.3.6` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.3.5` | `8.3.6` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.3.5` | `8.3.6` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.3.5` | `8.3.6` |
| [axios](https://github.com/axios/axios) | `1.12.2` | `1.13.1` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.18` | `1.11.19` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `10.0.0` | `11.0.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.9.4` | `7.9.5` |
| [@aws-sdk/client-firehose](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-firehose) | `3.914.0` | `3.922.0` |



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

Updates `@aws-sdk/client-dynamodb` from 3.914.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.917.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-lambda/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.917.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-secrets-manager/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.917.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ses/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.917.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sqs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.917.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sts/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.916.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/signature-v4-crt/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.914.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/packages/util-dynamodb)

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

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

Updates `ical-generator` from 9.0.0 to 10.0.0
- [Release notes](https://github.com/sebbo2002/ical-generator/releases)
- [Changelog](https://github.com/sebbo2002/ical-generator/blob/develop/CHANGELOG.md)
- [Commits](sebbo2002/ical-generator@v9.0.0...v10.0.0)

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

Updates `passkit-generator` from 3.5.2 to 3.5.5
- [Release notes](https://github.com/alexandercerutti/passkit-generator/releases)
- [Changelog](https://github.com/alexandercerutti/passkit-generator/blob/master/CHANGELOG.md)
- [Commits](alexandercerutti/passkit-generator@v3.5.2...v3.5.5)

Updates `redlock-universal` from 0.6.5 to 0.7.0
- [Release notes](https://github.com/alexpota/redlock-universal/releases)
- [Changelog](https://github.com/alexpota/redlock-universal/blob/main/CHANGELOG.md)
- [Commits](alexpota/redlock-universal@v0.6.5...v0.7.0)

Updates `stripe` from 19.1.0 to 19.2.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@v19.1.0...v19.2.0)

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

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

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

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

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

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

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

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

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

Updates `dotenv-cli` from 10.0.0 to 11.0.0
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v10.0.0...v11.0.0)

Updates `react-router-dom` from 7.9.4 to 7.9.5
- [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.5/packages/react-router-dom)

Updates `@aws-sdk/client-firehose` from 3.914.0 to 3.922.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-firehose/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-firehose)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-secrets-manager"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/signature-v4-crt"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: discord.js
  dependency-version: 14.24.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: ical-generator
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: octokit
  dependency-version: 5.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: passkit-generator
  dependency-version: 3.5.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: redlock-universal
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: stripe
  dependency-version: 19.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-browser"
  dependency-version: 4.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-react"
  dependency-version: 3.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: axios
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: dotenv-cli
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.9.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-firehose"
  dependency-version: 3.922.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 Nov 2, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 2, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch dependabot/npm_and_yarn/production-dependencies-16a16bddbc

Comment @coderabbitai help to get the list of available commands and usage tips.

@devksingh4 devksingh4 merged commit 06aa3c0 into main Nov 2, 2025
5 of 8 checks passed
@devksingh4 devksingh4 deleted the dependabot/npm_and_yarn/production-dependencies-16a16bddbc branch November 2, 2025 17:32
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