@qavajs/format-report-portal 0.14.1 → 0.14.3

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 CHANGED
@@ -1,5 +1,13 @@
1
- ## 0.14.0
1
+ ## 0.14.3
2
+ - bump dependencies to get rid of vulnerabilities
3
+
4
+ ## 0.14.2
5
+ - fixed issue with undefined/null tags that prevents starting launch
6
+
7
+ ## 0.14.1
2
8
  - updated rp-client package
9
+
10
+ ## 0.14.0
3
11
  - added config parameter for placing tags to attributes or description (default)
4
12
  - pull request template added to reduce human factor
5
13
 
package/README.MD CHANGED
@@ -26,7 +26,7 @@ module.exports = {
26
26
  mode: 'DEFAULT',
27
27
  retry: 1, // number of retries to send result to report portal (default - 1)
28
28
  ignoreErrors: false, // ignore RP errors (default: false)
29
- showLaunchURL: true // log report portal launch link,
29
+ showLaunchURL: true, // log report portal launch link,
30
30
  tagsAsAttributes: true // (default: false → tags go to description)
31
31
  },
32
32
  }
package/index.js CHANGED
@@ -56,7 +56,7 @@ class RPFormatter extends Formatter {
56
56
  name: this.rpConfig.launch,
57
57
  startTime: this.rpClient.helpers.now(),
58
58
  description: this.rpConfig.description,
59
- attributes: this.rpConfig.tags,
59
+ attributes: this.rpConfig.tags?.filter(tag => tag),
60
60
  mode: this.rpConfig.mode,
61
61
  debug: this.rpConfig.debug
62
62
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qavajs/format-report-portal",
3
- "version": "0.14.1",
3
+ "version": "0.14.3",
4
4
  "description": "cucumber formatter for report portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,12 +21,12 @@
21
21
  },
22
22
  "homepage": "https://github.com/qavajs/format-report-portal#readme",
23
23
  "dependencies": {
24
- "@reportportal/client-javascript": "^5.0.14"
24
+ "@reportportal/client-javascript": "^5.1.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@cucumber/cucumber": "^10.0.1",
28
- "@qavajs/cli": "^0.31.0",
29
- "@qavajs/memory": "^1.6.2",
27
+ "@cucumber/cucumber": "^10.3.1",
28
+ "@qavajs/cli": "^0.34.1",
29
+ "@qavajs/memory": "^1.7.0",
30
30
  "jest": "^29.7.0"
31
31
  }
32
32
  }