Skip to content

Conversation

@chrisbbreuer
Copy link
Member

@chrisbbreuer chrisbbreuer commented Oct 23, 2025

This PR contains the following updates:

Package Updates Summary

Type Count
📦 NPM Packages 13
🔧 System Dependencies 1
Total 14

📦 npm Dependencies

npm

13 packages will be updated

Package Change Age Adoption Passing Confidence
@nuxt/eslint-config (source) 1.9.0 -> 1.10.0 age adoption passing confidence
@nuxt/kit (source) 4.1.3 -> 4.2.0 age adoption passing confidence
@nuxt/schema (source) 4.1.3 -> 4.2.0 age adoption passing confidence
@vitejs/plugin-react (source) 5.0.4 -> 5.1.0 age adoption passing confidence
nuxt (source) 4.1.3 -> 4.2.0 age adoption passing confidence
@happy-dom/global-registrator (source) 20.0.8 -> 20.0.10 age adoption passing confidence
@types/bun (source) 1.3.0 -> 1.3.1 age adoption passing confidence
bunfig (source) 0.15.0 -> 0.15.5 age adoption passing confidence
eslint-config-next (source) 16.0.0 -> 16.0.1 age adoption passing confidence
happy-dom (source) 20.0.8 -> 20.0.10 age adoption passing confidence
next (source) 16.0.0 -> 16.0.1 age adoption passing confidence
vite (source) 7.1.9 -> 7.1.12 age adoption passing confidence
vue-tsc (source) 3.1.1 -> 3.1.2 age adoption passing confidence

🔧 System Dependencies

system

Package Change Type File
bun.com ^1.2.20^1.3.0 🟡 minor pkgx.yaml

Release Notes

nuxt/eslint (@nuxt/eslint-config)

1.9.0 -> 1.10.0

v1.10.0

Compare Source

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

Released by github-actions[bot] on 10/28/2025

nuxt/nuxt (@nuxt/kit)

4.1.3 -> 4.2.0

v4.2.0

Compare Source

4.2.0 is the next minor release.

👀 Highlights

We're excited to announce Nuxt 4.2, bringing new capabilities for better TypeScript DX, enhanced error handling, and improved control over data fetching! 🎉

🎯 Abort Control for Data Fetching

You can now use AbortController signals directly within useAsyncData, giving you fine-grained control over request cancellation (#32531).

This works by passing an internal signal to your useAsyncData handler to cancel any promise that can be canceled, such as $fetch.

<script setup lang="ts">
const controller = new AbortController()

const { data, error, clear, refresh } = await useAsyncData('users', (_nuxtApp, { signal }) => $fetch('/api/users', {
  signal
}))

refresh() // will actually cancel the $fetch request (if dedupe: cancel)
refresh() // will actually cancel the $fetch request (if dedupe: cancel)
refresh()
  
clear() // will cancel the latest pending handler
</script>
`...

*[View full release notes]*

*Released by [danielroe](https://github.com/danielroe) on 10/25/2025*

</details>

<details>
<summary>nuxt/nuxt (@nuxt/schema)</summary>

**4.1.3 -> 4.2.0**

### [`v4.2.0`](https://github.com/nuxt/nuxt/releases/tag/v4.2.0)

[Compare Source](https://github.com/nuxt/nuxt/compare/v4.1.3...v4.2.0)

> 4.2.0 is the next minor release.

## 👀 Highlights

We're excited to announce Nuxt 4.2, bringing new capabilities for better TypeScript DX, enhanced error handling, and improved control over data fetching! 🎉

### 🎯 Abort Control for Data Fetching

You can now use `AbortController` signals directly within `useAsyncData`, giving you fine-grained control over request cancellation ([#32531](https://github.com/nuxt/nuxt/pull/32531)).

This works by passing an internal signal to your `useAsyncData` `handler` to cancel any promise that can be canceled, such as `$fetch`.

```vue
<script setup lang="ts">
const controller = new AbortController()

const { data, error, clear, refresh } = await useAsyncData('users', (_nuxtApp, { signal }) => $fetch('/api/users', {
  signal
}))

refresh() // will actually cancel the $fetch request (if dedupe: cancel)
refresh() // will actually cancel the $fetch request (if dedupe: cancel)
refresh()
  
clear() // will cancel the latest pending handler
</script>
`...

*[View full release notes]*

*Released by [danielroe](https://github.com/danielroe) on 10/25/2025*

</details>

<details>
<summary>vitejs/vite-plugin-react (@vitejs/plugin-react)</summary>

**5.0.4 -> 5.1.0**

### [`[email protected]`](https://github.com/vitejs/vite-plugin-react/releases/tag/plugin-react%405.1.0)

[Compare Source](https://github.com/vitejs/vite-plugin-react/compare/v5.0.4...v5.1.0)

### Add `@vitejs/plugin-react/preamble` virtual module for SSR HMR ([#890](https://github.com/vitejs/vite-plugin-react/pull/890))

SSR applications can now initialize HMR runtime by importing `@vitejs/plugin-react/preamble` at the top of their client entry instead of manually calling `transformIndexHtml`. This simplifies SSR setup for applications that don't use the `transformIndexHtml` API.

### Fix raw Rolldown support for Rolldown 1.0.0-beta.44+ ([#930](https://github.com/vitejs/vite-plugin-react/pull/930))

Rolldown 1.0.0-beta.44+ removed the top-level `jsx` option in favor of `transform.jsx`. This plugin now uses the `transform.jsx` option to support Rolldown 1.0.0-beta.44+.

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/24/2025*

### [`[email protected]`](https://github.com/vitejs/vite-plugin-react/releases/tag/plugin-react-swc%404.2.0)

[Compare Source](https://github.com/vitejs/vite-plugin-react/compare/v5.0.4...v5.1.0)

### Add `@vitejs/plugin-react-swc/preamble` virtual module for SSR HMR ([#890](https://github.com/vitejs/vite-plugin-react/pull/890))

SSR applications can now initialize HMR runtime by importing `@vitejs/plugin-react-swc/preamble` at the top of their client entry instead of manually calling `transformIndexHtml`. This simplifies SSR setup for applications that don't use the `transformIndexHtml` API.

### Use SWC when useAtYourOwnRisk_mutateSwcOptions is provided ([#951](https://github.com/vitejs/vite-plugin-react/pull/951))

Previously, this plugin did not use SWC if plugins were not provided even if `useAtYourOwnRisk_mutateSwcOptions` was provided. This is now fixed.

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/24/2025*

### [`[email protected]`](https://github.com/vitejs/vite-plugin-react/releases/tag/plugin-rsc%400.5.1)

[Compare Source](https://github.com/vitejs/vite-plugin-react/compare/v5.0.4...v5.1.0)

Please refer to [CHANGELOG.md](https://github.com/vitejs/vite-plugin-react/blob/[email protected]/packages/plugin-rsc/CHANGELOG.md) for details.

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/23/2025*

</details>

<details>
<summary>nuxt/nuxt (nuxt)</summary>

**4.1.3 -> 4.2.0**

### [`v4.2.0`](https://github.com/nuxt/nuxt/releases/tag/v4.2.0)

[Compare Source](https://github.com/nuxt/nuxt/compare/v4.1.3...v4.2.0)

> 4.2.0 is the next minor release.

## 👀 Highlights

We're excited to announce Nuxt 4.2, bringing new capabilities for better TypeScript DX, enhanced error handling, and improved control over data fetching! 🎉

### 🎯 Abort Control for Data Fetching

You can now use `AbortController` signals directly within `useAsyncData`, giving you fine-grained control over request cancellation ([#32531](https://github.com/nuxt/nuxt/pull/32531)).

This works by passing an internal signal to your `useAsyncData` `handler` to cancel any promise that can be canceled, such as `$fetch`.

```vue
<script setup lang="ts">
const controller = new AbortController()

const { data, error, clear, refresh } = await useAsyncData('users', (_nuxtApp, { signal }) => $fetch('/api/users', {
  signal
}))

refresh() // will actually cancel the $fetch request (if dedupe: cancel)
refresh() // will actually cancel the $fetch request (if dedupe: cancel)
refresh()
  
clear() // will cancel the latest pending handler
</script>
`...

*[View full release notes]*

*Released by [danielroe](https://github.com/danielroe) on 10/25/2025*

</details>

<details>
<summary>capricorn86/happy-dom (@happy-dom/global-registrator)</summary>

**20.0.8 -> 20.0.10**

### [`v20.0.10`](https://github.com/capricorn86/happy-dom/releases/tag/v20.0.10)

[Compare Source](https://github.com/capricorn86/happy-dom/compare/v20.0.8...v20.0.10)

### :construction_worker_man: Patch fixes
 - Clears event listeners on all nodes when a Window is closed to prevent memory leaks - By **[TrevorBurnham](https://github.com/TrevorBurnham)** in task #1892

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/28/2025*

### [`v20.0.9`](https://github.com/capricorn86/happy-dom/releases/tag/v20.0.9)

[Compare Source](https://github.com/capricorn86/happy-dom/compare/v20.0.8...v20.0.10)

### :construction_worker_man: Patch fixes
 - Elements should only be upgraded to a custom element (web component) when the element is in the document - By **[capricorn86](https://github.com/capricorn86)** in task #1945
    - This will also improve the memory footprint as the listeners prevented nodes from being garbage collected until the document was closed

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/28/2025*

</details>

<details>
<summary>DefinitelyTyped/DefinitelyTyped (@types/bun)</summary>

**1.3.0 -> 1.3.1**

[Compare Source](https://github.com/DefinitelyTyped/DefinitelyTyped/compare/v1.3.0...v1.3.1)

TypeScript definitions for bun

📖 [View Release Notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)

🔗 [View Changelog](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/main/CHANGELOG.md)

[Release Notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)

[Changelog](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/main/CHANGELOG.md)

</details>

<details>
<summary>stacksjs/bunfig (bunfig)</summary>

**0.15.0 -> 0.15.5**

### [`v0.15.5`](https://github.com/stacksjs/bunfig/releases/tag/v0.15.5)

[Compare Source](https://github.com/stacksjs/bunfig/compare/v0.15.0...v0.15.5)

*No significant changes*

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/stacksjs/bunfig/compare/v0.15.4...v0.15.5)

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/29/2025*

### [`v0.15.4`](https://github.com/stacksjs/bunfig/releases/tag/v0.15.4)

[Compare Source](https://github.com/stacksjs/bunfig/compare/v0.15.0...v0.15.5)

*No significant changes*

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/stacksjs/bunfig/compare/v0.15.3...v0.15.4)

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/29/2025*

### [`v0.15.3`](https://github.com/stacksjs/bunfig/releases/tag/v0.15.3)

[Compare Source](https://github.com/stacksjs/bunfig/compare/v0.15.0...v0.15.5)

*No significant changes*

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/stacksjs/bunfig/compare/v0.15.2...v0.15.3)

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/29/2025*

</details>

<details>
<summary>vercel/next.js (eslint-config-next)</summary>

**16.0.0 -> 16.0.1**

### [`v16.0.2-canary.1`](https://github.com/vercel/next.js/releases/tag/v16.0.2-canary.1)

[Compare Source](https://github.com/vercel/next.js/compare/v16.0.0...v16.0.1)

### Core Changes

- fix: staleTimes.static should consistently enforce a 30s minimum: #85479
- [turbopack] fix build of empty entries of pages: #84873
- Cache the head separately from the route tree: #84724
- Allow inspecting dev server on default port with `next dev --inspect`: #85037
- Avoid proxying React modules through workUnitStore: #85486
- fix: redirect should always return updated router state: #85533

### Misc Changes

- Update E2E tests workflow: #85485
- Update E2E deploy tests manifest: #85483
- docs: example are incorrect async function exports only: #85453
- [test] Handle CLI assertions where no "Compiling..." log is present: #85499
- [test] Speed up refresh test: #85505
- [test] Add test cases for dynamic caches without suspense boundaries: #85500
- docs: Routes are wrapped w/ Activity in Cache Components: #85309
- docs: GET handler behavior under cache components: #85389
- [test] Avoid needless start/stop from using `createSandbox`: #85507
- [test] Use `--debug-build-p...

*[View full release notes]*

*Released by [nextjs-bot](https://github.com/nextjs-bot) on 10/29/2025*

### [`v16.0.2-canary.0`](https://github.com/vercel/next.js/releases/tag/v16.0.2-canary.0)

[Compare Source](https://github.com/vercel/next.js/compare/v16.0.0...v16.0.1)

### Core Changes

- fix: Rspack throw error when using ForceCompleteRuntimePlugin: #85221
- fix: build CLI output not displaying Proxy (Middleware) when nodejs runtime: #85403

### Misc Changes

- chore: Add `opt-level = s` for not frequently used crates: #85426
- [test] Deflake cache-components-allow-otel-spans: #85466
- [test] Move remaining `experimental.cacheLife`: #85467
- Turbopack: chore: Remove mopa dependency in turbo-tasks (2nd attempt): #85286
- Update Proxy docs: #85439
- [CNA] Do not prompt for Turbopack: #85404
- Clean up new release process: #85458

### Credits 

Huge thanks to [kdy1](https://github.com/kdy1), [eps1lon](https://github.com/eps1lon), [SyMind](https://github.com/SyMind), [bgw](https://github.com/bgw), [swarnava](https://github.com/swarnava), and [devjiwonchoi](https://github.com/devjiwonchoi) for helping!

*Released by [nextjs-bot](https://github.com/nextjs-bot) on 10/28/2025*

### [`v16.0.1`](https://github.com/vercel/next.js/releases/tag/v16.0.1)

[Compare Source](https://github.com/vercel/next.js/compare/v16.0.0...v16.0.1)

### Core Changes

- fix(static-paths): add depth tracking to parallel route param resolution: #85319
- Fix types of [next](https://github.com/next)/mdx: #82238
- Ensure getServerInsertedHTML skips rendering correctly: #85394
- Fix duplicate .next/types `include` on Windows: #85400
- Exclude `next-js` condition from middleware, proxy, and instrumentation: #85321
- remove unstable_forceStale prefetch option & restore `prefetch={true}` functionality: #85411
- Upgrade React from `2bcbf254-20251020` to `6160773f-20251023`: #85277
- fix(next/image): swap dependencies: #85419
- Handle `Origin: null` headers: #85402
- Generalize Segment Cache fallback implementation: #84652
- fix: ensure req.query is writable: #81573
- fix: Proxy not picked up on Windows: #85443
- [test] Ensure we can toggle the DevTools menu while status indicators are active: #85456
- Fix crash when suspending in Components using `useActionQueue`: #85459

### Misc Changes

- docs: create-next-app react-compiler and new promp...

*[View full release notes]*

*Released by [ztanner](https://github.com/ztanner) on 10/28/2025*

</details>

<details>
<summary>capricorn86/happy-dom (happy-dom)</summary>

**20.0.8 -> 20.0.10**

### [`v20.0.10`](https://github.com/capricorn86/happy-dom/releases/tag/v20.0.10)

[Compare Source](https://github.com/capricorn86/happy-dom/compare/v20.0.8...v20.0.10)

### :construction_worker_man: Patch fixes
 - Clears event listeners on all nodes when a Window is closed to prevent memory leaks - By **[TrevorBurnham](https://github.com/TrevorBurnham)** in task #1892

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/28/2025*

### [`v20.0.9`](https://github.com/capricorn86/happy-dom/releases/tag/v20.0.9)

[Compare Source](https://github.com/capricorn86/happy-dom/compare/v20.0.8...v20.0.10)

### :construction_worker_man: Patch fixes
 - Elements should only be upgraded to a custom element (web component) when the element is in the document - By **[capricorn86](https://github.com/capricorn86)** in task #1945
    - This will also improve the memory footprint as the listeners prevented nodes from being garbage collected until the document was closed

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/28/2025*

</details>

<details>
<summary>vercel/next.js (next)</summary>

**16.0.0 -> 16.0.1**

### [`v16.0.2-canary.1`](https://github.com/vercel/next.js/releases/tag/v16.0.2-canary.1)

[Compare Source](https://github.com/vercel/next.js/compare/v16.0.0...v16.0.1)

### Core Changes

- fix: staleTimes.static should consistently enforce a 30s minimum: #85479
- [turbopack] fix build of empty entries of pages: #84873
- Cache the head separately from the route tree: #84724
- Allow inspecting dev server on default port with `next dev --inspect`: #85037
- Avoid proxying React modules through workUnitStore: #85486
- fix: redirect should always return updated router state: #85533

### Misc Changes

- Update E2E tests workflow: #85485
- Update E2E deploy tests manifest: #85483
- docs: example are incorrect async function exports only: #85453
- [test] Handle CLI assertions where no "Compiling..." log is present: #85499
- [test] Speed up refresh test: #85505
- [test] Add test cases for dynamic caches without suspense boundaries: #85500
- docs: Routes are wrapped w/ Activity in Cache Components: #85309
- docs: GET handler behavior under cache components: #85389
- [test] Avoid needless start/stop from using `createSandbox`: #85507
- [test] Use `--debug-build-p...

*[View full release notes]*

*Released by [nextjs-bot](https://github.com/nextjs-bot) on 10/29/2025*

### [`v16.0.2-canary.0`](https://github.com/vercel/next.js/releases/tag/v16.0.2-canary.0)

[Compare Source](https://github.com/vercel/next.js/compare/v16.0.0...v16.0.1)

### Core Changes

- fix: Rspack throw error when using ForceCompleteRuntimePlugin: #85221
- fix: build CLI output not displaying Proxy (Middleware) when nodejs runtime: #85403

### Misc Changes

- chore: Add `opt-level = s` for not frequently used crates: #85426
- [test] Deflake cache-components-allow-otel-spans: #85466
- [test] Move remaining `experimental.cacheLife`: #85467
- Turbopack: chore: Remove mopa dependency in turbo-tasks (2nd attempt): #85286
- Update Proxy docs: #85439
- [CNA] Do not prompt for Turbopack: #85404
- Clean up new release process: #85458

### Credits 

Huge thanks to [kdy1](https://github.com/kdy1), [eps1lon](https://github.com/eps1lon), [SyMind](https://github.com/SyMind), [bgw](https://github.com/bgw), [swarnava](https://github.com/swarnava), and [devjiwonchoi](https://github.com/devjiwonchoi) for helping!

*Released by [nextjs-bot](https://github.com/nextjs-bot) on 10/28/2025*

### [`v16.0.1`](https://github.com/vercel/next.js/releases/tag/v16.0.1)

[Compare Source](https://github.com/vercel/next.js/compare/v16.0.0...v16.0.1)

### Core Changes

- fix(static-paths): add depth tracking to parallel route param resolution: #85319
- Fix types of [next](https://github.com/next)/mdx: #82238
- Ensure getServerInsertedHTML skips rendering correctly: #85394
- Fix duplicate .next/types `include` on Windows: #85400
- Exclude `next-js` condition from middleware, proxy, and instrumentation: #85321
- remove unstable_forceStale prefetch option & restore `prefetch={true}` functionality: #85411
- Upgrade React from `2bcbf254-20251020` to `6160773f-20251023`: #85277
- fix(next/image): swap dependencies: #85419
- Handle `Origin: null` headers: #85402
- Generalize Segment Cache fallback implementation: #84652
- fix: ensure req.query is writable: #81573
- fix: Proxy not picked up on Windows: #85443
- [test] Ensure we can toggle the DevTools menu while status indicators are active: #85456
- Fix crash when suspending in Components using `useActionQueue`: #85459

### Misc Changes

- docs: create-next-app react-compiler and new promp...

*[View full release notes]*

*Released by [ztanner](https://github.com/ztanner) on 10/28/2025*

</details>

<details>
<summary>vitejs/vite (vite)</summary>

**7.1.9 -> 7.1.12**

### [`v7.2.0-beta.1`](https://github.com/vitejs/vite/releases/tag/v7.2.0-beta.1)

[Compare Source](https://github.com/vitejs/vite/compare/v7.1.9...v7.1.12)

Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v7.2.0-beta.1/packages/vite/CHANGELOG.md) for details.

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/29/2025*

### [`v7.2.0-beta.0`](https://github.com/vitejs/vite/releases/tag/v7.2.0-beta.0)

[Compare Source](https://github.com/vitejs/vite/compare/v7.1.9...v7.1.12)

Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v7.2.0-beta.0/packages/vite/CHANGELOG.md) for details.

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/28/2025*

### [`v7.1.12`](https://github.com/vitejs/vite/releases/tag/v7.1.12)

[Compare Source](https://github.com/vitejs/vite/compare/v7.1.9...v7.1.12)

Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v7.1.12/packages/vite/CHANGELOG.md) for details.

*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 10/23/2025*

</details>

<details>
<summary>vuejs/language-tools (vue-tsc)</summary>

**3.1.1 -> 3.1.2**

[Compare Source](https://github.com/vuejs/language-tools/compare/v3.1.1...v3.1.2)

📖 [View Release Notes](https://github.com/vuejs/language-tools/releases)

🔗 [View Changelog](https://github.com/vuejs/language-tools/blob/main/CHANGELOG.md)

[Release Notes](https://github.com/vuejs/language-tools/releases)

[Changelog](https://github.com/vuejs/language-tools/blob/main/CHANGELOG.md)

</details>

<details>
<summary>bun.com</summary>

**^1.2.20 → ^1.3.0**

📁 **File**: [`pkgx.yaml`](https://github.com/stacksjs/ts-maps/blob/main/playground/samples/pkgx.yaml)

🔗 **Release Notes**: [bun.sh](https://bun.sh)

</details>

---

### 📊 Package Statistics

- **@nuxt/eslint-config**: 387,335 weekly downloads
- **@nuxt/kit**: 2,764,234 weekly downloads
- **@nuxt/schema**: 1,243,725 weekly downloads
- **@vitejs/plugin-react**: 14,898,012 weekly downloads
- **nuxt**: 1,022,235 weekly downloads
- **@happy-dom/global-registrator**: 190,608 weekly downloads
- **@types/bun**: 2,434,858 weekly downloads
- **bunfig**: 282,051 weekly downloads
- **eslint-config-next**: 9,266,938 weekly downloads
- **happy-dom**: 2,886,229 weekly downloads
- **next**: 14,687,790 weekly downloads
- **vite**: 39,325,014 weekly downloads
- **vue-tsc**: 2,497,645 weekly downloads
- **bun.com**: Popular JavaScript runtime and package manager

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Buddy](https://github.com/stacksjs/buddy-bot) 🤖

@netlify
Copy link

netlify bot commented Oct 23, 2025

Deploy Preview for ts-maps failed. Why did it fail? →

Name Link
🔨 Latest commit e8d52a0
🔍 Latest deploy log https://app.netlify.com/projects/ts-maps/deploys/690257be458727000853a87d

@pkg-pr-new
Copy link

pkg-pr-new bot commented Oct 23, 2025

Open in StackBlitz

npm i https://pkg.pr.new/stacksjs/ts-maps@413

commit: e8d52a0

@chrisbbreuer
Copy link
Member Author

🤖 Auto-closing satisfied PR

This PR was automatically closed because the following packages are no longer direct dependencies (possibly moved to peer dependencies, transitive dependencies, or removed):

  • @nuxt/eslint-config: 1.9.0 → 1.10.0
  • @nuxt/kit: 4.1.3 → 4.2.0
  • @nuxt/schema: 4.1.3 → 4.2.0
  • @vitejs/plugin-react: 5.0.4 → 5.1.0
  • nuxt: 4.1.3 → 4.2.0
  • @happy-dom/global-registrator: 20.0.8 → 20.0.10
  • @types/bun: 1.3.0 → 1.3.1
  • eslint-config-next: 16.0.0 → 16.0.1
  • happy-dom: 20.0.8 → 20.0.10
  • next: 16.0.0 → 16.0.1
  • vite: 7.1.9 → 7.1.12
  • vue-tsc: 3.1.1 → 3.1.2

The following packages are already at the target version or newer:

  • bunfig: 0.15.0 → 0.15.5

If this was closed in error, please reopen and add a comment explaining why.

@chrisbbreuer chrisbbreuer deleted the buddy-bot/update-non-major-updates-1761257212648 branch October 30, 2025 13:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants