Skip to content

Commit bdfe5c7

Browse files
committed
Merge remote-tracking branch 'origin/main' into 2700-missing-word-in-error-message-in-import-from-git-wizard
2 parents 9990ad4 + 6915b47 commit bdfe5c7

40 files changed

+1700
-1729
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,20 @@ jobs:
5353

5454
# UI tests fail under linux
5555
# Run UI tests
56-
#- name: Run UI Tests
57-
# uses: GabrielBB/xvfb-action@v1.6
58-
# if: runner.os == 'Linux'
59-
# with:
60-
# run: npm run public-ui-test
61-
# options: -screen 0 1920x1080x24
56+
- name: Run UI Tests
57+
uses: GabrielBB/xvfb-action@v1.6
58+
if: runner.os == 'Linux'
59+
with:
60+
run: npm run public-ui-test
61+
options: -screen 0 1920x1080x24
6262

6363
# Archiving integration tests artifacts
64-
#- name: Upload test artifacts
65-
# uses: actions/upload-artifact@v2
66-
# if: failure() && runner.os == 'Linux'
67-
# with:
68-
# name: artifacts-${{ matrix.os }}
69-
# path: |
70-
# test-resources/screenshots/*.png
71-
# retention-days: 2
64+
- name: Upload test artifacts
65+
uses: actions/upload-artifact@v2
66+
if: failure() && runner.os == 'Linux'
67+
with:
68+
name: artifacts-${{ matrix.os }}
69+
path: |
70+
test-resources/screenshots/*.png
71+
retention-days: 2
7272

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v16.13.2

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,23 @@
7575
"VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
7676
}
7777
},
78+
{
79+
"name": "Debug UI Tests",
80+
"type": "node",
81+
"request": "launch",
82+
"program": "${workspaceFolder}/node_modules/.bin/extest",
83+
"args": [
84+
"setup-and-run",
85+
"${workspaceFolder}/out/test/ui/public-ui-test.js",
86+
"-o",
87+
"${workspaceFolder}/test/ui/settings.json",
88+
"-m",
89+
"--mocha_config",
90+
"${workspaceFolder}/test/ui/.mocharc.js"
91+
],
92+
"console": "integratedTerminal",
93+
"internalConsoleOptions": "neverOpen"
94+
},
7895
{
7996
"type": "pwa-chrome",
8097
"request": "launch",

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change Log
22

3+
## 1.1.0 (January 9, 2023)
4+
5+
* [#2711](https://github.com/redhat-developer/vscode-openshift-tools/issues/2711) Migrate to odo 3.4.0
6+
* [#2709](https://github.com/redhat-developer/vscode-openshift-tools/issues/2709) Fix the GitHub Readme badge error
7+
* [#2705](https://github.com/redhat-developer/vscode-openshift-tools/issues/2705) Devfile Registry View does not show errors for connectivity related issues and stays in 'Loading Registry View' mode forever
8+
* [#2701](https://github.com/redhat-developer/vscode-openshift-tools/issues/2701) Show and Follow log is not shown when set to open in web view
9+
* [#2700](https://github.com/redhat-developer/vscode-openshift-tools/issues/2700) Missing word in error message in Import from Git wizard
10+
* [#2693](https://github.com/redhat-developer/vscode-openshift-tools/issues/2693) Login to cluster does not work
11+
* [#2690](https://github.com/redhat-developer/vscode-openshift-tools/issues/2690) Support podman workflow using odo
12+
* [#2689](https://github.com/redhat-developer/vscode-openshift-tools/issues/2689) Update @material-ui/core package
13+
* [#2688](https://github.com/redhat-developer/vscode-openshift-tools/issues/2688) Update odo to v3.3.0
14+
* [#2685](https://github.com/redhat-developer/vscode-openshift-tools/issues/2685) OpenShift Local workflow broken in Windows
15+
* [#2682](https://github.com/redhat-developer/vscode-openshift-tools/issues/2682) Cannot create project with name of previously deleted project
16+
* [#2676](https://github.com/redhat-developer/vscode-openshift-tools/issues/2676) Enable odo telemetry based on current vscode telemetry opt-in status
17+
* [#2674](https://github.com/redhat-developer/vscode-openshift-tools/issues/2674) Unable to select devfile registry in git import when multiple devfile registry configured
18+
* [#2671](https://github.com/redhat-developer/vscode-openshift-tools/issues/2671) Unable to create component from Get started page view
19+
* [#2667](https://github.com/redhat-developer/vscode-openshift-tools/issues/2667) Support odo 3.2.0 workflow
20+
* [#2666](https://github.com/redhat-developer/vscode-openshift-tools/issues/2666) Typo: Component name spell error
21+
* [#2608](https://github.com/redhat-developer/vscode-openshift-tools/issues/2608) Debug session failed to start
22+
* [#2598](https://github.com/redhat-developer/vscode-openshift-tools/issues/2598) Manage Kubernetes Context Action
23+
* [#2579](https://github.com/redhat-developer/vscode-openshift-tools/issues/2579) Add Browse actions in registry view
24+
* [#2577](https://github.com/redhat-developer/vscode-openshift-tools/issues/2577) Registry view is empty by default when OpenShift extension is opened
25+
* [#2562](https://github.com/redhat-developer/vscode-openshift-tools/issues/2562) Perform odo v3 migration testing
26+
* [#2559](https://github.com/redhat-developer/vscode-openshift-tools/issues/2559) Enable telemetry for odo calls if user consents to telemetry request for the extension
27+
* [#2465](https://github.com/redhat-developer/vscode-openshift-tools/issues/2465) Detect debugger ext for component using devfile's language tags in the registry
28+
* [#1802](https://github.com/redhat-developer/vscode-openshift-tools/issues/1802) Provide a way to remove clusters from the list
29+
330
## 1.0.0 (November 8, 2022)
431

532
* [#2651](https://github.com/redhat-developer/vscode-openshift-tools/issues/2651) Add analyze button in git import

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Visual Studio Marketplace](https://img.shields.io/visual-studio-marketplace/v/redhat.vscode-openshift-connector?style=for-the-badge&label=VS%20Marketplace&logo=visual-studio-code&color=blue)](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-openshift-connector)
66
[![Downloads](https://img.shields.io/visual-studio-marketplace/d/redhat.vscode-openshift-connector?style=for-the-badge&color=purple)](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-openshift-connector)
77
[![Gitter](https://img.shields.io/gitter/room/redhat-developer/vscode-openshift-tools?style=for-the-badge&logo=gitter)](https://gitter.im/redhat-developer/openshift-connector)
8-
[![Build Status](https://img.shields.io/github/workflow/status/redhat-developer/vscode-openshift-tools/CI?style=for-the-badge&logo=github)](https://github.com/redhat-developer/vscode-openshift-tools/actions?query=workflow%3ACI)
8+
[![Build Status](https://img.shields.io/github/actions/workflow/status/redhat-developer/vscode-openshift-tools/continuous-integration-workflow.yml?style=for-the-badge)](https://github.com/redhat-developer/vscode-openshift-tools/actions?query=workflow%3ACI)
99
[![Unit Tests Code Coverage](https://img.shields.io/codecov/c/github/redhat-developer/vscode-openshift-tools?logo=codecov&style=for-the-badge)](https://codecov.io/gh/redhat-developer/vscode-openshift-tools/branch/main/graph/badge.svg)
1010
[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=for-the-badge)](https://github.com/redhat-developer/vscode-openshift-tools/blob/main/LICENSE)
1111

0 commit comments

Comments
 (0)