syntropylog 0.9.20 โ†’ 0.10.1

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - security: remove code minification from the production bundle.
8
+ This ensures that the library follows npm best practices, providing transparent and auditable code as flagged by socket.dev security alerts. Both CommonJS (`require`) and ES Modules (`import`) artifacts are now distributed in readable format.
9
+
10
+ ## 0.10.0
11
+
12
+ ### Patch Changes
13
+
14
+ - refactor: replace valibot with zero-dependency ROP config validator.
15
+ This change significantly reduces the bundle size by eliminating the valibot dependency (~30kB raw reduction) and introduces a robust, functional configuration validation system with 100% test coverage.
16
+
3
17
  ## 0.9.20
4
18
 
5
19
  ### Patch Changes
package/README.md CHANGED
@@ -16,8 +16,8 @@
16
16
  <a href="https://www.npmjs.com/package/syntropylog"><img src="https://img.shields.io/npm/v/syntropylog.svg" alt="NPM Version"></a>
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
- <a href="#"><img src="https://img.shields.io/badge/coverage-92.47%25-brightgreen" alt="Test Coverage"></a>
20
- <a href="#"><img src="https://img.shields.io/badge/status-v0.9.12-brightgreen.svg" alt="Version 0.9.12"></a>
19
+ <a href="#"><img src="https://img.shields.io/badge/coverage-95.13%25-brightgreen" alt="Test Coverage"></a>
20
+ <a href="#"><img src="https://img.shields.io/badge/status-v0.10.0-brightgreen.svg" alt="Version 0.10.0"></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
 
@@ -57,7 +57,7 @@ We ship with `sideEffects: false` and ESM so bundlers (Vite, Rollup, webpack, es
57
57
 
58
58
  Traditional loggers (and even modern ones) share a common weakness: **serialization is a blocking operation**. If you log a massive, deeply nested, or circular object, the Node.js Event Loop stops. Your API stops responding. Your service might even crash with a `TypeError`.
59
59
 
60
- SyntropyLog v0.9.1 introduces the **Log Resilience Engine**, making your application immune to "Death by Log":
60
+ SyntropyLog v0.10.0 introduces the **Log Resilience Engine**, making your application immune to "Death by Log":
61
61
 
62
62
  1. **Event Loop Protection**: Every serialization step is wrapped in a mandatory timeout (default: **50ms**). If serialization takes too long, it is aborted via `Promise.race`, and a safe subset of the data is logged instead. Your app keeps running.
63
63
  2. **Circular Reference Immunity**: Built-in hygiene automatically detects and neutralizes circular references. No more `TypeError: Converting circular structure to JSON`.
@@ -604,20 +604,7 @@ const dbTransport = new UniversalAdapter({
604
604
 
605
605
  ---
606
606
 
607
- ## ๐Ÿ“š Learn More
608
-
609
- SyntropyLog goes deep. Explore our specialized guides:
610
-
611
- | | Guide | Description |
612
- | :--- | :--- | :--- |
613
- | ๐Ÿ”ง | [Master Configuration](./docs/configuration.md) | Every option explained: `loggingMatrix`, `serializers`, masking, context. |
614
- | ๐Ÿ’พ | [Universal Persistence](./docs/persistence.md) | Map logs to any DB (SQL/NoSQL) with pure JSON, zero dependencies. |
615
- | ๐Ÿงฌ | [Serialization & Resiliency](./docs/serialization.md) | Circular reference protection, automated timeouts, and the Safe Pipeline. |
616
- | โš™๏ธ | [Middleware & Frameworks](./docs/middleware.md) | Integration patterns for Express, NestJS, and more via Universal Contracts. |
617
- | ๐Ÿข | [Enterprise Patterns](./docs/enterprise.md) | Scalable architectures, ELK, Kubernetes, and compliance. |
618
- | ๐Ÿงช | [Testing Strategy](./docs/testing.md) | Zero-boilerplate mocking with `SyntropyLogMock`. |
619
- | ๐ŸŽญ | [Core Philosophy](./docs/philosophy.md) | The "Silent Observer" principle and error handling strategy. |
620
- | ๐Ÿ“ฆ | [Examples](https://github.com/Syntropysoft/syntropylog-examples) | Real integrations with Express, Redis, Kafka, and more. |
607
+ ---
621
608
 
622
609
  ---
623
610