Skip to content

Commit f886499

Browse files
authored
update crc to 1.22.0 (#1954)
* update crc to 1.22.0 Signed-off-by: Mohit Suman <[email protected]> * fix eslint version for build failure Signed-off-by: Mohit Suman <[email protected]> * revert package-lock.json changes Signed-off-by: Mohit Suman <[email protected]>
1 parent dcdeb49 commit f886499

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Change Log
22

3+
## 0.2.2 (February 10, 2021)
4+
New features and bugfixes:
5+
- [#1952](https://github.com/redhat-developer/vscode-openshift-tools/issues/1952) Fix OpenShift icon broken image
6+
- [#1953](https://github.com/redhat-developer/vscode-openshift-tools/issues/1953) Update to CodeReady Containers (CRC) `1.22.0` to use OpenShift `4.6.15`
7+
8+
39
## 0.2.1 (February 9, 2021)
410

511
New features and bugfixes:
612
- [#1868](https://github.com/redhat-developer/vscode-openshift-tools/issues/1868) Telemetry Reporting
713
- [#1855](https://github.com/redhat-developer/vscode-openshift-tools/issues/1855) Devfile Starter Projects support
8-
- [#1896](https://github.com/redhat-developer/vscode-openshift-tools/issues/1896) Developer Sandbox for RedHat OpenShift
9-
- [#1907](https://github.com/redhat-developer/vscode-openshift-tools/issues/1907) Update to odo 2.0.4
10-
- [#1912](https://github.com/redhat-developer/vscode-openshift-tools/issues/1912) Update CRC download link to v1.21.0
14+
- [#1896](https://github.com/redhat-developer/vscode-openshift-tools/issues/1896) Developer Sandbox for Red Hat OpenShift
15+
- [#1907](https://github.com/redhat-developer/vscode-openshift-tools/issues/1907) Update to odo `2.0.4`
16+
- [#1912](https://github.com/redhat-developer/vscode-openshift-tools/issues/1912) Update CodeReady Containers (CRC) download link to v1.21.0
1117

1218
## 0.2.0 (September 30, 2020)
1319

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,7 @@ from `OpenShift: Application Explorer` view title.
157157
The view guides you through the steps required to create and start OpenShift 4 single node cluster on your workstation
158158
using Red Hat CodeReady Containers:
159159

160-
* Download Red Hat CodeReady Containers
161-
* Configure Red Hat CodeReady Containers
160+
* Download & Configure Red Hat CodeReady Containers
162161
* Set Virtual Machine parameters: number of CPUs and memory amount
163162
* Setup Red Hat CodeReady Containers
164163
* Run Red Hat CodeReady Containers commands to control the cluster

src/view/cluster/app/clusterView.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ function getSteps() {
6161
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
6262
export default function addClusterView() {
6363
const classes = useStyles();
64-
const crcLatest = '1.21.0';
65-
const crcOpenShift = '4.6.9';
64+
const crcLatest = '1.22.0';
65+
const crcOpenShift = '4.6.15';
6666
const [fileName, setBinaryPath] = React.useState('');
6767
const [pullSecretPath, setSecret] = React.useState('');
6868
const [cpuSize, setCpuSize] = React.useState(crcDefaults.DefaultCPUs);
@@ -428,7 +428,7 @@ export default function addClusterView() {
428428
case 1:
429429
return (
430430
<div>
431-
<Typography>Download and extract the CodeReady Containers archive for your operating system and place the binary in your $PATH</Typography>
431+
<Typography>Download and extract the CodeReady Containers archive for your operating system and place the executable in your $PATH</Typography>
432432
<List className={classes.uploadLabel}>
433433
<ListItem>
434434
<ListItemAvatar>
@@ -659,7 +659,7 @@ export default function addClusterView() {
659659
<Paper square elevation={3} className={classes.resetContainer}>
660660
<blockquote className={classes.blockquoteText}>
661661
<Typography variant='body2'>
662-
A crc configuration is detected in workspace settings. If you need to setup a new CRC instance, click on Reset and proceed with wizard workflow.
662+
CRC configuration is detected in workspace settings. If you need to setup a new CRC instance, click on Reset and proceed with wizard workflow.
663663
</Typography>
664664
</blockquote>
665665
<StartStopLoader />

0 commit comments

Comments
 (0)