Skip to content

chore(deps): bump the non-breaking group with 14 updates#66

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/non-breaking-c4c36feeaa
Open

chore(deps): bump the non-breaking group with 14 updates#66
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/non-breaking-c4c36feeaa

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Bumps the non-breaking group with 14 updates:

Package From To
@tanstack/react-query 5.100.9 5.100.10
react-hook-form 7.75.0 7.76.0
@playwright/test 1.59.1 1.60.0
@types/node 20.19.40 20.19.41
@aws-sdk/client-s3 3.1045.0 3.1048.0
@nestjs/common 11.1.19 11.1.21
@nestjs/core 11.1.19 11.1.21
@nestjs/platform-express 11.1.19 11.1.21
@nestjs/swagger 11.4.2 11.4.3
bullmq 5.76.7 5.76.10
mercadopago 2.12.0 2.12.1
@nestjs/testing 11.1.19 11.1.21
tsx 4.21.0 4.22.1
typescript-eslint 8.59.2 8.59.3

Updates @tanstack/react-query from 5.100.9 to 5.100.10

Changelog

Sourced from @​tanstack/react-query's changelog.

5.100.10

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.100.10
Commits

Updates react-hook-form from 7.75.0 to 7.76.0

Release notes

Sourced from react-hook-form's releases.

Version v7.76.0

🪭 close #13141 improve isDirty sync with dirtyFields state (#13370) 🐞 fix isValidating reactivity when validatingFields is not subscribed (#13440) 🛺 test: fix duplicate-word typos in test descriptions (#13439) 🐞 fix #13436: errors state when using form level validation (#13437) 🐞 fix #13429 append({ obj: null }) is silently replaced by defaultValues after remove() (#13435) 🐞 fix native validation tooltip suppression caused by duplicate submit-error focus (#13432) 🐞 fix: propagate setValues updates to mounted Controller fields (#13431) 🐞 fix: rreserve reset values for conditionally mounted Controller fields with shouldUnregister 🐞 fix: useFieldArray remove leaves array with empty object when using values prop (#13422) 🐞 fix #13260: notify all matching field-array roots on nested setValue updates (#13420) 🐞 fix #13104: preserve nested resolver field-array errors in trigger() (#13419) 🐞 fix #13413: preserve formState.defaultValues when useFieldArray + watch are used together 📝 docs: fix JSDoc for IsNever, register, and getFieldState (#13410) (#13411) 🐞 fix(Watch): restore TypeScript 4 compatibility (#13409)

Big thanks to @​dfedoryshchev for multiple fixes, and to @​EduardF1, @​in-ch and @​johnstrand.

Changelog

Sourced from react-hook-form's changelog.

[7.76.0] - 2026-05-16

Added

  • Improve isDirty sync with dirtyFields state

Fixed

  • Preserve formState.defaultValues when useFieldArray and watch are used together
  • Preserve nested resolver field-array errors in trigger()
  • Notify all matching field-array roots on nested setValue updates
  • useFieldArray remove leaves array with empty object when using values prop
  • Preserve reset values for conditionally mounted Controller fields with shouldUnregister
  • Propagate setValues updates to mounted Controller fields
  • Native validation tooltip suppression caused by duplicate submit-error focus
  • append({ obj: null }) silently replaced by defaultValues after remove()
  • Errors state when using form-level validation
  • isValidating reactivity when validatingFields is not subscribed
Commits
  • 2d3ce0a 7.76.0
  • 3e09bad 🐞 fix isValidating reactivity when validatingFields is not subscribed (#1...
  • c697da2 🛺 test: fix duplicate-word typos in test descriptions (#13439)
  • 2476004 🐞 fix #13436: errors state when using form level validation (#13437)
  • f7ba834 🐞 fix #13429 append({ obj: null }) is silently replaced by defaultValues afte...
  • 75fc3a5 🐞 fix native validation tooltip suppression caused by duplicate submit-error ...
  • 0c3e82d 🐞 fix: propagate setValues updates to mounted Controller fields (#13431)
  • 879bb12 🐞 fix: rreserve reset values for conditionally mounted Controller fields wi...
  • 2a7b683 🐞 fix: useFieldArray remove leaves array with empty object when using values ...
  • c6c3d87 🐞 fix #13260: notify all matching field-array roots on nested setValue update...
  • Additional commits viewable in compare view

Updates @playwright/test from 1.59.1 to 1.60.0

Release notes

Sourced from @​playwright/test's releases.

v1.60.0

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});
await page.locator('#dropzone').drop({
data: {
'text/plain': 'hello world',
'text/uri-list': 'https://example.com',
},
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page

... (truncated)

Commits

Updates @types/node from 20.19.40 to 20.19.41

Commits

Updates @aws-sdk/client-s3 from 3.1045.0 to 3.1048.0

Release notes

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

v3.1048.0

3.1048.0(2026-05-15)

Chores
New Features
  • clients: update client endpoints as of 2026-05-15 (4aa76bd0)
  • client-mediapackagev2: This release adds support for AvailabilityStartTimeConfiguration in MediaPackageV2 DASH manifests (6c8a84d4)
  • client-partnercentral-selling: Enable TCV intake on Opportunity to improve Opportunities Hygiene and downstream revenue attribution. (d68a75c4)
  • client-cloudwatch-logs: Updating the max limit for start query api parameter. (931876e1)

For list of updated packages, view updated-packages.md in assets-3.1048.0.zip

v3.1047.0

3.1047.0(2026-05-14)

Chores
New Features
  • clients: update client endpoints as of 2026-05-14 (3505575d)
  • client-glue: Release --has-databases parameter for AWS Glue get-catalogs API, which filters catalog responses to include only those capable of containing databases, excluding parent catalogs that hold only other catalogs. Remove model-level validation on partition index list size for AWS Glue tables. (e2b076ee)
  • client-database-migration-service: Add 9 SDK waiters for DMS Schema Conversion async operations. Eliminates manual polling for import, assessment, conversion, export, and creation jobs. (32d372e7)
  • client-mgn: Introducing new option for security groups mapping - with MAP-DHCP the service translates security rules from your source environment with DHCP compatibility. (27c07049)
  • client-bedrock: Advanced Prompt Optimization (AdvPO) allows you to optimize and migrate your prompts for any model on Bedrock by automatically evaluating responses and rewriting prompts to improve performance. This release provides a programmatic way to create, get, list, stop, and delete AdvPO jobs. (7e479fde)
  • client-cloudfront: Adding a new boolean for OCSP Revocations in Viewer mTLS Create and Update APIs, and adding a new 'Passthrough' option for TrustStore modes (ee96afaa)
  • client-datazone: Adds support for SageMaker Unified Studio notebook operations, including notebook import and export (383f4ea2)
  • client-qconnect: ListModels is an API that returns the available AI models for a Connect Assistant based on its region and AI prompt type. (0d6d7ec3)
  • client-grafana: Adds support for dual-stack (IPv4 and IPv6) connectivity to Amazon Managed Grafana workspaces. Customers can configure the ipAddressType parameter when creating or updating a workspace to choose between IPv4-only or dual-stack (IPv4 and IPv6) access. (1184c5e5)

For list of updated packages, view updated-packages.md in assets-3.1047.0.zip

v3.1046.0

3.1046.0(2026-05-14)

... (truncated)

Changelog

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

3.1048.0 (2026-05-15)

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

3.1047.0 (2026-05-14)

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

3.1046.0 (2026-05-14)

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

Commits

Updates @nestjs/common from 11.1.19 to 11.1.21

Release notes

Sourced from @​nestjs/common's releases.

v11.1.21 (2026-05-14)

Bug fixes

Committers: 1

v11.1.20 (2026-05-13)

Bug fixes

Enhancements

Dependencies

Committers: 13

... (truncated)

Commits
  • 983dd52 chore(release): publish v11.1.21 release
  • a0b0139 chore: update readme
  • 7caeb3f chore(release): publish v11.1.20 release
  • f6a3c2f fix(docs): update some old links in docs
  • 4b6420b Merge pull request #16902 from QusaiAlbonni/fix/filetype-validator-buffer-mes...
  • 33515ed fix(common): improve missing buffer error message in file type validator
  • 9226a6f fix: Add missing validateEach for UsePipes
  • 1501bc0 fix(common): accept zero timestamp in parse date pipe
  • See full diff in compare view

Updates @nestjs/core from 11.1.19 to 11.1.21

Release notes

Sourced from @​nestjs/core's releases.

v11.1.21 (2026-05-14)

Bug fixes

Committers: 1

v11.1.20 (2026-05-13)

Bug fixes

Enhancements

Dependencies

Committers: 13

... (truncated)

Commits
  • 983dd52 chore(release): publish v11.1.21 release
  • d48f21d fix(core): settle skipped provider initialization
  • a0b0139 chore: update readme
  • 7caeb3f chore(release): publish v11.1.20 release
  • 2e290c6 fix(core): fix deeply nested transient providers resolution
  • f6a3c2f fix(docs): update some old links in docs
  • 958ff95 fix(core): Delay SSE response .end() until flush
  • 7c10646 Merge pull request #16753 from jkalberer/fix/sse-pipe-validation-error-status
  • 895fdf3 fix(core): Use strict null check for SSE message id
  • 457630a fix(core): defer sse writehead until after lifecycle completes
  • See full diff in compare view

Updates @nestjs/platform-express from 11.1.19 to 11.1.21

Release notes

Sourced from @​nestjs/platform-express's releases.

v11.1.21 (2026-05-14)

Bug fixes

Committers: 1

v11.1.20 (2026-05-13)

Bug fixes

Enhancements

Dependencies

Committers: 13

... (truncated)

Commits
  • 983dd52 chore(release): publish v11.1.21 release
  • a0b0139 chore: update readme
  • 7caeb3f chore(release): publish v11.1.20 release
  • f6a3c2f fix(docs): update some old links in docs
  • 5e33ecf feat: add MulterOptions and MulterField interfaces for express platform confi...
  • See full diff in compare view

Updates @nestjs/swagger from 11.4.2 to 11.4.3

Release notes

Sourced from @​nestjs/swagger's releases.

Release 11.4.3

11.4.3 (2026-05-14)

Bug fixes

Enhancements

Dependencies

Committers: 6

Commits
  • 354363e chore(): release v11.4.3
  • 0d79a3c Merge pull request #3910 from yudin-s/fix/query-param-const-enum-schema
  • b7c2bd0 Merge pull request #3906 from nestjs/renovate/swagger-ui-dist-5.x
  • 7ae4f7c Merge pull request #3911 from tibohaffner/fix/fastify-compress-async-handlers
  • 9531340 fix(swagger-module): return reply from async route handlers
  • 1fa21a2 fix(swagger): support const enum query params
  • d5eb143 chore(deps): update nest monorepo to v11.1.20 (#3907)
  • b5e3d2d chore(deps): update commitlint monorepo to v21.0.1 (#3905)
  • 4e52413 fix(deps): update dependency swagger-ui-dist to v5.32.6
  • ccfd4b9 chore(deps): update dependency @​types/node to v24.12.4 (#3904)
  • Additional commits viewable in compare view

Updates bullmq from 5.76.7 to 5.76.10

Release notes

Sourced from bullmq's releases.

v5.76.10

5.76.10 (2026-05-17)

Bug Fixes

  • flow: respect parent attribute deletion from child when calling removeChildDependency (#4169) (6396b4e)

v5.76.9

5.76.9 (2026-05-16)

Bug Fixes

v5.76.8

5.76.8 (2026-05-12)

Bug Fixes

  • scheduler: align first 'every' job to the next offset slot (#4113) fixes #3705 (1b8f900)
Commits
  • 6396b4e fix(flow): respect parent attribute deletion from child when calling removeCh...
  • a9e0a80 chore: several type hints and docs (#4164)
  • 8ddbdef chore(release): 5.76.9 (#4172)
  • 41713ca fix(build): remove source map generation (#4167)
  • ec2efcf chore(release): 5.76.8 (#4165)
  • 1b8f900 fix(scheduler): align first 'every' job to the next offset slot (#4113) fixes...
  • ed29e03 chore(deps): update dependency @​types/node to v24.12.4 [security] (#4157)
  • 108bc01 chore(deps): update dependency @​commitlint/cli to v21 [security] (#4161)
  • 0b81fec chore(deps): update eslint to v8.59.3 [security] (#4159)
  • 7f4b755 chore(release): 5.76.7 (#4162)
  • See full diff in compare view

Updates mercadopago from 2.12.0 to 2.12.1

Release notes

Sourced from mercadopago's releases.

v2.12.1

What's Changed

New Contributors

Full Changelog: mercadopago/sdk-nodejs@v2.12.0...v2.12.1

Changelog

Sourced from mercadopago's changelog.

VERSION 2.12.1

Add search orders

VERSION 2.9.1

  • Fix: Corrected 'plataformId' typo to 'platformId'.

VERSION 2.9.0

  • Task: Update the local project to comply with release 2.8.0
  • Task: Update dependencies and validate builds/tests
  • Fix: Removed invalid 'aa' field in 'CreateOrderRequest' in 'order/create'

VERSION 2.8.0

  • Add Network-Transaction-ID
  • Add card_number, expiration_month and expiration_year fields to Card Token request
  • Add email to create customer example

VERSION 2.7.0

  • Add Order industry fields
  • Fix Identification cycling import

VERSION 2.6.0

  • Add industry data and create a sample of PaymentCreateRequest with industry data fields.

VERSION 2.5.0

  • Add three_d_secure_mode to types.ts

VERSION 2.4.0

  • Feature: Order

VERSION 2.3.0

  • Add X-Test-Token header to request options

VERSION 2.2.0

  • Include network_transaction_data in forward_data in Payment

VERSION 2.1.1

  • Fix X-Expand-Responde-Nodes header to request options

VERSION 2.1.0

  • Add X-Expand-Response-Nodes header to request options

... (truncated)

Commits
  • ffeebb3 Merge pull request #415 from mercadopago/release/2.12.1
  • 4b25e6c bump version
  • 87412b7 Merge pull request #414 from luismeli10/feature/order-fields
  • 830a12a Enhancement: Add missing Orders API fields and Search operation
  • d486ed6 Merge pull request #410 from mercadopago/release/2.12.0
  • 82a5bb4 update version
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by danielalfarourrea, a new releaser for mercadopago since your current version.


Updates @nestjs/testing from 11.1.19 to 11.1.21

Release notes

Sourced from @​nestjs/testing's releases.

v11.1.21 (2026-05-14)

Bug fixes

Committers: 1

v11.1.20 (2026-05-13)

Bug fixes

Enhancements

Dependencies

Committers: 13

... (truncated)

Commits
  • 983dd52 chore(release): publish v11.1.21 release
  • a0b0139 chore: update readme
  • 7caeb3f chore(release): publish v11.1.20 release
  • 2e290c6 fix(core): fix deeply nested transient providers resolution
  • f6a3c2f fix(docs): update some old links in docs
  • See full diff in compare view

Updates tsx from 4.21.0 to 4.22.1

Release notes

Sourced from tsx's releases.

v4.22.1

4.22.1 (2026-05-17)

Bug Fixes

  • resolve tsconfig path aliases containing a colon (#780) (6979f28)

This release is also available on:

<...

Description has been truncated

Bumps the non-breaking group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.100.9` | `5.100.10` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.75.0` | `7.76.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.60.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.19.40` | `20.19.41` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1045.0` | `3.1048.0` |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `11.1.19` | `11.1.21` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `11.1.19` | `11.1.21` |
| [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express) | `11.1.19` | `11.1.21` |
| [@nestjs/swagger](https://github.com/nestjs/swagger) | `11.4.2` | `11.4.3` |
| [bullmq](https://github.com/taskforcesh/bullmq) | `5.76.7` | `5.76.10` |
| [mercadopago](https://github.com/mercadopago/sdk-nodejs) | `2.12.0` | `2.12.1` |
| [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) | `11.1.19` | `11.1.21` |
| [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.22.1` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.59.2` | `8.59.3` |


Updates `@tanstack/react-query` from 5.100.9 to 5.100.10
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/HEAD/packages/react-query)

Updates `react-hook-form` from 7.75.0 to 7.76.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.75.0...v7.76.0)

Updates `@playwright/test` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.59.1...v1.60.0)

Updates `@types/node` from 20.19.40 to 20.19.41
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@aws-sdk/client-s3` from 3.1045.0 to 3.1048.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.1048.0/clients/client-s3)

Updates `@nestjs/common` from 11.1.19 to 11.1.21
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.21/packages/common)

Updates `@nestjs/core` from 11.1.19 to 11.1.21
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.21/packages/core)

Updates `@nestjs/platform-express` from 11.1.19 to 11.1.21
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.21/packages/platform-express)

Updates `@nestjs/swagger` from 11.4.2 to 11.4.3
- [Release notes](https://github.com/nestjs/swagger/releases)
- [Commits](nestjs/swagger@11.4.2...11.4.3)

Updates `bullmq` from 5.76.7 to 5.76.10
- [Release notes](https://github.com/taskforcesh/bullmq/releases)
- [Commits](taskforcesh/bullmq@v5.76.7...v5.76.10)

Updates `mercadopago` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/mercadopago/sdk-nodejs/releases)
- [Changelog](https://github.com/mercadopago/sdk-nodejs/blob/master/CHANGELOG.MD)
- [Commits](mercadopago/sdk-nodejs@2.12.0...v2.12.1)

Updates `@nestjs/testing` from 11.1.19 to 11.1.21
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.21/packages/testing)

Updates `tsx` from 4.21.0 to 4.22.1
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.21.0...v4.22.1)

Updates `typescript-eslint` from 8.59.2 to 8.59.3
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.3/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.100.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: react-hook-form
  dependency-version: 7.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-breaking
- dependency-name: "@types/node"
  dependency-version: 20.19.41
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1048.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking
- dependency-name: "@nestjs/common"
  dependency-version: 11.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: "@nestjs/core"
  dependency-version: 11.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: "@nestjs/platform-express"
  dependency-version: 11.1.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: "@nestjs/swagger"
  dependency-version: 11.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: bullmq
  dependency-version: 5.76.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: mercadopago
  dependency-version: 2.12.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: "@nestjs/testing"
  dependency-version: 11.1.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: tsx
  dependency-version: 4.22.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-breaking
- dependency-name: typescript-eslint
  dependency-version: 8.59.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-breaking
...

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 May 18, 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