Skip to content

Commit 55efb26

Browse files
committed
release: qaseio 2.1.0-beta.0, others 2.0.0-beta.2
* qaseio has changed API, and there is [email protected] already released, for v1 reporters, so it's heading towards a 2.1.0 release. It may change to 3.0.0 due to backwards-incompatible changes. * Other packages didn't have a release in the 2.x.y series yet, so they are all now 2.0.0-beta.2 and heading towards 2.0.0. * Examples have been updated to use 2.0.0-beta.2 reporters, but haven't been tested yet. It should be done is a separate task. * Docs were not updated. They will follow the release. Part of #536
1 parent 9a936f0 commit 55efb26

File tree

20 files changed

+117
-44
lines changed

20 files changed

+117
-44
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
# [Qase TMS](https://qase.io) JavaScript
1+
# [Qase TestOps](https://qase.io) reporters for JavaScript
22

3-
This is a monorepo for all JavaScript-related projects
3+
Monorepo with [Qase TestOps](https://qase.io) reporters for JavaScript testing frameworks.
44

5-
## Projects
6-
7-
- [qaseio](/qaseio) - JavaScript API
8-
- [qase-core-reporter](/qase-core-reporter) - Core reporter
95
- [qase-cypress](/qase-cypress) - Cypress reporter
106
- [qase-cucumberjs](/qase-cucumberjs) - CucumberJS reporter
117
- [qase-newman](/qase-newman) - Newman reporter
128
- [qase-testcafe](/qase-testcafe) - TestCafe reporter
139
- [qase-jest](/qase-jest) - Jest reporter
1410
- [qase-playwright](/qase-playwright) - Playwright reporter
11+
- [qaseio](/qaseio) - JavaScript API client
12+
- [qase-javascript-commons](/qase-javascript-commons) - Common functions library

examples/cucumberjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"devDependencies": {
88
"@cucumber/cucumber": "^7.3.2",
9-
"cucumberjs-qase-reporter": "^2.0.0-beta.1",
9+
"cucumberjs-qase-reporter": "^2.0.0-beta.2",
1010
"zombie": "^6.1.4"
1111
}
1212
}

examples/cypress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"cypress": "^12.13.0",
99
"cypress-mochawesome-reporter": "^3.5.0",
1010
"cypress-multi-reporters": "^1.6.3",
11-
"cypress-qase-reporter": "^2.0.0-beta.1",
11+
"cypress-qase-reporter": "^2.0.0-beta.2",
1212
"eslint-plugin-cypress": "^2.13.3"
1313
}
1414
}

examples/jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"@jest/globals": "^29.5.0",
1010
"babel-jest": "^29.5.0",
1111
"jest": "^29.5.0",
12-
"jest-qase-reporter": "^2.0.0-beta.1"
12+
"jest-qase-reporter": "^2.0.0-beta.2"
1313
}
1414
}

examples/newman/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
},
77
"devDependencies": {
88
"newman": "^5.3.2",
9-
"newman-reporter-qase": "^2.0.0-beta.1"
9+
"newman-reporter-qase": "^2.0.0-beta.2"
1010
}
1111
}

examples/playwright/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
},
77
"devDependencies": {
88
"@playwright/test": "^1.34.3",
9-
"playwright-qase-reporter": "^2.0.0-beta.1"
9+
"playwright-qase-reporter": "^2.0.0-beta.2"
1010
}
1111
}

examples/testcafe/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"devDependencies": {
88
"eslint-plugin-testcafe": "^0.2.1",
99
"testcafe": "^2.6.0",
10-
"testcafe-reporter-qase": "^2.0.0-beta.1"
10+
"testcafe-reporter-qase": "^2.0.0-beta.2"
1111
}
1212
}

package-lock.json

Lines changed: 16 additions & 16 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
@@ -1,7 +1,7 @@
11
{
22
"name": "qase-javascript",
33
"private": true,
4-
"version": "2.0.0-beta.1",
4+
"version": "2.0.0-beta.2",
55
"description": "This is a monorepo for all JavaScript-related projects",
66
"repository": {
77
"type": "git",

qase-cucumberjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cucumberjs-qase-reporter",
3-
"version": "2.0.0-beta.1",
3+
"version": "2.0.0-beta.2",
44
"description": "Qase TMS CucumberJS Reporter",
55
"homepage": "https://github.com/qase-tms/qase-javascript",
66
"main": "./dist/index.js",
@@ -40,7 +40,7 @@
4040
"license": "Apache-2.0",
4141
"dependencies": {
4242
"@cucumber/messages": "^22.0.0",
43-
"qase-javascript-commons": "^2.0.0-beta.1"
43+
"qase-javascript-commons": "^2.0.0-beta.2"
4444
},
4545
"peerDependencies": {
4646
"@cucumber/cucumber": ">=7.0.0"

0 commit comments

Comments
 (0)