[PR #679] [MERGED] feat: add instrumentation-client support #764

Closed
opened 2026-05-06 13:10:00 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/cloudflare/vinext/pull/679
Author: @hyoban
Created: 3/24/2026
Status: Merged
Merged: 3/28/2026
Merged by: @james-elicx

Base: mainHead: 3-25-instrumentation-client-support


📝 Commits (10+)

  • f88347d feat: add instrumentation-client support
  • 063bb89 trigger ci
  • 5c5e7e9 fix deps
  • 5f20d8e tweaks
  • b6a2cac tweaks
  • ed9a1e0 Merge branch 'cloudflare:main' into 3-25-instrumentation-client-support
  • faf073a tweaks
  • 215900e tweaks
  • 0430f06 Merge branch 'cloudflare:main' into 3-25-instrumentation-client-support
  • 34ff4e4 fix: address bonk review comments and merge main

📊 Changes

36 files changed (+676 additions, -55 deletions)

View changed files

📝 .github/workflows/ci.yml (+1 -0)
packages/vinext/src/client/empty-module.ts (+1 -0)
📝 packages/vinext/src/client/entry.ts (+2 -0)
packages/vinext/src/client/instrumentation-client-state.ts (+27 -0)
packages/vinext/src/client/instrumentation-client.ts (+13 -0)
📝 packages/vinext/src/entries/pages-client-entry.ts (+2 -0)
📝 packages/vinext/src/global.d.ts (+6 -0)
📝 packages/vinext/src/index.ts (+47 -4)
packages/vinext/src/plugins/instrumentation-client.ts (+47 -0)
packages/vinext/src/private-next-instrumentation-client.d.ts (+8 -0)
📝 packages/vinext/src/server/app-browser-entry.ts (+4 -0)
📝 packages/vinext/src/server/dev-server.ts (+2 -0)
📝 packages/vinext/src/server/instrumentation.ts (+23 -5)
📝 packages/vinext/src/shims/link.tsx (+5 -0)
📝 packages/vinext/src/shims/navigation.ts (+4 -0)
📝 playwright.config.ts (+12 -1)
📝 pnpm-lock.yaml (+25 -0)
📝 tests/__snapshots__/entry-templates.test.ts.snap (+49 -44)
📝 tests/app-router.test.ts (+6 -0)
tests/e2e/app-router/instrumentation-client.spec.ts (+144 -0)

...and 16 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/cloudflare/vinext/pull/679 **Author:** [@hyoban](https://github.com/hyoban) **Created:** 3/24/2026 **Status:** ✅ Merged **Merged:** 3/28/2026 **Merged by:** [@james-elicx](https://github.com/james-elicx) **Base:** `main` ← **Head:** `3-25-instrumentation-client-support` --- ### 📝 Commits (10+) - [`f88347d`](https://github.com/cloudflare/vinext/commit/f88347d12f26991b16d53c4427d1983aa87b8d64) feat: add instrumentation-client support - [`063bb89`](https://github.com/cloudflare/vinext/commit/063bb89eecdaa4d84ad9b937be39db9acb01553c) trigger ci - [`5c5e7e9`](https://github.com/cloudflare/vinext/commit/5c5e7e93e76469a5c26af5436f754929531da077) fix deps - [`5f20d8e`](https://github.com/cloudflare/vinext/commit/5f20d8e78e9ce55c45a564c1073fa100bfb87cdb) tweaks - [`b6a2cac`](https://github.com/cloudflare/vinext/commit/b6a2cacb69565c2314e12afb81cc83ebface39aa) tweaks - [`ed9a1e0`](https://github.com/cloudflare/vinext/commit/ed9a1e029dd9725d8b56a220e6a858579786d9fe) Merge branch 'cloudflare:main' into 3-25-instrumentation-client-support - [`faf073a`](https://github.com/cloudflare/vinext/commit/faf073a4a827c1b5fd1a14417b3c8e39443f2057) tweaks - [`215900e`](https://github.com/cloudflare/vinext/commit/215900e8e29e87e74cf915261733c289e399cadc) tweaks - [`0430f06`](https://github.com/cloudflare/vinext/commit/0430f06e90238d5adec6014418f1e8afe9bbe436) Merge branch 'cloudflare:main' into 3-25-instrumentation-client-support - [`34ff4e4`](https://github.com/cloudflare/vinext/commit/34ff4e432a1ccc65c98c7ef2fa3b25e19c13a91f) fix: address bonk review comments and merge main ### 📊 Changes **36 files changed** (+676 additions, -55 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+1 -0) ➕ `packages/vinext/src/client/empty-module.ts` (+1 -0) 📝 `packages/vinext/src/client/entry.ts` (+2 -0) ➕ `packages/vinext/src/client/instrumentation-client-state.ts` (+27 -0) ➕ `packages/vinext/src/client/instrumentation-client.ts` (+13 -0) 📝 `packages/vinext/src/entries/pages-client-entry.ts` (+2 -0) 📝 `packages/vinext/src/global.d.ts` (+6 -0) 📝 `packages/vinext/src/index.ts` (+47 -4) ➕ `packages/vinext/src/plugins/instrumentation-client.ts` (+47 -0) ➕ `packages/vinext/src/private-next-instrumentation-client.d.ts` (+8 -0) 📝 `packages/vinext/src/server/app-browser-entry.ts` (+4 -0) 📝 `packages/vinext/src/server/dev-server.ts` (+2 -0) 📝 `packages/vinext/src/server/instrumentation.ts` (+23 -5) 📝 `packages/vinext/src/shims/link.tsx` (+5 -0) 📝 `packages/vinext/src/shims/navigation.ts` (+4 -0) 📝 `playwright.config.ts` (+12 -1) 📝 `pnpm-lock.yaml` (+25 -0) 📝 `tests/__snapshots__/entry-templates.test.ts.snap` (+49 -44) 📝 `tests/app-router.test.ts` (+6 -0) ➕ `tests/e2e/app-router/instrumentation-client.spec.ts` (+144 -0) _...and 16 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 13:10:00 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/vinext#764
No description provided.