From bb551ca77953c967db861e19f5f57191111004ba Mon Sep 17 00:00:00 2001 From: Mykhailo Kuznietsov Date: Wed, 30 Jul 2025 16:05:58 +0000 Subject: [PATCH 1/2] chore: Bump to 7.108.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 +- tests/e2e/pageobjects/git-providers/OauthPage.ts | 2 +- 6 files changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 6465669ccc6..b136f2edfe4 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.106@latest" + - "7.107@latest" - "next (development version)" + - "7.106" - "7.105" - "7.104" - "7.103" diff --git a/VERSION b/VERSION index 2be8d97c68c..c30de45d628 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.107.0-next +7.108.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 f0673ba5ca9..201ac47624e 100644 --- a/tests/e2e/package-lock.json +++ b/tests/e2e/package-lock.json @@ -1,12 +1,12 @@ { "name": "@eclipse-che/che-e2e", - "version": "7.107.0-next", + "version": "7.108.0-next", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@eclipse-che/che-e2e", - "version": "7.107.0-next", + "version": "7.108.0-next", "license": "ISC", "dependencies": { "@eclipse-che/api": "latest", diff --git a/tests/e2e/package.json b/tests/e2e/package.json index 69c63a8bb22..72041ff44bf 100644 --- a/tests/e2e/package.json +++ b/tests/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-che/che-e2e", - "version": "7.107.0-next", + "version": "7.108.0-next", "description": "", "main": "dist/index.js", "scripts": { diff --git a/tests/e2e/pageobjects/git-providers/OauthPage.ts b/tests/e2e/pageobjects/git-providers/OauthPage.ts index c8d6664d96f..03d5fa512f6 100644 --- a/tests/e2e/pageobjects/git-providers/OauthPage.ts +++ b/tests/e2e/pageobjects/git-providers/OauthPage.ts @@ -50,7 +50,7 @@ export class OauthPage { OauthPage.DENY_ACCESS_BUTTON = By.xpath('//span[text()="Deny"]'); } break; - case GitProviderType.BITBUCKET_CLOUD_OAUTH2: + case GitProviderType.BITBUCKET_CLOUD_OAUTH2: { OauthPage.LOGIN_FORM = By.css('[data-testid="username"]'); OauthPage.PASSWORD_FORM = By.id('password'); From 659fb1177750cb2908adace4f2421c965dd326ee Mon Sep 17 00:00:00 2001 From: Mykhailo Kuznietsov Date: Tue, 5 Aug 2025 17:06:08 +0300 Subject: [PATCH 2/2] fixup! chore: Bump to 7.108.0-next in main --- 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