-
Notifications
You must be signed in to change notification settings - Fork 0
Bump the all-npm group with 4 updates#24
Conversation
Bumps the all-npm group with 4 updates: @aws-sdk/client-eventbridge, @biomejs/biome, @types/aws-lambda and @types/node.
Updates @aws-sdk/client-eventbridge from 3.996.0 to 3.1000.0
Release notes
Sourced from @ aws-sdk/client-eventbridge's releases.
v3.1000.0
3.1000.0(2026-02-27)
New Features
- client-arc-region-switch: Post-Recovery Workflows enable customers to maintain comprehensive disaster recovery automation. This allows customer SREs and leadership to have complete recovery orchestration from failover through post-recovery preparation, ensuring Regions remain ready for subsequent recovery events. (3abb5202)
- client-keyspacesstreams: Added support for Change Data Capture (CDC) streams with Duration DataType. (59b94328)
- client-batch: This feature allows customers to specify the minimum time (in minutes) that AWS Batch keeps instances running in a compute environment after all jobs on the instance complete (25f4947a)
- client-cognito-identity-provider: Cognito is introducing a two-secret rotation model for app clients, enabling seamless credential rotation without downtime. Dedicated APIs support passing in a custom secret. Custom secrets need to be at least 24 characters. This eliminates reconfiguration needs and reduces security risks. (582a3813)
- client-bedrock: Added four new model lifecycle date fields, startOfLifeTime, endOfLifeTime, legacyTime, and publicExtendedAccessTime. Adds support for using the Converse API with Bedrock Batch inference jobs. (29b1fe6d)
- client-odb: ODB Networking Route Management is a feature improvement which allows for implicit creation and deletion of EC2 Routes in the Peer Network Route Table designated by the customer via new optional input. This feature release is combined with Multiple App-VPC functionality for ODB Network Peering(s). (d372d85d)
- client-customer-profiles: This release introduces an optional SourcePriority parameter to the ProfileObjectType APIs, allowing you to control the precedence of object types when ingesting data from multiple sources. Additionally, WebAnalytics and Device have been added as new StandardIdentifier values. (6166dfb7)
- client-connect: Deprecate EvaluationReviewMetadata's CreatedBy and CreatedTime, add EvaluationReviewMetadata's RequestedBy and RequestedTime (df058ded)
- client-ram: Resource owners can now specify ResourceShareConfiguration request parameter for CreateResourceShare API including RetainSharingOnAccountLeaveOrganization boolean parameter (3cc0ca9d)
- client-health: Updates the regex for validating availabilityZone strings used in the describe events filters. (eded08f6)
- client-transcribe-streaming: AWS Transcribe Streaming now supports specifying a resumption window for the stream through the SessionResumeWindow parameter, allowing customers to reconnect to their streams for a longer duration beyond stream start time. (56168c57)
Tests
For list of updated packages, view updated-packages.md in assets-3.1000.0.zip
v3.999.0
3.999.0(2026-02-26)
Chores
- validate codegen changes using yarn generate-clients (#7780) (b7c1aa20)
- packages: reapply eslint rules (#7789) (ab81c738)
New Features
- client-securityhub: Security Hub added EXTENDED PLAN integration type to DescribeProductsV2 and added metadata.product.vendor name GroupBy support to GetFindingStatisticsV2 (1d1c9825)
- client-ec2: Add c8id, m8id and hpc8a instance types. (f49cb0c1)
- client-ecs: Adding support for Capacity Reservations for ECS Managed Instances by introducing a new "capacityOptionType" value of "RESERVED" and new field "capacityReservations" for CreateCapacityProvider and UpdateCapacityProvider APIs. (4a7cfd05)
- client-marketplace-entitlement-service: Added License Arn as a new optional filter for GetEntitlements and LicenseArn field in each entitlement in the response. (b884b35b)
- client-marketplace-metering: Added LicenseArn to ResolveCustomer response and BatchMeterUsage usage records. BatchMeterUsage now accepts LicenseArn in each UsageRecord to report usage at the license level. Added InvalidLicenseException error response for invalid license parameters. (f5f5c096)
- client-backup-gateway: This release updates GetGateway API to include deprecationDate and softwareVersion in the response, enabling customers to track gateway software versions and upcoming deprecation dates. (9dd68ddc)
- util-user-agent-node: populate typescript version in user agent when available (#7786) (0a5ab579)
For list of updated packages, view updated-packages.md in assets-3.999.0.zip
v3.998.0
... (truncated)
Changelog
Sourced from @ aws-sdk/client-eventbridge's changelog.
3.1000.0 (2026-02-27)
Note: Version bump only for package
@ aws-sdk/client-eventbridge3.999.0 (2026-02-26)
Note: Version bump only for package
@ aws-sdk/client-eventbridge3.998.0 (2026-02-25)
Note: Version bump only for package
@ aws-sdk/client-eventbridge3.997.0 (2026-02-24)
Note: Version bump only for package
@ aws-sdk/client-eventbridge
Commits
e373aa8Publish v3.1000.0cd1d49dPublish v3.999.0adb02cdPublish v3.998.0ae4f994chore(codegen): sync for checksum algorithm extensions (#7781)637dcf0Publish v3.997.03f776c3chore(packages): use open version range for additional packages (#7774)14fc571chore(codegen): sync for checksum stream backpressure (#7776)- See full diff in compare view
Updates @biomejs/biome from 2.4.4 to 2.4.5
Release notes
Sourced from @ biomejs/biome's releases.
Biome CLI v2.4.5
2.4.5
Patch Changes
#9185
e43e730Thanks@ dyc3! - Added the nursery ruleuseVueScopedStylesfor Vue SFCs. This rule enforces thatblocks have thescopedattribute (ormodulefor CSS Modules), preventing style leakage and conflicts between components.#9184
49c8fdeThanks@ chocky335! - Improved plugin performance by batching all plugins into a single syntax visitor with a kind-to-plugin lookup map, reducing per-node dispatch overhead from O(N) to O(1) where N is the number of plugins.#9283
071c700Thanks@ dyc3! - FixednoUndeclaredVariableserroneously flagging functions and variables defined in thesection of Vue SFCs.#9221
4612133Thanks@ ematipico! - Fixed an issue where the JSON reporter didn't contain the duration of the command.#9294
1805c8fThanks@ Netail! - Extra rule source reference.biome migrate eslintshould do a bit better detecting rules in your eslint configurations.#9178
101b3bbThanks@ Bertie690! - Fixed #9172 and #9168: Biome now considers more constructs as valid test assertions.Previously,
assert,expectTypeOfandassertTypewere not recognized as valid assertions by Biome's linting rules, producing false positives inlint/nursery/useExpectand other similar rules.Now, these rules will no longer produce errors in test cases that used these constructs instead of
expect:import { expectTypeOf, assert, assertType } from "vitest";
const myStr = "Hello from vitest!";
it("should be a string", () => {
expectTypeOf(myStr).toBeString();
});
test("should still be a string", () => {
assertType<string>(myStr);
});
it.todo("should still still be a string", () => {
assert(typeof myStr === "string");
});#9173
32dad2dThanks@ dyc3! - Added parsing support for Svelte's new comments-in-tags feature.The HTML parser will now accept JS style comments in tags in Svelte files.
<button
// single-line comment
onclick={doTheThing}
>click mebutton>
<div
... (truncated)
Changelog
Sourced from @ biomejs/biome's changelog.
2.4.5
Patch Changes
#9185
e43e730Thanks@ dyc3! - Added the nursery ruleuseVueScopedStylesfor Vue SFCs. This rule enforces thatblocks have thescopedattribute (ormodulefor CSS Modules), preventing style leakage and conflicts between components.#9184
49c8fdeThanks@ chocky335! - Improved plugin performance by batching all plugins into a single syntax visitor with a kind-to-plugin lookup map, reducing per-node dispatch overhead from O(N) to O(1) where N is the number of plugins.#9283
071c700Thanks@ dyc3! - FixednoUndeclaredVariableserroneously flagging functions and variables defined in thesection of Vue SFCs.#9221
4612133Thanks@ ematipico! - Fixed an issue where the JSON reporter didn't contain the duration of the command.#9294
1805c8fThanks@ Netail! - Extra rule source reference.biome migrate eslintshould do a bit better detecting rules in your eslint configurations.#9178
101b3bbThanks@ Bertie690! - Fixed #9172 and #9168: Biome now considers more constructs as valid test assertions.Previously,
assert,expectTypeOfandassertTypewere not recognized as valid assertions by Biome's linting rules, producing false positives inlint/nursery/useExpectand other similar rules.Now, these rules will no longer produce errors in test cases that used these constructs instead of
expect:import { expectTypeOf, assert, assertType } from "vitest";
const myStr = "Hello from vitest!";
it("should be a string", () => {
expectTypeOf(myStr).toBeString();
});
test("should still be a string", () => {
assertType<string>(myStr);
});
it.todo("should still still be a string", () => {
assert(typeof myStr === "string");
});#9173
32dad2dThanks@ dyc3! - Added parsing support for Svelte's new comments-in-tags feature.The HTML parser will now accept JS style comments in tags in Svelte files.
<button
// single-line comment
onclick={doTheThing}
>click mebutton>
<div
/* block comment */
class="foo"
... (truncated)
Commits
3bc07abci: release (#9188)6b01778feat(linter): add useUnicodeRegex rule (#8773)e43e730feat(lint/html): adduseVueScopedStyles(#9185)edf8bb6feat(lint): add ||= to ??= detection in useNullishCoalescing (#9257)9bbdf4dfeat(lint): add nursery rule useNamedCaptureGroup (#9048)1f2fe2efeat: prefer-array-some from eslint-plugin-unicorn (#9056)1d2ca15feat(lint): add useNullishCoalescing nursery rule (#8952)101b3bbfix(lint): consider more constructs as valid test assertions (#9178)3d0648ffeat(biome_js_analyze): implementnoVueRefAsOperand(#9063)- See full diff in compare view
Updates @types/aws-lambda from 8.10.160 to 8.10.161
Commits
- See full diff in compare view
Updates @types/node from 25.3.0 to 25.3.3
Commits
- See full diff in compare view
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot showwill show all of the ignore conditions of the specified dependencyignore conditions @dependabot ignorewill 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)major version @dependabot ignorewill 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)minor version @dependabot ignorewill 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 unignorewill remove all of the ignore conditions of the specified dependency@dependabot unignorewill remove the ignore condition of the specified dependency and ignore conditions
Updates `@aws-sdk/client-eventbridge` from 3.996.0 to 3.1000.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-eventbridge/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1000.0/clients/client-eventbridge)
Updates `@biomejs/biome` from 2.4.4 to 2.4.5
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.5/packages/@biomejs/biome)
Updates `@types/aws-lambda` from 8.10.160 to 8.10.161
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda)
Updates `@types/node` from 25.3.0 to 25.3.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
---
updated-dependencies:
- dependency-name: "@aws-sdk/client-eventbridge"
dependency-version: 3.1000.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: all-npm
- dependency-name: "@biomejs/biome"
dependency-version: 2.4.5
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: all-npm
- dependency-name: "@types/aws-lambda"
dependency-version: 8.10.161
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: all-npm
- dependency-name: "@types/node"
dependency-version: 25.3.3
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: all-npm
...
Signed-off-by: dependabot[bot]