@infitx/decision 1.4.0 → 1.4.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.4.2](https://github.com/infitx-org/release-cd/compare/decision-v1.4.1...decision-v1.4.2) (2026-02-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * ci reports ([633a11b](https://github.com/infitx-org/release-cd/commit/633a11be0945a1e6f274999b3e3ab137b7c92c88))
9
+ * update ci-unit script to include specific allure names for decision, match, and rest-fs packages ([8c52e4b](https://github.com/infitx-org/release-cd/commit/8c52e4be87893328143d3562c51bf33f419074b1))
10
+
11
+ ## [1.4.1](https://github.com/infitx-org/release-cd/compare/decision-v1.4.0...decision-v1.4.1) (2026-02-20)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * update allure dependency to version 3.2.0 in decision, match, and rest-fs packages ([b85e14d](https://github.com/infitx-org/release-cd/commit/b85e14db1701c07071f15bd0ed31bdaf7a510d04))
17
+
3
18
  ## [1.4.0](https://github.com/infitx-org/release-cd/compare/decision-v1.3.6...decision-v1.4.0) (2026-02-18)
4
19
 
5
20
 
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@infitx/decision",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "Decision tables engine",
5
5
  "main": "index.js",
6
6
  "dependencies": {
7
7
  "yaml": "^2.8.2",
8
- "@infitx/match": "1.5.0"
8
+ "@infitx/match": "1.5.2"
9
9
  },
10
10
  "devDependencies": {
11
- "allure": "^3.1.0",
11
+ "allure": "^3.2.0",
12
12
  "allure-jest": "^3.4.5",
13
13
  "jest": "^30.2.0",
14
14
  "jest-environment-node": "^30.2.0",
@@ -21,7 +21,7 @@
21
21
  "license": "Apache-2.0",
22
22
  "scripts": {
23
23
  "build": "true",
24
- "ci-unit": "JEST_JUNIT_OUTPUT_DIR=coverage jest --ci --reporters=default --reporters=jest-junit --outputFile=./coverage/junit.xml",
24
+ "ci-unit": "JEST_JUNIT_OUTPUT_DIR=coverage jest --ci --reporters=default --reporters=jest-junit --outputFile=./coverage/junit.xml;allure --name decision generate",
25
25
  "ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance",
26
26
  "watch": "jest --watchAll"
27
27
  }