From 0b9e67bacf42414549082710865a9ea168b23d7b Mon Sep 17 00:00:00 2001 From: Phillip Barta Date: Tue, 25 Nov 2025 17:32:02 +0100 Subject: [PATCH 1/3] deps: send@~0.19.1 --- HISTORY.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index dccf6678..aae5d611 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +unreleased +=================== + +* deps: send@~0.19.1 + 1.16.2 / 2024-09-11 =================== diff --git a/package.json b/package.json index 49d75423..457166d2 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.19.0" + "send": "~0.19.1" }, "devDependencies": { "eslint": "7.32.0", From 162471781eab9a3c2e80f80ff8b8404f8a1cb34d Mon Sep 17 00:00:00 2001 From: Phillip Barta Date: Tue, 25 Nov 2025 17:50:51 +0100 Subject: [PATCH 2/3] ci: restore ci --- .github/workflows/ci.yml | 49 +++++++++++++++++++++++++++++++++------- .npmrc | 1 + 2 files changed, 42 insertions(+), 8 deletions(-) create mode 100644 .npmrc diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2eaea5ad..3cc0447a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: name: - Node.js 0.8 @@ -30,6 +31,14 @@ jobs: - Node.js 15.x - Node.js 16.x - Node.js 17.x + - Node.js 18.x + - Node.js 19.x + - Node.js 20.x + - Node.js 21.x + - Node.js 22.x + - Node.js 23.x + - Node.js 24.x + - Node.js 25.x include: - name: Node.js 0.8 @@ -75,31 +84,34 @@ jobs: - name: Node.js 8.x node-version: "8.16" - npm-i: mocha@7.2.0 + npm-i: mocha@7.2.0 nyc@14.1.1 supertest@6.1.6 - name: Node.js 9.x node-version: "9.11" - npm-i: mocha@7.2.0 + npm-i: mocha@7.2.0 nyc@14.1.1 supertest@6.1.6 - name: Node.js 10.x node-version: "10.24" - npm-i: mocha@8.4.0 + npm-i: mocha@8.4.0 supertest@6.1.6 - name: Node.js 11.x node-version: "11.15" - npm-i: mocha@8.4.0 + npm-i: mocha@8.4.0 supertest@6.1.6 - name: Node.js 12.x - node-version: "12.22" + node-version: "12.22" + npm-i: supertest@6.1.6 - name: Node.js 13.x node-version: "13.14" + npm-i: supertest@6.1.6 - name: Node.js 14.x node-version: "14.19" - name: Node.js 15.x node-version: "15.14" + npm-i: supertest@6.1.6 - name: Node.js 16.x node-version: "16.14" @@ -107,6 +119,30 @@ jobs: - name: Node.js 17.x node-version: "17.8" + - name: Node.js 18.x + node-version: 18 + + - name: Node.js 19.x + node-version: 19 + + - name: Node.js 20.x + node-version: 20 + + - name: Node.js 21.x + node-version: 21 + + - name: Node.js 22.x + node-version: 22 + + - name: Node.js 23.x + node-version: 23 + + - name: Node.js 24.x + node-version: 24 + + - name: Node.js 25.x + node-version: 25 + steps: - uses: actions/checkout@v2 @@ -122,9 +158,6 @@ jobs: fi dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH" - - name: Configure npm - run: npm config set shrinkwrap false - - name: Remove npm module(s) ${{ matrix.npm-rm }} run: npm rm --silent --save-dev ${{ matrix.npm-rm }} if: matrix.npm-rm != '' diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..9cf94950 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock=false \ No newline at end of file From 9bcc479adc6db2e2405c2437afa75383756bc13a Mon Sep 17 00:00:00 2001 From: Phillip Barta Date: Tue, 25 Nov 2025 18:01:09 +0100 Subject: [PATCH 3/3] docs: update history entry Co-authored-by: Sebastian Beltran --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.md b/HISTORY.md index aae5d611..40b58385 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,7 @@ unreleased =================== * deps: send@~0.19.1 + - deps: encodeurl@~2.0.0 1.16.2 / 2024-09-11 ===================