Skip to content

Commit

Permalink
chore: Release 7.74.0
Browse files Browse the repository at this point in the history
Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
  • Loading branch information
mkuznyetsov committed Sep 7, 2023
1 parent a5a0151 commit 85f5ef8
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 63 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ body:
label: Che version
description: if workspace is running, version can be obtained with help/about menu
options:
- "7.73@latest"
- "7.74@latest"
- "next (development version)"
- "7.73"
- "7.72"
- "7.71"
- "7.70"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.74.0-SNAPSHOT
7.74.0
4 changes: 2 additions & 2 deletions tests/e2e/package-lock.json

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

119 changes: 60 additions & 59 deletions tests/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,62 @@
{
"name": "@eclipse-che/che-e2e",
"version": "7.73.0-SNAPSHOT",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --fix .",
"prettier": "prettier --config .prettierrc.json . --write",
"tsc": "rm -rf ./dist && ./configs/sh-scripts/generateIndex.sh && tsc -p .",
"test": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export USERSTORY=$USERSTORY && mocha --config dist/configs/mocharc.js",
"driver-less-test": "export TS_USE_WEB_DRIVER_FOR_TEST=false && npm run test",
"cleanup-docker": "if [ $(docker ps -a | grep -c selenium-e2e) -gt 0 ]; then docker rm -f $(docker ps --filter \"name=selenium-e2e\" -aq); fi;",
"test-docker": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL eclipse/che-e2e:nightly",
"test-docker-mount-e2e": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL -v $(pwd):/tmp/e2e:Z eclipse/che-e2e:nightly",
"test-all-devfiles": " ./configs/sh-scripts/initDefaultValues.sh && ./configs/sh-scripts/initDevfileTests.sh",
"devfile-acceptance-test-suite": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export TS_USE_WEB_DRIVER_FOR_TEST=false && mocha 'dist/specs/api/*.js' --config dist/configs/mocharc.js --delay --grep 'Devfile acceptance test suite'"
},
"author": "Ihor Okhrimenko (iokhrime@redhat.com)",
"license": "ISC",
"devDependencies": {
"@eclipse-che/che-devworkspace-generator": "next",
"@types/chai": "^4.3.4",
"@types/clone-deep": "^4.0.1",
"@types/mocha": "5.2.6",
"@types/node": "11.13.4",
"@types/rimraf": "2.0.2",
"@types/selenium-webdriver": "4.1.3",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/eslint-plugin-tslint": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"axios": "^0.25.0",
"chai": "^4.3.4",
"chromedriver": "^114.0.2",
"clone-deep": "^4.0.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"mocha": "^9.1.3",
"monaco-page-objects": "3.1.0",
"prettier": "^3.0.2",
"rimraf": "2.6.2",
"selenium-webdriver": "4.4.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "4.9.4",
"vscode-extension-tester-locators": "3.1.0",
"yaml": "^2.2.2"
},
"dependencies": {
"@eclipse-che/api": "latest",
"inversify": "6.0.1",
"reflect-metadata": "0.1.13"
},
"resolutions": {
"minimist": "^1.2.5"
}
"name": "@eclipse-che/che-e2e",
"version": "7.74.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --fix .",
"prettier": "prettier --config .prettierrc.json . --write",
"tsc": "rm -rf ./dist && ./configs/sh-scripts/generateIndex.sh && tsc -p .",
"test": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export USERSTORY=$USERSTORY && mocha --config dist/configs/mocharc.js",
"driver-less-test": "export TS_USE_WEB_DRIVER_FOR_TEST=false && npm run test",
"cleanup-docker": "if [ $(docker ps -a | grep -c selenium-e2e) -gt 0 ]; then docker rm -f $(docker ps --filter \"name=selenium-e2e\" -aq); fi;",
"test-docker": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL eclipse/che-e2e:nightly",
"test-docker-mount-e2e": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL -v $(pwd):/tmp/e2e:Z eclipse/che-e2e:nightly",
"test-all-devfiles": " ./configs/sh-scripts/initDefaultValues.sh && ./configs/sh-scripts/initDevfileTests.sh",
"devfile-acceptance-test-suite": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export TS_USE_WEB_DRIVER_FOR_TEST=false && mocha 'dist/specs/api/*.js' --config dist/configs/mocharc.js --delay --grep 'Devfile acceptance test suite'"
},
"author": "Ihor Okhrimenko (iokhrime@redhat.com)",
"license": "ISC",
"devDependencies": {
"@eclipse-che/che-devworkspace-generator": "next",
"@types/chai": "^4.3.4",
"@types/clone-deep": "^4.0.1",
"@types/mocha": "5.2.6",
"@types/node": "11.13.4",
"@types/rimraf": "2.0.2",
"@types/selenium-webdriver": "4.1.3",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/eslint-plugin-tslint": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"axios": "^0.25.0",
"chai": "^4.3.4",
"chromedriver": "^114.0.2",
"clone-deep": "^4.0.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"mocha": "^9.1.3",
"monaco-page-objects": "3.1.0",
"prettier": "^3.0.2",
"rimraf": "2.6.2",
"selenium-webdriver": "4.4.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "4.9.4",
"vscode-extension-tester-locators": "3.1.0",
"yaml": "^2.2.2"
},
"dependencies": {
"@eclipse-che/api": "latest",
"inversify": "6.0.1",
"reflect-metadata": "0.1.13",
"@eclipse-che/che-devworkspace-generator": "7.74.0"
},
"resolutions": {
"minimist": "^1.2.5"
}
}

0 comments on commit 85f5ef8

Please sign in to comment.