syntropylog 0.9.2 → 0.9.3
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 +11 -0
- package/README.md +2 -1
- package/package.json +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.9.3] - 2026-03-07
|
|
9
|
+
|
|
10
|
+
### 📝 Documentation
|
|
11
|
+
- **README intro**: Added to the "What is SyntropyLog?" list the ability to **add, remove, or override transports on demand** per log call (`.override()`, `.add()`, `.remove()`), without creating new logger instances.
|
|
12
|
+
- **package.json**: Added `funding` field for open-source visibility.
|
|
13
|
+
|
|
14
|
+
### 🔧 Maintenance
|
|
15
|
+
- No breaking changes. Patch release for documentation and second publication.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
8
19
|
## [0.9.2] - 2026-03-04
|
|
9
20
|
|
|
10
21
|
### ⚠️ Breaking changes
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<a href="https://github.com/Syntropysoft/SyntropyLog/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/syntropylog.svg" alt="License"></a>
|
|
18
18
|
<a href="https://github.com/Syntropysoft/SyntropyLog/actions/workflows/ci.yaml"><img src="https://github.com/Syntropysoft/SyntropyLog/actions/workflows/ci.yaml/badge.svg" alt="CI Status"></a>
|
|
19
19
|
<a href="#"><img src="https://img.shields.io/badge/coverage-84.64%25-brightgreen" alt="Test Coverage"></a>
|
|
20
|
-
<a href="#"><img src="https://img.shields.io/badge/status-v0.9.
|
|
20
|
+
<a href="#"><img src="https://img.shields.io/badge/status-v0.9.3-brightgreen.svg" alt="Version 0.9.3"></a>
|
|
21
21
|
<a href="https://socket.dev/npm/package/syntropylog"><img src="https://socket.dev/api/badge/npm/package/syntropylog" alt="Socket Badge"></a>
|
|
22
22
|
</p>
|
|
23
23
|
|
|
@@ -32,6 +32,7 @@ The core idea is simple: **you declare what your logs should carry, and Syntropy
|
|
|
32
32
|
That means:
|
|
33
33
|
- A **declarative Logging Matrix** that controls exactly which context fields appear at each log level — lean on `info`, full context on `error`.
|
|
34
34
|
- A **fluent logger API** (`withRetention`, `withSource`, `withTransactionId`) that lets you create specialized loggers carrying arbitrary organization-defined metadata.
|
|
35
|
+
- **Add, remove, or override transports on demand** — per log call you can send only to specific transports (`.override()`), add extra destinations (`.add()`), or drop one (`.remove()`), without creating new logger instances.
|
|
35
36
|
- A **MaskingEngine** that redacts sensitive fields before they reach any transport — built-in strategies and fully custom rules.
|
|
36
37
|
- An **Intelligent Serialization Pipeline** that automatically detects and neutralizes circular references, limits object depth, and enforces execution timeouts — making logs immune to application crashes.
|
|
37
38
|
- A **UniversalAdapter** that routes logs to any backend (PostgreSQL, MongoDB, Elasticsearch, S3) via a single `executor` function — no coupling, no lock-in.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syntropylog",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -127,6 +127,9 @@
|
|
|
127
127
|
"type": "git",
|
|
128
128
|
"url": "git+https://github.com/Syntropysoft/SyntropyLog.git"
|
|
129
129
|
},
|
|
130
|
+
"funding": {
|
|
131
|
+
"url": "https://github.com/Syntropysoft/SyntropyLog"
|
|
132
|
+
},
|
|
130
133
|
"publishConfig": {
|
|
131
134
|
"access": "public"
|
|
132
135
|
},
|
|
@@ -162,7 +165,8 @@
|
|
|
162
165
|
"tslib": "^2.8.1",
|
|
163
166
|
"typescript": "^5.7.3",
|
|
164
167
|
"typescript-eslint": "8.56.1",
|
|
165
|
-
"vitest": "^4.0.18"
|
|
168
|
+
"vitest": "^4.0.18",
|
|
169
|
+
"@changesets/cli": "^2.27.1"
|
|
166
170
|
},
|
|
167
171
|
"peerDependencies": {
|
|
168
172
|
"chalk": "^5.4.1",
|
|
@@ -193,6 +197,9 @@
|
|
|
193
197
|
"test:integration": "vitest run -c vitest.integration.config.mjs",
|
|
194
198
|
"test:all": "npm test && npm run test:integration",
|
|
195
199
|
"check:deps": "depcheck",
|
|
200
|
+
"changeset": "changeset",
|
|
201
|
+
"version-packages": "changeset version",
|
|
202
|
+
"release": "npm run build && changeset publish",
|
|
196
203
|
"version:patch": "npm version patch",
|
|
197
204
|
"version:minor": "npm version minor",
|
|
198
205
|
"version:major": "npm version major",
|