Skip to content

Commit

Permalink
Merge pull request #198 from reportportal/feature/EPMRPP-90170-prepar…
Browse files Browse the repository at this point in the history
…e-to-release

EPMRPP-90170 || Prepare to release
  • Loading branch information
AmsterGet authored Apr 11, 2024
2 parents 09d757e + b0b5db6 commit fd27525
Show file tree
Hide file tree
Showing 6 changed files with 126 additions and 43 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### Added
- Output launch UUID to file and ENV variable
- Output launch UUID to file and ENV variable, thanks to [artsiomBandarenka](https://github.com/artsiomBandarenka). Addressed [#195](https://github.com/reportportal/client-javascript/issues/195), [#50](https://github.com/reportportal/agent-js-webdriverio/issues/50).
### Security
- Updated versions of vulnerable packages (follow-redirects).

## [5.1.2] - 2024-02-20
### Fixed
Expand Down
19 changes: 0 additions & 19 deletions lib/polyfills.js

This file was deleted.

1 change: 0 additions & 1 deletion lib/report-portal-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const { getClientConfig } = require('./commons/config');
const Statistics = require('../statistics/statistics');
const { EVENT_NAME } = require('../statistics/constants');
const { RP_STATUSES } = require('./constants/statuses');
require('./polyfills');

const MULTIPART_BOUNDARY = Math.floor(Math.random() * 10000000000).toString();

Expand Down
138 changes: 120 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"node": ">=12.x"
},
"dependencies": {
"axios": "^1.6.5",
"axios-retry": "^4.0.0",
"glob": "^7.2.3",
"axios": "^1.6.8",
"axios-retry": "^4.1.0",
"glob": "^8.1.0",
"ini": "^2.0.0",
"uniqid": "^5.4.0",
"uuid": "^9.0.1"
Expand Down
1 change: 0 additions & 1 deletion spec/report-portal-client.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ describe('ReportPortal javascript client', () => {
endpoint: 'https://rp.us/api/v1',
project: 'tst',
});
client.isLaunchMergeRequired = true;
const myPromise = Promise.resolve({ id: 'testidlaunch' });
const time = 12345734;
spyOn(client.restClient, 'create').and.returnValue(myPromise);
Expand Down

0 comments on commit fd27525

Please sign in to comment.