diff --git a/CHANGELOG.md b/CHANGELOG.md index a11a0cc27b6..237977f2b0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Bug Fixes + +- > > is not always treated as an append to the given file ([e6f5332](https://github.com/IBM/kui/commit/e6f5332)) +- **packages/core:** pipeStages splits command with >> incorrectly ([28f427b](https://github.com/IBM/kui/commit/28f427b)), closes [#7413](https://github.com/IBM/kui/issues/7413) +- **plugins/plugin-kubectl:** Deployment Summary Ready shows "undefined/N" if there are no pods ready yet ([9ddfd03](https://github.com/IBM/kui/commit/9ddfd03)) +- **plugins/plugin-s3:** leftover debugging in plugin-s3 ([b91c945](https://github.com/IBM/kui/commit/b91c945)), closes [#7767](https://github.com/IBM/kui/issues/7767) +- **plugins/plugin-s3:** s3 bind mounts don't behave correctly with clicks in ls output ([1ac7cd1](https://github.com/IBM/kui/commit/1ac7cd1)), closes [#7764](https://github.com/IBM/kui/issues/7764) + +### Features + +- Add support to Kui proxy for pre-shared-key authorization ([0fb1c71](https://github.com/IBM/kui/commit/0fb1c71)), closes [#7772](https://github.com/IBM/kui/issues/7772) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 38fad3e3876..65f4e339837 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*", "plugins/*"], - "version": "10.4.5", + "version": "10.4.6", "command": { "publish": { "conventionalCommits": true diff --git a/packages/builder/CHANGELOG.md b/packages/builder/CHANGELOG.md index fd0f1716d92..dbd25b25aea 100644 --- a/packages/builder/CHANGELOG.md +++ b/packages/builder/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/builder + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/builder diff --git a/packages/builder/package.json b/packages/builder/package.json index 806ab578a5f..da70c9e9818 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/builder", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin development helpers", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 743921e5e79..3f56d13e3e8 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Bug Fixes + +- > > is not always treated as an append to the given file ([e6f5332](https://github.com/IBM/kui/commit/e6f5332)) +- **packages/core:** pipeStages splits command with >> incorrectly ([28f427b](https://github.com/IBM/kui/commit/28f427b)), closes [#7413](https://github.com/IBM/kui/issues/7413) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/core diff --git a/packages/core/package.json b/packages/core/package.json index 9d902a97466..6f7642b2338 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/core", - "version": "10.4.5", + "version": "10.4.6", "description": "An Electron-based shell for cloud-native development", "homepage": "https://github.com/IBM/kui#readme", "license": "Apache-2.0", diff --git a/packages/proxy/CHANGELOG.md b/packages/proxy/CHANGELOG.md index 7783cb45089..ecbb027035d 100644 --- a/packages/proxy/CHANGELOG.md +++ b/packages/proxy/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Features + +- Add support to Kui proxy for pre-shared-key authorization ([0fb1c71](https://github.com/IBM/kui/commit/0fb1c71)), closes [#7772](https://github.com/IBM/kui/issues/7772) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/proxy diff --git a/packages/proxy/package.json b/packages/proxy/package.json index 3b31b31662a..6451baee7db 100644 --- a/packages/proxy/package.json +++ b/packages/proxy/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/proxy", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui package that offers a proxy server", "author": "Nick Mitchell", "license": "Apache-2.0", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index e69fff50a4a..2cda04a7552 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/react + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/react diff --git a/packages/react/package.json b/packages/react/package.json index 857392660e1..26e24fe8f21 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/react", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui react enablement", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/packages/test/CHANGELOG.md b/packages/test/CHANGELOG.md index 508b8a2c428..e1986dc85c4 100644 --- a/packages/test/CHANGELOG.md +++ b/packages/test/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/kubernetes-sigs/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/test + ## [10.4.5](https://github.com/kubernetes-sigs/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/test diff --git a/packages/test/package.json b/packages/test/package.json index 6467cbb9409..309c4996fec 100644 --- a/packages/test/package.json +++ b/packages/test/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/test", - "version": "10.4.5", + "version": "10.4.6", "description": "", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index b9b7b6bb08f..a05ded8f812 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/webpack + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/webpack diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 8f6d9642229..40699927878 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/webpack", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui support for webpack clients", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-bash-like/CHANGELOG.md b/plugins/plugin-bash-like/CHANGELOG.md index dc9c20ac64a..d539c979420 100644 --- a/plugins/plugin-bash-like/CHANGELOG.md +++ b/plugins/plugin-bash-like/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Bug Fixes + +- > > is not always treated as an append to the given file ([e6f5332](https://github.com/IBM/kui/commit/e6f5332)) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) ### Bug Fixes diff --git a/plugins/plugin-bash-like/package.json b/plugins/plugin-bash-like/package.json index 0f02f0cb7d6..c1fcd3ae79e 100644 --- a/plugins/plugin-bash-like/package.json +++ b/plugins/plugin-bash-like/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-bash-like", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that offers local bash-like shell integrations", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-carbon-themes/CHANGELOG.md b/plugins/plugin-carbon-themes/CHANGELOG.md index 5f3616adcef..f7d0ecf4a5d 100644 --- a/plugins/plugin-carbon-themes/CHANGELOG.md +++ b/plugins/plugin-carbon-themes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-carbon-themes + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-carbon-themes diff --git a/plugins/plugin-carbon-themes/package.json b/plugins/plugin-carbon-themes/package.json index 41df5e5081e..4826a2eae53 100644 --- a/plugins/plugin-carbon-themes/package.json +++ b/plugins/plugin-carbon-themes/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-carbon-themes", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin offering a Carbon Components-inspired set of themes", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-client-alternate/CHANGELOG.md b/plugins/plugin-client-alternate/CHANGELOG.md index a5cebf61f73..69f02bfb072 100644 --- a/plugins/plugin-client-alternate/CHANGELOG.md +++ b/plugins/plugin-client-alternate/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/kubernetes-sigs/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-client-alternate + ## [10.4.5](https://github.com/kubernetes-sigs/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-client-alternate diff --git a/plugins/plugin-client-alternate/package.json b/plugins/plugin-client-alternate/package.json index 7578a93f163..241a3c4046a 100644 --- a/plugins/plugin-client-alternate/package.json +++ b/plugins/plugin-client-alternate/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-client-alternate", - "version": "10.4.5", + "version": "10.4.6", "description": "", "main": "dist/index.js", "module": "mdist/index.js", diff --git a/plugins/plugin-client-common/CHANGELOG.md b/plugins/plugin-client-common/CHANGELOG.md index 9b9c6a84167..aad826a3ece 100644 --- a/plugins/plugin-client-common/CHANGELOG.md +++ b/plugins/plugin-client-common/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Bug Fixes + +- **packages/core:** pipeStages splits command with >> incorrectly ([28f427b](https://github.com/IBM/kui/commit/28f427b)), closes [#7413](https://github.com/IBM/kui/issues/7413) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) ### Bug Fixes diff --git a/plugins/plugin-client-common/package.json b/plugins/plugin-client-common/package.json index 1e6ab261bfc..7175f2f2c5b 100644 --- a/plugins/plugin-client-common/package.json +++ b/plugins/plugin-client-common/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-client-common", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that offers stylesheets", "license": "Apache-2.0", "author": "Mengting Yan", diff --git a/plugins/plugin-client-default/CHANGELOG.md b/plugins/plugin-client-default/CHANGELOG.md index fa62518bbdf..d8b3771d64c 100644 --- a/plugins/plugin-client-default/CHANGELOG.md +++ b/plugins/plugin-client-default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-client + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-client diff --git a/plugins/plugin-client-default/package.json b/plugins/plugin-client-default/package.json index c7259f390ba..22a47db9ea5 100644 --- a/plugins/plugin-client-default/package.json +++ b/plugins/plugin-client-default/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-client", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that offers client defintion", "main": "dist/index.js", "module": "mdist/index.js", diff --git a/plugins/plugin-client-notebook/CHANGELOG.md b/plugins/plugin-client-notebook/CHANGELOG.md index 1afa1e85cc6..fbc25c43880 100644 --- a/plugins/plugin-client-notebook/CHANGELOG.md +++ b/plugins/plugin-client-notebook/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-client-notebooks + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-client-notebooks diff --git a/plugins/plugin-client-notebook/package.json b/plugins/plugin-client-notebook/package.json index 60986283c1b..fd8f5062c47 100644 --- a/plugins/plugin-client-notebook/package.json +++ b/plugins/plugin-client-notebook/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-client-notebooks", - "version": "10.4.5", + "version": "10.4.6", "description": "A Kui client that serves up notebooks", "main": "dist/index.js", "module": "mdist/index.js", diff --git a/plugins/plugin-client-test/CHANGELOG.md b/plugins/plugin-client-test/CHANGELOG.md index f737446582f..4367de025f3 100644 --- a/plugins/plugin-client-test/CHANGELOG.md +++ b/plugins/plugin-client-test/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-test-client + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-test-client diff --git a/plugins/plugin-client-test/package.json b/plugins/plugin-client-test/package.json index 3971bb85648..106a22c238e 100644 --- a/plugins/plugin-client-test/package.json +++ b/plugins/plugin-client-test/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-test-client", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that offers client defintion", "main": "dist/index.js", "module": "mdist/index.js", diff --git a/plugins/plugin-core-support/CHANGELOG.md b/plugins/plugin-core-support/CHANGELOG.md index c0efa1cd7bf..eee582fcbf0 100644 --- a/plugins/plugin-core-support/CHANGELOG.md +++ b/plugins/plugin-core-support/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-core-support + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-core-support diff --git a/plugins/plugin-core-support/package.json b/plugins/plugin-core-support/package.json index 1b4b4c3e767..5b6ab81aa89 100644 --- a/plugins/plugin-core-support/package.json +++ b/plugins/plugin-core-support/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-core-support", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin offering core extensions such as help and screenshot commands", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-core-themes/CHANGELOG.md b/plugins/plugin-core-themes/CHANGELOG.md index d233f62f356..6d3af458a9a 100644 --- a/plugins/plugin-core-themes/CHANGELOG.md +++ b/plugins/plugin-core-themes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-core-themes + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-core-themes diff --git a/plugins/plugin-core-themes/package.json b/plugins/plugin-core-themes/package.json index b5e9c14909c..35d76648725 100644 --- a/plugins/plugin-core-themes/package.json +++ b/plugins/plugin-core-themes/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-core-themes", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin offering a standard set of themes", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-electron-components/CHANGELOG.md b/plugins/plugin-electron-components/CHANGELOG.md index 3d092dac29e..1f6a5bc7d6f 100644 --- a/plugins/plugin-electron-components/CHANGELOG.md +++ b/plugins/plugin-electron-components/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-electron-components + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-electron-components diff --git a/plugins/plugin-electron-components/package.json b/plugins/plugin-electron-components/package.json index 1d480b9fc46..a7ef170bfec 100644 --- a/plugins/plugin-electron-components/package.json +++ b/plugins/plugin-electron-components/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-electron-components", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that houses electron-specific React components", "license": "Apache-2.0", "author": "@starpit", diff --git a/plugins/plugin-git/CHANGELOG.md b/plugins/plugin-git/CHANGELOG.md index 64a638e33e0..a20757c9be1 100644 --- a/plugins/plugin-git/CHANGELOG.md +++ b/plugins/plugin-git/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-git + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-git diff --git a/plugins/plugin-git/package.json b/plugins/plugin-git/package.json index 9d1dbc0fd94..1cf256a8f9b 100644 --- a/plugins/plugin-git/package.json +++ b/plugins/plugin-git/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-git", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that offers git integrations", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-iter8/CHANGELOG.md b/plugins/plugin-iter8/CHANGELOG.md index 40b9f337a61..e4ade870e7e 100644 --- a/plugins/plugin-iter8/CHANGELOG.md +++ b/plugins/plugin-iter8/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/kubernetes-sigs/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-iter8 + ## [10.4.5](https://github.com/kubernetes-sigs/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-iter8 diff --git a/plugins/plugin-iter8/package.json b/plugins/plugin-iter8/package.json index d293eb2c00c..882c963f37f 100644 --- a/plugins/plugin-iter8/package.json +++ b/plugins/plugin-iter8/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-iter8", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that offers Iter8 integration", "author": "Yan Yan Huang", "contributors": [ diff --git a/plugins/plugin-kubectl-flow-views/CHANGELOG.md b/plugins/plugin-kubectl-flow-views/CHANGELOG.md index 915ebf8bd03..d4fd88f4894 100644 --- a/plugins/plugin-kubectl-flow-views/CHANGELOG.md +++ b/plugins/plugin-kubectl-flow-views/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-kubectl-flow-views + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-kubectl-flow-views diff --git a/plugins/plugin-kubectl-flow-views/package.json b/plugins/plugin-kubectl-flow-views/package.json index 163dbb377df..27a1d17050a 100644 --- a/plugins/plugin-kubectl-flow-views/package.json +++ b/plugins/plugin-kubectl-flow-views/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-kubectl-flow-views", - "version": "10.4.5", + "version": "10.4.6", "description": "Kubectl flow visualizations for Kui", "license": "Apache-2.0", "keywords": [ diff --git a/plugins/plugin-kubectl/CHANGELOG.md b/plugins/plugin-kubectl/CHANGELOG.md index 504c23492b7..b8bdd9a343f 100644 --- a/plugins/plugin-kubectl/CHANGELOG.md +++ b/plugins/plugin-kubectl/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Bug Fixes + +- **plugins/plugin-kubectl:** Deployment Summary Ready shows "undefined/N" if there are no pods ready yet ([9ddfd03](https://github.com/IBM/kui/commit/9ddfd03)) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) ### Bug Fixes diff --git a/plugins/plugin-kubectl/package.json b/plugins/plugin-kubectl/package.json index dfe851d5be7..53887b1c798 100644 --- a/plugins/plugin-kubectl/package.json +++ b/plugins/plugin-kubectl/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-kubectl", - "version": "10.4.5", + "version": "10.4.6", "description": "Kubernetes visualization plugin for kubernetes", "license": "Apache-2.0", "keywords": [ diff --git a/plugins/plugin-patternfly4-themes/CHANGELOG.md b/plugins/plugin-patternfly4-themes/CHANGELOG.md index 71bbd3c238b..32d1dbbe06b 100644 --- a/plugins/plugin-patternfly4-themes/CHANGELOG.md +++ b/plugins/plugin-patternfly4-themes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-patternfly4-themes + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-patternfly4-themes diff --git a/plugins/plugin-patternfly4-themes/package.json b/plugins/plugin-patternfly4-themes/package.json index 5166d2b744a..1173287069b 100644 --- a/plugins/plugin-patternfly4-themes/package.json +++ b/plugins/plugin-patternfly4-themes/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-patternfly4-themes", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin offering a Patternfly4-inspired set of themes", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-proxy-support/CHANGELOG.md b/plugins/plugin-proxy-support/CHANGELOG.md index 7063fef831f..a7c47aae6d2 100644 --- a/plugins/plugin-proxy-support/CHANGELOG.md +++ b/plugins/plugin-proxy-support/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Features + +- Add support to Kui proxy for pre-shared-key authorization ([0fb1c71](https://github.com/IBM/kui/commit/0fb1c71)), closes [#7772](https://github.com/IBM/kui/issues/7772) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-proxy-support diff --git a/plugins/plugin-proxy-support/package.json b/plugins/plugin-proxy-support/package.json index f478dc76023..ee9aae14b17 100644 --- a/plugins/plugin-proxy-support/package.json +++ b/plugins/plugin-proxy-support/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-proxy-support", - "version": "10.4.5", + "version": "10.4.6", "description": "Kui plugin that adds runtime support for proxied communication", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-s3/CHANGELOG.md b/plugins/plugin-s3/CHANGELOG.md index f5d056b8550..6adfab0e4ec 100644 --- a/plugins/plugin-s3/CHANGELOG.md +++ b/plugins/plugin-s3/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +### Bug Fixes + +- **plugins/plugin-s3:** leftover debugging in plugin-s3 ([b91c945](https://github.com/IBM/kui/commit/b91c945)), closes [#7767](https://github.com/IBM/kui/issues/7767) +- **plugins/plugin-s3:** s3 bind mounts don't behave correctly with clicks in ls output ([1ac7cd1](https://github.com/IBM/kui/commit/1ac7cd1)), closes [#7764](https://github.com/IBM/kui/issues/7764) + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) ### Bug Fixes diff --git a/plugins/plugin-s3/package.json b/plugins/plugin-s3/package.json index 185394655aa..068f8b713ba 100644 --- a/plugins/plugin-s3/package.json +++ b/plugins/plugin-s3/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-s3", - "version": "10.4.5", + "version": "10.4.6", "description": "s3 related commands for Kui", "license": "Apache-2.0", "keywords": [ diff --git a/plugins/plugin-wskflow/CHANGELOG.md b/plugins/plugin-wskflow/CHANGELOG.md index 87241c63111..4628639eafc 100644 --- a/plugins/plugin-wskflow/CHANGELOG.md +++ b/plugins/plugin-wskflow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.4.6](https://github.com/IBM/kui/compare/v10.4.5...v10.4.6) (2021-07-06) + +**Note:** Version bump only for package @kui-shell/plugin-wskflow + ## [10.4.5](https://github.com/IBM/kui/compare/v10.4.4...v10.4.5) (2021-07-01) **Note:** Version bump only for package @kui-shell/plugin-wskflow diff --git a/plugins/plugin-wskflow/package.json b/plugins/plugin-wskflow/package.json index 016f850dbb2..233a82acdc9 100644 --- a/plugins/plugin-wskflow/package.json +++ b/plugins/plugin-wskflow/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-wskflow", - "version": "10.4.5", + "version": "10.4.6", "description": "Visualizations for Composer apps", "license": "Apache-2.0", "author": "Kerry Chang",