Skip to content

Commit 8e4f684

Browse files
committed
v2.0.0
1 parent ca7ac3d commit 8e4f684

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
matrix:
99
node-version:
1010
- 14.x
11-
- 16.x
12-
- 17.x
11+
- 18.x
12+
- 19.x
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@ faucet-pipeline-core version history
22
====================================
33

44

5+
v2.0.0
6+
------
7+
8+
_2023-01-12_
9+
10+
notable changes for end users:
11+
12+
* added support for faucet-pipeline-images
13+
14+
`plugins: [require("faucet-pipeline-images")]` is no longer required within
15+
`faucet.config.js`
16+
17+
notable changes for developers:
18+
19+
* removed support for legacy plugin API
20+
21+
all plugins are now expected to export `key`, `bucket` and `plugin`
22+
23+
524
v1.7.0
625
------
726

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-core",
3-
"version": "1.7.0",
3+
"version": "2.0.0",
44
"description": "faucet-pipeline's core library",
55
"author": "FND",
66
"contributors": [
@@ -29,11 +29,11 @@
2929
},
3030
"dependencies": {
3131
"browserslist": "~4.21.4",
32-
"minimist": "~1.2.5",
33-
"nite-owl": "~5.0.4"
32+
"minimist": "~1.2.7",
33+
"nite-owl": "~5.0.5"
3434
},
3535
"devDependencies": {
36-
"eslint-config-fnd": "^1.12.0",
36+
"eslint-config-fnd": "^1.13.0",
3737
"mocha": "^10.2.0",
3838
"npm-run-all": "^4.1.5",
3939
"release-util-fnd": "^3.0.0"

0 commit comments

Comments
 (0)