Skip to content

Commit f1e4579

Browse files
committed
chore: Release 7.102.0
Signed-off-by: Mykhailo Kuznietsov <[email protected]>
1 parent 36ecc36 commit f1e4579

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
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.101@latest"
36+
- "7.10@latest"
3737
- "next (development version)"
38+
- "7.101"
3839
- "7.100"
3940
- "7.99"
4041
- "7.98"

VERSION

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

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.102.0-next",
3+
"version": "7.102.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.102.0"
7071
},
7172
"resolutions": {
7273
"minimist": "^1.2.5"

tests/e2e/specs/api/BuildPushRunPodmanContainerAPI.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,10 @@ oc logs test-hello-pod
130130

131131
test('Check the project files were imported', async function (): Promise<void> {
132132
const projectSection: ViewSection = await projectAndFileTests.getProjectViewSession();
133-
expect(await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.x86_64'), 'Dockerfile not found in the project tree').not.undefined;
133+
expect(
134+
await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.x86_64'),
135+
'Dockerfile not found in the project tree'
136+
).not.undefined;
134137
});
135138

136139
test('Build and push container image from workspace', function (): void {

0 commit comments

Comments
 (0)