From 9e666a1170c7e2024ca18ee63da82a72b68a8006 Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Tue, 17 Sep 2024 11:56:10 +0200 Subject: [PATCH] Bumped v8.2.2 Signed-off-by: Matteo Collina --- package.json | 2 +- test/regex.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 13f2452..414e7ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "find-my-way", - "version": "8.2.0", + "version": "8.2.2", "description": "Crazy fast http radix based router", "main": "index.js", "types": "index.d.ts", diff --git a/test/regex.test.js b/test/regex.test.js index 77ffc47..77f88c8 100644 --- a/test/regex.test.js +++ b/test/regex.test.js @@ -267,5 +267,5 @@ test('prevent back-tracking', (t) => { }) findMyWay.on('GET', '/:foo-:bar-', (req, res, params) => {}) - findMyWay.find('GET', '/' + '-'.repeat(16_000) + 'a', { host: 'fastify.io' }) + findMyWay.find('GET', '/' + '-'.repeat(16000) + 'a', { host: 'fastify.io' }) })