Bump the production-dependencies group across 2 directories with 30 updates
Type: Pull Request
State: Closed
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(13 days ago)
(7 days ago)
(7 days ago)
dependencies javascript
⚠️ Dependabot is rebasing this PR ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps the production-dependencies group with 30 updates in the / directory:
Package | From | To |
---|---|---|
esbuild | 0.25.8 |
0.25.9 |
@aws-sdk/client-cloudfront-keyvaluestore | 3.859.0 |
3.873.0 |
@aws-sdk/client-dynamodb | 3.859.0 |
3.873.0 |
@aws-sdk/client-lambda | 3.859.0 |
3.873.0 |
@aws-sdk/client-secrets-manager | 3.859.0 |
3.873.0 |
@aws-sdk/client-ses | 3.859.0 |
3.873.0 |
@aws-sdk/client-sqs | 3.859.0 |
3.873.0 |
@aws-sdk/client-sts | 3.859.0 |
3.873.0 |
@aws-sdk/signature-v4-crt | 3.858.0 |
3.873.0 |
@aws-sdk/util-dynamodb | 3.859.0 |
3.873.0 |
@azure/msal-node | 3.6.4 |
3.7.2 |
@middy/core | 6.4.1 |
6.4.4 |
@middy/event-normalizer | 6.4.1 |
6.4.4 |
@middy/sqs-partial-batch-failure | 6.4.1 |
6.4.4 |
argon2 | 0.43.1 |
0.44.0 |
discord.js | 14.21.0 |
14.22.1 |
fastify | 5.4.0 |
5.5.0 |
fastify-zod-openapi | 5.2.0 |
5.3.0 |
pino | 9.7.0 |
9.9.0 |
zod | 4.0.14 |
4.1.1 |
@azure/msal-browser | 4.18.0 |
4.21.0 |
@azure/msal-react | 3.0.16 |
3.0.19 |
@mantine/core | 8.2.2 |
8.2.7 |
@mantine/dates | 8.2.2 |
8.2.7 |
@mantine/form | 8.2.2 |
8.2.7 |
@mantine/hooks | 8.2.2 |
8.2.7 |
@mantine/notifications | 8.2.2 |
8.2.7 |
pdfjs-dist | 4.10.38 |
5.4.54 |
react-pdf | 10.0.1 |
10.1.0 |
react-router-dom | 7.7.1 |
7.8.2 |
Bumps the production-dependencies group with 1 update in the /src/api directory: argon2.
Updates esbuild
from 0.25.8 to 0.25.9
Release notes
Sourced from esbuild's releases.
v0.25.9
Better support building projects that use Yarn on Windows (#3131, #3663)
With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the
C:
drive. The problem was as follows:
- Yarn in Plug'n'Play mode on Windows stores its global module cache on the
C:
drive- Some developers put their projects on the
D:
drive- Yarn generates relative paths that use
../..
to get from the project directory to the cache directory- Windows-style paths don't support directory traversal between drives via
..
(soD:\..
is justD:
)- 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:
- Yarn in Plug'n'Play mode on Windows stores its global module cache on the
C:
drive- Some developers put their projects on the
D:
drive- Yarn generates relative paths that use
../..
to get from the project directory to the cache directory- Windows-style paths don't support directory traversal between drives via
..
(soD:\..
is justD:
)- 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
195e05c
publish 0.25.9 to npm3dac33f
fix #3131, fix #3663: yarnpnp + windows + D drive0f2c5c8
mock fs now supports multiple volumes on windows100a51e
split out yarnpnp snapshot tests13aace3
removeC:
assumption from windows snapshot testsf1f413f
fix #4252: preserve parentheses around functions1bc8091
fix #4257, close #4258: go 1.23.10 => 1.23.12bc52135
move the go compiler version togo.version
a0af5d1
makefile: useESBUILD_VERSION
consistently- See full diff in compare view
Updates @aws-sdk/client-cloudfront-keyvaluestore
from 3.859.0 to 3.873.0
Release notes
Sourced from @aws-sdk/client-cloudfront-keyvaluestore
's releases.
v3.873.0
3.873.0(2025-08-21)
Chores
- util-endpoints: update aws partitions.json (6c73c897)
- endpoints: update endpoints model (3b2eccb3)
- models: update API models (f6e8bcc8)
- bump vitest to 3.x (#7270) (dd90501b)
- rename vitest.config.ts to *.mts (#7262) (011b38c0)
- private:
Documentation Changes
- client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
- client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
- client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
- client-guardduty: Remove Pattern trait from email field (1d689d7f)
- client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
- aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
- use accurate errors in testing (#7273) (97e916ee)
- aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)
For list of updated packages, view updated-packages.md in assets-3.873.0.zip
v3.872.0
3.872.0(2025-08-20)
Chores
- clients: use 'include' in tsconfig.json (#7266) (b2eec675)
- protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
- clients: update client endpoints as of 2025-08-20 (87f16686)
- client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
- client-efs: Remove incorrect endpoint tests (fd49ae01)
- client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)
... (truncated)
Changelog
Sourced from @aws-sdk/client-cloudfront-keyvaluestore
's changelog.
3.873.0 (2025-08-21)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore
3.872.0 (2025-08-20)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore
3.864.0 (2025-08-08)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore
3.863.0 (2025-08-07)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore
3.862.0 (2025-08-06)
Note: Version bump only for package
@aws-sdk/client-cloudfront-keyvaluestore
Commits
Updates @aws-sdk/client-dynamodb
from 3.859.0 to 3.873.0
Release notes
Sourced from @aws-sdk/client-dynamodb
's releases.
v3.873.0
3.873.0(2025-08-21)
Chores
- util-endpoints: update aws partitions.json (6c73c897)
- endpoints: update endpoints model (3b2eccb3)
- models: update API models (f6e8bcc8)
- bump vitest to 3.x (#7270) (dd90501b)
- rename vitest.config.ts to *.mts (#7262) (011b38c0)
- private:
Documentation Changes
- client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
- client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
- client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
- client-guardduty: Remove Pattern trait from email field (1d689d7f)
- client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
- aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
- use accurate errors in testing (#7273) (97e916ee)
- aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)
For list of updated packages, view updated-packages.md in assets-3.873.0.zip
v3.872.0
3.872.0(2025-08-20)
Chores
- clients: use 'include' in tsconfig.json (#7266) (b2eec675)
- protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
- clients: update client endpoints as of 2025-08-20 (87f16686)
- client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
- client-efs: Remove incorrect endpoint tests (fd49ae01)
- client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)
... (truncated)
Changelog
Sourced from @aws-sdk/client-dynamodb
's changelog.
3.873.0 (2025-08-21)
Note: Version bump only for package
@aws-sdk/client-dynamodb
3.872.0 (2025-08-20)
Features
- client-dynamodb: Remove incorrect endpoint tests (16a3ca8)
3.868.0 (2025-08-14)
Features
- client-dynamodb: This release 1/ Adds support for throttled keys mode for CloudWatch Contributor Insights, 2/ Adds throttling reasons to exceptions across dataplane APIs. 3/ Explicitly models ThrottlingException as a class in statically typed languages. Refer to the launch day blog post for more details. (a2e4992)
3.864.0 (2025-08-08)
Note: Version bump only for package
@aws-sdk/client-dynamodb
3.863.0 (2025-08-07)
Note: Version bump only for package
@aws-sdk/client-dynamodb
3.862.0 (2025-08-06)
Note: Version bump only for package
@aws-sdk/client-dynamodb
Commits
308b00e
Publish v3.873.00b2e67c
Publish v3.872.016a3ca8
feat(client-dynamodb): Remove incorrect endpoint testsb2eec67
chore(clients): use 'include' in tsconfig.json (#7266)370b0e4
Publish v3.868.0a2e4992
feat(client-dynamodb): This release 1/ Adds support for throttled keys mode f...ab7208b
Publish v3.864.02cea144
Publish v3.863.0faadcc4
Publish v3.862.025b3eb1
chore(codegen): sync for CborCodec idempotencyToken (#7246)- See full diff in compare view
Updates @aws-sdk/client-lambda
from 3.859.0 to 3.873.0
Release notes
Sourced from @aws-sdk/client-lambda
's releases.
v3.873.0
3.873.0(2025-08-21)
Chores
- util-endpoints: update aws partitions.json (6c73c897)
- endpoints: update endpoints model (3b2eccb3)
- models: update API models (f6e8bcc8)
- bump vitest to 3.x (#7270) (dd90501b)
- rename vitest.config.ts to *.mts (#7262) (011b38c0)
- private:
Documentation Changes
- client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
- client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
- client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
- client-guardduty: Remove Pattern trait from email field (1d689d7f)
- client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
- aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
- use accurate errors in testing (#7273) (97e916ee)
- aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)
For list of updated packages, view updated-packages.md in assets-3.873.0.zip
v3.872.0
3.872.0(2025-08-20)
Chores
- clients: use 'include' in tsconfig.json (#7266) (b2eec675)
- protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
- clients: update client endpoints as of 2025-08-20 (87f16686)
- client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
- client-efs: Remove incorrect endpoint tests (fd49ae01)
- client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)
... (truncated)
Changelog
Sourced from @aws-sdk/client-lambda
's changelog.
3.873.0 (2025-08-21)
Note: Version bump only for package
@aws-sdk/client-lambda
3.872.0 (2025-08-20)
Note: Version bump only for package
@aws-sdk/client-lambda
3.865.0 (2025-08-11)
Note: Version bump only for package
@aws-sdk/client-lambda
3.864.0 (2025-08-08)
Note: Version bump only for package
@aws-sdk/client-lambda
3.863.0 (2025-08-07)
Note: Version bump only for package
@aws-sdk/client-lambda
3.862.0 (2025-08-06)
Note: Version bump only for package
@aws-sdk/client-lambda
Commits
308b00e
Publish v3.873.00b2e67c
Publish v3.872.0b2eec67
chore(clients): use 'include' in tsconfig.json (#7266)7210710
Publish v3.865.07c04a4b
docs(client-lambda): Doc-only update for Lambda that updates the maximum payl...ab7208b
Publish v3.864.02cea144
Publish v3.863.0faadcc4
Publish v3.862.025b3eb1
chore(codegen): sync for CborCodec idempotencyToken (#7246)- See full diff in compare view
Updates @aws-sdk/client-secrets-manager
from 3.859.0 to 3.873.0
Release notes
Sourced from @aws-sdk/client-secrets-manager
's releases.
v3.873.0
3.873.0(2025-08-21)
Chores
- util-endpoints: update aws partitions.json (6c73c897)
- endpoints: update endpoints model (3b2eccb3)
- models: update API models (f6e8bcc8)
- bump vitest to 3.x (#7270) (dd90501b)
- rename vitest.config.ts to *.mts (#7262) (011b38c0)
- private:
Documentation Changes
- client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
- client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
- client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
- client-guardduty: Remove Pattern trait from email field (1d689d7f)
- client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
- aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
- use accurate errors in testing (#7273) (97e916ee)
- aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)
For list of updated packages, view updated-packages.md in assets-3.873.0.zip
v3.872.0
3.872.0(2025-08-20)
Chores
- clients: use 'include' in tsconfig.json (#7266) (b2eec675)
- protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
- clients: update client endpoints as of 2025-08-20 (87f16686)
- client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
- client-efs: Remove incorrect endpoint tests (fd49ae01)
- client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)
... (truncated)
Changelog
Sourced from @aws-sdk/client-secrets-manager
's changelog.
3.873.0 (2025-08-21)
Note: Version bump only for package
@aws-sdk/client-secrets-manager
3.872.0 (2025-08-20)
Note: Version bump only for package
@aws-sdk/client-secrets-manager
3.864.0 (2025-08-08)
Note: Version bump only for package
@aws-sdk/client-secrets-manager
3.863.0 (2025-08-07)
Note: Version bump only for package
@aws-sdk/client-secrets-manager
3.862.0 (2025-08-06)
Note: Version bump only for package
@aws-sdk/client-secrets-manager
Commits
Updates @aws-sdk/client-ses
from 3.859.0 to 3.873.0
Release notes
Sourced from @aws-sdk/client-ses
's releases.
v3.873.0
3.873.0(2025-08-21)
Chores
- util-endpoints: update aws partitions.json (6c73c897)
- endpoints: update endpoints model (3b2eccb3)
- models: update API models (f6e8bcc8)
- bump vitest to 3.x (#7270) (dd90501b)
- rename vitest.config.ts to *.mts (#7262) (011b38c0)
- private:
Documentation Changes
- client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
- client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
- client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
- client-guardduty: Remove Pattern trait from email field (1d689d7f)
- client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
- aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
- use accurate errors in testing (#7273) (97e916ee)
- aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)
For list of updated packages, view updated-packages.md in assets-3.873.0.zip
v3.872.0
3.872.0(2025-08-20)
Chores
- clients: use 'include' in tsconfig.json (#7266) (b2eec675)
- protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
- clients: update client endpoints as of 2025-08-20 (87f16686)
- client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
- client-efs: Remove incorrect endpoint tests (fd49ae01)
- client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)
... (truncated)
Changelog
Sourced from @aws-sdk/client-ses
's changelog.
3.873.0 (2025-08-21)
Note: Version bump only for package
@aws-sdk/client-ses
3.872.0 (2025-08-20)
Note: Version bump only for package
@aws-sdk/client-ses
3.864.0 (2025-08-08)
Note: Version bump only for package
@aws-sdk/client-ses
3.863.0 (2025-08-07)
Note: Version bump only for package
@aws-sdk/client-ses
3.862.0 (2025-08-06)
Note: Version bump only for package
@aws-sdk/client-ses
Commits
Updates @aws-sdk/client-sqs
from 3.859.0 to 3.873.0
Release notes
Sourced from @aws-sdk/client-sqs
's releases.
v3.873.0
3.873.0(2025-08-21)
Chores
- util-endpoints: update aws partitions.json (6c73c897)
- endpoints: update endpoints model (3b2eccb3)
- models: update API models (f6e8bcc8)
- bump vitest to 3.x (#7270) (dd90501b)
- rename vitest.config.ts to *.mts (#7262) (011b38c0)
- private:
Documentation Changes
- client-ecs: This is a documentation only release that adds additional information for the update-service request parameters. (2ccda781)
- client-ssm-contacts: Doc-only updates for Incident Manager Contacts August 2025 (977796ec)
New Features
- client-glue: Added support for preprocessing queries in Data Quality operations through new DataQualityGlueTable structure. (1ed08716)
- client-guardduty: Remove Pattern trait from email field (1d689d7f)
- client-gameliftstreams: The default application in a stream group can now be changed at any time using UpdateStreamGroup to update the DefaultApplicationIdentifier. (9341cdc1)
Tests
- aws-protocoltests-smithy-rpcv2-cbor-schema: skip tests not working in vitest 3.x (#7274) (fd48b62a)
- use accurate errors in testing (#7273) (97e916ee)
- aws-client-retry-test: use Lambda client for retry test (#7272) (ff22f5ef)
For list of updated packages, view updated-packages.md in assets-3.873.0.zip
v3.872.0
3.872.0(2025-08-20)
Chores
- clients: use 'include' in tsconfig.json (#7266) (b2eec675)
- protocoltests: use schema log filter when available (#7261) (2e38b4e1)
New Features
- clients: update client endpoints as of 2025-08-20 (87f16686)
- client-route53-recovery-control-config: Remove incorrect endpoint tests (41b859ac)
- client-efs: Remove incorrect endpoint tests (fd49ae01)
- client-sagemaker: This release adds 1/ Launch ml.p5.4xlarge instance in Processing jobs, Training jobs and Training Plan 2/ Makes S3Uri to be required for S3FileSystem and S3FileSystemConfig. (bfd2fd25)
... (truncated)
Changelog
Sourced from @aws-sdk/client-sqs
's changelog.
3.873.0 (2025-08-21)
Note: Version bump only for package
@aws-sdk/client-sqs
3.872.0 (2025-08-20)
Note: Version bump only for package
@aws-sdk/client-sqs
3.864.0 (2025-08-08)
Note: Version bump only for package
@aws-sdk/client-sqs
3.863.0 (2025-08-07)
Note: Version bump only for package
@aws-sdk/client-sqs
3.862.0 (2025-08-06)
Note: Version bump only for package
@aws-sdk/client-sqs
Pull Request Statistics
1
4
+1177
-1154
Package Dependencies
@aws-sdk/client-dynamodb
npm
3.859.0 → 3.873.0
Minor
@aws-sdk/client-secrets-manager
npm
3.859.0 → 3.873.0
Minor
@aws-sdk/signature-v4-crt
npm
3.858.0 → 3.873.0
Minor
npm
3.859.0 → 3.873.0
Minor
@middy/sqs-partial-batch-failure
npm
6.4.1 → 6.4.4
Patch
Technical Details
ID: | 6023081 |
UUID: | 2770896831 |
Node ID: | PR_kwDOMfoAbc6lKIe_ |
Host: | GitHub |
Repository: | acm-uiuc/core |
Merge State: | Dirty |