Skip to content

Commit 857584b

Browse files
committed
v3.0.0
NB: this commit was altered for retroactive continuity (see change log) and to avoid divergent release branches for the v2 series thus dependencies are downgraded to match the npm release
1 parent be8c2f5 commit 857584b

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

CHANGELOG.md

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

44

5+
v3.0.0 (deprecated)
6+
-------------------
7+
8+
_2025-03-02_
9+
10+
NB: please disregard this version; its release turned out to be a mistake due to
11+
non-trivial ecosystem concerns (i.e. most plugins are currently
12+
incompatible) - the features listed below will be released with a future
13+
version instead
14+
15+
notable changes for end users:
16+
17+
* bumped Node requirement to v18 or later, dropping support for obsolete versions
18+
* reduced number of dependencies
19+
20+
notable changes for developers:
21+
22+
* switched to named instead of default exports
23+
24+
this might affect users of utilities like `resolvePath` and `FileFinder`
25+
26+
* ensured dynamic imports are asynchronous
27+
28+
this might affect users of utilities like `loadExtension`
29+
30+
* `promisify` was removed entirely after being deprecated for a while
31+
32+
533
v2.2.0
634
------
735

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-core",
3-
"version": "2.2.0",
3+
"version": "3.0.0",
44
"description": "faucet-pipeline's core library",
55
"author": "FND",
66
"contributors": [
@@ -25,10 +25,10 @@
2525
"lint": "eslint --cache ./lib ./bin/* ./test ./test/bin/* && echo ✓"
2626
},
2727
"engines": {
28-
"node": ">= 20"
28+
"node": ">= 18"
2929
},
3030
"dependencies": {
31-
"browserslist": "~4.27.0",
31+
"browserslist": "~4.24.4",
3232
"nite-owl": "~5.0.5"
3333
},
3434
"devDependencies": {

0 commit comments

Comments
 (0)