Skip to content

chore(deps-dev): bump the dev-dependencies group with 19 updates#50

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-de79ba3ad1
Open

chore(deps-dev): bump the dev-dependencies group with 19 updates#50
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-de79ba3ad1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 19 updates:

Package From To
@biomejs/biome 2.4.15 2.4.16
@commitlint/cli 21.0.1 21.0.2
@commitlint/config-conventional 21.0.1 21.0.2
tstyche 7.2.0 7.2.1
@aws-sdk/client-cloudwatch-logs 3.1054.0 3.1059.0
@aws-sdk/client-dynamodb 3.1054.0 3.1059.0
@aws-sdk/client-dynamodb-streams 3.1054.0 3.1059.0
@aws-sdk/client-kinesis 3.1054.0 3.1059.0
@aws-sdk/client-lambda 3.1054.0 3.1059.0
@aws-sdk/client-s3 3.1054.0 3.1059.0
@aws-sdk/client-sns 3.1054.0 3.1059.0
@aws-sdk/client-sqs 3.1054.0 3.1059.0
@aws-sdk/client-ssm 3.1054.0 3.1059.0
@aws-sdk/lib-storage 3.1054.0 3.1059.0
protobufjs 8.4.2 8.5.0
@sveltejs/kit 2.61.1 2.62.0
svelte 5.55.9 5.56.1
vite 8.0.14 8.0.16
wrangler 4.95.0 4.97.0

Updates @biomejs/biome from 2.4.15 to 2.4.16

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.16

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >
  • #10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #10358 05c2617 Thanks @​dyc3! - Fixed #10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #10300 950247c Thanks @​dyc3! - Fixed #10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #10425 1948b72 Thanks @​sjh9714! - Fixed #10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #10442 001f94f Thanks @​ematipico! - Fixed #10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >
  • #10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #10358 05c2617 Thanks @​dyc3! - Fixed #10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #10300 950247c Thanks @​dyc3! - Fixed #10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #10425 1948b72 Thanks @​sjh9714! - Fixed #10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #10442 001f94f Thanks @​ematipico! - Fixed #10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

... (truncated)

Commits
  • 5f4ea56 ci: release (#10326)
  • de2a33c fix(core): regression in emitted types (#10478)
  • d835303 docs: remove redundant default phrase in useConsistentObjectDefinitions rul...
  • 4f1aaf2 fix: incorrect build when using build or test (#10426)
  • dc73b6b refactor: make plugins opt-in via feature gate (#10418)
  • e71f584 feat(useDestructuring): add options for assignment/declaration and improve di...
  • 9b1577f fix(config): support trailingCommas in overrides (#10318)
  • See full diff in compare view

Updates @commitlint/cli from 21.0.1 to 21.0.2

Release notes

Sourced from @​commitlint/cli's releases.

v21.0.2

21.0.2 (2026-05-29)

Bug Fixes

Chore/CI

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.0.1...v21.0.2

Changelog

Sourced from @​commitlint/cli's changelog.

21.0.2 (2026-05-29)

Bug Fixes

  • disallow same commit hash for --from and --to (#4773) (121005e)
Commits

Updates @commitlint/config-conventional from 21.0.1 to 21.0.2

Release notes

Sourced from @​commitlint/config-conventional's releases.

v21.0.2

21.0.2 (2026-05-29)

Bug Fixes

Chore/CI

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.0.1...v21.0.2

Changelog

Sourced from @​commitlint/config-conventional's changelog.

21.0.2 (2026-05-29)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates tstyche from 7.2.0 to 7.2.1

Release notes

Sourced from tstyche's releases.

7.2.1

Fixed

  • Improve validation of arguments passed to the .toAcceptProps() matcher (#759)
  • Validate jsx setup for .toAcceptProps matcher (#758)

Full Changelog: tstyche/tstyche@v7.2.0...v7.2.1

Changelog

Sourced from tstyche's changelog.

[7.2.1] - 2026-05-27

Fixed

  • Improve validation of arguments passed to the .toAcceptProps() matcher (#759)
  • Validate jsx setup for .toAcceptProps matcher (#758)
Commits
  • 4b7b368 chore(release): 7.2.1
  • a136bd2 chore: update changelog
  • 923f48e chore: clean up
  • d8959e9 fix: improve validation of arguments passed to the .toAcceptProps() matcher...
  • 31891cb refactor: update validation message
  • ca45913 fix: validate jsx setup for .toAcceptProps matcher (#758)
  • 3330986 chore: update aube to v1.16.0
  • 4264798 refactor: clean up
  • 1ecc214 chore: update dependencies
  • See full diff in compare view

Updates @aws-sdk/client-cloudwatch-logs from 3.1054.0 to 3.1059.0

Release notes

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

v3.1059.0

3.1059.0(2026-06-02)

Chores
  • codegen:
    • improve formatting of generated lib-dynamodb files (#8069) (0d0ddc0f)
    • sync for adaptive retry fix, EAI_AGAIN transient error (#8067) (6b082a65)
Documentation Changes
  • client-iot: Fleet indexing documentation update (6151ac25)
New Features
  • clients: update client endpoints as of 2026-06-02 (164aa659)
  • client-waf: Adding new BDD representation of endpoint ruleset (4d90e8eb)
  • client-personalize-runtime: Adding new BDD representation of endpoint ruleset (e578bf91)
  • client-sqs: Adding new BDD representation of endpoint ruleset (d2a45936)
  • client-service-catalog: Adding new BDD representation of endpoint ruleset (a14dfb22)
  • client-rekognition: Adding new BDD representation of endpoint ruleset (fdbac926)
  • client-resource-groups-tagging-api: Adding new BDD representation of endpoint ruleset (3f935495)
  • client-snowball: Adding new BDD representation of endpoint ruleset (2be7cb1c)
  • client-lex-runtime-service: Adding new BDD representation of endpoint ruleset (e47af6bd)
  • client-medialive: Adding new BDD representation of endpoint ruleset (fc6eaf60)
  • client-storage-gateway: Adding new BDD representation of endpoint ruleset (7953156c)
  • client-swf: Adding new BDD representation of endpoint ruleset (875e3740)
  • client-s3: Adding new BDD representation of endpoint ruleset (c2610606)
  • client-xray: Adding new BDD representation of endpoint ruleset (37c36561)
  • client-ssm: Adding new BDD representation of endpoint ruleset (44b3221c)
  • client-guardduty: Amazon GuardDuty Runtime Monitoring now supports 3 new SensitiveFileModified finding types (Persistence, PrivilegeEscalation, DefenseEvasion) that detect when security-sensitive system files are modified on EC2 instances or containers, indicating potential compromise through file tampering. (55413a1d)
  • client-redshift: Adding new BDD representation of endpoint ruleset (a2545b1e)
  • client-pinpoint-email: Adding new BDD representation of endpoint ruleset (556489af)
  • client-cloudwatch: Adding new BDD representation of endpoint ruleset (cf2abcc8)
  • client-lambda: Adds configuration for tag propagation to Lambda-managed resources. (d2a9416f)
  • client-mturk: Adding new BDD representation of endpoint ruleset (413f4066)
  • client-ram: Adding new BDD representation of endpoint ruleset (f349b64a)
  • client-sso: Adding new BDD representation of endpoint ruleset (4578d430)
  • client-route-53: Adding new BDD representation of endpoint ruleset (86c90306)
  • client-keyspacesstreams: Added iterator description to the GetRecords API response for Amazon Keyspaces Change Data Capture (CDC) streams, enabling consumers to track their current position within the stream. (6f9b8a69)
  • client-route-53-domains: Adding new BDD representation of endpoint ruleset (374fda69)
  • client-pi: Adding new BDD representation of endpoint ruleset (7e00807a)
  • client-mediastore: Adding new BDD representation of endpoint ruleset (17a0e013)
  • client-managedblockchain: Adding new BDD representation of endpoint ruleset (9c140f8d)
  • client-transfer: Adding new BDD representation of endpoint ruleset (da0b48fc)
  • client-sts: Adding new BDD representation of endpoint ruleset (469246b8)
  • client-marketplace-metering: Adding new BDD representation of endpoint ruleset (cffe7421)
  • client-migration-hub: Adding new BDD representation of endpoint ruleset (24325678)
  • client-geo-routes: Added Transit and Intermodal travel modes to CalculateRoutes. Plan routes using public transit (bus, subway, train, ferry) or combine transit with driving, taxi, and rental car segments in a single multi-modal route. (462e13e0)
  • client-transcribe: Release new Language locales including am-ET, es-MX, fa-AF, ht-HT, jv-ID, km-KH, my-MM, sq-AL, ne-NP. The commit shows past locales that have already been release which include cy-gb, ga-ie, gd-gb. (bd20b508)

... (truncated)

Changelog

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

3.1059.0 (2026-06-02)

Note: Version bump only for package @​aws-sdk/client-cloudwatch-logs

3.1058.0 (2026-06-01)

Note: Version bump only for package @​aws-sdk/client-cloudwatch-logs

3.1057.0 (2026-05-29)

Note: Version bump only for package @​aws-sdk/client-cloudwatch-logs

3.1056.0 (2026-05-28)

Note: Version bump only for package @​aws-sdk/client-cloudwatch-logs

3.1055.0 (2026-05-27)

Note: Version bump only for package @​aws-sdk/client-cloudwatch-logs

Commits

Updates @aws-sdk/client-dynamodb from 3.1054.0 to 3.1059.0

Release notes

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

v3.1059.0

3.1059.0(2026-06-02)

Chores
  • codegen:
    • improve formatting of generated lib-dynamodb files (#8069) (0d0ddc0f)
    • sync for adaptive retry fix, EAI_AGAIN transient error (#8067) (6b082a65)
Documentation Changes
  • client-iot: Fleet indexing documentation update (6151ac25)
New Features
  • clients: update client endpoints as of 2026-06-02 (164aa659)
  • client-waf: Adding new BDD representation of endpoint ruleset (4d90e8eb)
  • client-personalize-runtime: Adding new BDD representation of endpoint ruleset (e578bf91)
  • client-sqs: Adding new BDD representation of endpoint ruleset (d2a45936)
  • client-service-catalog: Adding new BDD representation of endpoint ruleset (a14dfb22)
  • client-rekognition: Adding new BDD representation of endpoint ruleset (fdbac926)
  • client-resource-groups-tagging-api: Adding new BDD representation of endpoint ruleset (3f935495)
  • client-snowball: Adding new BDD representation of endpoint ruleset (2be7cb1c)
  • client-lex-runtime-service: Adding new BDD representation of endpoint ruleset (e47af6bd)
  • client-medialive: Adding new BDD representation of endpoint ruleset (fc6eaf60)
  • client-storage-gateway: Adding new BDD representation of endpoint ruleset (7953156c)
  • client-swf: Adding new BDD representation of endpoint ruleset (875e3740)
  • client-s3: Adding new BDD representation of endpoint ruleset (c2610606)
  • client-xray: Adding new BDD representation of endpoint ruleset (37c36561)
  • client-ssm: Adding new BDD representation of endpoint ruleset (44b3221c)
  • client-guardduty: Amazon GuardDuty Runtime Monitoring now supports 3 new SensitiveFileModified finding types (Persistence, PrivilegeEscalation, DefenseEvasion) that detect when security-sensitive system files are modified on EC2 instances or containers, indicating potential compromise through file tampering. (55413a1d)
  • client-redshift: Adding new BDD representation of endpoint ruleset (a2545b1e)
  • client-pinpoint-email: Adding new BDD representation of endpoint ruleset (556489af)
  • client-cloudwatch: Adding new BDD representation of endpoint ruleset (cf2abcc8)
  • client-lambda: Adds configuration for tag propagation to Lambda-managed resources. (d2a9416f)
  • client-mturk: Adding new BDD representation of endpoint ruleset (413f4066)
  • client-ram: Adding new BDD representation of endpoint ruleset (f349b64a)
  • client-sso: Adding new BDD representation of endpoint ruleset (4578d430)
  • client-route-53: Adding new BDD representation of endpoint ruleset (86c90306)
  • client-keyspacesstreams: Added iterator description to the GetRecords API response for Amazon Keyspaces Change Data Capture (CDC) streams, enabling consumers to track their current position within the stream. (6f9b8a69)
  • client-route-53-domains: Adding new BDD representation of endpoint ruleset (374fda69)
  • client-pi: Adding new BDD representation of endpoint ruleset (7e00807a)
  • client-mediastore: Adding new BDD representation of endpoint ruleset (17a0e013)
  • client-managedblockchain: Adding new BDD representation of endpoint ruleset (9c140f8d)
  • client-transfer: Adding new BDD representation of endpoint ruleset (da0b48fc)
  • client-sts: Adding new BDD representation of endpoint ruleset (469246b8)
  • client-marketplace-metering: Adding new BDD representation of endpoint ruleset (cffe7421)
  • client-migration-hub: Adding new BDD representation of endpoint ruleset (24325678)
  • client-geo-routes: Added Transit and Intermodal travel modes to CalculateRoutes. Plan routes using public transit (bus, subway, train, ferry) or combine transit with driving, taxi, and rental car segments in a single multi-modal route. (462e13e0)
  • client-transcribe: Release new Language locales including am-ET, es-MX, fa-AF, ht-HT, jv-ID, km-KH, my-MM, sq-AL, ne-NP. The commit shows past locales that have already been release which include cy-gb, ga-ie, gd-gb. (bd20b508)

... (truncated)

Changelog

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

3.1059.0 (2026-06-02)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.1058.0 (2026-06-01)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.1057.0 (2026-05-29)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.1056.0 (2026-05-28)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.1055.0 (2026-05-27)

Note: Version bump only for package @​aws-sdk/client-dynamodb

Commits

Updates @aws-sdk/client-dynamodb-streams from 3.1054.0 to 3.1059.0

Release notes

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

v3.1059.0

3.1059.0(2026-06-02)

Chores
  • codegen:
    • improve formatting of generated lib-dynamodb files (#8069) (0d0ddc0f)
    • sync for adaptive retry fix, EAI_AGAIN transient error (#8067) (6b082a65)
Documentation Changes
  • client-iot: Fleet indexing documentation update (6151ac25)
New Features
  • clients: update client endpoints as of 2026-06-02 (164aa659)
  • client-waf: Adding new BDD representation of endpoint ruleset (4d90e8eb)
  • client-personalize-runtime: Adding new BDD representation of endpoint ruleset (e578bf91)
  • client-sqs: Adding new BDD representation of endpoint ruleset (d2a45936)
  • client-service-catalog: Adding new BDD representation of endpoint ruleset (a14dfb22)
  • client-rekognition: Adding new BDD representation of endpoint ruleset (fdbac926)
  • client-resource-groups-tagging-api: Adding new BDD representation of endpoint ruleset (3f935495)
  • client-snowball: Adding new BDD representation of endpoint ruleset (2be7cb1c)
  • client-lex-runtime-service: Adding new BDD representation of endpoint ruleset (e47af6bd)
  • client-medialive: Adding new BDD representation of endpoint ruleset (fc6eaf60)
  • client-storage-gateway: Adding new BDD representation of endpoint ruleset (7953156c)
  • client-swf: Adding new BDD representation of endpoint ruleset (875e3740)
  • client-s3: Adding new BDD representation of endpoint ruleset (c2610606)
  • client-xray: Adding new BDD representation of endpoint ruleset (37c36561)
  • client-ssm: Adding new BDD representation of endpoint ruleset (44b3221c)
  • client-guardduty: Amazon GuardDuty Runtime Monitoring now supports 3 new SensitiveFileModified finding types (Persistence, PrivilegeEscalation, DefenseEvasion) that detect when security-sensitive system files are modified on EC2 instances or containers, indicating potential compromise through file tampering. (55413a1d)
  • client-redshift: Adding new BDD representation of endpoint ruleset (a2545b1e)
  • client-pinpoint-email: Adding new BDD representation of endpoint ruleset (556489af)
  • client-cloudwatch: Adding new BDD representation of endpoint ruleset (cf2abcc8)
  • client-lambda: Adds configuration for tag propagation to Lambda-managed resources. (d2a9416f)
  • client-mturk: Adding new BDD representation of endpoint ruleset (413f4066)
  • client-ram: Adding new BDD representation of endpoint ruleset (f349b64a)
  • client-sso: Adding new BDD representation of endpoint ruleset (4578d430)
  • client-route-53: Adding new BDD representation of endpoint ruleset (86c90306)
  • client-keyspacesstreams: Added iterator description to the GetRecords API response for Amazon Keyspaces Change Data Capture (CDC) streams, enabling consumers to track their current position within the stream. (6f9b8a69)
  • client-route-53-domains: Adding new BDD representation of endpoint ruleset (374fda69)
  • client-pi: Adding new BDD representation of endpoint ruleset (7e00807a)
  • client-mediastore: Adding new BDD representation of endpoint ruleset (17a0e013)
  • client-managedblockchain: Adding new BDD representation of endpoint ruleset (9c140f8d)
  • client-transfer: Adding new BDD representation of endpoint ruleset (da0b48fc)
  • client-sts: Adding new BDD representation of endpoint ruleset (469246b8)
  • client-marketplace-metering: Adding new BDD representation of endpoint ruleset (cffe7421)
  • client-migration-hub: Adding new BDD representation of endpoint ruleset (24325678)
  • client-geo-routes: Added Transit and Intermodal travel modes to CalculateRoutes. Plan routes using public transit (bus, subway, train, ferry) or combine transit with driving, taxi, and rental car segments in a single multi-modal route. (462e13e0)
  • client-transcribe: Release new Language locales including am-ET, es-MX, fa-AF, ht-HT, jv-ID, km-KH, my-MM, sq-AL, ne-NP. The commit shows past locales that have already been release which include cy-gb, ga-ie, gd-gb. (bd20b508)

... (truncated)

Changelog

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

3.1059.0 (2026-06-02)

Note: Version bump only for package @​aws-sdk/client-dynamodb-streams

3.1058.0 (2026-06-01)

Note: Version bump only for package @​aws-sdk/client-dynamodb-streams

3.1057.0 (2026-05-29)

Note: Version bump only for package @​aws-sdk/client-dynamodb-streams

3.1056.0 (2026-05-28)

Note: Version bump only for package @​aws-sdk/client-dynamodb-streams

3.1055.0 (2026-05-27)

Note: Version bump only for package @​aws-sdk/client-dynamodb-streams

Commits

Updates @aws-sdk/client-kinesis from 3.1054.0 to 3.1059.0

Release notes

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

v3.1059.0

3.1059.0(2026-06-02)

Chores
  • codegen:
    • improve formatting of generated lib-dynamodb files (#8069) (0d0ddc0f)
    • sync for adaptive retry fix, EAI_AGAIN transient error (#8067) (

Bumps the dev-dependencies group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.15` | `2.4.16` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `21.0.1` | `21.0.2` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `21.0.1` | `21.0.2` |
| [tstyche](https://github.com/tstyche/tstyche) | `7.2.0` | `7.2.1` |
| [@aws-sdk/client-cloudwatch-logs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudwatch-logs) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-dynamodb-streams](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb-streams) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-kinesis](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-kinesis) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-lambda](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-lambda) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-sns](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sns) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-sqs](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sqs) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.1054.0` | `3.1059.0` |
| [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage) | `3.1054.0` | `3.1059.0` |
| [protobufjs](https://github.com/protobufjs/protobuf.js) | `8.4.2` | `8.5.0` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.61.1` | `2.62.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.55.9` | `5.56.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.14` | `8.0.16` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.95.0` | `4.97.0` |


Updates `@biomejs/biome` from 2.4.15 to 2.4.16
- [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.16/packages/@biomejs/biome)

Updates `@commitlint/cli` from 21.0.1 to 21.0.2
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.0.2/@commitlint/cli)

Updates `@commitlint/config-conventional` from 21.0.1 to 21.0.2
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.0.2/@commitlint/config-conventional)

Updates `tstyche` from 7.2.0 to 7.2.1
- [Release notes](https://github.com/tstyche/tstyche/releases)
- [Changelog](https://github.com/tstyche/tstyche/blob/main/CHANGELOG.md)
- [Commits](tstyche/tstyche@v7.2.0...v7.2.1)

Updates `@aws-sdk/client-cloudwatch-logs` from 3.1054.0 to 3.1059.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-cloudwatch-logs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-cloudwatch-logs)

Updates `@aws-sdk/client-dynamodb` from 3.1054.0 to 3.1059.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-dynamodb)

Updates `@aws-sdk/client-dynamodb-streams` from 3.1054.0 to 3.1059.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb-streams/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-dynamodb-streams)

Updates `@aws-sdk/client-kinesis` from 3.1054.0 to 3.1059.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-kinesis/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-kinesis)

Updates `@aws-sdk/client-lambda` from 3.1054.0 to 3.1059.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-lambda/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-lambda)

Updates `@aws-sdk/client-s3` from 3.1054.0 to 3.1059.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-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-s3)

Updates `@aws-sdk/client-sns` from 3.1054.0 to 3.1059.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-sns/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-sns)

Updates `@aws-sdk/client-sqs` from 3.1054.0 to 3.1059.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sqs/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-sqs)

Updates `@aws-sdk/client-ssm` from 3.1054.0 to 3.1059.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-ssm/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/clients/client-ssm)

Updates `@aws-sdk/lib-storage` from 3.1054.0 to 3.1059.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-storage/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1059.0/lib/lib-storage)

Updates `protobufjs` from 8.4.2 to 8.5.0
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md)
- [Commits](protobufjs/protobuf.js@protobufjs-v8.4.2...protobufjs-v8.5.0)

Updates `@sveltejs/kit` from 2.61.1 to 2.62.0
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.62.0/packages/kit)

Updates `svelte` from 5.55.9 to 5.56.1
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.56.1/packages/svelte)

Updates `vite` from 8.0.14 to 8.0.16
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.16/packages/vite)

Updates `wrangler` from 4.95.0 to 4.97.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.97.0/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@commitlint/cli"
  dependency-version: 21.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 21.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tstyche
  dependency-version: 7.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-cloudwatch-logs"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-dynamodb-streams"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-kinesis"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-lambda"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-sns"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-sqs"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/client-ssm"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@aws-sdk/lib-storage"
  dependency-version: 3.1059.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: protobufjs
  dependency-version: 8.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.62.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: svelte
  dependency-version: 5.56.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-version: 8.0.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: wrangler
  dependency-version: 4.97.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 17, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants