-
Notifications
You must be signed in to change notification settings - Fork 722
Comparing changes
Open a pull request
base repository: github-aws-runners/terraform-aws-github-runner
base: v7.5.0
head repository: github-aws-runners/terraform-aws-github-runner
compare: v7.6.0
- 13 commits
- 29 files changed
- 5 contributors
Commits on Mar 18, 2026
-
fix(logging): update log_class to log_group_class in CloudWatch agent…
… configuration (#5073) ### Description CloudWatch agent config stored in SSM used log_class inside each collect_list entry. The agent’s JSON schema only allows log_group_class there, so validation failed with “Additional property log_class is not allowed” and runner user-data exited before the GitHub runner started ([issue #5065](#5065)). This PR maps the Terraform log_class value to log_group_class in the serialized logfiles blob passed to cloudwatch_config.json, and updates loggroups_classes to read log_group_class from local.logfiles so aws_cloudwatch_log_group behavior stays aligned. ## Related Issues Fixes [#5065](#5065)
Configuration menu - View commit details
-
Copy full SHA for 6d3b7db - Browse repository at this point
Copy the full SHA 6d3b7dbView commit details
Commits on Mar 30, 2026
-
Configuration menu - View commit details
-
Copy full SHA for efbaa6f - Browse repository at this point
Copy the full SHA efbaa6fView commit details
Commits on Apr 1, 2026
-
fix(lambda): bump path-to-regexp from 8.2.0 to 8.4.0 in /lambdas (#5082)
Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) from 8.2.0 to 8.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pillarjs/path-to-regexp/releases">path-to-regexp's releases</a>.</em></p> <blockquote> <h2>8.4.0</h2> <p><strong>Important</strong></p> <ul> <li>Fix <a href="https://www.cve.org/CVERecord?id=CVE-2026-4926">CVE-2026-4926</a> (<a href="https://github.com/pillarjs/path-to-regexp/security/advisories/GHSA-j3q9-mxjg-w52f">GHSA-j3q9-mxjg-w52f</a>)</li> <li>Fix <a href="https://www.cve.org/CVERecord?id=CVE-2026-4923">CVE-2026-4923</a> (<a href="https://github.com/pillarjs/path-to-regexp/security/advisories/GHSA-27v5-c462-wpq7">GHSA-27v5-c462-wpq7</a>)</li> </ul> <p><strong>Fixed</strong></p> <ul> <li>Restricts wildcard backtracking when using more than 1 in a path (<a href="https://redirect.github.com/pillarjs/path-to-regexp/pull/421">pillarjs/path-to-regexp#421</a>)</li> </ul> <p><strong>Changed</strong></p> <ul> <li>Dedupes regex prefixes (<a href="https://redirect.github.com/pillarjs/path-to-regexp/pull/422">pillarjs/path-to-regexp#422</a>) <ul> <li>This will result in shorter regular expressions for some cases using optional groups</li> </ul> </li> <li>Rejects large optional route combinations (<a href="https://redirect.github.com/pillarjs/path-to-regexp/pull/424">pillarjs/path-to-regexp#424</a>) <ul> <li>When using groups such as <code>/users{/delete}</code> it will restrict the number of generated combinations to < 256, equivalent to 8 top-level optional groups and unlikely to occur in a real world application, but avoids exploding the regex size for applications that accept user created routes</li> </ul> </li> </ul> <h2>8.3.0</h2> <p><strong>Changed</strong></p> <ul> <li>Add custom error class (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/398">#398</a>) 2a7f2a4</li> <li>Allow plain objects for <code>TokenData</code> (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/391">#391</a>) 687a9bb</li> <li>Escape text should escape backslash (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/390">#390</a>) a4a8552</li> <li>Improved error messages and stack size (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/363">#363</a>) a6bdf40</li> </ul> <p><strong>Other</strong></p> <ul> <li>Minifying the parser <ul> <li>PR (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/401">#401</a>) 9df2448</li> <li>PR (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/395">#395</a>) 4a91505</li> <li>Shaving some bytes d63f44b</li> <li>Remove optional operator 973d15c</li> </ul> </li> </ul> <p><a href="https://github.com/pillarjs/path-to-regexp/compare/v8.2.0...v8.3.0">https://github.com/pillarjs/path-to-regexp/compare/v8.2.0...v8.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/34cb451ddaeea4783a2fe60579ffb3e4ccfc73a7"><code>34cb451</code></a> 8.4.0</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/22a967901afc8b2b42eefe456faa7b6773dcc415"><code>22a9679</code></a> Reject large optional route combinations (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/424">#424</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/8881a88930cf96ebaa00412a8e87cdd601bb3f3d"><code>8881a88</code></a> Byte optimization (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/423">#423</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/43669ac637fe70fad33693d145a74d98179152ce"><code>43669ac</code></a> Dedupe regex prefixes (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/422">#422</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/48646547da685c1ccb76a95fe23373975a91e200"><code>4864654</code></a> Restrict repeated wildcard backtracking (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/421">#421</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/05a5a973702a863fb69415294503d13cb9d18b20"><code>05a5a97</code></a> Remove dependabot config (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/404">#404</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/5b635cd1bd1d6d7ed6023d8834ae6e6a1e22461f"><code>5b635cd</code></a> Remove <code>package-lock.json</code> (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/407">#407</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/c4f5b3fc10782a5de2bee55c3e40e5af890c9cad"><code>c4f5b3f</code></a> 8.3.0</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/6587c812746cba94855867612f3a719bb25f794e"><code>6587c81</code></a> Move parameter name errors up in docs (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/402">#402</a>)</li> <li><a href="https://github.com/pillarjs/path-to-regexp/commit/9df2448fdfca9d2957cf47a1777b5deda9be18cf"><code>9df2448</code></a> Remove more bytes from parser (<a href="https://redirect.github.com/pillarjs/path-to-regexp/issues/401">#401</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pillarjs/path-to-regexp/compare/v8.2.0...v8.4.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/github-aws-runners/terraform-aws-github-runner/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 25ec471 - Browse repository at this point
Copy the full SHA 25ec471View commit details -
chore(deps): bump the github group across 1 directory with 4 updates (#…
…5080) Bumps the github group with 4 updates in the / directory: [actions/dependency-review-action](https://github.com/actions/dependency-review-action), [actions/setup-node](https://github.com/actions/setup-node), [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [actions/cache](https://github.com/actions/cache). Updates `actions/dependency-review-action` from 4.8.2 to 4.9.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/dependency-review-action/releases">actions/dependency-review-action's releases</a>.</em></p> <blockquote> <h2>Dependency Review Action 4.9.0</h2> <p>This feature release contains a couple of notable changes:</p> <ul> <li>There is a new configuration option <code>show_patched_versions</code> which will add a column to the output, showing the fix version of each vulnerable dependency. Thanks <a href="https://github.com/felickz"><code>@felickz</code></a>!</li> <li>Runs which do not display OpenSSF scorecards no longer fetch scorecard information; previously it was fetched regardless of whether or not it was displayed, causing unneccessary slowness. Great catch <a href="https://github.com/jantiebot"><code>@jantiebot</code></a>!</li> <li>There are a couple of fixes to purl parsing which should improve match accuracy for <code>allow-package-dependency</code> lists, including case (in)sensitivity and url-encoded namespaces Thanks <a href="https://github.com/juxtin"><code>@juxtin</code></a>!</li> </ul> <h2>What's Changed</h2> <ul> <li>Compare normalized purls to account for encoding quirks by <a href="https://github.com/juxtin"><code>@juxtin</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1056">actions/dependency-review-action#1056</a></li> <li>Make purl comparisons case insensitive by <a href="https://github.com/juxtin"><code>@juxtin</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1057">actions/dependency-review-action#1057</a></li> <li>Feat: Add <code>Patched Version</code> to <code>Vulnerabilities</code> summary by <a href="https://github.com/felickz"><code>@felickz</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1045">actions/dependency-review-action#1045</a></li> <li>fix: only get scorecard levels if user wants to see the OpenSSF scorecard by <a href="https://github.com/jantiebot"><code>@jantiebot</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1060">actions/dependency-review-action#1060</a></li> <li>Bump actions/stale from 10.1.0 to 10.2.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1058">actions/dependency-review-action#1058</a></li> <li>Bump actions/checkout from 4 to 6 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1021">actions/dependency-review-action#1021</a></li> <li>Updates for release 4.9.0 by <a href="https://github.com/ahpook"><code>@ahpook</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1064">actions/dependency-review-action#1064</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/jantiebot"><code>@jantiebot</code></a> made their first contribution in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1060">actions/dependency-review-action#1060</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/dependency-review-action/compare/v4.8.3...v4.9.0">https://github.com/actions/dependency-review-action/compare/v4.8.3...v4.9.0</a></p> <h2>4.8.3</h2> <h2>Dependency Review Action v4.8.3</h2> <p>This is a bugfix release that updates a number of upstream dependencies and includes a fix for the earlier feature that detected oversized summaries and upload them as artifacts, which could occasionally crash the action.</p> <p>We have also updated the release process to use a long-lived <code>v4</code> <strong>branch</strong> for the action, instead of a force-pushed tag, which aligns better with git branching strategies; the change should be transparent to end users.</p> <h2>What's Changed</h2> <ul> <li>GitHub Actions can't push to our protected main by <a href="https://github.com/dangoor"><code>@dangoor</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1017">actions/dependency-review-action#1017</a></li> <li>Bump actions/stale from 9.1.0 to 10.1.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/995">actions/dependency-review-action#995</a></li> <li>Bump github/codeql-action from 3 to 4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1003">actions/dependency-review-action#1003</a></li> <li>Bump actions/setup-node from 4 to 6 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1005">actions/dependency-review-action#1005</a></li> <li>Upgrade glob to address a vulnerability by <a href="https://github.com/brrygrdn"><code>@brrygrdn</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1024">actions/dependency-review-action#1024</a></li> <li>Bump js-yaml by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1020">actions/dependency-review-action#1020</a></li> <li>Addressing vulnerabilities by <a href="https://github.com/Ahmed3lmallah"><code>@Ahmed3lmallah</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1036">actions/dependency-review-action#1036</a></li> <li>Bump fast-xml-parser from 5.3.3 to 5.3.5 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1050">actions/dependency-review-action#1050</a></li> <li>Bump fast-xml-parser from 5.3.5 to 5.3.6 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1053">actions/dependency-review-action#1053</a></li> <li>Properly truncate long summaries and catch errors by <a href="https://github.com/juxtin"><code>@juxtin</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1052">actions/dependency-review-action#1052</a></li> <li>Bump spdx-expression-parse from 3.0.1 to 4.0.0 in the spdx-licenses group across 1 directory by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/actions/dependency-review-action/pull/931">actions/dependency-review-action#931</a></li> <li>Changes for Release 4.8.3 by <a href="https://github.com/ahpook"><code>@ahpook</code></a> in <a href="https://redirect.github.com/actions/dependency-review-action/pull/1054">actions/dependency-review-action#1054</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/dependency-review-action/compare/v4.8.2..v4.8.3">https://github.com/actions/dependency-review-action/compare/v4.8.2..v4.8.3</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/dependency-review-action/commit/2031cfc080254a8a887f58cffee85186f0e49e48"><code>2031cfc</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1064">#1064</a> from actions/ahpook/release-4.9.0</li> <li><a href="https://github.com/actions/dependency-review-action/commit/d02fa39f790d6e8a4ecafab5848251ff12c20df7"><code>d02fa39</code></a> Updates for release 4.9.0</li> <li><a href="https://github.com/actions/dependency-review-action/commit/4038a34c4b30f7c11a7d45dc8dbea40e2211aa27"><code>4038a34</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1021">#1021</a> from actions/dependabot/github_actions/actions/check...</li> <li><a href="https://github.com/actions/dependency-review-action/commit/a632b8386b2cc2b1b99427606b513f7632d27e91"><code>a632b83</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1058">#1058</a> from actions/dependabot/github_actions/actions/stale...</li> <li><a href="https://github.com/actions/dependency-review-action/commit/57a3d46a7be2c2e259fa3284ffc501296337f2ac"><code>57a3d46</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1060">#1060</a> from jantiebot/main</li> <li><a href="https://github.com/actions/dependency-review-action/commit/5ecdc4b5781cdabdfe233d6e58ec18eac23e275d"><code>5ecdc4b</code></a> Merge pull request <a href="https://redirect.github.com/actions/dependency-review-action/issues/1045">#1045</a> from forks-felickz/main</li> <li><a href="https://github.com/actions/dependency-review-action/commit/e8c2f9a12c568d6f36f8d3a9935a6c71afc691f5"><code>e8c2f9a</code></a> fix: remove inferrable type annotation to pass eslint</li> <li><a href="https://github.com/actions/dependency-review-action/commit/0e129e113c878bfe7c1abf6c6d94b180cbf71086"><code>0e129e1</code></a> Prettier - Refactor summary table rendering for improved readability</li> <li><a href="https://github.com/actions/dependency-review-action/commit/aa60746a920d63ce55376f67d381e15edd3a714d"><code>aa60746</code></a> Add 'show-patched-versions' option to configuration and update summary handling</li> <li><a href="https://github.com/actions/dependency-review-action/commit/e4047984002250b82268ac37f613ab74366e1d85"><code>e404798</code></a> Merge upstream actions/dependency-review-action main</li> <li>Additional commits viewable in <a href="https://github.com/actions/dependency-review-action/compare/3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261...2031cfc080254a8a887f58cffee85186f0e49e48">compare view</a></li> </ul> </details> <br /> Updates `actions/setup-node` from 6.2.0 to 6.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/setup-node/releases">actions/setup-node's releases</a>.</em></p> <blockquote> <h2>v6.3.0</h2> <h2>What's Changed</h2> <h3>Enhancements:</h3> <ul> <li>Support parsing <code>devEngines</code> field by <a href="https://github.com/susnux"><code>@susnux</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1283">actions/setup-node#1283</a></li> </ul> <blockquote> <p>When using node-version-file: package.json, setup-node now prefers devEngines.runtime over engines.node.</p> </blockquote> <h3>Dependency updates:</h3> <ul> <li>Fix npm audit issues by <a href="https://github.com/gowridurgad"><code>@gowridurgad</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1491">actions/setup-node#1491</a></li> <li>Replace uuid with crypto.randomUUID() by <a href="https://github.com/trivikr"><code>@trivikr</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1378">actions/setup-node#1378</a></li> <li>Upgrade minimatch from 3.1.2 to 3.1.5 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1498">actions/setup-node#1498</a></li> </ul> <h3>Bug fixes:</h3> <ul> <li>Remove hardcoded bearer for mirror-url <a href="https://github.com/marco-ippolito"><code>@marco-ippolito</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1467">actions/setup-node#1467</a></li> <li>Scope test lockfiles by package manager and update cache tests by <a href="https://github.com/gowridurgad"><code>@gowridurgad</code></a> in <a href="https://redirect.github.com/actions/setup-node/pull/1495">actions/setup-node#1495</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/susnux"><code>@susnux</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-node/pull/1283">actions/setup-node#1283</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-node/compare/v6...v6.3.0">https://github.com/actions/setup-node/compare/v6...v6.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/setup-node/commit/53b83947a5a98c8d113130e565377fae1a50d02f"><code>53b8394</code></a> Bump minimatch from 3.1.2 to 3.1.5 (<a href="https://redirect.github.com/actions/setup-node/issues/1498">#1498</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/54045abd5dcd3b0fee9ca02fa24c57545834c9cc"><code>54045ab</code></a> Scope test lockfiles by package manager and update cache tests (<a href="https://redirect.github.com/actions/setup-node/issues/1495">#1495</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/c882bffdbd4df51ace6b940023952e8669c9932a"><code>c882bff</code></a> Replace uuid with crypto.randomUUID() (<a href="https://redirect.github.com/actions/setup-node/issues/1378">#1378</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/774c1d62961e73038a114d59c8847023c003194d"><code>774c1d6</code></a> feat(node-version-file): support parsing <code>devEngines</code> field (<a href="https://redirect.github.com/actions/setup-node/issues/1283">#1283</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/efcb663fc60e97218a2b2d6d827f7830f164739e"><code>efcb663</code></a> fix: remove hardcoded bearer (<a href="https://redirect.github.com/actions/setup-node/issues/1467">#1467</a>)</li> <li><a href="https://github.com/actions/setup-node/commit/d02c89dce7e1ba9ef629ce0680989b3a1cc72edb"><code>d02c89d</code></a> Fix npm audit issues (<a href="https://redirect.github.com/actions/setup-node/issues/1491">#1491</a>)</li> <li>See full diff in <a href="https://github.com/actions/setup-node/compare/6044e13b5dc448c55e2357c09f80417699197238...53b83947a5a98c8d113130e565377fae1a50d02f">compare view</a></li> </ul> </details> <br /> Updates `actions/create-github-app-token` from 2.2.1 to 3.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/create-github-app-token/releases">actions/create-github-app-token's releases</a>.</em></p> <blockquote> <h2>v3.0.0</h2> <h1><a href="https://github.com/actions/create-github-app-token/compare/v2.2.2...v3.0.0">3.0.0</a> (2026-03-14)</h1> <ul> <li>feat!: node 24 support (<a href="https://redirect.github.com/actions/create-github-app-token/issues/275">#275</a>) (<a href="https://github.com/actions/create-github-app-token/commit/2e564a0bb8e7cc2b907b2401a2afe177882d4325">2e564a0</a>)</li> <li>fix!: require <code>NODE_USE_ENV_PROXY</code> for proxy support (<a href="https://redirect.github.com/actions/create-github-app-token/issues/342">#342</a>) (<a href="https://github.com/actions/create-github-app-token/commit/4451bcbc139f8124b0bf04f968ea2586b17df458">4451bcb</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>remove custom proxy handling (<a href="https://redirect.github.com/actions/create-github-app-token/issues/143">#143</a>) (<a href="https://github.com/actions/create-github-app-token/commit/dce0ab05f36f30b22fd14289fd36655c618e4e8e">dce0ab0</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>Custom proxy handling has been removed. If you use HTTP_PROXY or HTTPS_PROXY, you must now also set NODE_USE_ENV_PROXY=1 on the action step.</li> <li>Requires <a href="https://github.com/actions/runner/releases/tag/v2.327.1">Actions Runner v2.327.1</a> or later if you are using a self-hosted runner.</li> </ul> <h2>v3.0.0-beta.6</h2> <h1><a href="https://github.com/actions/create-github-app-token/compare/v3.0.0-beta.5...v3.0.0-beta.6">3.0.0-beta.6</a> (2026-03-13)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> bump <code>@actions/core</code> from 1.11.1 to 3.0.0 (<a href="https://redirect.github.com/actions/create-github-app-token/issues/337">#337</a>) (<a href="https://github.com/actions/create-github-app-token/commit/b04413352d4644ac2131b9a90c074f5e93ca18a1">b044133</a>)</li> <li><strong>deps:</strong> bump minimatch from 9.0.5 to 9.0.9 (<a href="https://redirect.github.com/actions/create-github-app-token/issues/335">#335</a>) (<a href="https://github.com/actions/create-github-app-token/commit/5cbc65624c9ddc4589492bda7c8b146223e8c3e4">5cbc656</a>)</li> <li><strong>deps:</strong> bump the production-dependencies group with 4 updates (<a href="https://redirect.github.com/actions/create-github-app-token/issues/336">#336</a>) (<a href="https://github.com/actions/create-github-app-token/commit/6bda5bc1410576b9a0879ce6076d53345485bba9">6bda5bc</a>)</li> <li><strong>deps:</strong> bump undici from 7.16.0 to 7.18.2 (<a href="https://redirect.github.com/actions/create-github-app-token/issues/323">#323</a>) (<a href="https://github.com/actions/create-github-app-token/commit/b4f638f48ee0dcdbb0bc646c48e4cb2a2de847fe">b4f638f</a>)</li> </ul> <h2>v3.0.0-beta.5</h2> <h1><a href="https://github.com/actions/create-github-app-token/compare/v3.0.0-beta.4...v3.0.0-beta.5">3.0.0-beta.5</a> (2026-03-13)</h1> <ul> <li>fix!: require <code>NODE_USE_ENV_PROXY</code> for proxy support (<a href="https://redirect.github.com/actions/create-github-app-token/issues/342">#342</a>) (<a href="https://github.com/actions/create-github-app-token/commit/d53a1cdfde844c958786293adcaf739ecb8b5eb9">d53a1cd</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>Custom proxy handling has been removed. If you use HTTP_PROXY or HTTPS_PROXY, you must now also set NODE_USE_ENV_PROXY=1 on the action step.</li> </ul> <h2>v3.0.0-beta.4</h2> <h1><a href="https://github.com/actions/create-github-app-token/compare/v3.0.0-beta.3...v3.0.0-beta.4">3.0.0-beta.4</a> (2026-03-13)</h1> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> bump <code>@octokit/auth-app</code> from 7.2.1 to 8.0.1 (<a href="https://redirect.github.com/actions/create-github-app-token/issues/257">#257</a>) (<a href="https://github.com/actions/create-github-app-token/commit/bef1eaf1c0ac2b148ee2a0a74c65fbe6db0631f1">bef1eaf</a>)</li> <li><strong>deps:</strong> bump <code>@octokit/request</code> from 9.2.3 to 10.0.2 (<a href="https://redirect.github.com/actions/create-github-app-token/issues/256">#256</a>) (<a href="https://github.com/actions/create-github-app-token/commit/5d7307be63501c0070c634b0ae8fec74e8208130">5d7307b</a>)</li> <li><strong>deps:</strong> bump glob from 10.4.5 to 10.5.0 (<a href="https://redirect.github.com/actions/create-github-app-token/issues/305">#305</a>) (<a href="https://github.com/actions/create-github-app-token/commit/5480f4325a18c025ee16d7e081413854624e9edc">5480f43</a>)</li> <li><strong>deps:</strong> bump p-retry from 6.2.1 to 7.1.0 (<a href="https://redirect.github.com/actions/create-github-app-token/issues/294">#294</a>) (<a href="https://github.com/actions/create-github-app-token/commit/dce3be8b284f45e65caed11a610e2bef738d15b4">dce3be8</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/create-github-app-token/commit/f8d387b68d61c58ab83c6c016672934102569859"><code>f8d387b</code></a> build(release): 3.0.0 [skip ci]</li> <li><a href="https://github.com/actions/create-github-app-token/commit/d2129bd463d4feb8723edeea9437baa7db58e41e"><code>d2129bd</code></a> style: remove extra blank line in release workflow</li> <li><a href="https://github.com/actions/create-github-app-token/commit/77b94efc3e5f99a45abdd163fe04a4ebb95e98d6"><code>77b94ef</code></a> build: refresh generated artifacts</li> <li><a href="https://github.com/actions/create-github-app-token/commit/3ab4c6689898955f913a485593b36b197c6dbbdc"><code>3ab4c66</code></a> chore: move undici to devDependencies</li> <li><a href="https://github.com/actions/create-github-app-token/commit/739cf66feb937a443e4b6b7626bedd98f9fef6df"><code>739cf66</code></a> docs: update README action versions</li> <li><a href="https://github.com/actions/create-github-app-token/commit/db40289976a36527816d4f6f45765fdee71f134b"><code>db40289</code></a> build(deps): bump actions versions in test.yml</li> <li><a href="https://github.com/actions/create-github-app-token/commit/496a7ac4eb472eeac44d67818d1ce7f5e9e5fc97"><code>496a7ac</code></a> test: migrate from AVA to Node.js native test runner (<a href="https://redirect.github.com/actions/create-github-app-token/issues/346">#346</a>)</li> <li><a href="https://github.com/actions/create-github-app-token/commit/3870dc3051e3f1fc3a2faa17bcbb00f31fe1dd6c"><code>3870dc3</code></a> Rename end-to-end proxy job in test workflow</li> <li><a href="https://github.com/actions/create-github-app-token/commit/4451bcbc139f8124b0bf04f968ea2586b17df458"><code>4451bcb</code></a> fix!: require <code>NODE_USE_ENV_PROXY</code> for proxy support (<a href="https://redirect.github.com/actions/create-github-app-token/issues/342">#342</a>)</li> <li><a href="https://github.com/actions/create-github-app-token/commit/dce0ab05f36f30b22fd14289fd36655c618e4e8e"><code>dce0ab0</code></a> fix: remove custom proxy handling (<a href="https://redirect.github.com/actions/create-github-app-token/issues/143">#143</a>)</li> <li>Additional commits viewable in <a href="https://github.com/actions/create-github-app-token/compare/29824e69f54612133e76f7eaac726eef6c875baf...f8d387b68d61c58ab83c6c016672934102569859">compare view</a></li> </ul> </details> <br /> Updates `actions/cache` from 5.0.3 to 5.0.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/cache/releases">actions/cache's releases</a>.</em></p> <blockquote> <h2>v5.0.4</h2> <h2>What's Changed</h2> <ul> <li>Add release instructions and update maintainer docs by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1696">actions/cache#1696</a></li> <li>Potential fix for code scanning alert no. 52: Workflow does not contain permissions by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1697">actions/cache#1697</a></li> <li>Fix workflow permissions and cleanup workflow names / formatting by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1699">actions/cache#1699</a></li> <li>docs: Update examples to use the latest version by <a href="https://github.com/XZTDean"><code>@XZTDean</code></a> in <a href="https://redirect.github.com/actions/cache/pull/1690">actions/cache#1690</a></li> <li>Fix proxy integration tests by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1701">actions/cache#1701</a></li> <li>Fix cache key in examples.md for bun.lock by <a href="https://github.com/RyPeck"><code>@RyPeck</code></a> in <a href="https://redirect.github.com/actions/cache/pull/1722">actions/cache#1722</a></li> <li>Update dependencies & patch security vulnerabilities by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/cache/pull/1738">actions/cache#1738</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/XZTDean"><code>@XZTDean</code></a> made their first contribution in <a href="https://redirect.github.com/actions/cache/pull/1690">actions/cache#1690</a></li> <li><a href="https://github.com/RyPeck"><code>@RyPeck</code></a> made their first contribution in <a href="https://redirect.github.com/actions/cache/pull/1722">actions/cache#1722</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/cache/compare/v5...v5.0.4">https://github.com/actions/cache/compare/v5...v5.0.4</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/actions/cache/blob/main/RELEASES.md">actions/cache's changelog</a>.</em></p> <blockquote> <h1>Releases</h1> <h2>How to prepare a release</h2> <blockquote> <p>[!NOTE]<br /> Relevant for maintainers with write access only.</p> </blockquote> <ol> <li>Switch to a new branch from <code>main</code>.</li> <li>Run <code>npm test</code> to ensure all tests are passing.</li> <li>Update the version in <a href="https://github.com/actions/cache/blob/main/package.json"><code>https://github.com/actions/cache/blob/main/package.json</code></a>.</li> <li>Run <code>npm run build</code> to update the compiled files.</li> <li>Update this <a href="https://github.com/actions/cache/blob/main/RELEASES.md"><code>https://github.com/actions/cache/blob/main/RELEASES.md</code></a> with the new version and changes in the <code>## Changelog</code> section.</li> <li>Run <code>licensed cache</code> to update the license report.</li> <li>Run <code>licensed status</code> and resolve any warnings by updating the <a href="https://github.com/actions/cache/blob/main/.licensed.yml"><code>https://github.com/actions/cache/blob/main/.licensed.yml</code></a> file with the exceptions.</li> <li>Commit your changes and push your branch upstream.</li> <li>Open a pull request against <code>main</code> and get it reviewed and merged.</li> <li>Draft a new release <a href="https://github.com/actions/cache/releases">https://github.com/actions/cache/releases</a> use the same version number used in <code>package.json</code> <ol> <li>Create a new tag with the version number.</li> <li>Auto generate release notes and update them to match the changes you made in <code>RELEASES.md</code>.</li> <li>Toggle the set as the latest release option.</li> <li>Publish the release.</li> </ol> </li> <li>Navigate to <a href="https://github.com/actions/cache/actions/workflows/release-new-action-version.yml">https://github.com/actions/cache/actions/workflows/release-new-action-version.yml</a> <ol> <li>There should be a workflow run queued with the same version number.</li> <li>Approve the run to publish the new version and update the major tags for this action.</li> </ol> </li> </ol> <h2>Changelog</h2> <h3>5.0.4</h3> <ul> <li>Bump <code>minimatch</code> to v3.1.5 (fixes ReDoS via globstar patterns)</li> <li>Bump <code>undici</code> to v6.24.1 (WebSocket decompression bomb protection, header validation fixes)</li> <li>Bump <code>fast-xml-parser</code> to v5.5.6</li> </ul> <h3>5.0.3</h3> <ul> <li>Bump <code>@actions/cache</code> to v5.0.5 (Resolves: <a href="https://github.com/actions/cache/security/dependabot/33">https://github.com/actions/cache/security/dependabot/33</a>)</li> <li>Bump <code>@actions/core</code> to v2.0.3</li> </ul> <h3>5.0.2</h3> <ul> <li>Bump <code>@actions/cache</code> to v5.0.3 <a href="https://redirect.github.com/actions/cache/pull/1692">#1692</a></li> </ul> <h3>5.0.1</h3> <ul> <li>Update <code>@azure/storage-blob</code> to <code>^12.29.1</code> via <code>@actions/cache@5.0.1</code> <a href="https://redirect.github.com/actions/cache/pull/1685">#1685</a></li> </ul> <h3>5.0.0</h3> <blockquote> <p>[!IMPORTANT] <code>actions/cache@v5</code> runs on the Node.js 24 runtime and requires a minimum Actions Runner version of <code>2.327.1</code>.</p> </blockquote> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/cache/commit/668228422ae6a00e4ad889ee87cd7109ec5666a7"><code>6682284</code></a> Merge pull request <a href="https://redirect.github.com/actions/cache/issues/1738">#1738</a> from actions/prepare-v5.0.4</li> <li><a href="https://github.com/actions/cache/commit/e34039626f957d3e3e50843d15c1b20547fc90e2"><code>e340396</code></a> Update RELEASES</li> <li><a href="https://github.com/actions/cache/commit/8a671105293e81530f1af99863cdf94550aba1a6"><code>8a67110</code></a> Add licenses</li> <li><a href="https://github.com/actions/cache/commit/1865903e1b0cb750dda9bc5c58be03424cc62830"><code>1865903</code></a> Update dependencies & patch security vulnerabilities</li> <li><a href="https://github.com/actions/cache/commit/565629816435f6c0b50676926c9b05c254113c0c"><code>5656298</code></a> Merge pull request <a href="https://redirect.github.com/actions/cache/issues/1722">#1722</a> from RyPeck/patch-1</li> <li><a href="https://github.com/actions/cache/commit/4e380d19e192ace8e86f23f32ca6fdec98a673c6"><code>4e380d1</code></a> Fix cache key in examples.md for bun.lock</li> <li><a href="https://github.com/actions/cache/commit/b7e8d49f17405cc70c1c120101943203c98d3a4b"><code>b7e8d49</code></a> Merge pull request <a href="https://redirect.github.com/actions/cache/issues/1701">#1701</a> from actions/Link-/fix-proxy-integration-tests</li> <li><a href="https://github.com/actions/cache/commit/984a21b1cb176a0936f4edafb42be88978f93ef1"><code>984a21b</code></a> Add traffic sanity check step</li> <li><a href="https://github.com/actions/cache/commit/acf2f1f76affe1ef80eee8e56dfddd3b3e5f0fba"><code>acf2f1f</code></a> Fix resolution</li> <li><a href="https://github.com/actions/cache/commit/95a07c51324af6001b4d6ab8dff29f4dfadc2531"><code>95a07c5</code></a> Add wait for proxy</li> <li>Additional commits viewable in <a href="https://github.com/actions/cache/compare/cdf6c1fa76f9f475f3d7449005a359c84ca0f306...668228422ae6a00e4ad889ee87cd7109ec5666a7">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 61456e2 - Browse repository at this point
Copy the full SHA 61456e2View commit details -
chore(deps): bump zizmorcore/zizmor-action from 0.5.0 to 0.5.2 (#5076)
Bumps [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action) from 0.5.0 to 0.5.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/zizmorcore/zizmor-action/releases">zizmorcore/zizmor-action's releases</a>.</em></p> <blockquote> <h2>v0.5.2</h2> <h2>What's Changed</h2> <ul> <li>zizmor 1.23.1 is now the default used by this action.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/zizmorcore/zizmor-action/compare/v0.5.1...v0.5.2">https://github.com/zizmorcore/zizmor-action/compare/v0.5.1...v0.5.2</a></p> <h2>v0.5.1</h2> <h2>What's Changed</h2> <ul> <li>zizmor 1.23.0 is now the default used by this action.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/zizmorcore/zizmor-action/compare/v0.5.0...v0.5.1">https://github.com/zizmorcore/zizmor-action/compare/v0.5.0...v0.5.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zizmorcore/zizmor-action/commit/71321a20a9ded102f6e9ce5718a2fcec2c4f70d8"><code>71321a2</code></a> Sync zizmor versions (<a href="https://redirect.github.com/zizmorcore/zizmor-action/issues/96">#96</a>)</li> <li><a href="https://github.com/zizmorcore/zizmor-action/commit/5ed31db0964a9d37608edd5b0675de2b52070662"><code>5ed31db</code></a> Bump pins (<a href="https://redirect.github.com/zizmorcore/zizmor-action/issues/95">#95</a>)</li> <li><a href="https://github.com/zizmorcore/zizmor-action/commit/195d10ad90f31d8cd6ea1efd6ecc12969ddbe73f"><code>195d10a</code></a> Sync zizmor versions (<a href="https://redirect.github.com/zizmorcore/zizmor-action/issues/94">#94</a>)</li> <li><a href="https://github.com/zizmorcore/zizmor-action/commit/c65bc8876171b6d82748ec98b77c0193b1226b94"><code>c65bc88</code></a> chore(deps): bump github/codeql-action in the github-actions group (<a href="https://redirect.github.com/zizmorcore/zizmor-action/issues/93">#93</a>)</li> <li><a href="https://github.com/zizmorcore/zizmor-action/commit/c2c887f84674f9c15123e2905d2d307675d8bc01"><code>c2c887f</code></a> chore(deps): bump zizmorcore/zizmor-action in the github-actions group (<a href="https://redirect.github.com/zizmorcore/zizmor-action/issues/91">#91</a>)</li> <li><a href="https://github.com/zizmorcore/zizmor-action/commit/5507ab0c02a9ac3996895e1598d6b3385ea7d525"><code>5507ab0</code></a> Bump pins in README (<a href="https://redirect.github.com/zizmorcore/zizmor-action/issues/90">#90</a>)</li> <li>See full diff in <a href="https://github.com/zizmorcore/zizmor-action/compare/0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d...71321a20a9ded102f6e9ce5718a2fcec2c4f70d8">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for bf37d3d - Browse repository at this point
Copy the full SHA bf37d3dView commit details -
fix(lambda): bump flatted from 3.3.1 to 3.4.2 in /lambdas (#5075)
Bumps [flatted](https://github.com/WebReflection/flatted) from 3.3.1 to 3.4.2. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/WebReflection/flatted/commit/3bf09091c3562e17a0647bc06710dd6097079cf7"><code>3bf0909</code></a> 3.4.2</li> <li><a href="https://github.com/WebReflection/flatted/commit/885ddcc33cf9657caf38c57c7be45ae1c5272802"><code>885ddcc</code></a> fix CWE-1321</li> <li><a href="https://github.com/WebReflection/flatted/commit/0bdba705d130f00892b1b8fcc80cf4cdea0631e3"><code>0bdba70</code></a> added flatted-view to the benchmark</li> <li><a href="https://github.com/WebReflection/flatted/commit/2a02dce7c641dec31194c67663f9b0b12e62da20"><code>2a02dce</code></a> 3.4.1</li> <li><a href="https://github.com/WebReflection/flatted/commit/fba4e8f2e113665da275b19cd0f695f3d98e9416"><code>fba4e8f</code></a> Merge pull request <a href="https://redirect.github.com/WebReflection/flatted/issues/89">#89</a> from WebReflection/python-fix</li> <li><a href="https://github.com/WebReflection/flatted/commit/5fe86485e6df7f7f34a07a2a85498bd3e17384e7"><code>5fe8648</code></a> added "when in Rome" also a test for PHP</li> <li><a href="https://github.com/WebReflection/flatted/commit/53517adbefe724fe472b2f9ebcdb01910d0ae3f0"><code>53517ad</code></a> some minor improvement</li> <li><a href="https://github.com/WebReflection/flatted/commit/b3e2a0c387bf446435fec45ad7f05299f012346f"><code>b3e2a0c</code></a> Fixing recursion issue in Python too</li> <li><a href="https://github.com/WebReflection/flatted/commit/c4b46dbcbf782326e54ea1b65d3ebb1dc7a23fad"><code>c4b46db</code></a> Add SECURITY.md for security policy and reporting</li> <li><a href="https://github.com/WebReflection/flatted/commit/f86d071e0f70de5a7d8200198824a3f07fc9c988"><code>f86d071</code></a> Create dependabot.yml for version updates</li> <li>Additional commits viewable in <a href="https://github.com/WebReflection/flatted/compare/v3.3.1...v3.4.2">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/github-aws-runners/terraform-aws-github-runner/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 67a70d7 - Browse repository at this point
Copy the full SHA 67a70d7View commit details -
chore(lambda): bump the nx group in /lambdas with 3 updates (#5045)
Bumps the nx group in /lambdas with 3 updates: [@nx/eslint](https://github.com/nrwl/nx/tree/HEAD/packages/eslint), [@nx/js](https://github.com/nrwl/nx/tree/HEAD/packages/js) and [@nx/vite](https://github.com/nrwl/nx/tree/HEAD/packages/vite). Updates `@nx/eslint` from 22.4.3 to 22.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nrwl/nx/releases"><code>@nx/eslint</code>'s releases</a>.</em></p> <blockquote> <h2>22.5.0 (2026-02-09)</h2> <h3>🚀 Features</h3> <ul> <li><strong>core:</strong> display batch tasks in the tui (<a href="https://redirect.github.com/nrwl/nx/pull/33695">#33695</a>)</li> <li><strong>core:</strong> add variant 2 to CNW cloud prompts with promo message (<a href="https://redirect.github.com/nrwl/nx/pull/34223">#34223</a>)</li> <li><strong>core:</strong> improve configure-ai-agents to copy nx skills/subagents/plugins (<a href="https://redirect.github.com/nrwl/nx/pull/34176">#34176</a>)</li> <li><strong>core:</strong> add Nx Cloud connect URL to template README (<a href="https://redirect.github.com/nrwl/nx/pull/34249">#34249</a>)</li> <li><strong>core:</strong> add decorative banners for Nx Cloud CNW completion message (<a href="https://redirect.github.com/nrwl/nx/pull/34270">#34270</a>)</li> <li><strong>core:</strong> add initial impl of task io service (<a href="https://redirect.github.com/nrwl/nx/pull/34205">#34205</a>)</li> <li><strong>core:</strong> improve AI agent rules for CLAUDE.md generation (<a href="https://redirect.github.com/nrwl/nx/pull/34304">#34304</a>)</li> <li><strong>core:</strong> add command to download cloud client (<a href="https://redirect.github.com/nrwl/nx/pull/34333">#34333</a>)</li> <li><strong>core:</strong> add AI agent detection and NDJSON output for CNW (<a href="https://redirect.github.com/nrwl/nx/pull/34320">#34320</a>)</li> <li><strong>core:</strong> update cnw messaging (<a href="https://redirect.github.com/nrwl/nx/pull/34364">#34364</a>)</li> <li><strong>core:</strong> eagerly shutdown plugins that don't provide later hooks (<a href="https://redirect.github.com/nrwl/nx/pull/34253">#34253</a>)</li> <li><strong>gradle:</strong> add debug env var to gradle batch executor (<a href="https://redirect.github.com/nrwl/nx/pull/34259">#34259</a>)</li> <li><strong>js:</strong> add NX_PREFER_NODE_STRIP_TYPES to use Node's strip types feature instead of transpilation for TypeScript files (<a href="https://redirect.github.com/nrwl/nx/pull/34202">#34202</a>)</li> <li><strong>js:</strong> bump swc to latest versions (<a href="https://redirect.github.com/nrwl/nx/pull/34215">#34215</a>)</li> <li><strong>js:</strong> update swc/cli to 0.8.0 (<a href="https://redirect.github.com/nrwl/nx/pull/34365">#34365</a>)</li> <li><strong>maven:</strong> load Maven classes at runtime for version-agnostic batch execution (<a href="https://redirect.github.com/nrwl/nx/pull/34180">#34180</a>)</li> <li><strong>maven:</strong> bump maven plugin version to 0.0.13 (<a href="https://redirect.github.com/nrwl/nx/pull/34318">#34318</a>)</li> <li><strong>nx-dev:</strong> add llms-full.txt and HTTP Link headers for LLM discovery (<a href="https://redirect.github.com/nrwl/nx/pull/34232">#34232</a>)</li> <li><strong>nx-dev:</strong> add server-side page view tracking for docs (<a href="https://redirect.github.com/nrwl/nx/pull/34283">#34283</a>)</li> <li><strong>nx-dev:</strong> reformat sidebar into topics (<a href="https://redirect.github.com/nrwl/nx/pull/34265">#34265</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>core:</strong> clean up daemon workspace data directory on nx reset --onl… (<a href="https://redirect.github.com/nrwl/nx/pull/34174">#34174</a>)</li> <li><strong>core:</strong> move tui to parking lot rwlock to avoid hang (<a href="https://redirect.github.com/nrwl/nx/pull/34187">#34187</a>)</li> <li><strong>core:</strong> handle resizing a bit better for inline_tui (<a href="https://redirect.github.com/nrwl/nx/pull/34006">#34006</a>)</li> <li><strong>core:</strong> consolidate GitHub URL messaging when gh push fails (<a href="https://redirect.github.com/nrwl/nx/pull/34196">#34196</a>)</li> <li><strong>core:</strong> cloud commands are noop when not connected rather than errors (<a href="https://redirect.github.com/nrwl/nx/pull/34193">#34193</a>)</li> <li><strong>core:</strong> fall back to node_modules when tmp has noexec (<a href="https://redirect.github.com/nrwl/nx/pull/34207">#34207</a>, <a href="https://redirect.github.com/nrwl/nx/issues/33991">#33991</a>)</li> <li><strong>core:</strong> hide already-installed nx packages from suggestion list during nx import (<a href="https://redirect.github.com/nrwl/nx/pull/34227">#34227</a>)</li> <li><strong>core:</strong> improve plugin worker error messages and lifecycle timeouts (<a href="https://redirect.github.com/nrwl/nx/pull/34251">#34251</a>)</li> <li><strong>core:</strong> do not throw error if worker.stdout is not instanceof socket (<a href="https://redirect.github.com/nrwl/nx/pull/34224">#34224</a>)</li> <li><strong>core:</strong> handle multibyte UTF-8 characters in socket message consumption (<a href="https://redirect.github.com/nrwl/nx/pull/34151">#34151</a>)</li> <li><strong>core:</strong> resolve daemon client reconnect queue deadlock (<a href="https://redirect.github.com/nrwl/nx/pull/34284">#34284</a>)</li> <li><strong>core:</strong> nx should show help for run-one when using project short names (<a href="https://redirect.github.com/nrwl/nx/pull/34303">#34303</a>)</li> <li><strong>core:</strong> prevent command injection in getNpmPackageVersion (<a href="https://redirect.github.com/nrwl/nx/pull/34309">#34309</a>)</li> <li><strong>core:</strong> fix CNW git amend and README marker handling (<a href="https://redirect.github.com/nrwl/nx/pull/34306">#34306</a>)</li> <li><strong>core:</strong> tweak configure-ai-agents messaging (<a href="https://redirect.github.com/nrwl/nx/pull/34307">#34307</a>)</li> <li><strong>core:</strong> handle EPIPE errors gracefully in daemon socket writes (<a href="https://redirect.github.com/nrwl/nx/pull/34311">#34311</a>)</li> <li><strong>core:</strong> allow overriding daemon logging settings (<a href="https://redirect.github.com/nrwl/nx/pull/34324">#34324</a>)</li> <li><strong>core:</strong> preserve task selection when unrelated tasks finish (<a href="https://redirect.github.com/nrwl/nx/pull/34328">#34328</a>)</li> <li><strong>core:</strong> disable ignore filters for outputs expansion (<a href="https://redirect.github.com/nrwl/nx/pull/34316">#34316</a>, <a href="https://redirect.github.com/nrwl/nx/issues/32620">#32620</a>)</li> <li><strong>core:</strong> track all task outputs regardless of path depth (<a href="https://redirect.github.com/nrwl/nx/pull/34321">#34321</a>)</li> <li><strong>core:</strong> avoid crash when pane area is out of bounds during resize (<a href="https://redirect.github.com/nrwl/nx/pull/34343">#34343</a>)</li> <li><strong>core:</strong> use picocolors instead of chalk in the nx package (<a href="https://redirect.github.com/nrwl/nx/pull/34305">#34305</a>)</li> <li><strong>core:</strong> only detect flaky tasks for cacheable tasks (<a href="https://redirect.github.com/nrwl/nx/pull/33994">#33994</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nrwl/nx/commit/e3eedf9e940ddf16b72ca5ec6f06eb7ee997ffe2"><code>e3eedf9</code></a> docs(misc): update the docs to use more direct language (<a href="https://github.com/nrwl/nx/tree/HEAD/packages/eslint/issues/34264">#34264</a>)</li> <li>See full diff in <a href="https://github.com/nrwl/nx/commits/22.5.0/packages/eslint">compare view</a></li> </ul> </details> <br /> Updates `@nx/js` from 22.4.5 to 22.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nrwl/nx/releases"><code>@nx/js</code>'s releases</a>.</em></p> <blockquote> <h2>22.5.0 (2026-02-09)</h2> <h3>🚀 Features</h3> <ul> <li><strong>core:</strong> display batch tasks in the tui (<a href="https://redirect.github.com/nrwl/nx/pull/33695">#33695</a>)</li> <li><strong>core:</strong> add variant 2 to CNW cloud prompts with promo message (<a href="https://redirect.github.com/nrwl/nx/pull/34223">#34223</a>)</li> <li><strong>core:</strong> improve configure-ai-agents to copy nx skills/subagents/plugins (<a href="https://redirect.github.com/nrwl/nx/pull/34176">#34176</a>)</li> <li><strong>core:</strong> add Nx Cloud connect URL to template README (<a href="https://redirect.github.com/nrwl/nx/pull/34249">#34249</a>)</li> <li><strong>core:</strong> add decorative banners for Nx Cloud CNW completion message (<a href="https://redirect.github.com/nrwl/nx/pull/34270">#34270</a>)</li> <li><strong>core:</strong> add initial impl of task io service (<a href="https://redirect.github.com/nrwl/nx/pull/34205">#34205</a>)</li> <li><strong>core:</strong> improve AI agent rules for CLAUDE.md generation (<a href="https://redirect.github.com/nrwl/nx/pull/34304">#34304</a>)</li> <li><strong>core:</strong> add command to download cloud client (<a href="https://redirect.github.com/nrwl/nx/pull/34333">#34333</a>)</li> <li><strong>core:</strong> add AI agent detection and NDJSON output for CNW (<a href="https://redirect.github.com/nrwl/nx/pull/34320">#34320</a>)</li> <li><strong>core:</strong> update cnw messaging (<a href="https://redirect.github.com/nrwl/nx/pull/34364">#34364</a>)</li> <li><strong>core:</strong> eagerly shutdown plugins that don't provide later hooks (<a href="https://redirect.github.com/nrwl/nx/pull/34253">#34253</a>)</li> <li><strong>gradle:</strong> add debug env var to gradle batch executor (<a href="https://redirect.github.com/nrwl/nx/pull/34259">#34259</a>)</li> <li><strong>js:</strong> add NX_PREFER_NODE_STRIP_TYPES to use Node's strip types feature instead of transpilation for TypeScript files (<a href="https://redirect.github.com/nrwl/nx/pull/34202">#34202</a>)</li> <li><strong>js:</strong> bump swc to latest versions (<a href="https://redirect.github.com/nrwl/nx/pull/34215">#34215</a>)</li> <li><strong>js:</strong> update swc/cli to 0.8.0 (<a href="https://redirect.github.com/nrwl/nx/pull/34365">#34365</a>)</li> <li><strong>maven:</strong> load Maven classes at runtime for version-agnostic batch execution (<a href="https://redirect.github.com/nrwl/nx/pull/34180">#34180</a>)</li> <li><strong>maven:</strong> bump maven plugin version to 0.0.13 (<a href="https://redirect.github.com/nrwl/nx/pull/34318">#34318</a>)</li> <li><strong>nx-dev:</strong> add llms-full.txt and HTTP Link headers for LLM discovery (<a href="https://redirect.github.com/nrwl/nx/pull/34232">#34232</a>)</li> <li><strong>nx-dev:</strong> add server-side page view tracking for docs (<a href="https://redirect.github.com/nrwl/nx/pull/34283">#34283</a>)</li> <li><strong>nx-dev:</strong> reformat sidebar into topics (<a href="https://redirect.github.com/nrwl/nx/pull/34265">#34265</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>core:</strong> clean up daemon workspace data directory on nx reset --onl… (<a href="https://redirect.github.com/nrwl/nx/pull/34174">#34174</a>)</li> <li><strong>core:</strong> move tui to parking lot rwlock to avoid hang (<a href="https://redirect.github.com/nrwl/nx/pull/34187">#34187</a>)</li> <li><strong>core:</strong> handle resizing a bit better for inline_tui (<a href="https://redirect.github.com/nrwl/nx/pull/34006">#34006</a>)</li> <li><strong>core:</strong> consolidate GitHub URL messaging when gh push fails (<a href="https://redirect.github.com/nrwl/nx/pull/34196">#34196</a>)</li> <li><strong>core:</strong> cloud commands are noop when not connected rather than errors (<a href="https://redirect.github.com/nrwl/nx/pull/34193">#34193</a>)</li> <li><strong>core:</strong> fall back to node_modules when tmp has noexec (<a href="https://redirect.github.com/nrwl/nx/pull/34207">#34207</a>, <a href="https://redirect.github.com/nrwl/nx/issues/33991">#33991</a>)</li> <li><strong>core:</strong> hide already-installed nx packages from suggestion list during nx import (<a href="https://redirect.github.com/nrwl/nx/pull/34227">#34227</a>)</li> <li><strong>core:</strong> improve plugin worker error messages and lifecycle timeouts (<a href="https://redirect.github.com/nrwl/nx/pull/34251">#34251</a>)</li> <li><strong>core:</strong> do not throw error if worker.stdout is not instanceof socket (<a href="https://redirect.github.com/nrwl/nx/pull/34224">#34224</a>)</li> <li><strong>core:</strong> handle multibyte UTF-8 characters in socket message consumption (<a href="https://redirect.github.com/nrwl/nx/pull/34151">#34151</a>)</li> <li><strong>core:</strong> resolve daemon client reconnect queue deadlock (<a href="https://redirect.github.com/nrwl/nx/pull/34284">#34284</a>)</li> <li><strong>core:</strong> nx should show help for run-one when using project short names (<a href="https://redirect.github.com/nrwl/nx/pull/34303">#34303</a>)</li> <li><strong>core:</strong> prevent command injection in getNpmPackageVersion (<a href="https://redirect.github.com/nrwl/nx/pull/34309">#34309</a>)</li> <li><strong>core:</strong> fix CNW git amend and README marker handling (<a href="https://redirect.github.com/nrwl/nx/pull/34306">#34306</a>)</li> <li><strong>core:</strong> tweak configure-ai-agents messaging (<a href="https://redirect.github.com/nrwl/nx/pull/34307">#34307</a>)</li> <li><strong>core:</strong> handle EPIPE errors gracefully in daemon socket writes (<a href="https://redirect.github.com/nrwl/nx/pull/34311">#34311</a>)</li> <li><strong>core:</strong> allow overriding daemon logging settings (<a href="https://redirect.github.com/nrwl/nx/pull/34324">#34324</a>)</li> <li><strong>core:</strong> preserve task selection when unrelated tasks finish (<a href="https://redirect.github.com/nrwl/nx/pull/34328">#34328</a>)</li> <li><strong>core:</strong> disable ignore filters for outputs expansion (<a href="https://redirect.github.com/nrwl/nx/pull/34316">#34316</a>, <a href="https://redirect.github.com/nrwl/nx/issues/32620">#32620</a>)</li> <li><strong>core:</strong> track all task outputs regardless of path depth (<a href="https://redirect.github.com/nrwl/nx/pull/34321">#34321</a>)</li> <li><strong>core:</strong> avoid crash when pane area is out of bounds during resize (<a href="https://redirect.github.com/nrwl/nx/pull/34343">#34343</a>)</li> <li><strong>core:</strong> use picocolors instead of chalk in the nx package (<a href="https://redirect.github.com/nrwl/nx/pull/34305">#34305</a>)</li> <li><strong>core:</strong> only detect flaky tasks for cacheable tasks (<a href="https://redirect.github.com/nrwl/nx/pull/33994">#33994</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nrwl/nx/commit/b85ac155cf2fdd4c77c5f2c0eb5b855bf9ab5243"><code>b85ac15</code></a> feat(js): update swc/cli to 0.8.0 (<a href="https://github.com/nrwl/nx/tree/HEAD/packages/js/issues/34365">#34365</a>)</li> <li><a href="https://github.com/nrwl/nx/commit/e3eedf9e940ddf16b72ca5ec6f06eb7ee997ffe2"><code>e3eedf9</code></a> docs(misc): update the docs to use more direct language (<a href="https://github.com/nrwl/nx/tree/HEAD/packages/js/issues/34264">#34264</a>)</li> <li><a href="https://github.com/nrwl/nx/commit/2bd8ef3f72b370a92523197c9764675ffa6d83f0"><code>2bd8ef3</code></a> feat(js): bump swc to latest versions (<a href="https://github.com/nrwl/nx/tree/HEAD/packages/js/issues/34215">#34215</a>)</li> <li>See full diff in <a href="https://github.com/nrwl/nx/commits/22.5.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@nx/vite` from 22.4.5 to 22.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nrwl/nx/releases"><code>@nx/vite</code>'s releases</a>.</em></p> <blockquote> <h2>22.5.0 (2026-02-09)</h2> <h3>🚀 Features</h3> <ul> <li><strong>core:</strong> display batch tasks in the tui (<a href="https://redirect.github.com/nrwl/nx/pull/33695">#33695</a>)</li> <li><strong>core:</strong> add variant 2 to CNW cloud prompts with promo message (<a href="https://redirect.github.com/nrwl/nx/pull/34223">#34223</a>)</li> <li><strong>core:</strong> improve configure-ai-agents to copy nx skills/subagents/plugins (<a href="https://redirect.github.com/nrwl/nx/pull/34176">#34176</a>)</li> <li><strong>core:</strong> add Nx Cloud connect URL to template README (<a href="https://redirect.github.com/nrwl/nx/pull/34249">#34249</a>)</li> <li><strong>core:</strong> add decorative banners for Nx Cloud CNW completion message (<a href="https://redirect.github.com/nrwl/nx/pull/34270">#34270</a>)</li> <li><strong>core:</strong> add initial impl of task io service (<a href="https://redirect.github.com/nrwl/nx/pull/34205">#34205</a>)</li> <li><strong>core:</strong> improve AI agent rules for CLAUDE.md generation (<a href="https://redirect.github.com/nrwl/nx/pull/34304">#34304</a>)</li> <li><strong>core:</strong> add command to download cloud client (<a href="https://redirect.github.com/nrwl/nx/pull/34333">#34333</a>)</li> <li><strong>core:</strong> add AI agent detection and NDJSON output for CNW (<a href="https://redirect.github.com/nrwl/nx/pull/34320">#34320</a>)</li> <li><strong>core:</strong> update cnw messaging (<a href="https://redirect.github.com/nrwl/nx/pull/34364">#34364</a>)</li> <li><strong>core:</strong> eagerly shutdown plugins that don't provide later hooks (<a href="https://redirect.github.com/nrwl/nx/pull/34253">#34253</a>)</li> <li><strong>gradle:</strong> add debug env var to gradle batch executor (<a href="https://redirect.github.com/nrwl/nx/pull/34259">#34259</a>)</li> <li><strong>js:</strong> add NX_PREFER_NODE_STRIP_TYPES to use Node's strip types feature instead of transpilation for TypeScript files (<a href="https://redirect.github.com/nrwl/nx/pull/34202">#34202</a>)</li> <li><strong>js:</strong> bump swc to latest versions (<a href="https://redirect.github.com/nrwl/nx/pull/34215">#34215</a>)</li> <li><strong>js:</strong> update swc/cli to 0.8.0 (<a href="https://redirect.github.com/nrwl/nx/pull/34365">#34365</a>)</li> <li><strong>maven:</strong> load Maven classes at runtime for version-agnostic batch execution (<a href="https://redirect.github.com/nrwl/nx/pull/34180">#34180</a>)</li> <li><strong>maven:</strong> bump maven plugin version to 0.0.13 (<a href="https://redirect.github.com/nrwl/nx/pull/34318">#34318</a>)</li> <li><strong>nx-dev:</strong> add llms-full.txt and HTTP Link headers for LLM discovery (<a href="https://redirect.github.com/nrwl/nx/pull/34232">#34232</a>)</li> <li><strong>nx-dev:</strong> add server-side page view tracking for docs (<a href="https://redirect.github.com/nrwl/nx/pull/34283">#34283</a>)</li> <li><strong>nx-dev:</strong> reformat sidebar into topics (<a href="https://redirect.github.com/nrwl/nx/pull/34265">#34265</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>core:</strong> clean up daemon workspace data directory on nx reset --onl… (<a href="https://redirect.github.com/nrwl/nx/pull/34174">#34174</a>)</li> <li><strong>core:</strong> move tui to parking lot rwlock to avoid hang (<a href="https://redirect.github.com/nrwl/nx/pull/34187">#34187</a>)</li> <li><strong>core:</strong> handle resizing a bit better for inline_tui (<a href="https://redirect.github.com/nrwl/nx/pull/34006">#34006</a>)</li> <li><strong>core:</strong> consolidate GitHub URL messaging when gh push fails (<a href="https://redirect.github.com/nrwl/nx/pull/34196">#34196</a>)</li> <li><strong>core:</strong> cloud commands are noop when not connected rather than errors (<a href="https://redirect.github.com/nrwl/nx/pull/34193">#34193</a>)</li> <li><strong>core:</strong> fall back to node_modules when tmp has noexec (<a href="https://redirect.github.com/nrwl/nx/pull/34207">#34207</a>, <a href="https://redirect.github.com/nrwl/nx/issues/33991">#33991</a>)</li> <li><strong>core:</strong> hide already-installed nx packages from suggestion list during nx import (<a href="https://redirect.github.com/nrwl/nx/pull/34227">#34227</a>)</li> <li><strong>core:</strong> improve plugin worker error messages and lifecycle timeouts (<a href="https://redirect.github.com/nrwl/nx/pull/34251">#34251</a>)</li> <li><strong>core:</strong> do not throw error if worker.stdout is not instanceof socket (<a href="https://redirect.github.com/nrwl/nx/pull/34224">#34224</a>)</li> <li><strong>core:</strong> handle multibyte UTF-8 characters in socket message consumption (<a href="https://redirect.github.com/nrwl/nx/pull/34151">#34151</a>)</li> <li><strong>core:</strong> resolve daemon client reconnect queue deadlock (<a href="https://redirect.github.com/nrwl/nx/pull/34284">#34284</a>)</li> <li><strong>core:</strong> nx should show help for run-one when using project short names (<a href="https://redirect.github.com/nrwl/nx/pull/34303">#34303</a>)</li> <li><strong>core:</strong> prevent command injection in getNpmPackageVersion (<a href="https://redirect.github.com/nrwl/nx/pull/34309">#34309</a>)</li> <li><strong>core:</strong> fix CNW git amend and README marker handling (<a href="https://redirect.github.com/nrwl/nx/pull/34306">#34306</a>)</li> <li><strong>core:</strong> tweak configure-ai-agents messaging (<a href="https://redirect.github.com/nrwl/nx/pull/34307">#34307</a>)</li> <li><strong>core:</strong> handle EPIPE errors gracefully in daemon socket writes (<a href="https://redirect.github.com/nrwl/nx/pull/34311">#34311</a>)</li> <li><strong>core:</strong> allow overriding daemon logging settings (<a href="https://redirect.github.com/nrwl/nx/pull/34324">#34324</a>)</li> <li><strong>core:</strong> preserve task selection when unrelated tasks finish (<a href="https://redirect.github.com/nrwl/nx/pull/34328">#34328</a>)</li> <li><strong>core:</strong> disable ignore filters for outputs expansion (<a href="https://redirect.github.com/nrwl/nx/pull/34316">#34316</a>, <a href="https://redirect.github.com/nrwl/nx/issues/32620">#32620</a>)</li> <li><strong>core:</strong> track all task outputs regardless of path depth (<a href="https://redirect.github.com/nrwl/nx/pull/34321">#34321</a>)</li> <li><strong>core:</strong> avoid crash when pane area is out of bounds during resize (<a href="https://redirect.github.com/nrwl/nx/pull/34343">#34343</a>)</li> <li><strong>core:</strong> use picocolors instead of chalk in the nx package (<a href="https://redirect.github.com/nrwl/nx/pull/34305">#34305</a>)</li> <li><strong>core:</strong> only detect flaky tasks for cacheable tasks (<a href="https://redirect.github.com/nrwl/nx/pull/33994">#33994</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nrwl/nx/commit/e3eedf9e940ddf16b72ca5ec6f06eb7ee997ffe2"><code>e3eedf9</code></a> docs(misc): update the docs to use more direct language (<a href="https://github.com/nrwl/nx/tree/HEAD/packages/vite/issues/34264">#34264</a>)</li> <li><a href="https://github.com/nrwl/nx/commit/86de174d86f82437d2bba9275f57be48f05dc6fb"><code>86de174</code></a> fix(testing): preload vitest/node to prevent race condition on Node 24 (<a href="https://github.com/nrwl/nx/tree/HEAD/packages/vite/issues/34261">#34261</a>)</li> <li><a href="https://github.com/nrwl/nx/commit/3d62c8b5c13501cac418e3c483d2d71ea3123d3e"><code>3d62c8b</code></a> fix(vite): handle sophisticated vite plugins (<a href="https://github.com/nrwl/nx/tree/HEAD/packages/vite/issues/34242">#34242</a>)</li> <li>See full diff in <a href="https://github.com/nrwl/nx/commits/22.5.0/packages/vite">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 25484d0 - Browse repository at this point
Copy the full SHA 25484d0View commit details -
chore(deps): bump step-security/harden-runner from 2.14.2 to 2.16.0 (#…
…5081) Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.14.2 to 2.16.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/step-security/harden-runner/releases">step-security/harden-runner's releases</a>.</em></p> <blockquote> <h2>v2.16.0</h2> <h2>What's Changed</h2> <ul> <li>Updated action.yml to use node24</li> <li>Security fix: Fixed a medium severity vulnerability where the egress block policy could be bypassed via DNS over HTTPS (DoH) by proxying DNS queries through a permitted resolver, allowing data exfiltration even with a restrictive allowed-endpoints list. This issue only affects the Community Tier; the Enterprise Tier is not affected. See <a href="https://github.com/step-security/harden-runner/security/advisories/GHSA-46g3-37rh-v698">GHSA-46g3-37rh-v698</a> for details.</li> <li>Security fix: Fixed a medium severity vulnerability where the egress block policy could be bypassed via DNS queries over TCP to external resolvers, allowing outbound network communication that evades configured network restrictions. This issue only affects the Community Tier; the Enterprise Tier is not affected. See <a href="https://github.com/step-security/harden-runner/security/advisories/GHSA-g699-3x6g-wm3g">GHSA-g699-3x6g-wm3g</a> for details.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.15.1...v2.16.0">https://github.com/step-security/harden-runner/compare/v2.15.1...v2.16.0</a></p> <h2>v2.15.1</h2> <h2>What's Changed</h2> <ul> <li>Fixes <a href="https://redirect.github.com/step-security/harden-runner/issues/642">step-security/harden-runner#642</a> bug due to which post step was failing on Windows ARM runners</li> <li>Updates npm packages</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.15.0...v2.15.1">https://github.com/step-security/harden-runner/compare/v2.15.0...v2.15.1</a></p> <h2>v2.15.0</h2> <h2>What's Changed</h2> <h3>Windows and macOS runner support</h3> <p>We are excited to announce that Harden Runner now supports <strong>Windows and macOS runners</strong>, extending runtime security beyond Linux for the first time.</p> <p>Insights for Windows and macOS runners will be displayed in the same consistent format you are already familiar with from Linux runners, giving you a unified view of runtime activity across all platforms.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.14.2...v2.15.0">https://github.com/step-security/harden-runner/compare/v2.14.2...v2.15.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/step-security/harden-runner/commit/fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594"><code>fa2e9d6</code></a> Release v2.16.0 (<a href="https://redirect.github.com/step-security/harden-runner/issues/646">#646</a>)</li> <li><a href="https://github.com/step-security/harden-runner/commit/58077d3c7e43986b6b15fba718e8ea69e387dfcc"><code>58077d3</code></a> Release v2.15.1 (<a href="https://redirect.github.com/step-security/harden-runner/issues/641">#641</a>)</li> <li><a href="https://github.com/step-security/harden-runner/commit/a90bcbc6539c36a85cdfeb73f7e2f433735f215b"><code>a90bcbc</code></a> Update readme (<a href="https://redirect.github.com/step-security/harden-runner/issues/637">#637</a>)</li> <li><a href="https://github.com/step-security/harden-runner/commit/f0a59d88538059e010b6ebd90b74e2740a6d05fc"><code>f0a59d8</code></a> Release v2.15.0 (<a href="https://redirect.github.com/step-security/harden-runner/issues/639">#639</a>)</li> <li>See full diff in <a href="https://github.com/step-security/harden-runner/compare/5ef0c079ce82195b2a36a210272d6b661572d83e...fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 846b4a2 - Browse repository at this point
Copy the full SHA 846b4a2View commit details -
fix(lambda): bump the aws group in /lambdas with 7 updates (#5071)
Bumps the aws group in /lambdas with 7 updates: | Package | From | To | | --- | --- | --- | | [@aws-sdk/client-ec2](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2) | `3.989.0` | `3.1003.0` | | [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.989.0` | `3.1003.0` | | [@aws-sdk/types](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages-internal/types) | `3.973.1` | `3.973.5` | | [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.989.0` | `3.1003.0` | | [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.989.0` | `3.1003.0` | | [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage) | `3.989.0` | `3.1003.0` | | [@aws-sdk/client-eventbridge](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-eventbridge) | `3.989.0` | `3.1003.0` | Updates `@aws-sdk/client-ec2` from 3.989.0 to 3.1003.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-ec2</code>'s releases</a>.</em></p> <blockquote> <h2>v3.1003.0</h2> <h4>3.1003.0(2026-03-05)</h4> <h5>Chores</h5> <ul> <li>bump '@smithy/*' dependencies (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7822">#7822</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28">8ddd5442</a>)</li> <li>set downlevel types to be used in typescript@'<4.5' (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7817">#7817</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62">03dad66b</a>)</li> <li><strong>clients:</strong> <ul> <li>strip trailing periods when the last character is non-alphanumeric (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7821">#7821</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4">6b5b50b2</a>)</li> <li>sort missed package.json files (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7820">#7820</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/297b56431a1c8fe0563a55d35dd80c02e9bfb386">297b5643</a>)</li> <li>include deprecated-since in generated tsdoc (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7815">#7815</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849">17ecb20a</a>)</li> </ul> </li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2026-03-05 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e9a8d8dea104165b03857c991d4e9e8ae4dec3a3">e9a8d8de</a>)</li> <li><strong>client-guardduty:</strong> Added MALICIOUS FILE to IndicatorType enum in MDC Sequence (<a href="https://github.com/aws/aws-sdk-js-v3/commit/bb9d466281db2b1023129d249ed576bd94730b18">bb9d4662</a>)</li> <li><strong>client-savingsplans:</strong> Added support for OpenSearch and Neptune Analytics to Database Savings Plans. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/9e0639134fff8635622886260fb2127daa8778de">9e063913</a>)</li> <li><strong>client-sagemaker:</strong> Adds support for S3 Bucket Ownership validation for SageMaker Managed MLflow. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b62165643e03cc036e13cd463cde57116f36b38b">b6216564</a>)</li> <li><strong>client-connecthealth:</strong> Connect-Health SDK is AWS's unified SDK for the Amazon Connect Health offering. It allows healthcare developers to integrate purpose-built agents - such as patient insights, ambient documentation, and medical coding - into their existing applications, including EHRs, telehealth, and revenue cycle. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/454c6cb7d73b92d737c008a9d9ef7fdb6365d647">454c6cb7</a>)</li> <li><strong>client-mpa:</strong> Updates to multi-party approval (MPA) service to add support for approval team baseline operations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e95815438c56f42e2ffa47962c1aaa3c82afeef8">e9581543</a>)</li> <li><strong>client-ec2:</strong> Added metadata field to CapacityAllocation. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de">d7cce1c2</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>nested-clients:</strong> add bundler instructions for browser credential clients (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7823">#7823</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f32f353945f0bda18e6518ec017f81ea6843f33e">f32f3539</a>)</li> </ul> <h5>Tests</h5> <ul> <li><strong>canary:</strong> replace verdaccio canary test with client tests in canary mode (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7816">#7816</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d9bad4ef08ac16a2ba20516e8e008d6700ee465d">d9bad4ef</a>)</li> <li><strong>clients:</strong> <ul> <li>ignore prettifying automated snapshot test code (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7819">#7819</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f">1eabedb4</a>)</li> <li>run client feature tests in browser mode too (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7808">#7808</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6">37f1adc7</a>)</li> </ul> </li> </ul> <hr /> <p>For list of updated packages, view <strong>updated-packages.md</strong> in <strong>assets-3.1003.0.zip</strong></p> <h2>v3.1002.0</h2> <h4>3.1002.0(2026-03-04)</h4> <h5>New Features</h5> <ul> <li><strong>client-elastic-beanstalk:</strong> As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/44048ced6ccd02b2c986b530aa6068c849d8e1e4">44048ced</a>)</li> <li><strong>client-connect:</strong> Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b79a4dbd20bc5f3bcf1c3a72ec6b3d0e1e94e6e0">b79a4dbd</a>)</li> <li><strong>client-gamelift:</strong> Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1fc4ece8bfc7c7fa6fcde43ab1ad032a7e652375">1fc4ece8</a>)</li> <li><strong>client-elasticsearch-service:</strong> Adds support for DeploymentStrategyOptions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/703a57c5a1b582fb12712bf6620a56b358c8c1c7">703a57c5</a>)</li> <li><strong>client-opensearch:</strong> Adding support for DeploymentStrategyOptions (<a href="https://github.com/aws/aws-sdk-js-v3/commit/cf6a881010a9ebaf56ff5fbf3a0cfa85358faae0">cf6a8810</a>)</li> <li><strong>client-quicksight:</strong> Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c94f306e60e69fc8dac17dae20a5c9c3dc984b29">c94f306e</a>)</li> </ul> <!-- 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-ec2/CHANGELOG.md"><code>@aws-sdk/client-ec2</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1002.0...v3.1003.0">3.1003.0</a> (2026-03-05)</h1> <h3>Features</h3> <ul> <li><strong>client-ec2:</strong> Added metadata field to CapacityAllocation. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de">d7cce1c</a>)</li> </ul> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1001.0...v3.1002.0">3.1002.0</a> (2026-03-04)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ec2</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1000.0...v3.1001.0">3.1001.0</a> (2026-03-03)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ec2</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.999.0...v3.1000.0">3.1000.0</a> (2026-02-27)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ec2</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.998.0...v3.999.0">3.999.0</a> (2026-02-26)</h1> <h3>Features</h3> <ul> <li><strong>client-ec2:</strong> Add c8id, m8id and hpc8a instance types. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f49cb0c1d0d17b719175aa0b9fc54b10c18efe84">f49cb0c</a>)</li> </ul> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.997.0...v3.998.0">3.998.0</a> (2026-02-25)</h1> <h3>Features</h3> <!-- 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/4c36ea38e9ddc6deacd435c7c590921940f4c9ff"><code>4c36ea3</code></a> Publish v3.1003.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de"><code>d7cce1c</code></a> feat(client-ec2): Added metadata field to CapacityAllocation.</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28"><code>8ddd544</code></a> chore: bump '@smithy/*' dependencies (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7822">#7822</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4"><code>6b5b50b</code></a> chore(clients): strip trailing periods when the last character is non-alphanu...</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62"><code>03dad66</code></a> chore: set downlevel types to be used in typescript@'<4.5' (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7817">#7817</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f"><code>1eabedb</code></a> test(clients): ignore prettifying automated snapshot test code (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7819">#7819</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849"><code>17ecb20</code></a> chore(clients): include deprecated-since in generated tsdoc (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7815">#7815</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/800431bb02b71bad13537bc615e456df77776b22"><code>800431b</code></a> Publish v3.1002.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/b8467bd179319f86804fea08e1b09d3a95166603"><code>b8467bd</code></a> Publish v3.1001.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/ab9e775920c7900a2759c22385091aa88eb6ee15"><code>ab9e775</code></a> chore(codegen): upgrade smithy 1.68.0 (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ec2/issues/7806">#7806</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.1003.0/clients/client-ec2">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/client-ssm` from 3.989.0 to 3.1003.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-ssm</code>'s releases</a>.</em></p> <blockquote> <h2>v3.1003.0</h2> <h4>3.1003.0(2026-03-05)</h4> <h5>Chores</h5> <ul> <li>bump '@smithy/*' dependencies (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7822">#7822</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28">8ddd5442</a>)</li> <li>set downlevel types to be used in typescript@'<4.5' (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7817">#7817</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62">03dad66b</a>)</li> <li><strong>clients:</strong> <ul> <li>strip trailing periods when the last character is non-alphanumeric (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7821">#7821</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4">6b5b50b2</a>)</li> <li>sort missed package.json files (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7820">#7820</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/297b56431a1c8fe0563a55d35dd80c02e9bfb386">297b5643</a>)</li> <li>include deprecated-since in generated tsdoc (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7815">#7815</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849">17ecb20a</a>)</li> </ul> </li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2026-03-05 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e9a8d8dea104165b03857c991d4e9e8ae4dec3a3">e9a8d8de</a>)</li> <li><strong>client-guardduty:</strong> Added MALICIOUS FILE to IndicatorType enum in MDC Sequence (<a href="https://github.com/aws/aws-sdk-js-v3/commit/bb9d466281db2b1023129d249ed576bd94730b18">bb9d4662</a>)</li> <li><strong>client-savingsplans:</strong> Added support for OpenSearch and Neptune Analytics to Database Savings Plans. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/9e0639134fff8635622886260fb2127daa8778de">9e063913</a>)</li> <li><strong>client-sagemaker:</strong> Adds support for S3 Bucket Ownership validation for SageMaker Managed MLflow. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b62165643e03cc036e13cd463cde57116f36b38b">b6216564</a>)</li> <li><strong>client-connecthealth:</strong> Connect-Health SDK is AWS's unified SDK for the Amazon Connect Health offering. It allows healthcare developers to integrate purpose-built agents - such as patient insights, ambient documentation, and medical coding - into their existing applications, including EHRs, telehealth, and revenue cycle. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/454c6cb7d73b92d737c008a9d9ef7fdb6365d647">454c6cb7</a>)</li> <li><strong>client-mpa:</strong> Updates to multi-party approval (MPA) service to add support for approval team baseline operations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e95815438c56f42e2ffa47962c1aaa3c82afeef8">e9581543</a>)</li> <li><strong>client-ec2:</strong> Added metadata field to CapacityAllocation. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de">d7cce1c2</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>nested-clients:</strong> add bundler instructions for browser credential clients (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7823">#7823</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f32f353945f0bda18e6518ec017f81ea6843f33e">f32f3539</a>)</li> </ul> <h5>Tests</h5> <ul> <li><strong>canary:</strong> replace verdaccio canary test with client tests in canary mode (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7816">#7816</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d9bad4ef08ac16a2ba20516e8e008d6700ee465d">d9bad4ef</a>)</li> <li><strong>clients:</strong> <ul> <li>ignore prettifying automated snapshot test code (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7819">#7819</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f">1eabedb4</a>)</li> <li>run client feature tests in browser mode too (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7808">#7808</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6">37f1adc7</a>)</li> </ul> </li> </ul> <hr /> <p>For list of updated packages, view <strong>updated-packages.md</strong> in <strong>assets-3.1003.0.zip</strong></p> <h2>v3.1002.0</h2> <h4>3.1002.0(2026-03-04)</h4> <h5>New Features</h5> <ul> <li><strong>client-elastic-beanstalk:</strong> As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/44048ced6ccd02b2c986b530aa6068c849d8e1e4">44048ced</a>)</li> <li><strong>client-connect:</strong> Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b79a4dbd20bc5f3bcf1c3a72ec6b3d0e1e94e6e0">b79a4dbd</a>)</li> <li><strong>client-gamelift:</strong> Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1fc4ece8bfc7c7fa6fcde43ab1ad032a7e652375">1fc4ece8</a>)</li> <li><strong>client-elasticsearch-service:</strong> Adds support for DeploymentStrategyOptions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/703a57c5a1b582fb12712bf6620a56b358c8c1c7">703a57c5</a>)</li> <li><strong>client-opensearch:</strong> Adding support for DeploymentStrategyOptions (<a href="https://github.com/aws/aws-sdk-js-v3/commit/cf6a881010a9ebaf56ff5fbf3a0cfa85358faae0">cf6a8810</a>)</li> <li><strong>client-quicksight:</strong> Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c94f306e60e69fc8dac17dae20a5c9c3dc984b29">c94f306e</a>)</li> </ul> <!-- 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-ssm/CHANGELOG.md"><code>@aws-sdk/client-ssm</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1002.0...v3.1003.0">3.1003.0</a> (2026-03-05)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ssm</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1001.0...v3.1002.0">3.1002.0</a> (2026-03-04)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ssm</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1000.0...v3.1001.0">3.1001.0</a> (2026-03-03)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ssm</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.999.0...v3.1000.0">3.1000.0</a> (2026-02-27)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ssm</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.998.0...v3.999.0">3.999.0</a> (2026-02-26)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ssm</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.997.0...v3.998.0">3.998.0</a> (2026-02-25)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-ssm</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.996.0...v3.997.0">3.997.0</a> (2026-02-24)</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/4c36ea38e9ddc6deacd435c7c590921940f4c9ff"><code>4c36ea3</code></a> Publish v3.1003.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28"><code>8ddd544</code></a> chore: bump '@smithy/*' dependencies (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7822">#7822</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62"><code>03dad66</code></a> chore: set downlevel types to be used in typescript@'<4.5' (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7817">#7817</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6"><code>37f1adc</code></a> test(clients): run client feature tests in browser mode too (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7808">#7808</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/800431bb02b71bad13537bc615e456df77776b22"><code>800431b</code></a> Publish v3.1002.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/b8467bd179319f86804fea08e1b09d3a95166603"><code>b8467bd</code></a> Publish v3.1001.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/ab9e775920c7900a2759c22385091aa88eb6ee15"><code>ab9e775</code></a> chore(codegen): upgrade smithy 1.68.0 (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm/issues/7806">#7806</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/e373aa8706d305625352a8fdb21cdbaadb1f971b"><code>e373aa8</code></a> Publish v3.1000.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/cd1d49d696f4d2d596d2374943267f3a7074651c"><code>cd1d49d</code></a> Publish v3.999.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/adb02cd5ccef10ff162faee76a159dba70626584"><code>adb02cd</code></a> Publish v3.998.0</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.1003.0/clients/client-ssm">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/types` from 3.973.1 to 3.973.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aws/aws-sdk-js-v3/blob/main/packages-internal/types/CHANGELOG.md"><code>@aws-sdk/types</code>'s changelog</a>.</em></p> <blockquote> <h1>3.973.5 (2026-03-04)</h1> <h3>Chores</h3> <ul> <li>set downlevel types to be used in typescript@'<4.5' (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7817">#7817</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62">03dad66</a>)</li> </ul> <h1>3.973.4 (2026-02-25)</h1> <h3>Chores</h3> <ul> <li><strong>packages:</strong> reapply eslint rules (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7789">#7789</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ab81c738436db219e5163ccaab953805776b33d6">ab81c73</a>)</li> </ul> <h1>3.973.3 (2026-02-24)</h1> <h3>Chores</h3> <ul> <li><strong>codegen:</strong> sync for checksum algorithm extensions (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7781">#7781</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/ae4f994f679b8814d2ce6ba121fd1ffa38df9a99">ae4f994</a>)</li> </ul> <h1>3.973.2 (2026-02-23)</h1> <h3>Chores</h3> <ul> <li><strong>codegen:</strong> sync for checksum stream backpressure (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/issues/7776">#7776</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/14fc57173714be0bca229b541db383219620afd8">14fc571</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/aws/aws-sdk-js-v3/commits/HEAD/packages-internal/types">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/client-sqs` from 3.989.0 to 3.1003.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.1003.0</h2> <h4>3.1003.0(2026-03-05)</h4> <h5>Chores</h5> <ul> <li>bump '@smithy/*' dependencies (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7822">#7822</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28">8ddd5442</a>)</li> <li>set downlevel types to be used in typescript@'<4.5' (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7817">#7817</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62">03dad66b</a>)</li> <li><strong>clients:</strong> <ul> <li>strip trailing periods when the last character is non-alphanumeric (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7821">#7821</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4">6b5b50b2</a>)</li> <li>sort missed package.json files (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7820">#7820</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/297b56431a1c8fe0563a55d35dd80c02e9bfb386">297b5643</a>)</li> <li>include deprecated-since in generated tsdoc (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7815">#7815</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849">17ecb20a</a>)</li> </ul> </li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2026-03-05 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e9a8d8dea104165b03857c991d4e9e8ae4dec3a3">e9a8d8de</a>)</li> <li><strong>client-guardduty:</strong> Added MALICIOUS FILE to IndicatorType enum in MDC Sequence (<a href="https://github.com/aws/aws-sdk-js-v3/commit/bb9d466281db2b1023129d249ed576bd94730b18">bb9d4662</a>)</li> <li><strong>client-savingsplans:</strong> Added support for OpenSearch and Neptune Analytics to Database Savings Plans. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/9e0639134fff8635622886260fb2127daa8778de">9e063913</a>)</li> <li><strong>client-sagemaker:</strong> Adds support for S3 Bucket Ownership validation for SageMaker Managed MLflow. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b62165643e03cc036e13cd463cde57116f36b38b">b6216564</a>)</li> <li><strong>client-connecthealth:</strong> Connect-Health SDK is AWS's unified SDK for the Amazon Connect Health offering. It allows healthcare developers to integrate purpose-built agents - such as patient insights, ambient documentation, and medical coding - into their existing applications, including EHRs, telehealth, and revenue cycle. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/454c6cb7d73b92d737c008a9d9ef7fdb6365d647">454c6cb7</a>)</li> <li><strong>client-mpa:</strong> Updates to multi-party approval (MPA) service to add support for approval team baseline operations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e95815438c56f42e2ffa47962c1aaa3c82afeef8">e9581543</a>)</li> <li><strong>client-ec2:</strong> Added metadata field to CapacityAllocation. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de">d7cce1c2</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>nested-clients:</strong> add bundler instructions for browser credential clients (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7823">#7823</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f32f353945f0bda18e6518ec017f81ea6843f33e">f32f3539</a>)</li> </ul> <h5>Tests</h5> <ul> <li><strong>canary:</strong> replace verdaccio canary test with client tests in canary mode (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7816">#7816</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d9bad4ef08ac16a2ba20516e8e008d6700ee465d">d9bad4ef</a>)</li> <li><strong>clients:</strong> <ul> <li>ignore prettifying automated snapshot test code (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7819">#7819</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f">1eabedb4</a>)</li> <li>run client feature tests in browser mode too (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7808">#7808</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6">37f1adc7</a>)</li> </ul> </li> </ul> <hr /> <p>For list of updated packages, view <strong>updated-packages.md</strong> in <strong>assets-3.1003.0.zip</strong></p> <h2>v3.1002.0</h2> <h4>3.1002.0(2026-03-04)</h4> <h5>New Features</h5> <ul> <li><strong>client-elastic-beanstalk:</strong> As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/44048ced6ccd02b2c986b530aa6068c849d8e1e4">44048ced</a>)</li> <li><strong>client-connect:</strong> Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b79a4dbd20bc5f3bcf1c3a72ec6b3d0e1e94e6e0">b79a4dbd</a>)</li> <li><strong>client-gamelift:</strong> Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1fc4ece8bfc7c7fa6fcde43ab1ad032a7e652375">1fc4ece8</a>)</li> <li><strong>client-elasticsearch-service:</strong> Adds support for DeploymentStrategyOptions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/703a57c5a1b582fb12712bf6620a56b358c8c1c7">703a57c5</a>)</li> <li><strong>client-opensearch:</strong> Adding support for DeploymentStrategyOptions (<a href="https://github.com/aws/aws-sdk-js-v3/commit/cf6a881010a9ebaf56ff5fbf3a0cfa85358faae0">cf6a8810</a>)</li> <li><strong>client-quicksight:</strong> Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c94f306e60e69fc8dac17dae20a5c9c3dc984b29">c94f306e</a>)</li> </ul> <!-- 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.1002.0...v3.1003.0">3.1003.0</a> (2026-03-05)</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.1001.0...v3.1002.0">3.1002.0</a> (2026-03-04)</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.1000.0...v3.1001.0">3.1001.0</a> (2026-03-03)</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.999.0...v3.1000.0">3.1000.0</a> (2026-02-27)</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.998.0...v3.999.0">3.999.0</a> (2026-02-26)</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.997.0...v3.998.0">3.998.0</a> (2026-02-25)</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.996.0...v3.997.0">3.997.0</a> (2026-02-24)</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/4c36ea38e9ddc6deacd435c7c590921940f4c9ff"><code>4c36ea3</code></a> Publish v3.1003.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28"><code>8ddd544</code></a> chore: bump '@smithy/*' dependencies (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7822">#7822</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4"><code>6b5b50b</code></a> chore(clients): strip trailing periods when the last character is non-alphanu...</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/297b56431a1c8fe0563a55d35dd80c02e9bfb386"><code>297b564</code></a> chore(clients): sort missed package.json files (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7820">#7820</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62"><code>03dad66</code></a> chore: set downlevel types to be used in typescript@'<4.5' (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7817">#7817</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f"><code>1eabedb</code></a> test(clients): ignore prettifying automated snapshot test code (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7819">#7819</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849"><code>17ecb20</code></a> chore(clients): include deprecated-since in generated tsdoc (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7815">#7815</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6"><code>37f1adc</code></a> test(clients): run client feature tests in browser mode too (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs/issues/7808">#7808</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/800431bb02b71bad13537bc615e456df77776b22"><code>800431b</code></a> Publish v3.1002.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/b8467bd179319f86804fea08e1b09d3a95166603"><code>b8467bd</code></a> Publish v3.1001.0</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.1003.0/clients/client-sqs">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/client-s3` from 3.989.0 to 3.1003.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-s3</code>'s releases</a>.</em></p> <blockquote> <h2>v3.1003.0</h2> <h4>3.1003.0(2026-03-05)</h4> <h5>Chores</h5> <ul> <li>bump '@smithy/*' dependencies (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7822">#7822</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28">8ddd5442</a>)</li> <li>set downlevel types to be used in typescript@'<4.5' (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7817">#7817</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62">03dad66b</a>)</li> <li><strong>clients:</strong> <ul> <li>strip trailing periods when the last character is non-alphanumeric (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7821">#7821</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4">6b5b50b2</a>)</li> <li>sort missed package.json files (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7820">#7820</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/297b56431a1c8fe0563a55d35dd80c02e9bfb386">297b5643</a>)</li> <li>include deprecated-since in generated tsdoc (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7815">#7815</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849">17ecb20a</a>)</li> </ul> </li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2026-03-05 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e9a8d8dea104165b03857c991d4e9e8ae4dec3a3">e9a8d8de</a>)</li> <li><strong>client-guardduty:</strong> Added MALICIOUS FILE to IndicatorType enum in MDC Sequence (<a href="https://github.com/aws/aws-sdk-js-v3/commit/bb9d466281db2b1023129d249ed576bd94730b18">bb9d4662</a>)</li> <li><strong>client-savingsplans:</strong> Added support for OpenSearch and Neptune Analytics to Database Savings Plans. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/9e0639134fff8635622886260fb2127daa8778de">9e063913</a>)</li> <li><strong>client-sagemaker:</strong> Adds support for S3 Bucket Ownership validation for SageMaker Managed MLflow. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b62165643e03cc036e13cd463cde57116f36b38b">b6216564</a>)</li> <li><strong>client-connecthealth:</strong> Connect-Health SDK is AWS's unified SDK for the Amazon Connect Health offering. It allows healthcare developers to integrate purpose-built agents - such as patient insights, ambient documentation, and medical coding - into their existing applications, including EHRs, telehealth, and revenue cycle. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/454c6cb7d73b92d737c008a9d9ef7fdb6365d647">454c6cb7</a>)</li> <li><strong>client-mpa:</strong> Updates to multi-party approval (MPA) service to add support for approval team baseline operations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e95815438c56f42e2ffa47962c1aaa3c82afeef8">e9581543</a>)</li> <li><strong>client-ec2:</strong> Added metadata field to CapacityAllocation. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de">d7cce1c2</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>nested-clients:</strong> add bundler instructions for browser credential clients (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7823">#7823</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f32f353945f0bda18e6518ec017f81ea6843f33e">f32f3539</a>)</li> </ul> <h5>Tests</h5> <ul> <li><strong>canary:</strong> replace verdaccio canary test with client tests in canary mode (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7816">#7816</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d9bad4ef08ac16a2ba20516e8e008d6700ee465d">d9bad4ef</a>)</li> <li><strong>clients:</strong> <ul> <li>ignore prettifying automated snapshot test code (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7819">#7819</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f">1eabedb4</a>)</li> <li>run client feature tests in browser mode too (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7808">#7808</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6">37f1adc7</a>)</li> </ul> </li> </ul> <hr /> <p>For list of updated packages, view <strong>updated-packages.md</strong> in <strong>assets-3.1003.0.zip</strong></p> <h2>v3.1002.0</h2> <h4>3.1002.0(2026-03-04)</h4> <h5>New Features</h5> <ul> <li><strong>client-elastic-beanstalk:</strong> As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/44048ced6ccd02b2c986b530aa6068c849d8e1e4">44048ced</a>)</li> <li><strong>client-connect:</strong> Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b79a4dbd20bc5f3bcf1c3a72ec6b3d0e1e94e6e0">b79a4dbd</a>)</li> <li><strong>client-gamelift:</strong> Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1fc4ece8bfc7c7fa6fcde43ab1ad032a7e652375">1fc4ece8</a>)</li> <li><strong>client-elasticsearch-service:</strong> Adds support for DeploymentStrategyOptions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/703a57c5a1b582fb12712bf6620a56b358c8c1c7">703a57c5</a>)</li> <li><strong>client-opensearch:</strong> Adding support for DeploymentStrategyOptions (<a href="https://github.com/aws/aws-sdk-js-v3/commit/cf6a881010a9ebaf56ff5fbf3a0cfa85358faae0">cf6a8810</a>)</li> <li><strong>client-quicksight:</strong> Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c94f306e60e69fc8dac17dae20a5c9c3dc984b29">c94f306e</a>)</li> </ul> <!-- 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-s3/CHANGELOG.md"><code>@aws-sdk/client-s3</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1002.0...v3.1003.0">3.1003.0</a> (2026-03-05)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-s3</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1001.0...v3.1002.0">3.1002.0</a> (2026-03-04)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-s3</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1000.0...v3.1001.0">3.1001.0</a> (2026-03-03)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-s3</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.999.0...v3.1000.0">3.1000.0</a> (2026-02-27)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-s3</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.998.0...v3.999.0">3.999.0</a> (2026-02-26)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-s3</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.997.0...v3.998.0">3.998.0</a> (2026-02-25)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-s3</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.996.0...v3.997.0">3.997.0</a> (2026-02-24)</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/4c36ea38e9ddc6deacd435c7c590921940f4c9ff"><code>4c36ea3</code></a> Publish v3.1003.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28"><code>8ddd544</code></a> chore: bump '@smithy/*' dependencies (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7822">#7822</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4"><code>6b5b50b</code></a> chore(clients): strip trailing periods when the last character is non-alphanu...</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62"><code>03dad66</code></a> chore: set downlevel types to be used in typescript@'<4.5' (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7817">#7817</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f"><code>1eabedb</code></a> test(clients): ignore prettifying automated snapshot test code (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7819">#7819</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849"><code>17ecb20</code></a> chore(clients): include deprecated-since in generated tsdoc (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7815">#7815</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6"><code>37f1adc</code></a> test(clients): run client feature tests in browser mode too (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7808">#7808</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/800431bb02b71bad13537bc615e456df77776b22"><code>800431b</code></a> Publish v3.1002.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/b8467bd179319f86804fea08e1b09d3a95166603"><code>b8467bd</code></a> Publish v3.1001.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/ab9e775920c7900a2759c22385091aa88eb6ee15"><code>ab9e775</code></a> chore(codegen): upgrade smithy 1.68.0 (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3/issues/7806">#7806</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.1003.0/clients/client-s3">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/lib-storage` from 3.989.0 to 3.1003.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aws/aws-sdk-js-v3/releases"><code>@aws-sdk/lib-storage</code>'s releases</a>.</em></p> <blockquote> <h2>v3.1003.0</h2> <h4>3.1003.0(2026-03-05)</h4> <h5>Chores</h5> <ul> <li>bump '@smithy/*' dependencies (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7822">#7822</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28">8ddd5442</a>)</li> <li>set downlevel types to be used in typescript@'<4.5' (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7817">#7817</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62">03dad66b</a>)</li> <li><strong>clients:</strong> <ul> <li>strip trailing periods when the last character is non-alphanumeric (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7821">#7821</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4">6b5b50b2</a>)</li> <li>sort missed package.json files (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7820">#7820</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/297b56431a1c8fe0563a55d35dd80c02e9bfb386">297b5643</a>)</li> <li>include deprecated-since in generated tsdoc (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7815">#7815</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849">17ecb20a</a>)</li> </ul> </li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2026-03-05 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e9a8d8dea104165b03857c991d4e9e8ae4dec3a3">e9a8d8de</a>)</li> <li><strong>client-guardduty:</strong> Added MALICIOUS FILE to IndicatorType enum in MDC Sequence (<a href="https://github.com/aws/aws-sdk-js-v3/commit/bb9d466281db2b1023129d249ed576bd94730b18">bb9d4662</a>)</li> <li><strong>client-savingsplans:</strong> Added support for OpenSearch and Neptune Analytics to Database Savings Plans. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/9e0639134fff8635622886260fb2127daa8778de">9e063913</a>)</li> <li><strong>client-sagemaker:</strong> Adds support for S3 Bucket Ownership validation for SageMaker Managed MLflow. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b62165643e03cc036e13cd463cde57116f36b38b">b6216564</a>)</li> <li><strong>client-connecthealth:</strong> Connect-Health SDK is AWS's unified SDK for the Amazon Connect Health offering. It allows healthcare developers to integrate purpose-built agents - such as patient insights, ambient documentation, and medical coding - into their existing applications, including EHRs, telehealth, and revenue cycle. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/454c6cb7d73b92d737c008a9d9ef7fdb6365d647">454c6cb7</a>)</li> <li><strong>client-mpa:</strong> Updates to multi-party approval (MPA) service to add support for approval team baseline operations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e95815438c56f42e2ffa47962c1aaa3c82afeef8">e9581543</a>)</li> <li><strong>client-ec2:</strong> Added metadata field to CapacityAllocation. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de">d7cce1c2</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>nested-clients:</strong> add bundler instructions for browser credential clients (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7823">#7823</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f32f353945f0bda18e6518ec017f81ea6843f33e">f32f3539</a>)</li> </ul> <h5>Tests</h5> <ul> <li><strong>canary:</strong> replace verdaccio canary test with client tests in canary mode (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7816">#7816</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d9bad4ef08ac16a2ba20516e8e008d6700ee465d">d9bad4ef</a>)</li> <li><strong>clients:</strong> <ul> <li>ignore prettifying automated snapshot test code (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7819">#7819</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f">1eabedb4</a>)</li> <li>run client feature tests in browser mode too (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7808">#7808</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6">37f1adc7</a>)</li> </ul> </li> </ul> <hr /> <p>For list of updated packages, view <strong>updated-packages.md</strong> in <strong>assets-3.1003.0.zip</strong></p> <h2>v3.1002.0</h2> <h4>3.1002.0(2026-03-04)</h4> <h5>New Features</h5> <ul> <li><strong>client-elastic-beanstalk:</strong> As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/44048ced6ccd02b2c986b530aa6068c849d8e1e4">44048ced</a>)</li> <li><strong>client-connect:</strong> Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b79a4dbd20bc5f3bcf1c3a72ec6b3d0e1e94e6e0">b79a4dbd</a>)</li> <li><strong>client-gamelift:</strong> Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1fc4ece8bfc7c7fa6fcde43ab1ad032a7e652375">1fc4ece8</a>)</li> <li><strong>client-elasticsearch-service:</strong> Adds support for DeploymentStrategyOptions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/703a57c5a1b582fb12712bf6620a56b358c8c1c7">703a57c5</a>)</li> <li><strong>client-opensearch:</strong> Adding support for DeploymentStrategyOptions (<a href="https://github.com/aws/aws-sdk-js-v3/commit/cf6a881010a9ebaf56ff5fbf3a0cfa85358faae0">cf6a8810</a>)</li> <li><strong>client-quicksight:</strong> Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c94f306e60e69fc8dac17dae20a5c9c3dc984b29">c94f306e</a>)</li> </ul> <!-- 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/lib/lib-storage/CHANGELOG.md"><code>@aws-sdk/lib-storage</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1002.0...v3.1003.0">3.1003.0</a> (2026-03-05)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/lib-storage</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1001.0...v3.1002.0">3.1002.0</a> (2026-03-04)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/lib-storage</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1000.0...v3.1001.0">3.1001.0</a> (2026-03-03)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/lib-storage</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.999.0...v3.1000.0">3.1000.0</a> (2026-02-27)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/lib-storage</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.998.0...v3.999.0">3.999.0</a> (2026-02-26)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/lib-storage</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.997.0...v3.998.0">3.998.0</a> (2026-02-25)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/lib-storage</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.996.0...v3.997.0">3.997.0</a> (2026-02-24)</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/4c36ea38e9ddc6deacd435c7c590921940f4c9ff"><code>4c36ea3</code></a> Publish v3.1003.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28"><code>8ddd544</code></a> chore: bump '@smithy/*' dependencies (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7822">#7822</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62"><code>03dad66</code></a> chore: set downlevel types to be used in typescript@'<4.5' (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7817">#7817</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/800431bb02b71bad13537bc615e456df77776b22"><code>800431b</code></a> Publish v3.1002.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/b8467bd179319f86804fea08e1b09d3a95166603"><code>b8467bd</code></a> Publish v3.1001.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/ab9e775920c7900a2759c22385091aa88eb6ee15"><code>ab9e775</code></a> chore(codegen): upgrade smithy 1.68.0 (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7806">#7806</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/e373aa8706d305625352a8fdb21cdbaadb1f971b"><code>e373aa8</code></a> Publish v3.1000.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/cd1d49d696f4d2d596d2374943267f3a7074651c"><code>cd1d49d</code></a> Publish v3.999.0</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/ab81c738436db219e5163ccaab953805776b33d6"><code>ab81c73</code></a> chore(packages): reapply eslint rules (<a href="https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage/issues/7789">#7789</a>)</li> <li><a href="https://github.com/aws/aws-sdk-js-v3/commit/adb02cd5ccef10ff162faee76a159dba70626584"><code>adb02cd</code></a> Publish v3.998.0</li> <li>Additional commits viewable in <a href="https://github.com/aws/aws-sdk-js-v3/commits/v3.1003.0/lib/lib-storage">compare view</a></li> </ul> </details> <br /> Updates `@aws-sdk/client-eventbridge` from 3.989.0 to 3.1003.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-eventbridge</code>'s releases</a>.</em></p> <blockquote> <h2>v3.1003.0</h2> <h4>3.1003.0(2026-03-05)</h4> <h5>Chores</h5> <ul> <li>bump '@smithy/*' dependencies (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7822">#7822</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/8ddd54420b62212cf3d797050e924efba1fada28">8ddd5442</a>)</li> <li>set downlevel types to be used in typescript@'<4.5' (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7817">#7817</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/03dad66b98363f09d1f0984b670be110caea8f62">03dad66b</a>)</li> <li><strong>clients:</strong> <ul> <li>strip trailing periods when the last character is non-alphanumeric (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7821">#7821</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/6b5b50b248cceac0353ad6b2dd3be974db27c6a4">6b5b50b2</a>)</li> <li>sort missed package.json files (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7820">#7820</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/297b56431a1c8fe0563a55d35dd80c02e9bfb386">297b5643</a>)</li> <li>include deprecated-since in generated tsdoc (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7815">#7815</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/17ecb20a27d0c2b7968db1edf3b453e4a4732849">17ecb20a</a>)</li> </ul> </li> </ul> <h5>New Features</h5> <ul> <li><strong>clients:</strong> update client endpoints as of 2026-03-05 (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e9a8d8dea104165b03857c991d4e9e8ae4dec3a3">e9a8d8de</a>)</li> <li><strong>client-guardduty:</strong> Added MALICIOUS FILE to IndicatorType enum in MDC Sequence (<a href="https://github.com/aws/aws-sdk-js-v3/commit/bb9d466281db2b1023129d249ed576bd94730b18">bb9d4662</a>)</li> <li><strong>client-savingsplans:</strong> Added support for OpenSearch and Neptune Analytics to Database Savings Plans. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/9e0639134fff8635622886260fb2127daa8778de">9e063913</a>)</li> <li><strong>client-sagemaker:</strong> Adds support for S3 Bucket Ownership validation for SageMaker Managed MLflow. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b62165643e03cc036e13cd463cde57116f36b38b">b6216564</a>)</li> <li><strong>client-connecthealth:</strong> Connect-Health SDK is AWS's unified SDK for the Amazon Connect Health offering. It allows healthcare developers to integrate purpose-built agents - such as patient insights, ambient documentation, and medical coding - into their existing applications, including EHRs, telehealth, and revenue cycle. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/454c6cb7d73b92d737c008a9d9ef7fdb6365d647">454c6cb7</a>)</li> <li><strong>client-mpa:</strong> Updates to multi-party approval (MPA) service to add support for approval team baseline operations. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/e95815438c56f42e2ffa47962c1aaa3c82afeef8">e9581543</a>)</li> <li><strong>client-ec2:</strong> Added metadata field to CapacityAllocation. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d7cce1c2a1a299c49f16f9bc02ee88d904d723de">d7cce1c2</a>)</li> </ul> <h5>Bug Fixes</h5> <ul> <li><strong>nested-clients:</strong> add bundler instructions for browser credential clients (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7823">#7823</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/f32f353945f0bda18e6518ec017f81ea6843f33e">f32f3539</a>)</li> </ul> <h5>Tests</h5> <ul> <li><strong>canary:</strong> replace verdaccio canary test with client tests in canary mode (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7816">#7816</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/d9bad4ef08ac16a2ba20516e8e008d6700ee465d">d9bad4ef</a>)</li> <li><strong>clients:</strong> <ul> <li>ignore prettifying automated snapshot test code (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7819">#7819</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1eabedb495b19e9c5fe4b24b9f9e461ba25e648f">1eabedb4</a>)</li> <li>run client feature tests in browser mode too (<a href="https://redirect.github.com/aws/aws-sdk-js-v3/pull/7808">#7808</a>) (<a href="https://github.com/aws/aws-sdk-js-v3/commit/37f1adc72295176f8d844f5eaa13b427e27b28d6">37f1adc7</a>)</li> </ul> </li> </ul> <hr /> <p>For list of updated packages, view <strong>updated-packages.md</strong> in <strong>assets-3.1003.0.zip</strong></p> <h2>v3.1002.0</h2> <h4>3.1002.0(2026-03-04)</h4> <h5>New Features</h5> <ul> <li><strong>client-elastic-beanstalk:</strong> As part of this release, Beanstalk introduce a new info type - analyze for request environment info and retrieve environment info operations. When customers request an Al analysis, Elastic Beanstalk runs a script on an instance in their environment and returns an analysis of events, health and logs. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/44048ced6ccd02b2c986b530aa6068c849d8e1e4">44048ced</a>)</li> <li><strong>client-connect:</strong> Added support for configuring additional email addresses on queues in Amazon Connect. Agents can now select an outbound email address and associate additional email addresses for replying to or initiating emails. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/b79a4dbd20bc5f3bcf1c3a72ec6b3d0e1e94e6e0">b79a4dbd</a>)</li> <li><strong>client-gamelift:</strong> Amazon GameLift Servers now offers DDoS protection for Linux-based EC2 and Container Fleets on SDKv5. The player gateway proxy relay network provides traffic validation, per-player rate limiting, and game server IP address obfuscation all with negligible added latency and no additional cost. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/1fc4ece8bfc7c7fa6fcde43ab1ad032a7e652375">1fc4ece8</a>)</li> <li><strong>client-elasticsearch-service:</strong> Adds support for DeploymentStrategyOptions. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/703a57c5a1b582fb12712bf6620a56b358c8c1c7">703a57c5</a>)</li> <li><strong>client-opensearch:</strong> Adding support for DeploymentStrategyOptions (<a href="https://github.com/aws/aws-sdk-js-v3/commit/cf6a881010a9ebaf56ff5fbf3a0cfa85358faae0">cf6a8810</a>)</li> <li><strong>client-quicksight:</strong> Added several new values for Capabilities, increased visual limit per sheet from previous limit to 75, renamed Quick Suite to Quick in several places. (<a href="https://github.com/aws/aws-sdk-js-v3/commit/c94f306e60e69fc8dac17dae20a5c9c3dc984b29">c94f306e</a>)</li> </ul> <!-- 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-eventbridge/CHANGELOG.md"><code>@aws-sdk/client-eventbridge</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1002.0...v3.1003.0">3.1003.0</a> (2026-03-05)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-eventbridge</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1001.0...v3.1002.0">3.1002.0</a> (2026-03-04)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-eventbridge</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.1000.0...v3.1001.0">3.1001.0</a> (2026-03-03)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-eventbridge</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.999.0...v3.1000.0">3.1000.0</a> (2026-02-27)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-eventbridge</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.998.0...v3.999.0">3.999.0</a> (2026-02-26)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-eventbridge</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.997.0...v3.998.0">3.998.0</a> (2026-02-25)</h1> <p><strong>Note:</strong> Version bump only for package <code>@aws-sdk/client-eventbridge</code></p> <h1><a href="https://github.com/aws/aws-sdk-js-v3/compare/v3.996.0...v3.997.0">3.997.0</a> (2026-02-24)</h1> <!-- raw HTML omitted --> </blockquote> <p>... (tru…
Configuration menu - View commit details
-
Copy full SHA for c3dcce2 - Browse repository at this point
Copy the full SHA c3dcce2View commit details -
chore(docs): bump requests from 2.32.4 to 2.33.0 in /.github/workflow…
…s/mkdocs (#5079) Bumps [requests](https://github.com/psf/requests) from 2.32.4 to 2.33.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/psf/requests/releases">requests's releases</a>.</em></p> <blockquote> <h2>v2.33.0</h2> <h2>2.33.0 (2026-03-25)</h2> <p><strong>Announcements</strong></p> <ul> <li>📣 Requests is adding inline types. If you have a typed code base that uses Requests, please take a look at <a href="https://redirect.github.com/psf/requests/issues/7271">#7271</a>. Give it a try, and report any gaps or feedback you may have in the issue. 📣</li> </ul> <p><strong>Security</strong></p> <ul> <li>CVE-2026-25645 <code>requests.utils.extract_zipped_paths</code> now extracts contents to a non-deterministic location to prevent malicious file replacement. This does not affect default usage of Requests, only applications calling the utility function directly.</li> </ul> <p><strong>Improvements</strong></p> <ul> <li>Migrated to a PEP 517 build system using setuptools. (<a href="https://redirect.github.com/psf/requests/issues/7012">#7012</a>)</li> </ul> <p><strong>Bugfixes</strong></p> <ul> <li>Fixed an issue where an empty netrc entry could cause malformed authentication to be applied to Requests on Python 3.11+. (<a href="https://redirect.github.com/psf/requests/issues/7205">#7205</a>)</li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>Dropped support for Python 3.9 following its end of support. (<a href="https://redirect.github.com/psf/requests/issues/7196">#7196</a>)</li> </ul> <p><strong>Documentation</strong></p> <ul> <li>Various typo fixes and doc improvements.</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/M0d3v1"><code>@M0d3v1</code></a> made their first contribution in <a href="https://redirect.github.com/psf/requests/pull/6865">psf/requests#6865</a></li> <li><a href="https://github.com/aminvakil"><code>@aminvakil</code></a> made their first contribution in <a href="https://redirect.github.com/psf/requests/pull/7220">psf/requests#7220</a></li> <li><a href="https://github.com/E8Price"><code>@E8Price</code></a> made their first contribution in <a href="https://redirect.github.com/psf/requests/pull/6960">psf/requests#6960</a></li> <li><a href="https://github.com/mitre88"><code>@mitre88</code></a> made their first contribution in <a href="https://redirect.github.com/psf/requests/pull/7244">psf/requests#7244</a></li> <li><a href="https://github.com/magsen"><code>@magsen</code></a> made their first contribution in <a href="https://redirect.github.com/psf/requests/pull/6553">psf/requests#6553</a></li> <li><a href="https://github.com/Rohan5commit"><code>@Rohan5commit</code></a> made their first contribution in <a href="https://redirect.github.com/psf/requests/pull/7227">psf/requests#7227</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/psf/requests/blob/main/HISTORY.md#2330-2026-03-25">https://github.com/psf/requests/blob/main/HISTORY.md#2330-2026-03-25</a></p> <h2>v2.32.5</h2> <h2>2.32.5 (2025-08-18)</h2> <p><strong>Bugfixes</strong></p> <ul> <li>The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.</li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>Added support for Python 3.14.</li> <li>Dropped support for Python 3.8 following its end of support.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/psf/requests/blob/main/HISTORY.md">requests's changelog</a>.</em></p> <blockquote> <h2>2.33.0 (2026-03-25)</h2> <p><strong>Announcements</strong></p> <ul> <li>📣 Requests is adding inline types. If you have a typed code base that uses Requests, please take a look at <a href="https://redirect.github.com/psf/requests/issues/7271">#7271</a>. Give it a try, and report any gaps or feedback you may have in the issue. 📣</li> </ul> <p><strong>Security</strong></p> <ul> <li>CVE-2026-25645 <code>requests.utils.extract_zipped_paths</code> now extracts contents to a non-deterministic location to prevent malicious file replacement. This does not affect default usage of Requests, only applications calling the utility function directly.</li> </ul> <p><strong>Improvements</strong></p> <ul> <li>Migrated to a PEP 517 build system using setuptools. (<a href="https://redirect.github.com/psf/requests/issues/7012">#7012</a>)</li> </ul> <p><strong>Bugfixes</strong></p> <ul> <li>Fixed an issue where an empty netrc entry could cause malformed authentication to be applied to Requests on Python 3.11+. (<a href="https://redirect.github.com/psf/requests/issues/7205">#7205</a>)</li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>Dropped support for Python 3.9 following its end of support. (<a href="https://redirect.github.com/psf/requests/issues/7196">#7196</a>)</li> </ul> <p><strong>Documentation</strong></p> <ul> <li>Various typo fixes and doc improvements.</li> </ul> <h2>2.32.5 (2025-08-18)</h2> <p><strong>Bugfixes</strong></p> <ul> <li>The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.</li> </ul> <p><strong>Deprecations</strong></p> <ul> <li>Added support for Python 3.14.</li> <li>Dropped support for Python 3.8 following its end of support.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/psf/requests/commit/bc04dfd6dad4cb02cd92f5daa81eb562d280a761"><code>bc04dfd</code></a> v2.33.0</li> <li><a href="https://github.com/psf/requests/commit/66d21cb07bd6255b1280291c4fafb71803cdb3b7"><code>66d21cb</code></a> Merge commit from fork</li> <li><a href="https://github.com/psf/requests/commit/8b9bc8fc0f63be84602387913c4b689f19efd028"><code>8b9bc8f</code></a> Move badges to top of README (<a href="https://redirect.github.com/psf/requests/issues/7293">#7293</a>)</li> <li><a href="https://github.com/psf/requests/commit/e331a288f369973f5de0ec8901c94cae4fa87286"><code>e331a28</code></a> Remove unused extraction call (<a href="https://redirect.github.com/psf/requests/issues/7292">#7292</a>)</li> <li><a href="https://github.com/psf/requests/commit/753fd08c5eacce0aa0df73fe47e49525c67e0a29"><code>753fd08</code></a> docs: fix FAQ grammar in httplib2 example</li> <li><a href="https://github.com/psf/requests/commit/774a0b837a194ee885d4fdd9ca947900cc3daf71"><code>774a0b8</code></a> docs(socks): same block as other sections</li> <li><a href="https://github.com/psf/requests/commit/9c72a41bec8597f948c9d8caa5dc3f12273b3303"><code>9c72a41</code></a> Bump github/codeql-action from 4.33.0 to 4.34.1</li> <li><a href="https://github.com/psf/requests/commit/ebf71906798ec82f34e07d3168f8b8aecaf8a3be"><code>ebf7190</code></a> Bump github/codeql-action from 4.32.0 to 4.33.0</li> <li><a href="https://github.com/psf/requests/commit/0e4ae38f0c93d4f92a96c774bd52c069d12a4798"><code>0e4ae38</code></a> docs: exclude Response.is_permanent_redirect from API docs (<a href="https://redirect.github.com/psf/requests/issues/7244">#7244</a>)</li> <li><a href="https://github.com/psf/requests/commit/d568f47278492e630cc990a259047c67991d007a"><code>d568f47</code></a> docs: clarify Quickstart POST example (<a href="https://redirect.github.com/psf/requests/issues/6960">#6960</a>)</li> <li>Additional commits viewable in <a href="https://github.com/psf/requests/compare/v2.32.4...v2.33.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/github-aws-runners/terraform-aws-github-runner/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 722f853 - Browse repository at this point
Copy the full SHA 722f853View commit details -
chore(docs): bump pygments from 2.19.2 to 2.20.0 in /.github/workflow…
…s/mkdocs (#5087) Bumps [pygments](https://github.com/pygments/pygments) from 2.19.2 to 2.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pygments/pygments/releases">pygments's releases</a>.</em></p> <blockquote> <h2>2.20.0</h2> <ul> <li> <p>New lexers:</p> <ul> <li>Rell (<a href="https://redirect.github.com/pygments/pygments/issues/2914">#2914</a>)</li> </ul> </li> <li> <p>Updated lexers:</p> <ul> <li>archetype: Fix catastrophic backtracking in GUID and ID patterns (<a href="https://redirect.github.com/pygments/pygments/issues/3064">#3064</a>)</li> <li>ASN.1: Recognize minus sign and fix range operator (<a href="https://redirect.github.com/pygments/pygments/issues/3014">#3014</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3060">#3060</a>)</li> <li>C++: Add C++26 keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2955">#2955</a>), add integer literal suffixes (<a href="https://redirect.github.com/pygments/pygments/issues/2966">#2966</a>)</li> <li>ComponentPascal: Fix <code>analyse_text</code> (<a href="https://redirect.github.com/pygments/pygments/issues/3028">#3028</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3032">#3032</a>)</li> <li>Coq renamed to Rocq (<a href="https://redirect.github.com/pygments/pygments/issues/2883">#2883</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2908">#2908</a>)</li> <li>Cython: Various improvements (<a href="https://redirect.github.com/pygments/pygments/issues/2932">#2932</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2933">#2933</a>)</li> <li>Debian control: Improve architecture parsing (<a href="https://redirect.github.com/pygments/pygments/issues/3052">#3052</a>)</li> <li>Devicetree: Add support for overlay/fragments (<a href="https://redirect.github.com/pygments/pygments/issues/3021">#3021</a>), add bytestring support (<a href="https://redirect.github.com/pygments/pygments/issues/3022">#3022</a>), fix catastrophic backtracking (<a href="https://redirect.github.com/pygments/pygments/issues/3057">#3057</a>)</li> <li>Fennel: Various improvements (<a href="https://redirect.github.com/pygments/pygments/issues/2911">#2911</a>)</li> <li>Haskell: Handle escape sequences in character literals (<a href="https://redirect.github.com/pygments/pygments/issues/3069">#3069</a>, <a href="https://redirect.github.com/pygments/pygments/issues/1795">#1795</a>)</li> <li>Java: Add module keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2955">#2955</a>)</li> <li>Lean4: Add operators <code>]'</code>, <code>]?</code>, <code>]!</code> (<a href="https://redirect.github.com/pygments/pygments/issues/2946">#2946</a>)</li> <li>LESS: Support single-line comments (<a href="https://redirect.github.com/pygments/pygments/issues/3005">#3005</a>)</li> <li>LilyPond: Update to 2.25.29 (<a href="https://redirect.github.com/pygments/pygments/issues/2974">#2974</a>)</li> <li>LLVM: Support C-style comments (<a href="https://redirect.github.com/pygments/pygments/issues/3023">#3023</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2978">#2978</a>)</li> <li>Lua(u): Fix catastrophic backtracking (<a href="https://redirect.github.com/pygments/pygments/issues/3047">#3047</a>)</li> <li>Macaulay2: Update to 1.25.05 (<a href="https://redirect.github.com/pygments/pygments/issues/2893">#2893</a>), 1.25.11 (<a href="https://redirect.github.com/pygments/pygments/issues/2988">#2988</a>)</li> <li>Mathematica: Various improvements (<a href="https://redirect.github.com/pygments/pygments/issues/2957">#2957</a>)</li> <li>meson: Add additional operators (<a href="https://redirect.github.com/pygments/pygments/issues/2919">#2919</a>)</li> <li>MySQL: Update keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2970">#2970</a>)</li> <li>org-Mode: Support both schedule and deadline (<a href="https://redirect.github.com/pygments/pygments/issues/2899">#2899</a>)</li> <li>PHP: Add <code>__PROPERTY__</code> magic constant (<a href="https://redirect.github.com/pygments/pygments/issues/2924">#2924</a>), add reserved keywords (<a href="https://redirect.github.com/pygments/pygments/issues/3002">#3002</a>)</li> <li>PostgreSQL: Add more keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2985">#2985</a>)</li> <li>protobuf: Fix namespace tokenization (<a href="https://redirect.github.com/pygments/pygments/issues/2929">#2929</a>)</li> <li>Python: Add <code>t</code>-string support (<a href="https://redirect.github.com/pygments/pygments/issues/2973">#2973</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3009">#3009</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3010">#3010</a>)</li> <li>Tablegen: Fix infinite loop (<a href="https://redirect.github.com/pygments/pygments/issues/2972">#2972</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2940">#2940</a>)</li> <li>Tera Term macro: Add commands introduced in v5.3 through v5.6 (<a href="https://redirect.github.com/pygments/pygments/issues/2951">#2951</a>)</li> <li>TOML: Support TOML 1.1.0 (<a href="https://redirect.github.com/pygments/pygments/issues/3026">#3026</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3027">#3027</a>)</li> <li>Turtle: Allow empty comment lines (<a href="https://redirect.github.com/pygments/pygments/issues/2980">#2980</a>)</li> <li>XML: Added <code>.xbrl</code> as file ending (<a href="https://redirect.github.com/pygments/pygments/issues/2890">#2890</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2891">#2891</a>)</li> </ul> </li> <li> <p>Drop Python 3.8, and add Python 3.14 as a supported version (<a href="https://redirect.github.com/pygments/pygments/issues/2987">#2987</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3012">#3012</a>)</p> </li> <li> <p>Various improvements to <code>autopygmentize</code> (<a href="https://redirect.github.com/pygments/pygments/issues/2894">#2894</a>)</p> </li> <li> <p>Update <code>onedark</code> style to support more token types (<a href="https://redirect.github.com/pygments/pygments/issues/2977">#2977</a>)</p> </li> <li> <p>Update <code>rtt</code> style to support more token types (<a href="https://redirect.github.com/pygments/pygments/issues/2895">#2895</a>)</p> </li> <li> <p>Cache entry points to improve performance (<a href="https://redirect.github.com/pygments/pygments/issues/2979">#2979</a>)</p> </li> <li> <p>Fix <code>xterm-256</code> color table (<a href="https://redirect.github.com/pygments/pygments/issues/3043">#3043</a>)</p> </li> <li> <p>Fix <code>kwargs</code> dictionary getting mutated on each call (<a href="https://redirect.github.com/pygments/pygments/issues/3044">#3044</a>)</p> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pygments/pygments/blob/master/CHANGES">pygments's changelog</a>.</em></p> <blockquote> <h2>Version 2.20.0</h2> <p>(released March 29th, 2026)</p> <ul> <li> <p>New lexers:</p> <ul> <li>Rell (<a href="https://redirect.github.com/pygments/pygments/issues/2914">#2914</a>)</li> </ul> </li> <li> <p>Updated lexers:</p> <ul> <li>archetype: Fix catastrophic backtracking in GUID and ID patterns (<a href="https://redirect.github.com/pygments/pygments/issues/3064">#3064</a>)</li> <li>ASN.1: Recognize minus sign and fix range operator (<a href="https://redirect.github.com/pygments/pygments/issues/3014">#3014</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3060">#3060</a>)</li> <li>C++: Add C++26 keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2955">#2955</a>), add integer literal suffixes (<a href="https://redirect.github.com/pygments/pygments/issues/2966">#2966</a>)</li> <li>ComponentPascal: Fix <code>analyse_text</code> (<a href="https://redirect.github.com/pygments/pygments/issues/3028">#3028</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3032">#3032</a>)</li> <li>Coq renamed to Rocq (<a href="https://redirect.github.com/pygments/pygments/issues/2883">#2883</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2908">#2908</a>)</li> <li>Cython: Various improvements (<a href="https://redirect.github.com/pygments/pygments/issues/2932">#2932</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2933">#2933</a>)</li> <li>Debian control: Improve architecture parsing (<a href="https://redirect.github.com/pygments/pygments/issues/3052">#3052</a>)</li> <li>Devicetree: Add support for overlay/fragments (<a href="https://redirect.github.com/pygments/pygments/issues/3021">#3021</a>), add bytestring support (<a href="https://redirect.github.com/pygments/pygments/issues/3022">#3022</a>), fix catastrophic backtracking (<a href="https://redirect.github.com/pygments/pygments/issues/3057">#3057</a>)</li> <li>Fennel: Various improvements (<a href="https://redirect.github.com/pygments/pygments/issues/2911">#2911</a>)</li> <li>Haskell: Handle escape sequences in character literals (<a href="https://redirect.github.com/pygments/pygments/issues/3069">#3069</a>, <a href="https://redirect.github.com/pygments/pygments/issues/1795">#1795</a>)</li> <li>Java: Add module keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2955">#2955</a>)</li> <li>Lean4: Add operators <code>]'</code>, <code>]?</code>, <code>]!</code> (<a href="https://redirect.github.com/pygments/pygments/issues/2946">#2946</a>)</li> <li>LESS: Support single-line comments (<a href="https://redirect.github.com/pygments/pygments/issues/3005">#3005</a>)</li> <li>LilyPond: Update to 2.25.29 (<a href="https://redirect.github.com/pygments/pygments/issues/2974">#2974</a>)</li> <li>LLVM: Support C-style comments (<a href="https://redirect.github.com/pygments/pygments/issues/3023">#3023</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2978">#2978</a>)</li> <li>Lua(u): Fix catastrophic backtracking (<a href="https://redirect.github.com/pygments/pygments/issues/3047">#3047</a>)</li> <li>Macaulay2: Update to 1.25.05 (<a href="https://redirect.github.com/pygments/pygments/issues/2893">#2893</a>), 1.25.11 (<a href="https://redirect.github.com/pygments/pygments/issues/2988">#2988</a>)</li> <li>Mathematica: Various improvements (<a href="https://redirect.github.com/pygments/pygments/issues/2957">#2957</a>)</li> <li>meson: Add additional operators (<a href="https://redirect.github.com/pygments/pygments/issues/2919">#2919</a>)</li> <li>MySQL: Update keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2970">#2970</a>)</li> <li>org-Mode: Support both schedule and deadline (<a href="https://redirect.github.com/pygments/pygments/issues/2899">#2899</a>)</li> <li>PHP: Add <code>__PROPERTY__</code> magic constant (<a href="https://redirect.github.com/pygments/pygments/issues/2924">#2924</a>), add reserved keywords (<a href="https://redirect.github.com/pygments/pygments/issues/3002">#3002</a>)</li> <li>PostgreSQL: Add more keywords (<a href="https://redirect.github.com/pygments/pygments/issues/2985">#2985</a>)</li> <li>protobuf: Fix namespace tokenization (<a href="https://redirect.github.com/pygments/pygments/issues/2929">#2929</a>)</li> <li>Python: Add <code>t</code>-string support (<a href="https://redirect.github.com/pygments/pygments/issues/2973">#2973</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3009">#3009</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3010">#3010</a>)</li> <li>Tablegen: Fix infinite loop (<a href="https://redirect.github.com/pygments/pygments/issues/2972">#2972</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2940">#2940</a>)</li> <li>Tera Term macro: Add commands introduced in v5.3 through v5.6 (<a href="https://redirect.github.com/pygments/pygments/issues/2951">#2951</a>)</li> <li>TOML: Support TOML 1.1.0 (<a href="https://redirect.github.com/pygments/pygments/issues/3026">#3026</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3027">#3027</a>)</li> <li>Turtle: Allow empty comment lines (<a href="https://redirect.github.com/pygments/pygments/issues/2980">#2980</a>)</li> <li>XML: Added <code>.xbrl</code> as file ending (<a href="https://redirect.github.com/pygments/pygments/issues/2890">#2890</a>, <a href="https://redirect.github.com/pygments/pygments/issues/2891">#2891</a>)</li> </ul> </li> <li> <p>Drop Python 3.8, and add Python 3.14 as a supported version (<a href="https://redirect.github.com/pygments/pygments/issues/2987">#2987</a>, <a href="https://redirect.github.com/pygments/pygments/issues/3012">#3012</a>)</p> </li> <li> <p>Various improvements to <code>autopygmentize</code> (<a href="https://redirect.github.com/pygments/pygments/issues/2894">#2894</a>)</p> </li> <li> <p>Update <code>onedark</code> style to support more token types (<a href="https://redirect.github.com/pygments/pygments/issues/2977">#2977</a>)</p> </li> <li> <p>Update <code>rtt</code> style to support more token types (<a href="https://redirect.github.com/pygments/pygments/issues/2895">#2895</a>)</p> </li> <li> <p>Cache entry points to improve performance (<a href="https://redirect.github.com/pygments/pygments/issues/2979">#2979</a>)</p> </li> <li> <p>Fix <code>xterm-256</code> color table (<a href="https://redirect.github.com/pygments/pygments/issues/3043">#3043</a>)</p> </li> <li> <p>Fix <code>kwargs</code> dictionary getting mutated on each call (<a href="https://redirect.github.com/pygments/pygments/issues/3044">#3044</a>)</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pygments/pygments/commit/708197d82827ba2d5ca78bcbb653c7102ce86dcd"><code>708197d</code></a> Fix underline length.</li> <li><a href="https://github.com/pygments/pygments/commit/1d4538ae8621d766ecc91ff59caf76ab75983abc"><code>1d4538a</code></a> Prepare 2.20 release.</li> <li><a href="https://github.com/pygments/pygments/commit/2ceaee4e634eebae2d10a47fd05406871f6bac8f"><code>2ceaee4</code></a> Update CHANGES.</li> <li><a href="https://github.com/pygments/pygments/commit/e3a3c54b58c7f80bc4db887e471d4f91c77844ed"><code>e3a3c54</code></a> Fix Haskell lexer: handle escape sequences in character literals (<a href="https://redirect.github.com/pygments/pygments/issues/3069">#3069</a>)</li> <li><a href="https://github.com/pygments/pygments/commit/d7c3453e342dac319f58e4091f4ef183cc49d802"><code>d7c3453</code></a> Merge pull request <a href="https://redirect.github.com/pygments/pygments/issues/3071">#3071</a> from pygments/harden-html-formatter</li> <li><a href="https://github.com/pygments/pygments/commit/0f97e7c37d44abfa4ddfddf44a3290fdad586034"><code>0f97e7c</code></a> Harden the HTML formatter against CSS.</li> <li><a href="https://github.com/pygments/pygments/commit/9f981b2ba42b88ca5bdcebf12cd01efd7cd80aec"><code>9f981b2</code></a> Update CHANGES.</li> <li><a href="https://github.com/pygments/pygments/commit/1d889151024e9a53f3702a60558b29b070306e9e"><code>1d88915</code></a> Update CHANGES.</li> <li><a href="https://github.com/pygments/pygments/commit/c3d93adb9827fc054c3c12b47bde31c781a36a93"><code>c3d93ad</code></a> Fix ASN.1 lexer: recognize minus sign and fix range operator (<a href="https://redirect.github.com/pygments/pygments/issues/3060">#3060</a>)</li> <li><a href="https://github.com/pygments/pygments/commit/4f06bcf8a5ba3f2b5bda24a26ccf041a1a65d91e"><code>4f06bcf</code></a> fix bad behaving backtracking regex in CommonLispLexer</li> <li>Additional commits viewable in <a href="https://github.com/pygments/pygments/compare/2.19.2...2.20.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/github-aws-runners/terraform-aws-github-runner/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ab8965f - Browse repository at this point
Copy the full SHA ab8965fView commit details -
chore(deps): bump github/codeql-action from 4.32.4 to 4.32.6 (#5070)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.32.4 to 4.32.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p> <blockquote> <h2>v4.32.6</h2> <ul> <li>Update default CodeQL bundle version to <a href="https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3">2.24.3</a>. <a href="https://redirect.github.com/github/codeql-action/pull/3548">#3548</a></li> </ul> <h2>v4.32.5</h2> <ul> <li>Repositories owned by an organization can now set up the <code>github-codeql-disable-overlay</code> custom repository property to disable <a href="https://redirect.github.com/github/roadmap/issues/1158">improved incremental analysis for CodeQL</a>. First, create a custom repository property with the name <code>github-codeql-disable-overlay</code> and the type "True/false" in the organization's settings. Then in the repository's settings, set this property to <code>true</code> to disable improved incremental analysis. For more information, see <a href="https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization">Managing custom properties for repositories in your organization</a>. This feature is not yet available on GitHub Enterprise Server. <a href="https://redirect.github.com/github/codeql-action/pull/3507">#3507</a></li> <li>Added an experimental change so that when <a href="https://redirect.github.com/github/roadmap/issues/1158">improved incremental analysis</a> fails on a runner — potentially due to insufficient disk space — the failure is recorded in the Actions cache so that subsequent runs will automatically skip improved incremental analysis until something changes (e.g. a larger runner is provisioned or a new CodeQL version is released). We expect to roll this change out to everyone in March. <a href="https://redirect.github.com/github/codeql-action/pull/3487">#3487</a></li> <li>The minimum memory check for improved incremental analysis is now skipped for CodeQL 2.24.3 and later, which has reduced peak RAM usage. <a href="https://redirect.github.com/github/codeql-action/pull/3515">#3515</a></li> <li>Reduced log levels for best-effort private package registry connection check failures to reduce noise from workflow annotations. <a href="https://redirect.github.com/github/codeql-action/pull/3516">#3516</a></li> <li>Added an experimental change which lowers the minimum disk space requirement for <a href="https://redirect.github.com/github/roadmap/issues/1158">improved incremental analysis</a>, enabling it to run on standard GitHub Actions runners. We expect to roll this change out to everyone in March. <a href="https://redirect.github.com/github/codeql-action/pull/3498">#3498</a></li> <li>Added an experimental change which allows the <code>start-proxy</code> action to resolve the CodeQL CLI version from feature flags instead of using the linked CLI bundle version. We expect to roll this change out to everyone in March. <a href="https://redirect.github.com/github/codeql-action/pull/3512">#3512</a></li> <li>The previously experimental changes from versions 4.32.3, 4.32.4, 3.32.3 and 3.32.4 are now enabled by default. <a href="https://redirect.github.com/github/codeql-action/pull/3503">#3503</a>, <a href="https://redirect.github.com/github/codeql-action/pull/3504">#3504</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/blob/main/CHANGELOG.md">github/codeql-action's changelog</a>.</em></p> <blockquote> <h1>CodeQL Action Changelog</h1> <p>See the <a href="https://github.com/github/codeql-action/releases">releases page</a> for the relevant changes to the CodeQL CLI and language packs.</p> <h2>[UNRELEASED]</h2> <ul> <li> <p>Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. <a href="https://redirect.github.com/github/codeql-action/pull/3562">#3562</a></p> <p>To opt out of this change:</p> <ul> <li><strong>Repositories owned by an organization:</strong> Create a custom repository property with the name <code>github-codeql-file-coverage-on-prs</code> and the type "True/false", then set this property to <code>true</code> in the repository's settings. For more information, see <a href="https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization">Managing custom properties for repositories in your organization</a>. Alternatively, if you are using an advanced setup workflow, you can set the <code>CODEQL_ACTION_FILE_COVERAGE_ON_PRS</code> environment variable to <code>true</code> in your workflow.</li> <li><strong>User-owned repositories using default setup:</strong> Switch to an advanced setup workflow and set the <code>CODEQL_ACTION_FILE_COVERAGE_ON_PRS</code> environment variable to <code>true</code> in your workflow.</li> <li><strong>User-owned repositories using advanced setup:</strong> Set the <code>CODEQL_ACTION_FILE_COVERAGE_ON_PRS</code> environment variable to <code>true</code> in your workflow.</li> </ul> </li> <li> <p>Fixed <a href="https://redirect.github.com/github/codeql-action/issues/3555">a bug</a> which caused the CodeQL Action to fail loading repository properties if a "Multi select" repository property was configured for the repository. <a href="https://redirect.github.com/github/codeql-action/pull/3557">#3557</a></p> </li> <li> <p>The CodeQL Action now loads <a href="https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization">custom repository properties</a> on GitHub Enterprise Server, enabling the customization of features such as <code>github-codeql-disable-overlay</code> that was previously only available on GitHub.com. <a href="https://redirect.github.com/github/codeql-action/pull/3559">#3559</a></p> </li> <li> <p>Once <a href="https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries">private package registries</a> can be configured with OIDC-based authentication for organizations, the CodeQL Action will now be able to accept such configurations. <a href="https://redirect.github.com/github/codeql-action/pull/3563">#3563</a></p> </li> <li> <p>Fixed the retry mechanism for database uploads. Previously this would fail with the error "Response body object should not be disturbed or locked". <a href="https://redirect.github.com/github/codeql-action/pull/3564">#3564</a></p> </li> </ul> <h2>4.32.6 - 05 Mar 2026</h2> <ul> <li>Update default CodeQL bundle version to <a href="https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3">2.24.3</a>. <a href="https://redirect.github.com/github/codeql-action/pull/3548">#3548</a></li> </ul> <h2>4.32.5 - 02 Mar 2026</h2> <ul> <li>Repositories owned by an organization can now set up the <code>github-codeql-disable-overlay</code> custom repository property to disable <a href="https://redirect.github.com/github/roadmap/issues/1158">improved incremental analysis for CodeQL</a>. First, create a custom repository property with the name <code>github-codeql-disable-overlay</code> and the type "True/false" in the organization's settings. Then in the repository's settings, set this property to <code>true</code> to disable improved incremental analysis. For more information, see <a href="https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization">Managing custom properties for repositories in your organization</a>. This feature is not yet available on GitHub Enterprise Server. <a href="https://redirect.github.com/github/codeql-action/pull/3507">#3507</a></li> <li>Added an experimental change so that when <a href="https://redirect.github.com/github/roadmap/issues/1158">improved incremental analysis</a> fails on a runner — potentially due to insufficient disk space — the failure is recorded in the Actions cache so that subsequent runs will automatically skip improved incremental analysis until something changes (e.g. a larger runner is provisioned or a new CodeQL version is released). We expect to roll this change out to everyone in March. <a href="https://redirect.github.com/github/codeql-action/pull/3487">#3487</a></li> <li>The minimum memory check for improved incremental analysis is now skipped for CodeQL 2.24.3 and later, which has reduced peak RAM usage. <a href="https://redirect.github.com/github/codeql-action/pull/3515">#3515</a></li> <li>Reduced log levels for best-effort private package registry connection check failures to reduce noise from workflow annotations. <a href="https://redirect.github.com/github/codeql-action/pull/3516">#3516</a></li> <li>Added an experimental change which lowers the minimum disk space requirement for <a href="https://redirect.github.com/github/roadmap/issues/1158">improved incremental analysis</a>, enabling it to run on standard GitHub Actions runners. We expect to roll this change out to everyone in March. <a href="https://redirect.github.com/github/codeql-action/pull/3498">#3498</a></li> <li>Added an experimental change which allows the <code>start-proxy</code> action to resolve the CodeQL CLI version from feature flags instead of using the linked CLI bundle version. We expect to roll this change out to everyone in March. <a href="https://redirect.github.com/github/codeql-action/pull/3512">#3512</a></li> <li>The previously experimental changes from versions 4.32.3, 4.32.4, 3.32.3 and 3.32.4 are now enabled by default. <a href="https://redirect.github.com/github/codeql-action/pull/3503">#3503</a>, <a href="https://redirect.github.com/github/codeql-action/pull/3504">#3504</a></li> </ul> <h2>4.32.4 - 20 Feb 2026</h2> <ul> <li>Update default CodeQL bundle version to <a href="https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.2">2.24.2</a>. <a href="https://redirect.github.com/github/codeql-action/pull/3493">#3493</a></li> <li>Added an experimental change which improves how certificates are generated for the authentication proxy that is used by the CodeQL Action in Default Setup when <a href="https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries">private package registries are configured</a>. This is expected to generate more widely compatible certificates and should have no impact on analyses which are working correctly already. We expect to roll this change out to everyone in February. <a href="https://redirect.github.com/github/codeql-action/pull/3473">#3473</a></li> <li>When the CodeQL Action is run <a href="https://docs.github.com/en/code-security/how-tos/scan-code-for-vulnerabilities/troubleshooting/troubleshooting-analysis-errors/logs-not-detailed-enough#creating-codeql-debugging-artifacts-for-codeql-default-setup">with debugging enabled in Default Setup</a> and <a href="https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries">private package registries are configured</a>, the "Setup proxy for registries" step will output additional diagnostic information that can be used for troubleshooting. <a href="https://redirect.github.com/github/codeql-action/pull/3486">#3486</a></li> <li>Added a setting which allows the CodeQL Action to enable network debugging for Java programs. This will help GitHub staff support customers with troubleshooting issues in GitHub-managed CodeQL workflows, such as Default Setup. This setting can only be enabled by GitHub staff. <a href="https://redirect.github.com/github/codeql-action/pull/3485">#3485</a></li> <li>Added a setting which enables GitHub-managed workflows, such as Default Setup, to use a <a href="https://github.com/dsp-testing/codeql-cli-nightlies">nightly CodeQL CLI release</a> instead of the latest, stable release that is used by default. This will help GitHub staff support customers whose analyses for a given repository or organization require early access to a change in an upcoming CodeQL CLI release. This setting can only be enabled by GitHub staff. <a href="https://redirect.github.com/github/codeql-action/pull/3484">#3484</a></li> </ul> <h2>4.32.3 - 13 Feb 2026</h2> <ul> <li>Added experimental support for testing connections to <a href="https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries">private package registries</a>. This feature is not currently enabled for any analysis. In the future, it may be enabled by default for Default Setup. <a href="https://redirect.github.com/github/codeql-action/pull/3466">#3466</a></li> </ul> <h2>4.32.2 - 05 Feb 2026</h2> <ul> <li>Update default CodeQL bundle version to <a href="https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.1">2.24.1</a>. <a href="https://redirect.github.com/github/codeql-action/pull/3460">#3460</a></li> </ul> <h2>4.32.1 - 02 Feb 2026</h2> <ul> <li>A warning is now shown in Default Setup workflow logs if a <a href="https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries">private package registry is configured</a> using a GitHub Personal Access Token (PAT), but no username is configured. <a href="https://redirect.github.com/github/codeql-action/pull/3422">#3422</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/github/codeql-action/commit/0d579ffd059c29b07949a3cce3983f0780820c98"><code>0d579ff</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3551">#3551</a> from github/update-v4.32.6-72d2d850d</li> <li><a href="https://github.com/github/codeql-action/commit/d4c6be7cf1c47a33a06fa9183269e133e6863574"><code>d4c6be7</code></a> Update changelog for v4.32.6</li> <li><a href="https://github.com/github/codeql-action/commit/72d2d850d1f91d4e1e024f4cf4276fd16bb68462"><code>72d2d85</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3548">#3548</a> from github/update-bundle/codeql-bundle-v2.24.3</li> <li><a href="https://github.com/github/codeql-action/commit/23f983ce00d9a853697a6aaa9eae8d5abbf14849"><code>23f983c</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3544">#3544</a> from github/dependabot/github_actions/dot-github/wor...</li> <li><a href="https://github.com/github/codeql-action/commit/832e97ccad228ef72e06ffee26f6251bceeb7e5f"><code>832e97c</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3545">#3545</a> from github/dependabot/github_actions/dot-github/wor...</li> <li><a href="https://github.com/github/codeql-action/commit/5ef38c0b13c2f0f5ce928cb7706f5fb19fc97ae2"><code>5ef38c0</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3546">#3546</a> from github/dependabot/npm_and_yarn/tar-7.5.10</li> <li><a href="https://github.com/github/codeql-action/commit/80c9cda73902bba67939606c4bf3a1d9606bb150"><code>80c9cda</code></a> Add changelog note</li> <li><a href="https://github.com/github/codeql-action/commit/f2669dd916c673b2811839169929a8ba71bb7634"><code>f2669dd</code></a> Update default bundle to codeql-bundle-v2.24.3</li> <li><a href="https://github.com/github/codeql-action/commit/bd03c44cf40965f5476f66fad404194e4cb35710"><code>bd03c44</code></a> Merge branch 'main' into dependabot/github_actions/dot-github/workflows/actio...</li> <li><a href="https://github.com/github/codeql-action/commit/102d7627b63c066871badf0743c11b2f6dd9c9e9"><code>102d762</code></a> Bump tar from 7.5.7 to 7.5.10</li> <li>Additional commits viewable in <a href="https://github.com/github/codeql-action/compare/89a39a4e59826350b863aa6b6252a07ad50cf83e...0d579ffd059c29b07949a3cce3983f0780820c98">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for cc64535 - Browse repository at this point
Copy the full SHA cc64535View commit details -
chore(main): release 7.6.0 (#5074)
🤖 I have created a release *beep* *boop* --- ## [7.6.0](v7.5.0...v7.6.0) (2026-04-01) ### Features * **runner:** add source parameter to distinguish between scale-up and pool lambda ([#5054](#5054)) ([efbaa6f](efbaa6f)) ### Bug Fixes * **lambda:** bump flatted from 3.3.1 to 3.4.2 in /lambdas ([#5075](#5075)) ([67a70d7](67a70d7)) * **lambda:** bump path-to-regexp from 8.2.0 to 8.4.0 in /lambdas ([#5082](#5082)) ([25ec471](25ec471)) * **lambda:** bump the aws group in /lambdas with 7 updates ([#5071](#5071)) ([c3dcce2](c3dcce2)) * **logging:** update log_class to log_group_class in CloudWatch agent configuration ([#5073](#5073)) ([6d3b7db](6d3b7db)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: runners-releaser[bot] <194412594+runners-releaser[bot]@users.noreply.github.com> Co-authored-by: Niek Palm <npalm@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1d57199 - Browse repository at this point
Copy the full SHA 1d57199View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v7.5.0...v7.6.0