newman-reporter-qase 2.3.0 → 2.3.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.
- package/changelog.md +13 -0
- package/package.json +5 -4
package/changelog.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# newman-reporter-qase@2.3.2
|
|
2
|
+
|
|
3
|
+
## Fixed
|
|
4
|
+
|
|
5
|
+
- Added `repository.directory: "qase-newman"` so npmjs.com correctly resolves relative links in the README. Bumped `qase-javascript-commons` pin to `~2.7.3`.
|
|
6
|
+
|
|
7
|
+
# newman-reporter-qase@2.3.1
|
|
8
|
+
|
|
9
|
+
## Changed
|
|
10
|
+
|
|
11
|
+
- `engines.node` raised from `>=14` to `>=18`; Node 14/16 are EOL.
|
|
12
|
+
- Bumped `qase-javascript-commons` pin from `~2.7.0` to `~2.7.2`.
|
|
13
|
+
|
|
1
14
|
# newman-reporter-qase@2.3.0
|
|
2
15
|
|
|
3
16
|
## Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "newman-reporter-qase",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"description": "Qase TMS Newman Reporter",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -25,10 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "git+https://github.com/qase-tms/qase-javascript.git"
|
|
28
|
+
"url": "git+https://github.com/qase-tms/qase-javascript.git",
|
|
29
|
+
"directory": "qase-newman"
|
|
29
30
|
},
|
|
30
31
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
32
|
+
"node": ">=18"
|
|
32
33
|
},
|
|
33
34
|
"scripts": {
|
|
34
35
|
"build": "npm run clean && tsc --project tsconfig.build.json",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"author": "Qase Team <support@qase.io>",
|
|
40
41
|
"license": "Apache-2.0",
|
|
41
42
|
"dependencies": {
|
|
42
|
-
"qase-javascript-commons": "~2.7.
|
|
43
|
+
"qase-javascript-commons": "~2.7.3",
|
|
43
44
|
"semver": "^7.7.3"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|