@visulima/pail 4.0.0-alpha.7 → 4.0.0-alpha.9
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,3 +1,45 @@
|
|
|
1
|
+
## @visulima/pail [4.0.0-alpha.9](https://github.com/visulima/visulima/compare/@visulima/pail@4.0.0-alpha.8...@visulima/pail@4.0.0-alpha.9) (2026-03-26)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **web:** auto-generate packages page from workspace metadata ([623e520](https://github.com/visulima/visulima/commit/623e5207693a7fe720f5f2f179593a3654c880e3))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* update homepage URLs to visulima.com/packages/ format ([be42968](https://github.com/visulima/visulima/commit/be42968129df85fb074224435e33135ff44cab91))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **@visulima/colorize:** upgraded to 2.0.0-alpha.7
|
|
15
|
+
* **@visulima/error:** upgraded to 6.0.0-alpha.7
|
|
16
|
+
* **@visulima/fmt:** upgraded to 2.0.0-alpha.7
|
|
17
|
+
* **@visulima/inspector:** upgraded to 2.0.0-alpha.6
|
|
18
|
+
* **@visulima/redact:** upgraded to 3.0.0-alpha.7
|
|
19
|
+
* **@visulima/string:** upgraded to 3.0.0-alpha.8
|
|
20
|
+
|
|
21
|
+
## @visulima/pail [4.0.0-alpha.8](https://github.com/visulima/visulima/compare/@visulima/pail@4.0.0-alpha.7...@visulima/pail@4.0.0-alpha.8) (2026-03-26)
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **pail:** use workspace:* for internal [@visulima](https://github.com/visulima) deps ([8423dd7](https://github.com/visulima/visulima/commit/8423dd779fbea0acff8f090e548a423e46d761fd))
|
|
26
|
+
* **web:** improve build setup with incremental stats caching and prod install ([fe33e75](https://github.com/visulima/visulima/commit/fe33e75827586779b4b3a0c6d57b39f889ee6207))
|
|
27
|
+
|
|
28
|
+
### Miscellaneous Chores
|
|
29
|
+
|
|
30
|
+
* **pail:** migrate deps to pnpm catalogs ([b2acd86](https://github.com/visulima/visulima/commit/b2acd864a40d0b2cc8eaf4e531cb2dedfd54181a))
|
|
31
|
+
* update license ([b2d306c](https://github.com/visulima/visulima/commit/b2d306cfeb1eabfd9e24880cb9198f6360724d82))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Dependencies
|
|
35
|
+
|
|
36
|
+
* **@visulima/colorize:** upgraded to 2.0.0-alpha.6
|
|
37
|
+
* **@visulima/error:** upgraded to 6.0.0-alpha.6
|
|
38
|
+
* **@visulima/fmt:** upgraded to 2.0.0-alpha.6
|
|
39
|
+
* **@visulima/inspector:** upgraded to 2.0.0-alpha.5
|
|
40
|
+
* **@visulima/redact:** upgraded to 3.0.0-alpha.6
|
|
41
|
+
* **@visulima/string:** upgraded to 3.0.0-alpha.7
|
|
42
|
+
|
|
1
43
|
## @visulima/pail [4.0.0-alpha.7](https://github.com/visulima/visulima/compare/@visulima/pail@4.0.0-alpha.6...@visulima/pail@4.0.0-alpha.7) (2026-03-16)
|
|
2
44
|
|
|
3
45
|
### Features
|
package/dist/index.browser.js
CHANGED
|
@@ -4,8 +4,8 @@ import { g as getLongestLabel, b as build } from './packem_shared/index-DnkF86LQ
|
|
|
4
4
|
import JsonReporter from './packem_shared/JsonReporter-p_BXg6Sj.js';
|
|
5
5
|
export { PailError, createPailError } from './packem_shared/createPailError-B11aRfrT.js';
|
|
6
6
|
|
|
7
|
-
function getDefaultExportFromCjs
|
|
8
|
-
|
|
7
|
+
function getDefaultExportFromCjs(x) {
|
|
8
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
var safeStableStringify = {exports: {}};
|
package/dist/index.server.js
CHANGED
|
@@ -318,8 +318,8 @@ class InteractiveStreamHook {
|
|
|
318
318
|
}
|
|
319
319
|
}
|
|
320
320
|
|
|
321
|
-
function getDefaultExportFromCjs
|
|
322
|
-
|
|
321
|
+
function getDefaultExportFromCjs(x) {
|
|
322
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
325
|
var safeStableStringify = {exports: {}};
|
|
@@ -3,7 +3,7 @@ import type { Meta, StringifyAwareProcessor } from "../types.d.ts";
|
|
|
3
3
|
/**
|
|
4
4
|
* Message Formatter Processor.
|
|
5
5
|
*
|
|
6
|
-
* A processor that formats log messages using the {@link https://
|
|
6
|
+
* A processor that formats log messages using the {@link https://visulima.com/packages/fmt/|@visulima/fmt} library.
|
|
7
7
|
* Supports custom formatters, string interpolation, and complex object formatting.
|
|
8
8
|
* Processes both the main message and contextual data.
|
|
9
9
|
* @template L - The log level type
|
|
@@ -4,7 +4,7 @@ import type { Meta, Processor } from "../types.d.ts";
|
|
|
4
4
|
* Redact Processor.
|
|
5
5
|
*
|
|
6
6
|
* A processor that redacts sensitive information from log messages and metadata.
|
|
7
|
-
* Uses the {@link https://
|
|
7
|
+
* Uses the {@link https://visulima.com/packages/redact/|@visulima/redact} library to identify and mask sensitive data like
|
|
8
8
|
* passwords, API keys, credit card numbers, and other PII.
|
|
9
9
|
* @template L - The log level type
|
|
10
10
|
* @example
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/pail",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.9",
|
|
4
4
|
"description": "Highly configurable Logger for Node.js, Edge and Browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ansi",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"warning-logging",
|
|
56
56
|
"winston"
|
|
57
57
|
],
|
|
58
|
-
"homepage": "https://
|
|
58
|
+
"homepage": "https://visulima.com/packages/pail/",
|
|
59
59
|
"bugs": {
|
|
60
60
|
"url": "https://github.com/visulima/visulima/issues"
|
|
61
61
|
},
|
|
@@ -243,19 +243,19 @@
|
|
|
243
243
|
"LICENSE.md"
|
|
244
244
|
],
|
|
245
245
|
"dependencies": {
|
|
246
|
-
"@visulima/colorize": "2.0.0-alpha.
|
|
247
|
-
"type-fest": "
|
|
246
|
+
"@visulima/colorize": "2.0.0-alpha.7",
|
|
247
|
+
"type-fest": "5.5.0"
|
|
248
248
|
},
|
|
249
249
|
"peerDependencies": {
|
|
250
250
|
"@opentelemetry/api": "^1.9",
|
|
251
251
|
"@sveltejs/kit": ">=2.0",
|
|
252
|
-
"@visulima/redact": "3.0.0-alpha.
|
|
252
|
+
"@visulima/redact": "3.0.0-alpha.7",
|
|
253
253
|
"elysia": ">=1.0",
|
|
254
254
|
"express": ">=4.0",
|
|
255
255
|
"fastify": ">=4.0",
|
|
256
256
|
"hono": ">=4.0",
|
|
257
257
|
"next": ">=14.0",
|
|
258
|
-
"rotating-file-stream": "
|
|
258
|
+
"rotating-file-stream": "3.2.9"
|
|
259
259
|
},
|
|
260
260
|
"peerDependenciesMeta": {
|
|
261
261
|
"@opentelemetry/api": {
|
|
@@ -286,6 +286,7 @@
|
|
|
286
286
|
"optional": true
|
|
287
287
|
}
|
|
288
288
|
},
|
|
289
|
+
"optionalDependencies": {},
|
|
289
290
|
"engines": {
|
|
290
291
|
"node": ">=22.13 <=25.x"
|
|
291
292
|
},
|