From a3014ed88dda1109e2aed0bef610149e848ab138 Mon Sep 17 00:00:00 2001 From: "reportportal.io" Date: Thu, 5 Oct 2023 12:31:15 +0000 Subject: [PATCH 1/5] 5.0.14 -> 5.0.15-SNAPSHOT --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 4b57201..65c0d5f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.0.14 +5.0.15-SNAPSHOT From 0918f3a5ec69e74c6d5b575ee438e5d72a03d74c Mon Sep 17 00:00:00 2001 From: Dzmitry Kosarau Date: Thu, 5 Oct 2023 18:16:29 +0500 Subject: [PATCH 2/5] Revert "5.0.14 -> 5.0.15-SNAPSHOT" This reverts commit a3014ed88dda1109e2aed0bef610149e848ab138. --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 65c0d5f..4b57201 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.0.15-SNAPSHOT +5.0.14 From 8a9064f15d99a0fca3afe235f3a4a853927bdaef Mon Sep 17 00:00:00 2001 From: Dzmitry Kosarau Date: Thu, 5 Oct 2023 18:16:42 +0500 Subject: [PATCH 3/5] Revert "Update VERSION file with 5.0.14" This reverts commit 164428ff366a1aa5370649b495d3d0fcfd4659cc. --- CHANGELOG.md | 2 -- VERSION | 2 +- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5416a9a..32fd5f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,3 @@ - -## [5.0.14] - 2023-10-05 ### Added - `Promise.allSettled` polyfill to support NodeJS 10 ### Fixed diff --git a/VERSION b/VERSION index 4b57201..5e95ca2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.0.14 +5.0.14-SNAPSHOT diff --git a/package-lock.json b/package-lock.json index aed7ce0..f28a9bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@reportportal/client-javascript", - "version": "5.0.14", + "version": "5.0.13", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 8006a69..dc52c02 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reportportal/client-javascript", - "version": "5.0.14", + "version": "5.0.13", "description": "ReportPortal client for Node.js", "author": "ReportPortal.io", "scripts": { From 8bf4129902ac7ba94c57c31508109fac86e70707 Mon Sep 17 00:00:00 2001 From: Dzmitry Kosarau Date: Thu, 5 Oct 2023 18:20:42 +0500 Subject: [PATCH 4/5] Update GH token --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac5b0d7..14a311c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,7 +82,7 @@ jobs: - name: Setup NodeJS uses: actions/setup-node@v2 with: - node-version: '12' + node-version: '12' - name: Configure git run: | git config --global user.email "reportportal.io" @@ -142,7 +142,7 @@ jobs: id: createRelease uses: actions/create-release@v1 env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: v${{ needs.calculate-version.outputs.releaseVersion }} release_name: Release v${{ needs.calculate-version.outputs.releaseVersion }} @@ -153,5 +153,5 @@ jobs: if: success() uses: peter-evans/repository-dispatch@v1 with: - token: ${{ secrets.GH_TOKEN }} - event-type: version-released + token: ${{ secrets.GITHUB_TOKEN }} + event-type: version-released From 85b22f90b6a897d2b44d35a98c2b4da2a7ca4ed1 Mon Sep 17 00:00:00 2001 From: Dzmitry Kosarau Date: Thu, 5 Oct 2023 18:35:34 +0500 Subject: [PATCH 5/5] Update GH token in publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5b96e13..87c3f6b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -69,4 +69,4 @@ jobs: npm config list npm publish env: - NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}