Skip to content

Commit

Permalink
chore: bump logdna/[email protected]
Browse files Browse the repository at this point in the history
Brings in a security fix for axios

Fixes: #14
  • Loading branch information
mdeltito committed Feb 2, 2024
1 parent aada2b8 commit 422c26f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pipeline {
axes {
axis {
name 'NODE_VERSION'
values '12', '14', '16', '18'
values '16', '18', '20'
}
}

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
},
"homepage": "https://github.com/logdna/pino-logdna#readme",
"dependencies": {
"@logdna/logger": "^2.4.1",
"@logdna/logger": "^2.6.8",
"nopt": "^5.0.0",
"pino-abstract-transport": "^0.5.0"
},
Expand Down Expand Up @@ -92,6 +92,7 @@
"100": true,
"ts": false,
"jsx": false,
"color": false,
"check-coverage": true,
"jobs": 1,
"timeout": 60,
Expand Down
4 changes: 2 additions & 2 deletions test/common/test-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ module.exports = function create(test) {
server.listen(listen_port)
await once(server, 'listening')

const {address, port} = server.address()
return `http://${address}:${port}`
const {port} = server.address()
return `http://localhost:${port}`
}
, async close() {
server.close()
Expand Down

0 comments on commit 422c26f

Please sign in to comment.