Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pino

Package Overview
Dependencies
Maintainers
4
Versions
311
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pino - npm Package Compare versions

Comparing version 6.5.0 to 6.5.1

test/fixtures/pretty/child-with-updated-chindings.js

2

lib/proto.js

@@ -14,2 +14,3 @@ 'use strict'

chindingsSym,
parsedChindingsSym,
mixinSym,

@@ -140,2 +141,3 @@ asJsonSym,

this[chindingsSym] = chindings
delete this[parsedChindingsSym]
}

@@ -142,0 +144,0 @@

28

package.json
{
"name": "pino",
"version": "6.5.0",
"version": "6.5.1",
"description": "super fast, all natural json logger",

@@ -61,18 +61,18 @@ "main": "pino.js",

"devDependencies": {
"airtap": "2.0.2",
"airtap": "3.0.0",
"benchmark": "^2.1.4",
"bole": "^3.0.2",
"bunyan": "^1.8.12",
"docsify-cli": "^4.4.0",
"execa": "^1.0.0",
"bole": "^4.0.0",
"bunyan": "^1.8.14",
"docsify-cli": "^4.4.1",
"execa": "^4.0.0",
"fastbench": "^1.0.1",
"flush-write-stream": "^2.0.0",
"import-fresh": "^3.2.1",
"log": "^5.0.0",
"log": "^6.0.0",
"loglevel": "^1.6.7",
"pino-pretty": "^4.0.0",
"pino-pretty": "^4.1.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"pump": "^3.0.0",
"semver": "^6.3.0",
"semver": "^7.0.0",
"snazzy": "^8.0.0",

@@ -83,6 +83,6 @@ "split2": "^3.1.1",

"strip-ansi": "^6.0.0",
"tap": "^14.10.7",
"tape": "^4.13.2",
"through2": "^3.0.1",
"winston": "^3.2.1"
"tap": "^14.10.8",
"tape": "^5.0.0",
"through2": "^4.0.0",
"winston": "^3.3.3"
},

@@ -95,4 +95,4 @@ "dependencies": {

"quick-format-unescaped": "^4.0.1",
"sonic-boom": "^1.0.0"
"sonic-boom": "^1.0.2"
}
}

@@ -115,2 +115,16 @@ 'use strict'

test('applies updated chindings', async ({ is, isNot }) => {
var actual = ''
const child = execa(process.argv[0], [join(__dirname, 'fixtures', 'pretty', 'child-with-updated-chindings.js')])
child.stdout.pipe(writer((s, enc, cb) => {
actual += s
cb()
}))
await once(child, 'close')
isNot(strip(actual).match(/foo: 123/), null)
isNot(strip(actual).match(/foo: 456/), null)
isNot(strip(actual).match(/bar: 789/), null)
})
test('applies formatters', async ({ is, isNot }) => {

@@ -117,0 +131,0 @@ var actual = ''

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc