Releases: reportportal/client-javascript
Releases · reportportal/client-javascript
Release v5.3.0
Changed
- The client now expects reporting the time for launches, test items and logs with microsecond precision in the ISO string format.
Thus, thehelpers.now
function is adjusted accordingly. Details about supported formats.
For logs, microsecond precision is available on the UI from ReportPortal version 24.2.
Security
- Updated versions of vulnerable packages (micromatch).
Release v5.2.0
Changed
- Breaking change Drop support of Node.js 12. The version 5.1.4 is the latest that supports it.
- The client now creates an instance of the
axios
HTTP client in the constructor. - The
HOST
HTTP header is added to all requests as it was skipped by the HTTP client.
Fixed
- Allow using
restClientConfig
incheckConnect()
method. Thanks to stevez.
Security
- Updated versions of vulnerable packages (braces).
Release v5.1.4
Fixed
- Use correct launch search URL based on config mode while merging launches. Resolves #200. Thanks to hoangthanhtri.
- Print launch UUID after merging launches. Resolves #202. Thanks to hoangthanhtri.
Release v5.1.3
Added
- Output launch UUID to file and ENV variable, thanks to artsiomBandarenka. Addressed #195, #50.
Security
- Updated versions of vulnerable packages (follow-redirects).
Release v5.1.2
Fixed
- Execution sequence for retried tests #134.
Release v5.1.1
Added
- Debug logs for RestClient.
Release v5.1.0
Changed
- Breaking change Drop support of Node.js 10. The version 5.0.15 is the latest that supports it.
Security
- Updated versions of vulnerable packages (axios, follow-redirects).
Deprecated
- Node.js 12 usage. This minor version is the latest that supports Node.js 12.
Release v5.0.15
Added
- Logging link to the launch on its finish.
Deprecated
- Node.js 10 usage. This minor version is the latest that supports Node.js 10.
Release v5.0.14
Added
Promise.allSettled
polyfill to support NodeJS 10
Fixed
- Reporting is down on error with collect request on reporting start
- Cannot read property
realId
of undefined during reporting, resolves #99
Release v5.0.13
Added
launchUuidPrint
andlaunchUuidPrintOutput
configuration options to ease integration with CI tools, by @HardNorth