bfj 7.1.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitlab-ci.yml +4 -8
- package/HISTORY.md +7 -1
- package/README.md +3 -3
- package/package.json +2 -2
package/.gitlab-ci.yml
CHANGED
|
@@ -12,14 +12,10 @@ before_script:
|
|
|
12
12
|
- npm run lint
|
|
13
13
|
- npm test
|
|
14
14
|
|
|
15
|
-
test:
|
|
16
|
-
image: node:
|
|
15
|
+
test:node18:
|
|
16
|
+
image: node:18
|
|
17
17
|
<<: *npm_test
|
|
18
18
|
|
|
19
|
-
test:
|
|
20
|
-
image: node:
|
|
21
|
-
<<: *npm_test
|
|
22
|
-
|
|
23
|
-
test:node12:
|
|
24
|
-
image: node:12
|
|
19
|
+
test:node20:
|
|
20
|
+
image: node:20
|
|
25
21
|
<<: *npm_test
|
package/HISTORY.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# History
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 8.0.0
|
|
4
|
+
|
|
5
|
+
### Breaking changes
|
|
6
|
+
|
|
7
|
+
* platform: only support node 18+ (45062680c52dc5ee09b136babcb3c333e3409409)
|
|
4
8
|
|
|
5
9
|
### New features
|
|
6
10
|
|
|
@@ -8,6 +12,8 @@
|
|
|
8
12
|
|
|
9
13
|
### Other changes
|
|
10
14
|
|
|
15
|
+
* docs: change downloads metric to weekly in readme (869b78f6629cbfcf9f4f6035c8bef52f1efaf0d1)
|
|
16
|
+
* ci: run tests in node 16, 18 and 20 (a688782892f72f554215e181d7925fb19de934ff)
|
|
11
17
|
* deps: upgrade dependencies (f6e8664281931e0eeea26d62059bfbc9e9a8c37d)
|
|
12
18
|
* tests: add perf test for bfj.match (f345bc83e5fbd9204cab02169a2ae9f4c02d1450)
|
|
13
19
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://gitlab.com/philbooth/bfj/pipelines)
|
|
4
4
|
[](https://www.npmjs.com/package/bfj)
|
|
5
|
-
[](https://www.npmjs.com/package/bfj)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
8
|
Big-Friendly JSON. Asynchronous streaming functions for large JSON data sets.
|
|
@@ -935,8 +935,8 @@ with the command
|
|
|
935
935
|
|
|
936
936
|
## What versions of Node.js does it support?
|
|
937
937
|
|
|
938
|
-
As of [version `
|
|
939
|
-
only Node.js versions
|
|
938
|
+
As of [version `8.0.0`](HISTORY.md#700),
|
|
939
|
+
only Node.js versions 18 or greater
|
|
940
940
|
are supported.
|
|
941
941
|
|
|
942
942
|
Between versions [`3.0.0`](HISTORY.md#300)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bfj",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "Big-friendly JSON. Asynchronous streaming functions for large JSON data sets.",
|
|
5
5
|
"homepage": "https://gitlab.com/philbooth/bfj",
|
|
6
6
|
"bugs": "https://gitlab.com/philbooth/bfj/issues",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"url": "https://gitlab.com/philbooth/bfj.git"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
29
|
+
"node": ">= 18.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"bluebird": "^3.7.2",
|