[READ-ONLY] Mirror of https://github.com/FoxxMD/logging. A typed, opinionated, batteries-included, Pino-based logging solution for backend TS/JS projects foxxmd.github.io/logging
child-logger logging logging-library nodejs pinojs typescript-library
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: Bump pino-roll to fix DST issue with rolling file

* From mcollina/pino-roll#95
* Fixes FoxxMD/multi-scrobbler#214

FoxxMD (Oct 28, 2024, 1:55 PM EDT) 1d1442fd e2b46bb0

+19 -17
+17 -15
package-lock.json
··· 1 1 { 2 2 "name": "@foxxmd/logging", 3 - "version": "0.2.1", 3 + "version": "0.2.2", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "@foxxmd/logging", 9 - "version": "0.2.1", 9 + "version": "0.2.2", 10 10 "license": "MIT", 11 11 "dependencies": { 12 12 "pino": "^9.2.0", 13 13 "pino-abstract-transport": "^1.2.0", 14 14 "pino-pretty": "^11.2.1", 15 - "pino-roll": "^1.1.0", 15 + "pino-roll": "^2.2.0", 16 16 "pump": "^3.0.0" 17 17 }, 18 18 "devDependencies": { ··· 1114 1114 "node": ">= 8" 1115 1115 } 1116 1116 }, 1117 + "node_modules/date-fns": { 1118 + "version": "4.1.0", 1119 + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz", 1120 + "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==", 1121 + "funding": { 1122 + "type": "github", 1123 + "url": "https://github.com/sponsors/kossnocorp" 1124 + } 1125 + }, 1117 1126 "node_modules/dateformat": { 1118 1127 "version": "5.0.3", 1119 1128 "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-5.0.3.tgz", ··· 2208 2217 } 2209 2218 }, 2210 2219 "node_modules/pino-roll": { 2211 - "version": "1.3.0", 2212 - "resolved": "https://registry.npmjs.org/pino-roll/-/pino-roll-1.3.0.tgz", 2213 - "integrity": "sha512-bEjnbuSNjHY44LJH9MNqnrLnLWwWlDrK5AE9WMDR1bhQYiikzPgIla1TQ75+J0cx6Im2CYe5kMKRJzbRGVQjVQ==", 2214 - "dependencies": { 2215 - "sonic-boom": "^3.8.0" 2216 - } 2217 - }, 2218 - "node_modules/pino-roll/node_modules/sonic-boom": { 2219 - "version": "3.8.1", 2220 - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.8.1.tgz", 2221 - "integrity": "sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==", 2220 + "version": "2.2.0", 2221 + "resolved": "https://registry.npmjs.org/pino-roll/-/pino-roll-2.2.0.tgz", 2222 + "integrity": "sha512-PSigcOfIQHcPIRcQFuDFe5RVD37waq9T3No8lqPr4CdIaSa9pshUOPVCO1C1mmb3VQ1n5VXUGuKSNk6yDMUi6w==", 2222 2223 "dependencies": { 2223 - "atomic-sleep": "^1.0.0" 2224 + "date-fns": "^4.1.0", 2225 + "sonic-boom": "^4.0.1" 2224 2226 } 2225 2227 }, 2226 2228 "node_modules/pino-std-serializers": {
+2 -2
package.json
··· 1 1 { 2 2 "name": "@foxxmd/logging", 3 3 "type": "module", 4 - "version": "0.2.1", 4 + "version": "0.2.2", 5 5 "repository": "https://github.com/foxxmd/logging", 6 6 "description": "A typed, opinionated, batteries-included, Pino-based logging solution for backend TS/JS projects", 7 7 "scripts": { ··· 74 74 "pino": "^9.2.0", 75 75 "pino-abstract-transport": "^1.2.0", 76 76 "pino-pretty": "^11.2.1", 77 - "pino-roll": "^1.1.0", 77 + "pino-roll": "^2.2.0", 78 78 "pump": "^3.0.0" 79 79 }, 80 80 "overrides": {