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
5 changes: 0 additions & 5 deletions .changeset/browser-capture-handlers.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/initial-release.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @smooai/observability

## 0.2.0

### Minor Changes

- 40bbb38: Browser capture MVP. Wires up `window.onerror` + `unhandledrejection` global handlers, optional `console.error` tap, `fetch` + navigation breadcrumb wrappers, batched `fetch` transport with `navigator.sendBeacon` flush on `pagehide`/`visibilitychange`, PII scrubbing (Bearer tokens, password/token/api-key params, OpenAI-style `sk-...` keys, sensitive headers), and an engine-agnostic V8 + Spidermonkey stack parser. `Client.init` now auto-installs everything when called from the browser entry. SDK-internal frames are stripped from captured stacks. `Error.cause` chains are walked into the exception envelope.
- ebda331: Initial 0.1.0 release. Universal browser + Node core with React and Next.js wrappers. Capture handlers and transport land incrementally — track follow-ups in [SmooAI/smooai SMOODEV-1067](https://github.com/SmooAI/smooai).

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smooai/observability",
"version": "0.1.0",
"version": "0.2.0",
"description": "Smoo AI Observability core SDK — browser + Node error capture with batched transport",
"license": "MIT",
"repository": {
Expand Down
13 changes: 13 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @smooai/observability-next

## 0.2.0

### Minor Changes

- ebda331: Initial 0.1.0 release. Universal browser + Node core with React and Next.js wrappers. Capture handlers and transport land incrementally — track follow-ups in [SmooAI/smooai SMOODEV-1067](https://github.com/SmooAI/smooai).

### Patch Changes

- Updated dependencies [40bbb38]
- Updated dependencies [ebda331]
- @smooai/observability@0.2.0
- @smooai/observability-react@0.2.0

## 0.1.0

### Minor 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": "@smooai/observability-next",
"version": "0.1.0",
"version": "0.2.0",
"description": "Next.js wrapper for @smooai/observability — RootErrorBoundary, withSmooObservability(), build-time sourcemap upload",
"license": "MIT",
"repository": {
Expand Down
12 changes: 12 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @smooai/observability-react

## 0.2.0

### Minor Changes

- ebda331: Initial 0.1.0 release. Universal browser + Node core with React and Next.js wrappers. Capture handlers and transport land incrementally — track follow-ups in [SmooAI/smooai SMOODEV-1067](https://github.com/SmooAI/smooai).

### Patch Changes

- Updated dependencies [40bbb38]
- Updated dependencies [ebda331]
- @smooai/observability@0.2.0

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smooai/observability-react",
"version": "0.1.0",
"version": "0.2.0",
"description": "React bindings for @smooai/observability — ErrorBoundary + useErrorHandler",
"license": "MIT",
"repository": {
Expand Down
Loading