Skip to content

Commit b56a8c7

Browse files
committed
chore: Release 7.116.0
Signed-off-by: Mykhailo Kuznietsov <mkuznets@redhat.com>
1 parent 128cacd commit b56a8c7

File tree

6 files changed

+8
-14
lines changed

6 files changed

+8
-14
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ body:
3333
label: Che version
3434
description: if workspace is running, version can be obtained with help/about menu
3535
options:
36-
- "7.115@latest"
36+
- "7.116@latest"
3737
- "next (development version)"
38+
- "7.115"
3839
- "7.114"
3940
- "7.113"
4041
- "7.112"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.116.0-next
1+
7.116.0

tests/e2e/.claude/skills/e2e-test-developer/SKILL.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ Classes must follow this order:
152152
### Test File Conventions
153153

154154
1. **Naming**
155-
156155
- UI tests: `*.spec.ts` (e.g., `Factory.spec.ts`)
157156
- API-only tests: `*API.spec.ts` (e.g., `EmptyWorkspaceAPI.spec.ts`)
158157

@@ -217,12 +216,10 @@ async function doSomething(param, timeout) {
217216
```
218217

219218
2. **Naming Conventions**
220-
221219
- Variables: camelCase or UPPER_CASE
222220
- No leading/trailing underscores
223221

224222
3. **String Quotes**
225-
226223
- Use single quotes for strings
227224

228225
4. **Comments**

tests/e2e/CODE_STYLE.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
2828
### Preferable code style
2929

3030
1. Page-object and util classes
31-
3231
1. ✔ Class declaration using dependency injection (inversify library)
3332

3433
```
@@ -38,7 +37,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
3837
```
3938
4039
2. Public methods
41-
4240
- ✔ Declare public methods without "public "keyword
4341
- ✔ Add Logger.debug() inside method to log its name (with optional message)
4442
@@ -51,7 +49,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
5149
```
5250
5351
3. Locators
54-
5552
- ✔ For static locators - private static readonly fields type of By
5653
5754
```
@@ -105,7 +102,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
105102
```
106103
107104
2. Mocha framework
108-
109105
- ✔ TDD framework (`suite()`, `test()`)
110106
- ✔ Inject class instances, declare all test data inside test `suit()` function to avoid unnecessary code execution if test suit will not be run
111107
@@ -122,7 +118,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
122118
- ✔ Use test [./constants](constants) to make test flexible
123119
124120
3. Packages
125-
126121
1. Add packages as dev dependencies
127122
2. If any changes re-create package-lock.json before push
128123

tests/e2e/package-lock.json

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

tests/e2e/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-che/che-e2e",
3-
"version": "7.116.0-next",
3+
"version": "7.116.0",
44
"description": "",
55
"main": "dist/index.js",
66
"scripts": {
@@ -66,7 +66,8 @@
6666
"dependencies": {
6767
"@eclipse-che/api": "latest",
6868
"inversify": "6.0.1",
69-
"reflect-metadata": "0.1.13"
69+
"reflect-metadata": "0.1.13",
70+
"@eclipse-che/che-devworkspace-generator": "7.116.0"
7071
},
7172
"resolutions": {
7273
"minimist": "^1.2.5"

0 commit comments

Comments
 (0)