Skip to content

Commit b317d2e

Browse files
Version Packages (#77)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 28eb056 commit b317d2e

File tree

6 files changed

+45
-38
lines changed

6 files changed

+45
-38
lines changed

.changeset/rename-logfire-api.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.changeset/rename-logfire-node.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

packages/logfire-api/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @pydantic/logfire-api
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- 28eb056: BREAKING CHANGE: Package renamed from `@pydantic/logfire-api` to `logfire`.
8+
9+
This change makes the core API package easier to use with a simpler, unscoped name.
10+
11+
**Migration Guide**:
12+
13+
- Update package.json: Change `"@pydantic/logfire-api"` to `"logfire"`
14+
- Update imports: Change `from '@pydantic/logfire-api'` to `from 'logfire'`
15+
- Run `npm install` to update lockfiles
16+
17+
The package functionality remains identical. This is purely a naming change.
18+
19+
**Why this change?**
20+
The core API package is used across all runtimes (Node, browser, Cloudflare Workers) and deserves the simpler package name. The Node.js-specific SDK with auto-instrumentation is now `@pydantic/logfire-node`.
21+
322
## 0.9.0
423

524
### Minor Changes

packages/logfire-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"stats",
2727
"monitoring"
2828
],
29-
"version": "0.10.0",
29+
"version": "0.11.0",
3030
"type": "module",
3131
"main": "./dist/index.cjs",
3232
"module": "./dist/index.js",

packages/logfire-node/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# logfire
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- 28eb056: BREAKING CHANGE: Package renamed from `logfire` to `@pydantic/logfire-node`.
8+
9+
This change clarifies that this package is the Node.js-specific SDK with OpenTelemetry auto-instrumentation.
10+
11+
**Migration Guide**:
12+
13+
- Update package.json: Change `"logfire"` to `"@pydantic/logfire-node"`
14+
- Update imports: Change `from 'logfire'` to `from '@pydantic/logfire-node'`
15+
- Run `npm install` to update lockfiles
16+
17+
The package functionality remains identical. This is purely a naming change.
18+
19+
**Why this change?**
20+
The core API package (now simply called `logfire`) is used across all runtimes. The Node.js SDK with auto-instrumentation is a more specialized package and should have a scoped, descriptive name.
21+
22+
### Patch Changes
23+
24+
- Updated dependencies [28eb056]
25+
26+
327
## 0.10.0
428

529
### Minor Changes

packages/logfire-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"stats",
2626
"monitoring"
2727
],
28-
"version": "0.10.0",
28+
"version": "0.11.0",
2929
"type": "module",
3030
"main": "./dist/index.cjs",
3131
"module": "./dist/index.js",

0 commit comments

Comments
 (0)