Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .changeset/fix-adapter-route-span-nesting.md

This file was deleted.

16 changes: 16 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @tindalabs/blindspot-next

## 0.1.2

### Patch Changes

- 2003457: Fix: in-route activity (clicks, fetch, errors, form submits) now nests under the
navigation span instead of orphaning into its own root trace.

The Vue, Svelte, and Next.js (pages-router) integrations cleared the route span
in a step separate from re-creating it — Vue/Svelte in a `beforeEach` /
`beforeNavigate` guard, the Next pages-router on `routeChangeStart` — leaving a
window where the active context was root. Any span started in that window (and
intermittently the navigation-triggering click) became a standalone root trace.
The clear and re-create now happen atomically when the new route span is
established (`afterEach` / `afterNavigate` / `routeChangeComplete`), so a route
span is active at all times — matching the React and Next app-router adapters.

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tindalabs/blindspot-next",
"version": "0.1.1",
"version": "0.1.2",
"description": "Blindspot — Next.js integration supporting both App Router and Pages Router for server-rendered and hybrid applications.",
"keywords": [
"opentelemetry",
Expand Down
16 changes: 16 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @tindalabs/blindspot-svelte

## 0.1.2

### Patch Changes

- 2003457: Fix: in-route activity (clicks, fetch, errors, form submits) now nests under the
navigation span instead of orphaning into its own root trace.

The Vue, Svelte, and Next.js (pages-router) integrations cleared the route span
in a step separate from re-creating it — Vue/Svelte in a `beforeEach` /
`beforeNavigate` guard, the Next pages-router on `routeChangeStart` — leaving a
window where the active context was root. Any span started in that window (and
intermittently the navigation-triggering click) became a standalone root trace.
The clear and re-create now happen atomically when the new route span is
established (`afterEach` / `afterNavigate` / `routeChangeComplete`), so a route
span is active at all times — matching the React and Next app-router adapters.

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tindalabs/blindspot-svelte",
"version": "0.1.1",
"version": "0.1.2",
"description": "Blindspot — Svelte and SvelteKit integration with stores and lifecycle hooks for automatic telemetry.",
"keywords": [
"opentelemetry",
Expand Down
16 changes: 16 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @tindalabs/blindspot-vue

## 0.1.2

### Patch Changes

- 2003457: Fix: in-route activity (clicks, fetch, errors, form submits) now nests under the
navigation span instead of orphaning into its own root trace.

The Vue, Svelte, and Next.js (pages-router) integrations cleared the route span
in a step separate from re-creating it — Vue/Svelte in a `beforeEach` /
`beforeNavigate` guard, the Next pages-router on `routeChangeStart` — leaving a
window where the active context was root. Any span started in that window (and
intermittently the navigation-triggering click) became a standalone root trace.
The clear and re-create now happen atomically when the new route span is
established (`afterEach` / `afterNavigate` / `routeChangeComplete`), so a route
span is active at all times — matching the React and Next app-router adapters.

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tindalabs/blindspot-vue",
"version": "0.1.1",
"version": "0.1.2",
"description": "Blindspot — Vue 3 integration. BlindspotPlugin and useBlindspot composable for Vue 3 and Vue Router.",
"keywords": [
"opentelemetry",
Expand Down