Skip to content

Commit 4d6216c

Browse files
authored
Merge pull request #99 from reportportal/develop
Release 5.0.4
2 parents 68eab89 + 08047f0 commit 4d6216c

8 files changed

Lines changed: 23 additions & 15 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @AmsterGet

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ jobs:
6767
npm config list
6868
npm publish
6969
env:
70-
NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }}
70+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
releaseVersion: ${{ steps.exposeVersion.outputs.releaseVersion }}
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
- name: Read version
3434
id: readVersion
3535
run: |
@@ -66,16 +66,17 @@ jobs:
6666
else
6767
echo "::set-output name=releaseVersion::${{ steps.readVersion.outputs.version }}"
6868
fi
69+
6970
create-tag:
7071
needs: calculate-version
7172
runs-on: ubuntu-latest
7273
outputs:
7374
versionInfo: ${{ steps.readChangelogEntry.outputs.log_entry }}
7475
steps:
7576
- name: Checkout repository
76-
uses: actions/checkout@v2
77+
uses: actions/checkout@v3
7778
- name: Setup NodeJS
78-
uses: actions/setup-node@v2
79+
uses: actions/setup-node@v3
7980
with:
8081
node-version: '12'
8182
- name: Configure git
@@ -122,21 +123,23 @@ jobs:
122123
git checkout develop
123124
git merge master -Xtheirs --allow-unrelated-histories
124125
echo "${{ steps.bumpSnapshotVersion.outputs.next-version }}-SNAPSHOT" > ${{ env.versionFileName }}
126+
echo "patch" > ${{ env.versionFragmentFileName }}
125127
git status
126128
git add ${{ env.versionFileName }}
127129
git commit -m "${{ needs.calculate-version.outputs.releaseVersion }} -> ${{ steps.bumpSnapshotVersion.outputs.next-version }}-SNAPSHOT"
128130
git push origin develop
131+
129132
create-release:
130133
needs: [calculate-version, create-tag]
131134
runs-on: ubuntu-latest
132135
steps:
133136
- name: Checkout repository
134-
uses: actions/checkout@v2
137+
uses: actions/checkout@v3
135138
- name: Create Release
136139
id: createRelease
137140
uses: actions/create-release@v1
138141
env:
139-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
142+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
140143
with:
141144
tag_name: v${{ needs.calculate-version.outputs.releaseVersion }}
142145
release_name: Release v${{ needs.calculate-version.outputs.releaseVersion }}
@@ -147,5 +150,5 @@ jobs:
147150
if: success()
148151
uses: peter-evans/repository-dispatch@v1
149152
with:
150-
token: ${{ secrets.GH_TOKEN }}
153+
token: ${{ secrets.GITHUB_TOKEN }}
151154
event-type: version-released

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Deprecated
2+
- Node.js 10 usage. This version is the latest that supports Node.js 10.
3+
### Changed
4+
- `@reportportal/client-javascript` bumped to version `5.0.15`.
15

26
## [5.0.3] - 2023-07-18
37
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The full list of available options presented below.
6969
| project | Required | | The name of the project in which the launches will be created. |
7070
| attributes | Optional | [] | Launch attributes. |
7171
| description | Optional | '' | Launch description. |
72-
| rerun | Optional | false | Enable [rerun](https://github.com/reportportal/documentation/blob/master/src/md/src/DevGuides/rerun.md) |
72+
| rerun | Optional | false | Enable [rerun](https://reportportal.io/docs/dev-guides/RerunDevelopersGuide) |
7373
| rerunOf | Optional | Not set | UUID of launch you want to rerun. If not specified, reportportal will update the latest launch with the same name |
7474
| mode | Optional | 'DEFAULT' | Results will be submitted to Launches page <br/> *'DEBUG'* - Results will be submitted to Debug page (values must be upper case). |
7575
| skippedIssue | Optional | true | reportportal provides feature to mark skipped tests as not 'To Investigate'. <br/> Option could be equal boolean values: <br/> *true* - skipped tests considered as issues and will be marked as 'To Investigate' on reportportal. <br/> *false* - skipped tests will not be marked as 'To Investigate' on application. |

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.3
1+
5.0.4-SNAPSHOT

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"test:coverage": "jest --coverage"
1111
},
1212
"dependencies": {
13-
"@reportportal/client-javascript": "^5.0.12",
13+
"@reportportal/client-javascript": "~5.0.15",
1414
"mocha": "^10.2.0"
1515
},
1616
"directories": {

0 commit comments

Comments
 (0)