diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 5142a2483f2..9a93100df10 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.85@latest" + - "7.86@latest" - "next (development version)" + - "7.85" - "7.84" - "7.83" - "7.82" diff --git a/VERSION b/VERSION index 9a4990ad15b..af55b7b8faf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.86.0-next +7.87.0-next diff --git a/tests/e2e/package-lock.json b/tests/e2e/package-lock.json index f1b0eb29dce..67b18a5f087 100644 --- a/tests/e2e/package-lock.json +++ b/tests/e2e/package-lock.json @@ -1,12 +1,12 @@ { "name": "@eclipse-che/che-e2e", - "version": "7.86.0-next", + "version": "7.87.0-next", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@eclipse-che/che-e2e", - "version": "7.86.0-next", + "version": "7.87.0-next", "license": "ISC", "dependencies": { "@eclipse-che/api": "latest", diff --git a/tests/e2e/package.json b/tests/e2e/package.json index 3c28e197052..421b1c9eeba 100644 --- a/tests/e2e/package.json +++ b/tests/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-che/che-e2e", - "version": "7.86.0-next", + "version": "7.87.0-next", "description": "", "main": "dist/index.js", "scripts": { diff --git a/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts b/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts index 97b289eca15..ecfd0d4400d 100644 --- a/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts +++ b/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts @@ -103,7 +103,7 @@ suite( const output: ShellString = kubernetesCommandLineToolsExecutor.execInContainerCommand(testScript); expect(output, 'Podman test script failed').contains('Successfully tagged'); const runOutput: ShellString = kubernetesCommandLineToolsExecutor.execInContainerCommand(runTestScript); - expect(runOutput, 'Podman test script failed').contains('Hello from Kubedock!') + expect(runOutput, 'Podman test script failed').contains('Hello from Kubedock!'); }); suiteTeardown('Open dashboard and close all other tabs', async function (): Promise {