From d1d591299e79b39a5c1444068e9ad1f9fdf440ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sun, 31 May 2026 13:04:32 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20compliance=20cleanup=20=E2=80=94=20add?= =?UTF-8?q?=2086.0.0.0/24,=2087.0.0.1/32=20to=20cleanup=20list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/tz-compliance.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tz-compliance.js b/tests/tz-compliance.js index 03e7d50..d1b8635 100644 --- a/tests/tz-compliance.js +++ b/tests/tz-compliance.js @@ -313,7 +313,7 @@ function bearer(t) { return { Authorization: 'Bearer ' + t }; } // CLEANUP // ══════════════════════════════════════════════════ console.log('\n── Cleanup ──'); - for (const c of [C.A, C.B, C.C, C.SUB, '9.9.9.0/24', '85.0.0.0/22', '85.0.0.0/24', '85.0.0.0/32', '1.2.4.1']) { + for (const c of [C.A, C.B, C.C, C.SUB, '9.9.9.0/24', '85.0.0.0/22', '85.0.0.0/24', '85.0.0.0/32', '86.0.0.0/24', '87.0.0.1/32', '1.2.4.1']) { await pool.query('UPDATE whitelist_entries SET deleted_at=NOW() WHERE value_cidr=$1 AND deleted_at IS NULL', [cidr(c)]); } await pool.end();