Skip to content

Commit 4b56b77

Browse files
FNDmoonglum
authored andcommitted
Release 2.3.0
* Update Dependencies * Require Node >= 20
1 parent 191d1f7 commit 4b56b77

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

.github/workflows/tests.yml renamed to .github/workflows/tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
name: tests
21
on:
32
- push
3+
44
jobs:
5-
build:
5+
test:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
99
node-version:
10-
- 18.x
1110
- 20.x
12-
- 21.x
11+
- 24.x
12+
- latest
1313
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
14+
- uses: actions/checkout@v5
15+
- uses: actions/setup-node@v6
1616
with:
1717
node-version: ${{ matrix.node-version }}
1818
- run: npm run test:prepare && npm install-test

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
11
faucet-pipeline-images version history
22
======================================
33

4+
v2.3.0
5+
------
6+
7+
_TBD_
8+
9+
maintenance release to update dependencies
10+
11+
* bumped Node requirement to v20 or later, dropping support for obsolete versions
12+
413
v2.2.0
514
------
615

716
_2024-03-20_
817

9-
Maintenance release to update dependencies; bump minimum supported Node version
18+
maintenance release to update dependencies; bump minimum supported Node version
1019
to 18 due to end of life.
1120

1221
v2.1.0
1322
------
1423

1524
_2021-01-12_
1625

17-
Maintenance release to update dependencies; no significant changes
26+
maintenance release to update dependencies; no significant changes
1827

1928

2029
v2.0.0

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-images",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "image optimization for faucet-pipeline",
55
"main": "./index.js",
66
"type": "module",
@@ -21,13 +21,13 @@
2121
},
2222
"homepage": "https://www.faucet-pipeline.org",
2323
"engines": {
24-
"node": ">= 18"
24+
"node": ">= 20.19.0"
2525
},
2626
"dependencies": {
2727
"faucet-pipeline-core": "^2.0.0",
2828
"faucet-pipeline-assets": "^0.2.0",
29-
"sharp": "^0.33.2",
30-
"svgo": "^3.0.2"
29+
"sharp": "^0.34.4",
30+
"svgo": "^3.3.2"
3131
},
3232
"devDependencies": {
3333
"eslint-config-fnd": "^1.13.0",

0 commit comments

Comments
 (0)