@trebired/logger 2.6.1 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to `@trebired/logger` will be documented here.
|
|
|
4
4
|
|
|
5
5
|
This project follows semantic versioning once published.
|
|
6
6
|
|
|
7
|
+
## 2.6.2
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Moved the `@trebired/utils` dependency range from `^0.6.0` to `^0.8.0`, matching the rest of
|
|
12
|
+
the `@trebired` packages. For 0.x versions those two ranges are disjoint (`>=0.6.0 <0.7.0` vs
|
|
13
|
+
`>=0.8.0 <0.9.0`), so any project combining this package with one already on `^0.8.0`
|
|
14
|
+
(`@trebired/frontend`, `@trebired/uploads`, `@trebired/env`, `@trebired/security`) resolved two
|
|
15
|
+
copies of `@trebired/utils` — a hoisted 0.6.x alongside a nested 0.8.x — duplicating code and
|
|
16
|
+
letting app-level imports of `@trebired/utils` silently resolve to a different copy than this
|
|
17
|
+
package used internally. Nothing this package uses changed across those releases; the only
|
|
18
|
+
breaking change in 0.8.0 was the env module moving to `@trebired/env`, which this package does
|
|
19
|
+
not import.
|
|
20
|
+
|
|
7
21
|
## 2.6.1
|
|
8
22
|
|
|
9
23
|
### Fixed
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
}
|
|
9
9
|
},
|
|
10
10
|
"name": "@trebired/logger",
|
|
11
|
-
"version": "2.6.
|
|
11
|
+
"version": "2.6.2",
|
|
12
12
|
"description": "Local-first JSONL logger with durable writes, partitions, export archives, native storage acceleration, redaction, query helpers, and browser runtimes.",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"private": false,
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@package/result": "npm:@trebired/result@^1.2.7",
|
|
64
|
-
"@trebired/utils": "^0.
|
|
64
|
+
"@trebired/utils": "^0.8.0",
|
|
65
65
|
"fflate": "^0.8.3",
|
|
66
66
|
"tar-stream": "^3.2.0"
|
|
67
67
|
},
|