Skip to content

Releases: reportportal/client-javascript

Release v5.3.0

23 Sep 11:45
4793533
Compare
Choose a tag to compare

Changed

  • The client now expects reporting the time for launches, test items and logs with microsecond precision in the ISO string format.
    Thus, the helpers.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

17 Sep 16:28
d511fe1
Compare
Choose a tag to compare

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 in checkConnect() method. Thanks to stevez.

Security

  • Updated versions of vulnerable packages (braces).

Release v5.1.4

22 May 14:53
94d0015
Compare
Choose a tag to compare

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

11 Apr 15:37
f6ec78b
Compare
Choose a tag to compare

Added

Security

  • Updated versions of vulnerable packages (follow-redirects).

Release v5.1.2

20 Feb 14:47
6df9f62
Compare
Choose a tag to compare

Fixed

  • Execution sequence for retried tests #134.

Release v5.1.1

23 Jan 15:38
0a66d7c
Compare
Choose a tag to compare

Added

  • Debug logs for RestClient.

Release v5.1.0

19 Jan 18:26
7670599
Compare
Choose a tag to compare

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

20 Nov 18:28
3cb00c4
Compare
Choose a tag to compare

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

05 Oct 13:51
a105afb
Compare
Choose a tag to compare

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

28 Aug 13:32
7f29220
Compare
Choose a tag to compare

Added

  • launchUuidPrint and launchUuidPrintOutput configuration options to ease integration with CI tools, by @HardNorth