Skip to content

Bump the production-dependencies group across 2 directories with 28 updates #255

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 18, 2025

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

Package From To
esbuild 0.25.8 0.25.9
@aws-sdk/client-cloudfront-keyvaluestore 3.859.0 3.864.0
@aws-sdk/client-dynamodb 3.859.0 3.868.0
@aws-sdk/client-lambda 3.859.0 3.865.0
@aws-sdk/client-secrets-manager 3.859.0 3.864.0
@aws-sdk/client-ses 3.859.0 3.864.0
@aws-sdk/client-sqs 3.859.0 3.864.0
@aws-sdk/client-sts 3.859.0 3.864.0
@aws-sdk/signature-v4-crt 3.858.0 3.864.0
@aws-sdk/util-dynamodb 3.859.0 3.868.0
@azure/msal-node 3.6.4 3.7.1
@middy/core 6.4.1 6.4.3
@middy/event-normalizer 6.4.1 6.4.3
@middy/sqs-partial-batch-failure 6.4.1 6.4.3
argon2 0.43.1 0.44.0
fastify 5.4.0 5.5.0
pino 9.7.0 9.9.0
zod 4.0.14 4.0.17
@azure/msal-browser 4.18.0 4.20.0
@azure/msal-react 3.0.16 3.0.18
@mantine/core 8.2.2 8.2.5
@mantine/dates 8.2.2 8.2.5
@mantine/form 8.2.2 8.2.5
@mantine/hooks 8.2.2 8.2.5
@mantine/notifications 8.2.2 8.2.5
pdfjs-dist 4.10.38 5.4.54
react-pdf 10.0.1 10.1.0
react-router-dom 7.7.1 7.8.1

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.864.0

Release notes

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

v3.864.0

3.864.0(2025-08-08)

Chores
  • core/protocols: correct x-amz-target header in schema protocols (#7248) (425c0037)
Documentation Changes
  • client-transcribe: Update documentation to use key ARN only in OutputEncryptionKMSKeyId request parameter (aa5d9f03)
New Features
  • clients: update client endpoints as of 2025-08-08 (3540d6ea)
  • client-iot-data-plane: Adding DeleteConnection API to IoT Data Plane (8fd62429)
  • client-s3vectors: Removed incorrect endpoint tests (c14f49d4)
  • client-iot-managed-integrations: Removed incorrect endpoint tests (48cf435c)
  • client-sagemaker: Adds support for GB200 UltraServers in Amazon SageMaker training jobs, training plans, and HyperPod clusters (b5dc676b)
  • client-application-signals: Removed incorrect endpoint tests (794fce3b)
  • client-networkflowmonitor: Removed incorrect endpoint tests (1a2f3527)
  • client-invoicing: Removed incorrect endpoint tests (fa3eb01c)
  • client-notificationscontacts: Removed incorrect endpoint tests (ea092358)
  • client-keyspacesstreams: Removed incorrect endpoint tests (32d8e3cc)
  • client-connect: This release adds a new API GetContactMetrics for Amazon Connect. (d2612b57)
  • client-billing: Removed incorrect endpoint tests (d47a2b84)
  • client-gameliftstreams: Removed incorrect endpoint tests (78d0339d)
  • client-dsql: Removed incorrect endpoint tests (a3da5408)
  • client-bcm-pricing-calculator: Removed incorrect endpoint tests (68d38d89)
  • client-notifications: Removed incorrect endpoint tests (4194d2ad)
  • client-backupsearch: Removed incorrect endpoint tests (0fc50afd)
  • client-mpa: Removed incorrect endpoint tests (bbc9d0d5)
  • client-security-ir: Removed incorrect endpoint tests (2b832bff)
  • client-inspector2: Add CVSSV4 to Vulnerability Search API and update enable/disable account id list length to 5 (c6f99382)
  • client-partnercentral-selling: Removed incorrect endpoint tests (4fe5c4a7)
  • client-workspaces-instances: Removed incorrect endpoint tests (d412c8c5)
Tests
  • lib-storage: increase timeout for checksum calculation (#7249) (0c9e1b89)

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

v3.863.0

3.863.0(2025-08-07)

Chores

... (truncated)

Changelog

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

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.868.0

Release notes

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

v3.868.0

3.868.0(2025-08-14)

Documentation Changes
  • client-qapps: Documentation update for Amazon Q Apps API Reference (a1414aab)
New Features
  • clients: update client endpoints as of 2025-08-14 (09fe8850)
  • client-fsx: Amazon FSx for NetApp ONTAP 2nd generation file systems now support decreasing SSD storage capacity. (8cb23abd)
  • client-bcm-recommended-actions: Initial SDK release for AWS Billing and Cost Management Recommended Actions. (2443ab1f)
  • client-guardduty: Added support for entity lists. (709b5886)
  • client-arc-region-switch: Endpoint rule test and documentation update. (4e686d39)
  • client-pcs: Updated the regex pattern and description of iamInstanceProfileArn in the CreateComputeNodeGroup and UpdateComputeNodeGroup API actions. Name and path requirements apply to the ARN of the IAM role associated with the instance profile and not the ARN of the instance profile. (b5adbbce)
  • client-ec2: This release adds ModifyInstanceConnectEndpoint API to update configurations on existing EC2 Instance Connect Endpoints and improves IPv6 support through dualstack DNS names for EC2 Instance Connect Endpoints. (a8bd4d8e)
  • client-workspaces: New APIs introduced to import WorkSpaces BYOL image using a new process that leveraged EC2 Image Builder. WorkSpaces tests and fixes your image's compatibility issues and supports customized VM images. (5e93ef1d)
  • client-direct-connect: Added pagination support for DescribeHostedConnections, DescribeVirtualInterfaces, DescribeConnections, DescribeInterconnects, DescribeLags. Added asnLong support for BGP peer operations which supports a large range. (ae2b9bca)
  • 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. (a2e49920)
  • client-glue: AWS Glue now supports Trusted Identity Propagation. (71e32da3)
  • client-medialive: CMAF Ingest output groups in MediaLive can now accept one additional destination url for single pipeline channels and up to two additional destination urls for standard channels. (761c8112)
  • client-servicediscovery: Added support for cross account through Id parameter overloading with ARN and allow owner account for some APIs instead of ARN (3002abd8)

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

v3.867.0

3.867.0(2025-08-13)

New Features
  • client-sagemaker: This release introduces compute quota for GPU, Trainium accelerators, vCPU, and vCPU memory utilization across teams in HyperPod clusters (0e1fe398)
  • client-datazone: Adds support for account pools and project profile account decoupling (74fe668e)
  • client-security-ir: Added support for Organizational Unit-level Membership configuration and the ability to resume a cancelled membership. (8396253e)
  • client-partnercentral-selling: Add Tagging Support for Opportunity resources (9ede01bc)
  • client-fsx: Add Dual-Stack support for Amazon FSx for OpenZFS file systems (46d94c15)
  • client-braket: Add support for Braket program sets. (ead04e97)

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

v3.866.0

3.866.0(2025-08-12)

New Features

... (truncated)

Changelog

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

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

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

Release notes

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

v3.865.0

3.865.0(2025-08-11)

Documentation Changes
  • client-lambda: Doc-only update for Lambda that updates the maximum payload size for response streaming invocations to 200 MB. (7c04a4b0)
  • client-evs: Update for general availability of Amazon Elastic VMware Service (EVS). (42162e56)
New Features
  • clients: update client endpoints as of 2025-08-11 (9e55a8de)
  • client-quicksight: Add RowAxisDisplayOptions and ColumnAxisDisplayOptions to HeatMapConfiguration, add Actions to PluginVisual, increase limit for CalculatedFields list (a0aa8dcc)
  • client-ec2: This release adds AvailabilityZoneId support for CreateVolume, DescribeVolume, LaunchTemplates, RunInstances, DescribeInstances, CreateDefaultSubnet, SpotInstances, and CreateDefaultSubnet APIs. (d130b871)
  • client-cognito-identity-provider: Remove SigV4 auth requirement for GetTokensFromRefreshToken (19ebeaf2)
  • client-bedrock: This release includes model updates and enhanced SDK documentation for union fields in automated reasoning policy components. Added docs cover policy definitions, mutations (add/update for rules/types/variables), build assets, workflow sources, test results, and tag exception handling. (1a741cc4)
  • client-connect: Updating SearchUserHierarchyGroups API (9fda95fc)
  • client-sso-admin: Added support for managing user background session for applications (2759ed36)
  • client-deadline: Adds support for Wait and Save feature in service-managed fleets (dc94f868)

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

v3.864.0

3.864.0(2025-08-08)

Chores
  • core/protocols: correct x-amz-target header in schema protocols (#7248) (425c0037)
Documentation Changes
  • client-transcribe: Update documentation to use key ARN only in OutputEncryptionKMSKeyId request parameter (aa5d9f03)
New Features
  • clients: update client endpoints as of 2025-08-08 (3540d6ea)
  • client-iot-data-plane: Adding DeleteConnection API to IoT Data Plane (8fd62429)
  • client-s3vectors: Removed incorrect endpoint tests (c14f49d4)
  • client-iot-managed-integrations: Removed incorrect endpoint tests (48cf435c)
  • client-sagemaker: Adds support for GB200 UltraServers in Amazon SageMaker training jobs, training plans, and HyperPod clusters (b5dc676b)
  • client-application-signals: Removed incorrect endpoint tests (794fce3b)
  • client-networkflowmonitor: Removed incorrect endpoint tests (1a2f3527)
  • client-invoicing: Removed incorrect endpoint tests (fa3eb01c)
  • client-notificationscontacts: Removed incorrect endpoint tests (ea092358)
  • client-keyspacesstreams: Removed incorrect endpoint tests (32d8e3cc)
  • client-connect: This release adds a new API GetContactMetrics for Amazon Connect. (d2612b57)
  • client-billing: Removed incorrect endpoint tests (d47a2b84)
  • client-gameliftstreams: Removed incorrect endpoint tests (78d0339d)

... (truncated)

Changelog

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

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.864.0

Release notes

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

v3.864.0

3.864.0(2025-08-08)

Chores
  • core/protocols: correct x-amz-target header in schema protocols (#7248) (425c0037)
Documentation Changes
  • client-transcribe: Update documentation to use key ARN only in OutputEncryptionKMSKeyId request parameter (aa5d9f03)
New Features
  • clients: update client endpoints as of 2025-08-08 (3540d6ea)
  • client-iot-data-plane: Adding DeleteConnection API to IoT Data Plane (8fd62429)
  • client-s3vectors: Removed incorrect endpoint tests (c14f49d4)
  • client-iot-managed-integrations: Removed incorrect endpoint tests (48cf435c)
  • client-sagemaker: Adds support for GB200 UltraServers in Amazon SageMaker training jobs, training plans, and HyperPod clusters (b5dc676b)
  • client-application-signals: Removed incorrect endpoint tests (794fce3b)
  • client-networkflowmonitor: Removed incorrect endpoint tests (1a2f3527)
  • client-invoicing: Removed incorrect endpoint tests (fa3eb01c)
  • client-notificationscontacts: Removed incorrect endpoint tests (ea092358)
  • client-keyspacesstreams: Removed incorrect endpoint tests (32d8e3cc)
  • client-connect: This release adds a new API GetContactMetrics for Amazon Connect. (d2612b57)
  • client-billing: Removed incorrect endpoint tests (d47a2b84)
  • client-gameliftstreams: Removed incorrect endpoint tests (78d0339d)
  • client-dsql: Removed incorrect endpoint tests (a3da5408)
  • client-bcm-pricing-calculator: Removed incorrect endpoint tests (68d38d89)
  • client-notifications: Removed incorrect endpoint tests (4194d2ad)
  • client-backupsearch: Removed incorrect endpoint tests (0fc50afd)
  • client-mpa: Removed incorrect endpoint tests (bbc9d0d5)
  • client-security-ir: Removed incorrect endpoint tests (2b832bff)
  • client-inspector2: Add CVSSV4 to Vulnerability Search API and update enable/disable account id list length to 5 (c6f99382)
  • client-partnercentral-selling: Removed incorrect endpoint tests (4fe5c4a7)
  • client-workspaces-instances: Removed incorrect endpoint tests (d412c8c5)
Tests
  • lib-storage: increase timeout for checksum calculation (#7249) (0c9e1b89)

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

v3.863.0

3.863.0(2025-08-07)

Chores

... (truncated)

Changelog

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

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.864.0

Release notes

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

v3.864.0

3.864.0(2025-08-08)

Chores
  • core/protocols: correct x-amz-target header in schema protocols (#7248) (425c0037)
Documentation Changes
  • client-transcribe: Update documentation to use key ARN only in OutputEncryptionKMSKeyId request parameter (aa5d9f03)
New Features
  • clients: update client endpoints as of 2025-08-08 (3540d6ea)
  • client-iot-data-plane: Adding DeleteConnection API to IoT Data Plane (8fd62429)
  • client-s3vectors: Removed incorrect endpoint tests (c14f49d4)
  • client-iot-managed-integrations: Removed incorrect endpoint tests (48cf435c)
  • client-sagemaker: Adds support for GB200 UltraServers in Amazon SageMaker training jobs, training plans, and HyperPod clusters (b5dc676b)
  • client-application-signals: Removed incorrect endpoint tests (794fce3b)
  • client-networkflowmonitor: Removed incorrect endpoint tests (1a2f3527)
  • client-invoicing: Removed incorrect endpoint tests (fa3eb01c)
  • client-notificationscontacts: Removed incorrect endpoint tests (ea092358)
  • client-keyspacesstreams: Removed incorrect endpoint tests (32d8e3cc)
  • client-connect: This release adds a new API GetContactMetrics for Amazon Connect. (d2612b57)
  • client-billing: Removed incorrect endpoint tests (d47a2b84)
  • client-gameliftstreams: Removed incorrect endpoint tests (78d0339d)
  • client-dsql: Removed incorrect endpoint tests (a3da5408)
  • client-bcm-pricing-calculator: Removed incorrect endpoint tests (68d38d89)
  • client-notifications: Removed incorrect endpoint tests (4194d2ad)
  • client-backupsearch: Removed incorrect endpoint tests (0fc50afd)
  • client-mpa: Removed incorrect endpoint tests (bbc9d0d5)
  • client-security-ir: Removed incorrect endpoint tests (2b832bff)
  • client-inspector2: Add CVSSV4 to Vulnerability Search API and update enable/disable account id list length to 5 (c6f99382)
  • client-partnercentral-selling: Removed incorrect endpoint tests (4fe5c4a7)
  • client-workspaces-instances: Removed incorrect endpoint tests (d412c8c5)
Tests
  • lib-storage: increase timeout for checksum calculation (#7249) (0c9e1b89)

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

v3.863.0

3.863.0(2025-08-07)

Chores

... (truncated)

Changelog

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

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.864.0

Release notes

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

v3.864.0

3.864.0(2025-08-08)

Chores
  • core/protocols: correct x-amz-target header in schema protocols (#7248) (425c0037)
Documentation Changes
  • client-transcribe: Update documentation to use key ARN only in OutputEncryptionKMSKeyId request parameter (aa5d9f03)
New Features
  • clients: update client endpoints as of 2025-08-08 (3540d6ea)
  • client-iot-data-plane: Adding DeleteConnection API to IoT Data Plane (8fd62429)
  • client-s3vectors: Removed incorrect endpoint tests (c14f49d4)
  • client-iot-managed-integrations: Removed incorrect endpoint tests (48cf435c)
  • client-sagemaker: Adds support for GB200 UltraServers in Amazon SageMaker training jobs, training plans, and HyperPod clusters (b5dc676b)
  • client-application-signals: Removed incorrect endpoint tests (794fce3b)
  • client-networkflowmonitor: Removed incorrect endpoint tests (1a2f3527)
  • client-invoicing: Removed incorrect endpoint tests (fa3eb01c)
  • client-notificationscontacts: Removed incorrect endpoint tests (ea092358)
  • client-keyspacesstreams: Removed incorrect endpoint tests (32d8e3cc)
  • client-connect: This release adds a new API GetContactMetrics for Amazon Connect. (d2612b57)
  • client-billing: Removed incorrect endpoint tests (d47a2b84)
  • client-gameliftstreams: Removed incorrect endpoint tests (78d0339d)
  • client-dsql: Removed incorrect endpoint tests (a3da5408)
  • client-bcm-pricing-calculator: Removed incorrect endpoint tests (68d38d89)
  • client-notifications: Removed incorrect endpoint tests (4194d2ad)
  • client-backupsearch: Removed incorrect endpoint tests (0fc50afd)
  • client-mpa: Removed incorrect endpoint tests (bbc9d0d5)
  • client-security-ir: Removed incorrect endpoint tests (2b832bff)
  • client-inspector2: Add CVSSV4 to Vulnerability Search API and update enable/disable account id list length to 5 (c6f99382)
  • client-partnercentral-selling: Removed incorrect endpoint tests (4fe5c4a7)
  • client-workspaces-instances: Removed incorrect endpoint tests (d412c8c5)
Tests
  • lib-storage: increase timeout for checksum calculation (#7249) (0c9e1b89)

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

v3.863.0

3.863.0(2025-08-07)

Chores

... (truncated)

Changelog

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

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

Updates @aws-sdk/client-sts from 3.859.0 to 3.864.0

Release notes

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

v3.864.0

3.864.0(2025-08-08)

Chores
  • core/protocols: correct x-amz-target header in schema protocols (#7248) (425c0037)
Documentation Changes
  • client-transcribe: Update documentation to use key ARN only in OutputEncryptionKMSKeyId request parameter (aa5d9f03)
New Features
  • clients: update client endpoints as of 2025-08-08 (3540d6ea)
  • client-iot-data-plane: Adding DeleteConnection API to IoT Data Plane (8fd62429)
  • client-s3vectors: Removed incorrect endpoint tests (c14f49d4)
  • client-iot-managed-integrations: Removed incorrect endpoint tests (48cf435c)
  • client-sagemaker: Adds support for GB200 UltraServers in Amazon SageMaker training jobs, training plans, and HyperPod clusters (b5dc676b)
  • client-application-signals: Removed incorrect endpoint tests (794fce3b)
  • client-networkflowmonitor: Removed incorrect endpoint tests (1a2f3527)
  • client-invoicing: Removed incorrect endpoint tests (fa3eb01c)
  • client-notificationscontacts: Removed incorrect endpoint tests (ea092358)
  • client-keyspacesstreams: Removed incorrect endpoint tests (32d8e3cc)
  • client-connect: This release adds a new API GetContactMetrics for Amazon Connect. (d2612b57)
  • client-billing: Removed incorrect endpoint tests (

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.8` | `0.25.9` |
| [@aws-sdk/client-cloudfront-keyvaluestore](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudfront-keyvaluestore) | `3.859.0` | `3.864.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.859.0` | `3.868.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.859.0` | `3.865.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.859.0` | `3.864.0` |
| [@aws-sdk/client-ses](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses) | `3.859.0` | `3.864.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.859.0` | `3.864.0` |
| [@aws-sdk/client-sts](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sts) | `3.859.0` | `3.864.0` |
| [@aws-sdk/signature-v4-crt](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-crt) | `3.858.0` | `3.864.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.859.0` | `3.868.0` |
| [@azure/msal-node](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.6.4` | `3.7.1` |
| [@middy/core](https://github.com/middyjs/middy/tree/HEAD/packages/core) | `6.4.1` | `6.4.3` |
| [@middy/event-normalizer](https://github.com/middyjs/middy/tree/HEAD/packages/event-normalizer) | `6.4.1` | `6.4.3` |
| [@middy/sqs-partial-batch-failure](https://github.com/middyjs/middy/tree/HEAD/packages/sqs-partial-batch-failure) | `6.4.1` | `6.4.3` |
| [argon2](https://github.com/ranisalt/node-argon2) | `0.43.1` | `0.44.0` |
| [fastify](https://github.com/fastify/fastify) | `5.4.0` | `5.5.0` |
| [pino](https://github.com/pinojs/pino) | `9.7.0` | `9.9.0` |
| [zod](https://github.com/colinhacks/zod) | `4.0.14` | `4.0.17` |
| [@azure/msal-browser](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `4.18.0` | `4.20.0` |
| [@azure/msal-react](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.0.16` | `3.0.18` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.2.2` | `8.2.5` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.2.2` | `8.2.5` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.2.2` | `8.2.5` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.2.2` | `8.2.5` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.2.2` | `8.2.5` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `4.10.38` | `5.4.54` |
| [react-pdf](https://github.com/wojtekmaj/react-pdf/tree/HEAD/packages/react-pdf) | `10.0.1` | `10.1.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.7.1` | `7.8.1` |

Bumps the production-dependencies group with 1 update in the /src/api directory: [argon2](https://github.com/ranisalt/node-argon2).


Updates `esbuild` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.8...v0.25.9)

Updates `@aws-sdk/client-cloudfront-keyvaluestore` from 3.859.0 to 3.864.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-cloudfront-keyvaluestore/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.864.0/clients/client-cloudfront-keyvaluestore)

Updates `@aws-sdk/client-dynamodb` from 3.859.0 to 3.868.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.868.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.859.0 to 3.865.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.865.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.859.0 to 3.864.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.864.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.859.0 to 3.864.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.864.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.859.0 to 3.864.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.864.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.859.0 to 3.864.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.864.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.858.0 to 3.864.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.864.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.859.0 to 3.868.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.868.0/packages/util-dynamodb)

Updates `@azure/msal-node` from 3.6.4 to 3.7.1
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-node-v3.6.4...msal-node-v3.7.1)

Updates `@middy/core` from 6.4.1 to 6.4.3
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.3/packages/core)

Updates `@middy/event-normalizer` from 6.4.1 to 6.4.3
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.3/packages/event-normalizer)

Updates `@middy/sqs-partial-batch-failure` from 6.4.1 to 6.4.3
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.3/packages/sqs-partial-batch-failure)

Updates `argon2` from 0.43.1 to 0.44.0
- [Release notes](https://github.com/ranisalt/node-argon2/releases)
- [Commits](ranisalt/node-argon2@v0.43.1...v0.44.0)

Updates `fastify` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.4.0...v5.5.0)

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

Updates `zod` from 4.0.14 to 4.0.17
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.0.14...v4.0.17)

Updates `@azure/msal-browser` from 4.18.0 to 4.20.0
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-browser-v4.18.0...msal-browser-v4.20.0)

Updates `@azure/msal-react` from 3.0.16 to 3.0.18
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-react-v3.0.16...msal-react-v3.0.18)

Updates `@mantine/core` from 8.2.2 to 8.2.5
- [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.2.5/packages/@mantine/core)

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

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

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

Updates `@mantine/notifications` from 8.2.2 to 8.2.5
- [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.2.5/packages/@mantine/notifications)

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

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

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

Updates `@aws-sdk/client-cloudfront-keyvaluestore` from 3.859.0 to 3.864.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-cloudfront-keyvaluestore/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.864.0/clients/client-cloudfront-keyvaluestore)

Updates `@aws-sdk/client-dynamodb` from 3.859.0 to 3.868.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.868.0/clients/client-dynamodb)

Updates `@aws-sdk/client-lambda` from 3.859.0 to 3.865.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.865.0/clients/client-lambda)

Updates `@aws-sdk/client-secrets-manager` from 3.859.0 to 3.864.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.864.0/clients/client-secrets-manager)

Updates `@aws-sdk/client-ses` from 3.859.0 to 3.864.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.864.0/clients/client-ses)

Updates `@aws-sdk/client-sqs` from 3.859.0 to 3.864.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.864.0/clients/client-sqs)

Updates `@aws-sdk/client-sts` from 3.859.0 to 3.864.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.864.0/clients/client-sts)

Updates `@aws-sdk/signature-v4-crt` from 3.858.0 to 3.864.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.864.0/packages/signature-v4-crt)

Updates `@aws-sdk/util-dynamodb` from 3.859.0 to 3.868.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.868.0/packages/util-dynamodb)

Updates `@azure/msal-node` from 3.6.4 to 3.7.1
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-node-v3.6.4...msal-node-v3.7.1)

Updates `@middy/core` from 6.4.1 to 6.4.3
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.3/packages/core)

Updates `@middy/event-normalizer` from 6.4.1 to 6.4.3
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.3/packages/event-normalizer)

Updates `@middy/sqs-partial-batch-failure` from 6.4.1 to 6.4.3
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/RELEASE.md)
- [Commits](https://github.com/middyjs/middy/commits/6.4.3/packages/sqs-partial-batch-failure)

Updates `argon2` from 0.43.1 to 0.44.0
- [Release notes](https://github.com/ranisalt/node-argon2/releases)
- [Commits](ranisalt/node-argon2@v0.43.1...v0.44.0)

Updates `esbuild` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.8...v0.25.9)

Updates `fastify` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.4.0...v5.5.0)

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

Updates `zod` from 4.0.14 to 4.0.17
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.0.14...v4.0.17)

Updates `argon2` from 0.43.1 to 0.44.0
- [Release notes](https://github.com/ranisalt/node-argon2/releases)
- [Commits](ranisalt/node-argon2@v0.43.1...v0.44.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-cloudfront-keyvaluestore"
  dependency-version: 3.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.868.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.865.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.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.864.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.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.868.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@middy/core"
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/event-normalizer"
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/sqs-partial-batch-failure"
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 9.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-browser"
  dependency-version: 4.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-react"
  dependency-version: 3.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/core"
  dependency-version: 8.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 8.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/form"
  dependency-version: 8.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 8.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 8.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pdfjs-dist
  dependency-version: 5.4.54
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-pdf
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-cloudfront-keyvaluestore"
  dependency-version: 3.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.868.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.865.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.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ses"
  dependency-version: 3.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-sts"
  dependency-version: 3.864.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.864.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-version: 3.868.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@azure/msal-node"
  dependency-version: 3.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@middy/core"
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/event-normalizer"
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@middy/sqs-partial-batch-failure"
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fastify
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 9.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: argon2
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

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 Aug 18, 2025
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.

0 participants