diff --git a/fix_ci_tests.patch b/fix_ci_tests.patch index 1add9ee..4adbca7 100644 --- a/fix_ci_tests.patch +++ b/fix_ci_tests.patch @@ -113,3 +113,16 @@ Index: node-v22.10.0/test/parallel/test-crypto-dh.js } } +Index: node-v22.10.0/test/parallel/test-dns.js +=================================================================== +--- node-v22.10.0.orig/test/parallel/test-dns.js ++++ node-v22.10.0/test/parallel/test-dns.js +@@ -403,7 +403,7 @@ assert.throws(() => { + + const server = dgram.createSocket('udp4'); + +- server.on('message', common.mustCall((msg, { address, port }) => { ++ server.on('message', common.mustCallAtLeast((msg, { address, port }) => { + const parsed = dnstools.parseDNSPacket(msg); + const domain = parsed.questions[0].domain; + assert.strictEqual(domain, 'example.org'); diff --git a/nodejs22.changes b/nodejs22.changes index f04374e..ad297cf 100644 --- a/nodejs22.changes +++ b/nodejs22.changes @@ -72,8 +72,8 @@ Mon Oct 28 11:43:07 UTC 2024 - Adam Majer * util: support --no- for argument with boolean type for parseArgs -- fix_ci_tests.patch, linker_lto_jobs.patch, versioned.patch, - qemu_timeouts_arches.patch: refreshed +- fix_ci_tests.patch: refreshed, add compat for c-ares 1.30 +- linker_lto_jobs.patch, versioned.patch, qemu_timeouts_arches.patch: refreshed ------------------------------------------------------------------- Fri Jun 14 10:58:52 UTC 2024 - Adam Majer