Skip to content

Commit ae8fa05

Browse files
authored
Merge pull request #386 from chris-pardy/release-v7
Release v7
2 parents a7f7581 + 69bbc27 commit ae8fa05

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

Diff for: .github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Deploy Package
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ master, v6 ]
99

1010
jobs:
1111
build:
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [14.x, 16.x, 18.x]
17+
node-version: [18.x, 20.x, 22.x]
1818

1919
steps:
2020
- uses: actions/checkout@v2

Diff for: .github/workflows/node.js.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Node.js CI
55

66
on:
77
pull_request:
8-
branches: [ master, next-major ]
8+
branches: [ master, v6 ]
99

1010
jobs:
1111
build:
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [14.x, 16.x, 18.x]
17+
node-version: [18.x, 20.x, 22.x]
1818

1919
steps:
2020
- uses: actions/checkout@v2

Diff for: package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
{
22
"name": "json-rules-engine",
3-
"version": "6.6.0",
3+
"version": "7.0.0",
44
"description": "Rules Engine expressed in simple json",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
7+
"engines": {
8+
"node": ">=18.0.0"
9+
},
710
"scripts": {
811
"test": "mocha && npm run lint --silent && npm run test:types",
912
"test:types": "tsd",
@@ -89,6 +92,6 @@
8992
"clone": "^2.1.2",
9093
"eventemitter2": "^6.4.4",
9194
"hash-it": "^6.0.0",
92-
"jsonpath-plus": "^7.2.0"
95+
"jsonpath-plus": "^10.0.0"
9396
}
9497
}

0 commit comments

Comments
 (0)