-
Notifications
You must be signed in to change notification settings - Fork 0
Commit 06aa3c0
authored
Bump the production-dependencies group across 1 directory with 28 updates (#368)
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
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/releases">esbuild's
releases</a>.</em></p>
<blockquote>
<h2>v0.25.12</h2>
<ul>
<li>
<p>Fix a minification regression with CSS media queries (<a
href="https://redirect.github.com/evanw/esbuild/issues/4315">#4315</a>)</p>
<p>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
<code>@media <media-type> and <media-condition-without-or> {
... }</code> was missing an equality check for the
<code><media-condition-without-or></code> part, so rules with
different suffix clauses in this position would incorrectly compare
equal and be deduplicated. This release fixes the regression.</p>
</li>
<li>
<p>Update the list of known JavaScript globals (<a
href="https://redirect.github.com/evanw/esbuild/issues/4310">#4310</a>)</p>
<p>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
<code>Array</code> property is considered to be side-effect free but
accessing the global <code>scrollY</code> 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:</p>
<p>From <a href="https://tc39.es/ecma262/2017/">ES2017</a>:</p>
<ul>
<li><code>Atomics</code></li>
<li><code>SharedArrayBuffer</code></li>
</ul>
<p>From <a href="https://tc39.es/ecma262/2020/">ES2020</a>:</p>
<ul>
<li><code>BigInt64Array</code></li>
<li><code>BigUint64Array</code></li>
</ul>
<p>From <a href="https://tc39.es/ecma262/2021/">ES2021</a>:</p>
<ul>
<li><code>FinalizationRegistry</code></li>
<li><code>WeakRef</code></li>
</ul>
<p>From <a href="https://tc39.es/ecma262/2025/">ES2025</a>:</p>
<ul>
<li><code>Float16Array</code></li>
<li><code>Iterator</code></li>
</ul>
<p>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 <code>Iterator</code>:</p>
<pre lang="js"><code>// This can now be tree-shaken by esbuild:
class ExampleIterator extends Iterator {}
</code></pre>
</li>
<li>
<p>Add support for the new <code>@view-transition</code> CSS rule (<a
href="https://redirect.github.com/evanw/esbuild/pull/4313">#4313</a>)</p>
<p>With this release, esbuild now has improved support for
pretty-printing and minifying the new <code>@view-transition</code> rule
(which esbuild was previously unaware of):</p>
<pre lang="css"><code>/* Original code */
@view-transition {
navigation: auto;
types: check;
}
<p>/* Old output */<br />
<a
href="https://github.com/view-transition"><code>@view-transition</code></a>
{ navigation: auto; types: check; }</p>
<p>/* New output */<br />
<a
href="https://github.com/view-transition"><code>@view-transition</code></a>
{<br />
navigation: auto;<br />
types: check;<br />
</code></pre></p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's
changelog</a>.</em></p>
<blockquote>
<h2>0.25.12</h2>
<ul>
<li>
<p>Fix a minification regression with CSS media queries (<a
href="https://redirect.github.com/evanw/esbuild/issues/4315">#4315</a>)</p>
<p>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
<code>@media <media-type> and <media-condition-without-or> {
... }</code> was missing an equality check for the
<code><media-condition-without-or></code> part, so rules with
different suffix clauses in this position would incorrectly compare
equal and be deduplicated. This release fixes the regression.</p>
</li>
<li>
<p>Update the list of known JavaScript globals (<a
href="https://redirect.github.com/evanw/esbuild/issues/4310">#4310</a>)</p>
<p>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
<code>Array</code> property is considered to be side-effect free but
accessing the global <code>scrollY</code> 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:</p>
<p>From <a href="https://tc39.es/ecma262/2017/">ES2017</a>:</p>
<ul>
<li><code>Atomics</code></li>
<li><code>SharedArrayBuffer</code></li>
</ul>
<p>From <a href="https://tc39.es/ecma262/2020/">ES2020</a>:</p>
<ul>
<li><code>BigInt64Array</code></li>
<li><code>BigUint64Array</code></li>
</ul>
<p>From <a href="https://tc39.es/ecma262/2021/">ES2021</a>:</p>
<ul>
<li><code>FinalizationRegistry</code></li>
<li><code>WeakRef</code></li>
</ul>
<p>From <a href="https://tc39.es/ecma262/2025/">ES2025</a>:</p>
<ul>
<li><code>Float16Array</code></li>
<li><code>Iterator</code></li>
</ul>
<p>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 <code>Iterator</code>:</p>
<pre lang="js"><code>// This can now be tree-shaken by esbuild:
class ExampleIterator extends Iterator {}
</code></pre>
</li>
<li>
<p>Add support for the new <code>@view-transition</code> CSS rule (<a
href="https://redirect.github.com/evanw/esbuild/pull/4313">#4313</a>)</p>
<p>With this release, esbuild now has improved support for
pretty-printing and minifying the new <code>@view-transition</code> rule
(which esbuild was previously unaware of):</p>
<pre lang="css"><code>/* Original code */
@view-transition {
navigation: auto;
types: check;
}
<p>/* Old output */<br />
<a
href="https://github.com/view-transition"><code>@view-transition</code></a>
{ navigation: auto; types: check; }</p>
<p>/* New output */<br />
<a
href="https://github.com/view-transition"><code>@view-transition</code></a>
{<br />
navigation: auto;<br />
</code></pre></p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/evanw/esbuild/commit/208f539945b145e7c9d6d844290f81c3fe5af320"><code>208f539</code></a>
publish 0.25.12 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/5f03afdd007f6626d4300afc7cbb5bf7c9554393"><code>5f03afd</code></a>
update release notes</li>
<li><a
href="https://github.com/evanw/esbuild/commit/6b2ee78d7f273d7ed4c4bb08b516939b373bcd67"><code>6b2ee78</code></a>
minify: remove css rules containing empty <code>:is()</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/f361debd61ffa0ae2d810fbe0e4c9d39183ed4c6"><code>f361deb</code></a>
add some additional known static methods</li>
<li><a
href="https://github.com/evanw/esbuild/commit/07aa646bb2fd9c5eb1de804edf9eae5bd1617637"><code>07aa646</code></a>
automatically mark "RegExp.escape()" calls as pure</li>
<li><a
href="https://github.com/evanw/esbuild/commit/9039c468258fd9a19eeaf5e05fd6a3d582b46d3a"><code>9039c46</code></a>
simplify some call expression checks</li>
<li><a
href="https://github.com/evanw/esbuild/commit/188944dd946dd54d50bbe844dc22969b604589d0"><code>188944d</code></a>
add some additional known static methods</li>
<li><a
href="https://github.com/evanw/esbuild/commit/d3c67f9e94267d06337d2e2e0d837844d2cac6bd"><code>d3c67f9</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4310">#4310</a>:
add <code>Iterator</code> and other known globals</li>
<li><a
href="https://github.com/evanw/esbuild/commit/4a51f0b24d343d7ae5b7d5a3e5c3afce3f96a0f8"><code>4a51f0b</code></a>
fix: escape dev server breadcrumb hrefs properly (<a
href="https://redirect.github.com/evanw/esbuild/issues/4316">#4316</a>)</li>
<li><a
href="https://github.com/evanw/esbuild/commit/26b29ed51ffe20730ffaf69921dbb53e27de464a"><code>26b29ed</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4315">#4315</a>:
<code>@media</code> deduplication bug edge case</li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.25.11...v0.25.12">compare
view</a></li>
</ul>
</details>
<br />
Updates `@aws-sdk/client-dynamodb` from 3.914.0 to 3.922.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@aws-sdk/client-dynamodb</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.922.0</h2>
<h4>3.922.0(2025-10-31)</h4>
<h5>New Features</h5>
<ul>
<li><strong>clients:</strong> update client endpoints as of 2025-10-31
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/a3fc323e3571b964579c62897dacd7594ac21039">a3fc323e</a>)</li>
<li><strong>client-fms:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/52136e4a9a28914466ce014ac6ecdb70535b73eb">52136e4a</a>)</li>
<li><strong>client-sagemaker:</strong> Allow update of platform
identifier via UpdateNotebookInstance operation. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/7e15a9e2a9219ea8d18a0bf727ed7662123c114d">7e15a9e2</a>)</li>
<li><strong>client-lambda:</strong> Add Python3.14 (python3.14) and Java
25 (java25) support to AWS Lambda (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e">833a43f4</a>)</li>
<li><strong>client-cloudwatch-logs:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/e778e04b27efc0ca84c9fcf2853d6cd72be4e83a">e778e04b</a>)</li>
<li><strong>client-mediaconvert:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/ad80a044c436904942cfff4bcc129ecf3548317e">ad80a044</a>)</li>
<li><strong>client-redshift:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/8dab0d0cfe839961312fa5e76fd209a61c6e4c29">8dab0d0c</a>)</li>
<li><strong>client-ec2:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/21a7dd3827939fd8ad9ab779e846828c7c0886e9">21a7dd38</a>)</li>
<li><strong>client-emr:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/647ff669489c02674018d10978648ffce0e04591">647ff669</a>)</li>
<li><strong>client-connectcases:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/c5f00435976177f5b8e5d463dbd47b161d9effa3">c5f00435</a>)</li>
<li><strong>client-health:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/91db038de61cf965fab440f21ed7a605290f19c5">91db038d</a>)</li>
<li><strong>client-snowball:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/dbcb489e79bd97bec05060e035e5d26c70c90a26">dbcb489e</a>)</li>
<li><strong>client-resource-groups-tagging-api:</strong> Update endpoint
ruleset parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/808f229ff624016ae1dde73e280f3fcdbd6d83cc">808f229f</a>)</li>
<li><strong>client-textract:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/2d00f767fb1ef8fffcd258eb0c9642ec9f626141">2d00f767</a>)</li>
<li><strong>client-fsx:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/fa7903c368ee556ccd6028f02e39b15e04795515">fa7903c3</a>)</li>
<li><strong>client-kinesis:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/1fbd3b63e2f774d570d2c32772e05c24c97b2d7b">1fbd3b63</a>)</li>
<li><strong>client-waf:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/88423667134e71531a050a44f14913687b9df0c2">88423667</a>)</li>
<li><strong>client-marketplace-catalog:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/84ab3c44a1cecf05400e1f536d27edf370dfbbd5">84ab3c44</a>)</li>
<li><strong>client-ssm-quicksetup:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/6bda7950cdc2fba106e2acbd5cd061b7f2006bba">6bda7950</a>)</li>
<li><strong>client-payment-cryptography:</strong> Allow additional
characters in the CertificateSubject for GetCertificateSigningRequest
API. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/71d7f21d08ca7730acc50974fb0ddf3ae55bcdf9">71d7f21d</a>)</li>
<li><strong>client-savingsplans:</strong> Add dual-stack endpoint
support for Savings Plans (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/bbb2fe9f880cf941e1b47a770c9f7c27653ce408">bbb2fe9f</a>)</li>
<li><strong>client-omics:</strong> Added WDL_LENIENT engine type that
enables implicit typecasting of variable values to its compatible
declared types (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/efb1c6fb5fb59f991c90b9829c0b59201f3de761">efb1c6fb</a>)</li>
</ul>
<h5>Bug Fixes</h5>
<ul>
<li><strong>middleware-user-agent:</strong> allow hash in userAgentAppId
and propagate to inner clients (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7469">#7469</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/03d94d1e02e1bbb62eabe32876d5137027aabb5b">03d94d1e</a>)</li>
</ul>
<h5>Tests</h5>
<ul>
<li><strong>client-s3:</strong> increase bucket name randomness (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7468">#7468</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/889767cbae5d73b057b32361e4f61977111549e0">889767cb</a>)</li>
</ul>
<hr />
<p>For list of updated packages, view
<strong>updated-packages.md</strong> in
<strong>assets-3.922.0.zip</strong></p>
<h2>v3.921.0</h2>
<h4>3.921.0(2025-10-30)</h4>
<h5>Chores</h5>
<ul>
<li><strong>codegen:</strong> sync for waiter and proxy fixes (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li>
</ul>
<h5>Documentation Changes</h5>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb/CHANGELOG.md"><code>@aws-sdk/client-dynamodb</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.921.0...v3.922.0">3.922.0</a>
(2025-10-31)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-dynamodb</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.920.0...v3.921.0">3.921.0</a>
(2025-10-30)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-dynamodb</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.919.0...v3.920.0">3.920.0</a>
(2025-10-29)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-dynamodb</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.918.0...v3.919.0">3.919.0</a>
(2025-10-28)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-dynamodb</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a>
(2025-10-27)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-dynamodb</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.916.0...v3.917.0">3.917.0</a>
(2025-10-24)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-dynamodb</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.915.0...v3.916.0">3.916.0</a>
(2025-10-23)</h1>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/ed7ac2a4a59c051a131612cf6da48f08036654a9"><code>ed7ac2a</code></a>
Publish v3.922.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a>
Publish v3.921.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a>
chore(codegen): sync for waiter and proxy fixes (<a
href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb/issues/7467">#7467</a>)</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a>
Publish v3.920.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a>
Publish v3.919.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a>
Publish v3.918.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/f02cfb8cddcbef032abc0d170795094dcf0fb858"><code>f02cfb8</code></a>
Publish v3.917.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/952e3495650b44b522406507c92376572a73211a"><code>952e349</code></a>
Publish v3.916.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/2d30ee72d3a6e3741d3cab50890bf72a5d8e60c2"><code>2d30ee7</code></a>
chore(codegen): update for expect 100-continue handling (<a
href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb/issues/7451">#7451</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-dynamodb">compare
view</a></li>
</ul>
</details>
<br />
Updates `@aws-sdk/client-lambda` from 3.917.0 to 3.922.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@aws-sdk/client-lambda</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.922.0</h2>
<h4>3.922.0(2025-10-31)</h4>
<h5>New Features</h5>
<ul>
<li><strong>clients:</strong> update client endpoints as of 2025-10-31
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/a3fc323e3571b964579c62897dacd7594ac21039">a3fc323e</a>)</li>
<li><strong>client-fms:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/52136e4a9a28914466ce014ac6ecdb70535b73eb">52136e4a</a>)</li>
<li><strong>client-sagemaker:</strong> Allow update of platform
identifier via UpdateNotebookInstance operation. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/7e15a9e2a9219ea8d18a0bf727ed7662123c114d">7e15a9e2</a>)</li>
<li><strong>client-lambda:</strong> Add Python3.14 (python3.14) and Java
25 (java25) support to AWS Lambda (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e">833a43f4</a>)</li>
<li><strong>client-cloudwatch-logs:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/e778e04b27efc0ca84c9fcf2853d6cd72be4e83a">e778e04b</a>)</li>
<li><strong>client-mediaconvert:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/ad80a044c436904942cfff4bcc129ecf3548317e">ad80a044</a>)</li>
<li><strong>client-redshift:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/8dab0d0cfe839961312fa5e76fd209a61c6e4c29">8dab0d0c</a>)</li>
<li><strong>client-ec2:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/21a7dd3827939fd8ad9ab779e846828c7c0886e9">21a7dd38</a>)</li>
<li><strong>client-emr:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/647ff669489c02674018d10978648ffce0e04591">647ff669</a>)</li>
<li><strong>client-connectcases:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/c5f00435976177f5b8e5d463dbd47b161d9effa3">c5f00435</a>)</li>
<li><strong>client-health:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/91db038de61cf965fab440f21ed7a605290f19c5">91db038d</a>)</li>
<li><strong>client-snowball:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/dbcb489e79bd97bec05060e035e5d26c70c90a26">dbcb489e</a>)</li>
<li><strong>client-resource-groups-tagging-api:</strong> Update endpoint
ruleset parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/808f229ff624016ae1dde73e280f3fcdbd6d83cc">808f229f</a>)</li>
<li><strong>client-textract:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/2d00f767fb1ef8fffcd258eb0c9642ec9f626141">2d00f767</a>)</li>
<li><strong>client-fsx:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/fa7903c368ee556ccd6028f02e39b15e04795515">fa7903c3</a>)</li>
<li><strong>client-kinesis:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/1fbd3b63e2f774d570d2c32772e05c24c97b2d7b">1fbd3b63</a>)</li>
<li><strong>client-waf:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/88423667134e71531a050a44f14913687b9df0c2">88423667</a>)</li>
<li><strong>client-marketplace-catalog:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/84ab3c44a1cecf05400e1f536d27edf370dfbbd5">84ab3c44</a>)</li>
<li><strong>client-ssm-quicksetup:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/6bda7950cdc2fba106e2acbd5cd061b7f2006bba">6bda7950</a>)</li>
<li><strong>client-payment-cryptography:</strong> Allow additional
characters in the CertificateSubject for GetCertificateSigningRequest
API. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/71d7f21d08ca7730acc50974fb0ddf3ae55bcdf9">71d7f21d</a>)</li>
<li><strong>client-savingsplans:</strong> Add dual-stack endpoint
support for Savings Plans (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/bbb2fe9f880cf941e1b47a770c9f7c27653ce408">bbb2fe9f</a>)</li>
<li><strong>client-omics:</strong> Added WDL_LENIENT engine type that
enables implicit typecasting of variable values to its compatible
declared types (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/efb1c6fb5fb59f991c90b9829c0b59201f3de761">efb1c6fb</a>)</li>
</ul>
<h5>Bug Fixes</h5>
<ul>
<li><strong>middleware-user-agent:</strong> allow hash in userAgentAppId
and propagate to inner clients (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7469">#7469</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/03d94d1e02e1bbb62eabe32876d5137027aabb5b">03d94d1e</a>)</li>
</ul>
<h5>Tests</h5>
<ul>
<li><strong>client-s3:</strong> increase bucket name randomness (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7468">#7468</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/889767cbae5d73b057b32361e4f61977111549e0">889767cb</a>)</li>
</ul>
<hr />
<p>For list of updated packages, view
<strong>updated-packages.md</strong> in
<strong>assets-3.922.0.zip</strong></p>
<h2>v3.921.0</h2>
<h4>3.921.0(2025-10-30)</h4>
<h5>Chores</h5>
<ul>
<li><strong>codegen:</strong> sync for waiter and proxy fixes (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li>
</ul>
<h5>Documentation Changes</h5>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-lambda/CHANGELOG.md"><code>@aws-sdk/client-lambda</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.921.0...v3.922.0">3.922.0</a>
(2025-10-31)</h1>
<h3>Features</h3>
<ul>
<li><strong>client-lambda:</strong> Add Python3.14 (python3.14) and Java
25 (java25) support to AWS Lambda (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e">833a43f</a>)</li>
</ul>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.920.0...v3.921.0">3.921.0</a>
(2025-10-30)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-lambda</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.919.0...v3.920.0">3.920.0</a>
(2025-10-29)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-lambda</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.918.0...v3.919.0">3.919.0</a>
(2025-10-28)</h1>
<h3>Features</h3>
<ul>
<li><strong>client-lambda:</strong> Added
SerializedRequestEntityTooLargeException to Lambda Invoke API (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/2a5606e9eb81aa2e688d9515e4e30cf4a8533b49">2a5606e</a>)</li>
</ul>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a>
(2025-10-27)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-lambda</code></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/ed7ac2a4a59c051a131612cf6da48f08036654a9"><code>ed7ac2a</code></a>
Publish v3.922.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e"><code>833a43f</code></a>
feat(client-lambda): Add Python3.14 (python3.14) and Java 25 (java25)
support...</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a>
Publish v3.921.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a>
chore(codegen): sync for waiter and proxy fixes (<a
href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda/issues/7467">#7467</a>)</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a>
Publish v3.920.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a>
Publish v3.919.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/2a5606e9eb81aa2e688d9515e4e30cf4a8533b49"><code>2a5606e</code></a>
feat(client-lambda): Added SerializedRequestEntityTooLargeException to
Lambda...</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a>
Publish v3.918.0</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-lambda">compare
view</a></li>
</ul>
</details>
<br />
Updates `@aws-sdk/client-secrets-manager` from 3.917.0 to 3.922.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@aws-sdk/client-secrets-manager</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.922.0</h2>
<h4>3.922.0(2025-10-31)</h4>
<h5>New Features</h5>
<ul>
<li><strong>clients:</strong> update client endpoints as of 2025-10-31
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/a3fc323e3571b964579c62897dacd7594ac21039">a3fc323e</a>)</li>
<li><strong>client-fms:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/52136e4a9a28914466ce014ac6ecdb70535b73eb">52136e4a</a>)</li>
<li><strong>client-sagemaker:</strong> Allow update of platform
identifier via UpdateNotebookInstance operation. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/7e15a9e2a9219ea8d18a0bf727ed7662123c114d">7e15a9e2</a>)</li>
<li><strong>client-lambda:</strong> Add Python3.14 (python3.14) and Java
25 (java25) support to AWS Lambda (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e">833a43f4</a>)</li>
<li><strong>client-cloudwatch-logs:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/e778e04b27efc0ca84c9fcf2853d6cd72be4e83a">e778e04b</a>)</li>
<li><strong>client-mediaconvert:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/ad80a044c436904942cfff4bcc129ecf3548317e">ad80a044</a>)</li>
<li><strong>client-redshift:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/8dab0d0cfe839961312fa5e76fd209a61c6e4c29">8dab0d0c</a>)</li>
<li><strong>client-ec2:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/21a7dd3827939fd8ad9ab779e846828c7c0886e9">21a7dd38</a>)</li>
<li><strong>client-emr:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/647ff669489c02674018d10978648ffce0e04591">647ff669</a>)</li>
<li><strong>client-connectcases:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/c5f00435976177f5b8e5d463dbd47b161d9effa3">c5f00435</a>)</li>
<li><strong>client-health:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/91db038de61cf965fab440f21ed7a605290f19c5">91db038d</a>)</li>
<li><strong>client-snowball:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/dbcb489e79bd97bec05060e035e5d26c70c90a26">dbcb489e</a>)</li>
<li><strong>client-resource-groups-tagging-api:</strong> Update endpoint
ruleset parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/808f229ff624016ae1dde73e280f3fcdbd6d83cc">808f229f</a>)</li>
<li><strong>client-textract:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/2d00f767fb1ef8fffcd258eb0c9642ec9f626141">2d00f767</a>)</li>
<li><strong>client-fsx:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/fa7903c368ee556ccd6028f02e39b15e04795515">fa7903c3</a>)</li>
<li><strong>client-kinesis:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/1fbd3b63e2f774d570d2c32772e05c24c97b2d7b">1fbd3b63</a>)</li>
<li><strong>client-waf:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/88423667134e71531a050a44f14913687b9df0c2">88423667</a>)</li>
<li><strong>client-marketplace-catalog:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/84ab3c44a1cecf05400e1f536d27edf370dfbbd5">84ab3c44</a>)</li>
<li><strong>client-ssm-quicksetup:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/6bda7950cdc2fba106e2acbd5cd061b7f2006bba">6bda7950</a>)</li>
<li><strong>client-payment-cryptography:</strong> Allow additional
characters in the CertificateSubject for GetCertificateSigningRequest
API. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/71d7f21d08ca7730acc50974fb0ddf3ae55bcdf9">71d7f21d</a>)</li>
<li><strong>client-savingsplans:</strong> Add dual-stack endpoint
support for Savings Plans (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/bbb2fe9f880cf941e1b47a770c9f7c27653ce408">bbb2fe9f</a>)</li>
<li><strong>client-omics:</strong> Added WDL_LENIENT engine type that
enables implicit typecasting of variable values to its compatible
declared types (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/efb1c6fb5fb59f991c90b9829c0b59201f3de761">efb1c6fb</a>)</li>
</ul>
<h5>Bug Fixes</h5>
<ul>
<li><strong>middleware-user-agent:</strong> allow hash in userAgentAppId
and propagate to inner clients (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7469">#7469</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/03d94d1e02e1bbb62eabe32876d5137027aabb5b">03d94d1e</a>)</li>
</ul>
<h5>Tests</h5>
<ul>
<li><strong>client-s3:</strong> increase bucket name randomness (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7468">#7468</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/889767cbae5d73b057b32361e4f61977111549e0">889767cb</a>)</li>
</ul>
<hr />
<p>For list of updated packages, view
<strong>updated-packages.md</strong> in
<strong>assets-3.922.0.zip</strong></p>
<h2>v3.921.0</h2>
<h4>3.921.0(2025-10-30)</h4>
<h5>Chores</h5>
<ul>
<li><strong>codegen:</strong> sync for waiter and proxy fixes (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li>
</ul>
<h5>Documentation Changes</h5>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-secrets-manager/CHANGELOG.md"><code>@aws-sdk/client-secrets-manager</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.921.0...v3.922.0">3.922.0</a>
(2025-10-31)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-secrets-manager</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.920.0...v3.921.0">3.921.0</a>
(2025-10-30)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-secrets-manager</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.919.0...v3.920.0">3.920.0</a>
(2025-10-29)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-secrets-manager</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.918.0...v3.919.0">3.919.0</a>
(2025-10-28)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-secrets-manager</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a>
(2025-10-27)</h1>
<h3>Features</h3>
<ul>
<li><strong>client-secrets-manager:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/462f87ad4795fac80c86f83d2c4237a72d4a114d">462f87a</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/ed7ac2a4a59c051a131612cf6da48f08036654a9"><code>ed7ac2a</code></a>
Publish v3.922.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a>
Publish v3.921.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a>
chore(codegen): sync for waiter and proxy fixes (<a
href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager/issues/7467">#7467</a>)</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a>
Publish v3.920.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a>
Publish v3.919.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a>
Publish v3.918.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/462f87ad4795fac80c86f83d2c4237a72d4a114d"><code>462f87a</code></a>
feat(client-secrets-manager): Update endpoint ruleset parameters
casing</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-secrets-manager">compare
view</a></li>
</ul>
</details>
<br />
Updates `@aws-sdk/client-ses` from 3.917.0 to 3.922.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@aws-sdk/client-ses</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.922.0</h2>
<h4>3.922.0(2025-10-31)</h4>
<h5>New Features</h5>
<ul>
<li><strong>clients:</strong> update client endpoints as of 2025-10-31
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/a3fc323e3571b964579c62897dacd7594ac21039">a3fc323e</a>)</li>
<li><strong>client-fms:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/52136e4a9a28914466ce014ac6ecdb70535b73eb">52136e4a</a>)</li>
<li><strong>client-sagemaker:</strong> Allow update of platform
identifier via UpdateNotebookInstance operation. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/7e15a9e2a9219ea8d18a0bf727ed7662123c114d">7e15a9e2</a>)</li>
<li><strong>client-lambda:</strong> Add Python3.14 (python3.14) and Java
25 (java25) support to AWS Lambda (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e">833a43f4</a>)</li>
<li><strong>client-cloudwatch-logs:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/e778e04b27efc0ca84c9fcf2853d6cd72be4e83a">e778e04b</a>)</li>
<li><strong>client-mediaconvert:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/ad80a044c436904942cfff4bcc129ecf3548317e">ad80a044</a>)</li>
<li><strong>client-redshift:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/8dab0d0cfe839961312fa5e76fd209a61c6e4c29">8dab0d0c</a>)</li>
<li><strong>client-ec2:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/21a7dd3827939fd8ad9ab779e846828c7c0886e9">21a7dd38</a>)</li>
<li><strong>client-emr:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/647ff669489c02674018d10978648ffce0e04591">647ff669</a>)</li>
<li><strong>client-connectcases:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/c5f00435976177f5b8e5d463dbd47b161d9effa3">c5f00435</a>)</li>
<li><strong>client-health:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/91db038de61cf965fab440f21ed7a605290f19c5">91db038d</a>)</li>
<li><strong>client-snowball:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/dbcb489e79bd97bec05060e035e5d26c70c90a26">dbcb489e</a>)</li>
<li><strong>client-resource-groups-tagging-api:</strong> Update endpoint
ruleset parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/808f229ff624016ae1dde73e280f3fcdbd6d83cc">808f229f</a>)</li>
<li><strong>client-textract:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/2d00f767fb1ef8fffcd258eb0c9642ec9f626141">2d00f767</a>)</li>
<li><strong>client-fsx:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/fa7903c368ee556ccd6028f02e39b15e04795515">fa7903c3</a>)</li>
<li><strong>client-kinesis:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/1fbd3b63e2f774d570d2c32772e05c24c97b2d7b">1fbd3b63</a>)</li>
<li><strong>client-waf:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/88423667134e71531a050a44f14913687b9df0c2">88423667</a>)</li>
<li><strong>client-marketplace-catalog:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/84ab3c44a1cecf05400e1f536d27edf370dfbbd5">84ab3c44</a>)</li>
<li><strong>client-ssm-quicksetup:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/6bda7950cdc2fba106e2acbd5cd061b7f2006bba">6bda7950</a>)</li>
<li><strong>client-payment-cryptography:</strong> Allow additional
characters in the CertificateSubject for GetCertificateSigningRequest
API. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/71d7f21d08ca7730acc50974fb0ddf3ae55bcdf9">71d7f21d</a>)</li>
<li><strong>client-savingsplans:</strong> Add dual-stack endpoint
support for Savings Plans (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/bbb2fe9f880cf941e1b47a770c9f7c27653ce408">bbb2fe9f</a>)</li>
<li><strong>client-omics:</strong> Added WDL_LENIENT engine type that
enables implicit typecasting of variable values to its compatible
declared types (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/efb1c6fb5fb59f991c90b9829c0b59201f3de761">efb1c6fb</a>)</li>
</ul>
<h5>Bug Fixes</h5>
<ul>
<li><strong>middleware-user-agent:</strong> allow hash in userAgentAppId
and propagate to inner clients (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7469">#7469</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/03d94d1e02e1bbb62eabe32876d5137027aabb5b">03d94d1e</a>)</li>
</ul>
<h5>Tests</h5>
<ul>
<li><strong>client-s3:</strong> increase bucket name randomness (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7468">#7468</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/889767cbae5d73b057b32361e4f61977111549e0">889767cb</a>)</li>
</ul>
<hr />
<p>For list of updated packages, view
<strong>updated-packages.md</strong> in
<strong>assets-3.922.0.zip</strong></p>
<h2>v3.921.0</h2>
<h4>3.921.0(2025-10-30)</h4>
<h5>Chores</h5>
<ul>
<li><strong>codegen:</strong> sync for waiter and proxy fixes (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li>
</ul>
<h5>Documentation Changes</h5>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ses/CHANGELOG.md"><code>@aws-sdk/client-ses</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.921.0...v3.922.0">3.922.0</a>
(2025-10-31)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-ses</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.920.0...v3.921.0">3.921.0</a>
(2025-10-30)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-ses</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.919.0...v3.920.0">3.920.0</a>
(2025-10-29)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-ses</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.918.0...v3.919.0">3.919.0</a>
(2025-10-28)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-ses</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a>
(2025-10-27)</h1>
<h3>Features</h3>
<ul>
<li><strong>client-ses:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/9c056ab10c070a4c4b317921d3ac332c2d68d010">9c056ab</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/ed7ac2a4a59c051a131612cf6da48f08036654a9"><code>ed7ac2a</code></a>
Publish v3.922.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a>
Publish v3.921.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a>
chore(codegen): sync for waiter and proxy fixes (<a
href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ses/issues/7467">#7467</a>)</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a>
Publish v3.920.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a>
Publish v3.919.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a>
Publish v3.918.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/9c056ab10c070a4c4b317921d3ac332c2d68d010"><code>9c056ab</code></a>
feat(client-ses): Update endpoint ruleset parameters casing</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-ses">compare
view</a></li>
</ul>
</details>
<br />
Updates `@aws-sdk/client-sqs` from 3.917.0 to 3.922.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@aws-sdk/client-sqs</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.922.0</h2>
<h4>3.922.0(2025-10-31)</h4>
<h5>New Features</h5>
<ul>
<li><strong>clients:</strong> update client endpoints as of 2025-10-31
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/a3fc323e3571b964579c62897dacd7594ac21039">a3fc323e</a>)</li>
<li><strong>client-fms:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/52136e4a9a28914466ce014ac6ecdb70535b73eb">52136e4a</a>)</li>
<li><strong>client-sagemaker:</strong> Allow update of platform
identifier via UpdateNotebookInstance operation. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/7e15a9e2a9219ea8d18a0bf727ed7662123c114d">7e15a9e2</a>)</li>
<li><strong>client-lambda:</strong> Add Python3.14 (python3.14) and Java
25 (java25) support to AWS Lambda (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e">833a43f4</a>)</li>
<li><strong>client-cloudwatch-logs:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/e778e04b27efc0ca84c9fcf2853d6cd72be4e83a">e778e04b</a>)</li>
<li><strong>client-mediaconvert:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/ad80a044c436904942cfff4bcc129ecf3548317e">ad80a044</a>)</li>
<li><strong>client-redshift:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/8dab0d0cfe839961312fa5e76fd209a61c6e4c29">8dab0d0c</a>)</li>
<li><strong>client-ec2:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/21a7dd3827939fd8ad9ab779e846828c7c0886e9">21a7dd38</a>)</li>
<li><strong>client-emr:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/647ff669489c02674018d10978648ffce0e04591">647ff669</a>)</li>
<li><strong>client-connectcases:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/c5f00435976177f5b8e5d463dbd47b161d9effa3">c5f00435</a>)</li>
<li><strong>client-health:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/91db038de61cf965fab440f21ed7a605290f19c5">91db038d</a>)</li>
<li><strong>client-snowball:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/dbcb489e79bd97bec05060e035e5d26c70c90a26">dbcb489e</a>)</li>
<li><strong>client-resource-groups-tagging-api:</strong> Update endpoint
ruleset parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/808f229ff624016ae1dde73e280f3fcdbd6d83cc">808f229f</a>)</li>
<li><strong>client-textract:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/2d00f767fb1ef8fffcd258eb0c9642ec9f626141">2d00f767</a>)</li>
<li><strong>client-fsx:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/fa7903c368ee556ccd6028f02e39b15e04795515">fa7903c3</a>)</li>
<li><strong>client-kinesis:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/1fbd3b63e2f774d570d2c32772e05c24c97b2d7b">1fbd3b63</a>)</li>
<li><strong>client-waf:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/88423667134e71531a050a44f14913687b9df0c2">88423667</a>)</li>
<li><strong>client-marketplace-catalog:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/84ab3c44a1cecf05400e1f536d27edf370dfbbd5">84ab3c44</a>)</li>
<li><strong>client-ssm-quicksetup:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/6bda7950cdc2fba106e2acbd5cd061b7f2006bba">6bda7950</a>)</li>
<li><strong>client-payment-cryptography:</strong> Allow additional
characters in the CertificateSubject for GetCertificateSigningRequest
API. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/71d7f21d08ca7730acc50974fb0ddf3ae55bcdf9">71d7f21d</a>)</li>
<li><strong>client-savingsplans:</strong> Add dual-stack endpoint
support for Savings Plans (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/bbb2fe9f880cf941e1b47a770c9f7c27653ce408">bbb2fe9f</a>)</li>
<li><strong>client-omics:</strong> Added WDL_LENIENT engine type that
enables implicit typecasting of variable values to its compatible
declared types (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/efb1c6fb5fb59f991c90b9829c0b59201f3de761">efb1c6fb</a>)</li>
</ul>
<h5>Bug Fixes</h5>
<ul>
<li><strong>middleware-user-agent:</strong> allow hash in userAgentAppId
and propagate to inner clients (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7469">#7469</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/03d94d1e02e1bbb62eabe32876d5137027aabb5b">03d94d1e</a>)</li>
</ul>
<h5>Tests</h5>
<ul>
<li><strong>client-s3:</strong> increase bucket name randomness (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7468">#7468</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/889767cbae5d73b057b32361e4f61977111549e0">889767cb</a>)</li>
</ul>
<hr />
<p>For list of updated packages, view
<strong>updated-packages.md</strong> in
<strong>assets-3.922.0.zip</strong></p>
<h2>v3.921.0</h2>
<h4>3.921.0(2025-10-30)</h4>
<h5>Chores</h5>
<ul>
<li><strong>codegen:</strong> sync for waiter and proxy fixes (<a
href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7467">#7467</a>)
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76">da06f0ed</a>)</li>
</ul>
<h5>Documentation Changes</h5>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sqs/CHANGELOG.md"><code>@aws-sdk/client-sqs</code>'s
changelog</a>.</em></p>
<blockquote>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.921.0...v3.922.0">3.922.0</a>
(2025-10-31)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-sqs</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.920.0...v3.921.0">3.921.0</a>
(2025-10-30)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-sqs</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.919.0...v3.920.0">3.920.0</a>
(2025-10-29)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-sqs</code></p>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.918.0...v3.919.0">3.919.0</a>
(2025-10-28)</h1>
<h3>Features</h3>
<ul>
<li><strong>client-sqs:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/250af94a93acc29ba382baf00cb74feb4d00de6a">250af94</a>)</li>
</ul>
<h1><a
href="https://github.com/aws/aws-sdk-js-v3/compare/v3.917.0...v3.918.0">3.918.0</a>
(2025-10-27)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@aws-sdk/client-sqs</code></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/ed7ac2a4a59c051a131612cf6da48f08036654a9"><code>ed7ac2a</code></a>
Publish v3.922.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/e8b9fd86d8f50c31a2ddd6fedd118fa179165961"><code>e8b9fd8</code></a>
Publish v3.921.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/da06f0ed4576b7d77bce1211ae0c5ec66028db76"><code>da06f0e</code></a>
chore(codegen): sync for waiter and proxy fixes (<a
href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7467">#7467</a>)</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/1d4bdbfbbbb7ba200d8cf540bd18504fb377767b"><code>1d4bdbf</code></a>
Publish v3.920.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/6865eb62a2209ff8eed389e5091cc546548af983"><code>6865eb6</code></a>
Publish v3.919.0</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/250af94a93acc29ba382baf00cb74feb4d00de6a"><code>250af94</code></a>
feat(client-sqs): Update endpoint ruleset parameters casing</li>
<li><a
href="https://github.com/aws/aws-sdk-js-v3/commit/58bb924b940193884d40c1d6f794e829b1e3982a"><code>58bb924</code></a>
Publish v3.918.0</li>
<li>See full diff in <a
href="https://github.com/aws/aws-sdk-js-v3/commits/v3.922.0/clients/client-sqs">compare
view</a></li>
</ul>
</details>
<br />
Updates `@aws-sdk/client-sts` from 3.917.0 to 3.922.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@aws-sdk/client-sts</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v3.922.0</h2>
<h4>3.922.0(2025-10-31)</h4>
<h5>New Features</h5>
<ul>
<li><strong>clients:</strong> update client endpoints as of 2025-10-31
(<a
href="https://github.com/aws/aws-sdk-js-v3/commit/a3fc323e3571b964579c62897dacd7594ac21039">a3fc323e</a>)</li>
<li><strong>client-fms:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/52136e4a9a28914466ce014ac6ecdb70535b73eb">52136e4a</a>)</li>
<li><strong>client-sagemaker:</strong> Allow update of platform
identifier via UpdateNotebookInstance operation. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/7e15a9e2a9219ea8d18a0bf727ed7662123c114d">7e15a9e2</a>)</li>
<li><strong>client-lambda:</strong> Add Python3.14 (python3.14) and Java
25 (java25) support to AWS Lambda (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/833a43f453e25c76e7aa06dc4eaa8a2d498a536e">833a43f4</a>)</li>
<li><strong>client-cloudwatch-logs:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/e778e04b27efc0ca84c9fcf2853d6cd72be4e83a">e778e04b</a>)</li>
<li><strong>client-mediaconvert:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/ad80a044c436904942cfff4bcc129ecf3548317e">ad80a044</a>)</li>
<li><strong>client-redshift:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/8dab0d0cfe839961312fa5e76fd209a61c6e4c29">8dab0d0c</a>)</li>
<li><strong>client-ec2:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/21a7dd3827939fd8ad9ab779e846828c7c0886e9">21a7dd38</a>)</li>
<li><strong>client-emr:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/647ff669489c02674018d10978648ffce0e04591">647ff669</a>)</li>
<li><strong>client-connectcases:</strong> 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. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/c5f00435976177f5b8e5d463dbd47b161d9effa3">c5f00435</a>)</li>
<li><strong>client-health:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/91db038de61cf965fab440f21ed7a605290f19c5">91db038d</a>)</li>
<li><strong>client-snowball:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/dbcb489e79bd97bec05060e035e5d26c70c90a26">dbcb489e</a>)</li>
<li><strong>client-resource-groups-tagging-api:</strong> Update endpoint
ruleset parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/808f229ff624016ae1dde73e280f3fcdbd6d83cc">808f229f</a>)</li>
<li><strong>client-textract:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/2d00f767fb1ef8fffcd258eb0c9642ec9f626141">2d00f767</a>)</li>
<li><strong>client-fsx:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/fa7903c368ee556ccd6028f02e39b15e04795515">fa7903c3</a>)</li>
<li><strong>client-kinesis:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/1fbd3b63e2f774d570d2c32772e05c24c97b2d7b">1fbd3b63</a>)</li>
<li><strong>client-waf:</strong> Update endpoint ruleset parameters
casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/88423667134e71531a050a44f14913687b9df0c2">88423667</a>)</li>
<li><strong>client-marketplace-catalog:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/84ab3c44a1cecf05400e1f536d27edf370dfbbd5">84ab3c44</a>)</li>
<li><strong>client-ssm-quicksetup:</strong> Update endpoint ruleset
parameters casing (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/6bda7950cdc2fba106e2acbd5cd061b7f2006bba">6bda7950</a>)</li>
<li><strong>client-payment-cryptography:</strong> Allow additional
characters in the CertificateSubject for GetCertificateSigningRequest
API. (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/71d7f21d08ca7730acc50974fb0ddf3ae55bcdf9">71d7f21d</a>)</li>
<li><strong>client-savingsplans:</strong> Add dual-stack endpoint
support for Savings Plans (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/bbb2fe9f880cf941e1b47a770c9f7c27653ce408">bbb2fe9f</a>)</li>
<li><strong>client-omics:</strong> Added WDL_LENIENT engine type that
enables implicit typecasting of variable values to its compatible
declared types (<a
href="https://github.com/aws/aws-sdk-js-v3/commit/efb1c6fb5fb59f...
_Description has been tru…1 parent c10e48c commit 06aa3c0Copy full SHA for 06aa3c0
File tree
Expand file treeCollapse file tree
5 files changed
+742
-1655
lines changedOpen diff view settings
Filter options
- src
- api
- archival
- ui
Expand file treeCollapse file tree
5 files changed
+742
-1655
lines changedOpen diff view settings
Collapse file
+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
Collapse file
+16-16Lines changed: 16 additions & 16 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | | - | |
42 | | - | |
| 41 | + | |
| 42 | + | |
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | | - | |
| 49 | + | |
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
57 | | - | |
| 56 | + | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
61 | | - | |
| 61 | + | |
62 | 62 | | |
63 | | - | |
| 63 | + | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
| |||
Collapse file
+4-4Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | | - | |
24 | | - | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
Collapse file
+11-11Lines changed: 11 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
26 | 26 | | |
27 | | - | |
28 | | - | |
29 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
33 | | - | |
| 32 | + | |
| 33 | + | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | | - | |
| 46 | + | |
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| |||
0 commit comments