Skip to content

Commit

Permalink
Upgrade to Kaoto 0.7.0
Browse files Browse the repository at this point in the history
it requires to align patternfly dependency

fixes KaotoIO#131
fixes KaotoIO#135 - patternfly must be aligned, the order of parameters of one
method has been reversed and so the two versions are not compatible.
fixes KaotoIO#149 - not found the reason why the branching is working with
latest version but I suspect similar root cause of not aligned
patternfly version

Signed-off-by: Aurélien Pupier <[email protected]>
  • Loading branch information
apupier committed Feb 28, 2023
1 parent cf9135b commit 8f016be
Show file tree
Hide file tree
Showing 5 changed files with 300 additions and 131 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 0.3.0

- Keep `Kaoto backend` output log available when Kaoto backend native executable cannot be launched. It allows to have more information what can be the issue.
- Upgrade embedded Kaoto [UI](https://github.com/KaotoIO/kaoto-ui/releases/tag/v0.6.1) to 0.6.1 and [backend](https://github.com/KaotoIO/kaoto-backend/releases/tag/v0.6.2) to 0.6.2
- Upgrade embedded Kaoto [UI](https://github.com/KaotoIO/kaoto-ui/releases/tag/v0.7.0) to 0.7.0 and [backend](https://github.com/KaotoIO/kaoto-backend/releases/tag/v0.7.0) to 0.7.0
- Open Kaoto editor by default for `*.camel.(yaml|yml)` files
- Avoid wipeout of content on restart with opened editors #144

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

## Versions under the hood

Kaoto UI is embedded in version 0.6.1. Kaoto backend is launched natively using version 0.6.2.
Kaoto UI is embedded in version 0.7.0. Kaoto backend is launched natively using version 0.7.0.

## Limitations

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@
"test:it:clean": "rimraf ./test-resources && rimraf ./out && rimraf *.vsix"
},
"dependencies": {
"@kaoto/kaoto-ui": "^0.6.1",
"@kaoto/kaoto-ui": "0.7.0",
"@kie-tools-core/backend": "^0.26.0",
"@kie-tools-core/editor": "^0.26.0",
"@kie-tools-core/i18n": "^0.26.0",
"@kie-tools-core/monaco-editor": "^0.26.0",
"@kie-tools-core/patternfly-base": "^0.26.0",
"@kie-tools-core/vscode-extension": "^0.26.0",
"@kie-tools-core/workspace": "^0.26.0",
"@patternfly/react-core": "4.267.6",
"@patternfly/react-core": "4.276.6",
"@redhat-developer/vscode-redhat-telemetry": "^0.5.4",
"async-wait-until": "^2.0.12",
"react": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const downloadKaotoBackendNativeExecutable = (backendVersion, platform, extensio
downloadFile(`https://github.com/KaotoIO/kaoto-backend/releases/download/${backendVersion}/kaoto-${platform}`, `./binaries/kaoto-${platform}${extension}`);
}

const backendVersion = "v0.6.2";
const backendVersion = "v0.7.0";
downloadKaotoBackendNativeExecutable(backendVersion, 'linux-amd64', '');
downloadKaotoBackendNativeExecutable(backendVersion, 'macos-amd64', '');
downloadKaotoBackendNativeExecutable(backendVersion, 'windows-amd64', '.exe');
Loading

0 comments on commit 8f016be

Please sign in to comment.