-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating for v9: update dependencies and CI #300
Conversation
We will not be able to release new versions of ecosystem modules until |
I never used such a syntax, I researched a little bit and I hope this is the correct one, but correct me if I'm wrong! Also, this is probably a stupid question but: Thank you in advance as always for your response! |
The primary issue is that this test is failing under Node 20: Lines 477 to 517 in 9bf0802
It's not clear to me why. I reduced the issue down to the following script that works correctly under Node 18 but returns a 400 response under node 20: 'use strict'
const http = require('http')
const net = require('net')
const server = http.createServer(function (req, res) {
res.statusCode = 200
res.end('ok')
})
server.listen(0, '127.0.0.1', function (err) {
if (err) {
console.error(err)
server.close()
return
}
const client = net.connect(server.address().port, '127.0.0.1', () => {
client.write('GET /delayed HTTP/1.1\r\n\r\n')
})
client.on('data', (data) => {
console.log('data: ', data.toString())
client.destroy()
server.close()
})
}) @mcollina any ideas here? |
@Ranieri93 you should be able to rebase now to get passing tests. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
Hello everyone!
This PR is referencing this issue.
Quick question, should I leave
"pino-std-serializers": "^6.0.0"
like this? Or do we expect a major release after the update for v9?Thank you in advance!
@jsumners