From 64cdb8129079e50b2c2962f1e925f874a994b706 Mon Sep 17 00:00:00 2001 From: Mykhailo Kuznietsov Date: Wed, 28 Jan 2026 14:52:40 +0000 Subject: [PATCH 1/2] chore: Bump to 7.115.0-next in main Signed-off-by: Mykhailo Kuznietsov --- .github/ISSUE_TEMPLATE/bug_report.yml | 3 ++- VERSION | 2 +- tests/e2e/CODE_STYLE.md | 5 ----- tests/e2e/package-lock.json | 4 ++-- tests/e2e/package.json | 2 +- 5 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 72e15b6157b..a28dc808df0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -33,8 +33,9 @@ body: label: Che version description: if workspace is running, version can be obtained with help/about menu options: - - "7.113@latest" + - "7.114@latest" - "next (development version)" + - "7.113" - "7.112" - "7.111" - "7.110" diff --git a/VERSION b/VERSION index b1823c665f4..f00f46aa94a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.114.0-next +7.115.0-next diff --git a/tests/e2e/CODE_STYLE.md b/tests/e2e/CODE_STYLE.md index 96d39c98cca..d13fbff5d1a 100644 --- a/tests/e2e/CODE_STYLE.md +++ b/tests/e2e/CODE_STYLE.md @@ -28,7 +28,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools ### Preferable code style 1. Page-object and util classes - 1. ✔ Class declaration using dependency injection (inversify library) ``` @@ -38,7 +37,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools ``` 2. Public methods - - ✔ Declare public methods without "public "keyword - ✔ Add Logger.debug() inside method to log its name (with optional message) @@ -51,7 +49,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools ``` 3. Locators - - ✔ For static locators - private static readonly fields type of By ``` @@ -105,7 +102,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools ``` 2. Mocha framework - - ✔ TDD framework (`suite()`, `test()`) - ✔ Inject class instances, declare all test data inside test `suit()` function to avoid unnecessary code execution if test suit will not be run @@ -122,7 +118,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools - ✔ Use test [./constants](constants) to make test flexible 3. Packages - 1. Add packages as dev dependencies 2. If any changes re-create package-lock.json before push diff --git a/tests/e2e/package-lock.json b/tests/e2e/package-lock.json index be9f300468c..db3ce6a4ee2 100644 --- a/tests/e2e/package-lock.json +++ b/tests/e2e/package-lock.json @@ -1,12 +1,12 @@ { "name": "@eclipse-che/che-e2e", - "version": "7.114.0-next", + "version": "7.115.0-next", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@eclipse-che/che-e2e", - "version": "7.114.0-next", + "version": "7.115.0-next", "license": "ISC", "dependencies": { "@eclipse-che/api": "latest", diff --git a/tests/e2e/package.json b/tests/e2e/package.json index 1dc58fe43d3..2369414ffaf 100644 --- a/tests/e2e/package.json +++ b/tests/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-che/che-e2e", - "version": "7.114.0-next", + "version": "7.115.0-next", "description": "", "main": "dist/index.js", "scripts": { From 3f4de280bca471c6fbc79e65e902ce713c4daffc Mon Sep 17 00:00:00 2001 From: Valerii Svydenko Date: Wed, 28 Jan 2026 17:03:44 +0200 Subject: [PATCH 2/2] chore: fix formatting Signed-off-by: Valerii Svydenko --- tests/e2e/CODE_STYLE.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/e2e/CODE_STYLE.md b/tests/e2e/CODE_STYLE.md index d13fbff5d1a..96d39c98cca 100644 --- a/tests/e2e/CODE_STYLE.md +++ b/tests/e2e/CODE_STYLE.md @@ -28,6 +28,7 @@ Automated lint checking and code format performs with ESLint and Prettier tools ### Preferable code style 1. Page-object and util classes + 1. ✔ Class declaration using dependency injection (inversify library) ``` @@ -37,6 +38,7 @@ Automated lint checking and code format performs with ESLint and Prettier tools ``` 2. Public methods + - ✔ Declare public methods without "public "keyword - ✔ Add Logger.debug() inside method to log its name (with optional message) @@ -49,6 +51,7 @@ Automated lint checking and code format performs with ESLint and Prettier tools ``` 3. Locators + - ✔ For static locators - private static readonly fields type of By ``` @@ -102,6 +105,7 @@ Automated lint checking and code format performs with ESLint and Prettier tools ``` 2. Mocha framework + - ✔ TDD framework (`suite()`, `test()`) - ✔ Inject class instances, declare all test data inside test `suit()` function to avoid unnecessary code execution if test suit will not be run @@ -118,6 +122,7 @@ Automated lint checking and code format performs with ESLint and Prettier tools - ✔ Use test [./constants](constants) to make test flexible 3. Packages + 1. Add packages as dev dependencies 2. If any changes re-create package-lock.json before push