From f962b831db1a9faac2596cc4f587227d11110e3f Mon Sep 17 00:00:00 2001 From: Nick Mitchell Date: Mon, 12 Oct 2020 18:17:19 -0400 Subject: [PATCH] v9.0.2 --- CHANGELOG.md | 19 +++++++++++++++++++ lerna.json | 2 +- packages/builder/CHANGELOG.md | 4 ++++ packages/builder/package.json | 2 +- packages/core/CHANGELOG.md | 8 ++++++++ packages/core/package.json | 2 +- packages/proxy/CHANGELOG.md | 4 ++++ packages/proxy/package.json | 2 +- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 2 +- packages/test/CHANGELOG.md | 4 ++++ packages/test/package.json | 2 +- packages/webpack/CHANGELOG.md | 4 ++++ packages/webpack/package.json | 2 +- plugins/plugin-bash-like/CHANGELOG.md | 4 ++++ plugins/plugin-bash-like/package.json | 2 +- plugins/plugin-carbon-themes/CHANGELOG.md | 4 ++++ plugins/plugin-carbon-themes/package.json | 2 +- plugins/plugin-client-alternate/CHANGELOG.md | 4 ++++ plugins/plugin-client-alternate/package.json | 2 +- plugins/plugin-client-common/CHANGELOG.md | 13 +++++++++++++ plugins/plugin-client-common/package.json | 2 +- plugins/plugin-client-default/CHANGELOG.md | 4 ++++ plugins/plugin-client-default/package.json | 2 +- plugins/plugin-client-notebook/CHANGELOG.md | 7 +++++++ plugins/plugin-client-notebook/package.json | 2 +- plugins/plugin-client-test/CHANGELOG.md | 4 ++++ plugins/plugin-client-test/package.json | 2 +- plugins/plugin-core-support/CHANGELOG.md | 4 ++++ plugins/plugin-core-support/package.json | 2 +- plugins/plugin-core-themes/CHANGELOG.md | 4 ++++ plugins/plugin-core-themes/package.json | 2 +- .../plugin-electron-components/CHANGELOG.md | 4 ++++ .../plugin-electron-components/package.json | 2 +- plugins/plugin-git/CHANGELOG.md | 4 ++++ plugins/plugin-git/package.json | 2 +- plugins/plugin-ibmcloud/CHANGELOG.md | 7 +++++++ plugins/plugin-ibmcloud/package.json | 2 +- plugins/plugin-iter8/CHANGELOG.md | 4 ++++ plugins/plugin-iter8/package.json | 2 +- .../plugin-kubectl-flow-views/CHANGELOG.md | 4 ++++ .../plugin-kubectl-flow-views/package.json | 2 +- plugins/plugin-kubectl/CHANGELOG.md | 4 ++++ plugins/plugin-kubectl/package.json | 2 +- .../plugin-patternfly4-themes/CHANGELOG.md | 4 ++++ .../plugin-patternfly4-themes/package.json | 2 +- plugins/plugin-proxy-support/CHANGELOG.md | 4 ++++ plugins/plugin-proxy-support/package.json | 2 +- plugins/plugin-s3/CHANGELOG.md | 9 +++++++++ plugins/plugin-s3/package.json | 2 +- plugins/plugin-skeleton/CHANGELOG.md | 4 ++++ plugins/plugin-skeleton/package.json | 2 +- plugins/plugin-wskflow/CHANGELOG.md | 4 ++++ plugins/plugin-wskflow/package.json | 2 +- 54 files changed, 174 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81a85919113..e6d811d1fd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +### Bug Fixes + +- **plugins/plugin-client-common:** active pty output doesn't have repl-context ([5b4173d](https://github.com/IBM/kui/commit/5b4173d)), closes [#5960](https://github.com/IBM/kui/issues/5960) +- **plugins/plugin-client-common:** remove leftover debugging in Scalar/index ([29d73ce](https://github.com/IBM/kui/commit/29d73ce)), closes [#5945](https://github.com/IBM/kui/issues/5945) +- **plugins/plugin-client-notebook:** github button in notebook client does not have hover effect ([e301fe0](https://github.com/IBM/kui/commit/e301fe0)), closes [#5941](https://github.com/IBM/kui/issues/5941) +- **plugins/plugin-client-notebook:** notebook client's version widget has a hard-wired version ([b29c0aa](https://github.com/IBM/kui/commit/b29c0aa)), closes [#5942](https://github.com/IBM/kui/issues/5942) +- **plugins/plugin-ibmcloud:** further refinements are needed for ibmcloud cos credentials validation ([85e3015](https://github.com/IBM/kui/commit/85e3015)), closes [#5962](https://github.com/IBM/kui/issues/5962) +- **plugins/plugin-s3:** improve s3 parallelization notebook ([9ee0808](https://github.com/IBM/kui/commit/9ee0808)), closes [#5957](https://github.com/IBM/kui/issues/5957) +- a few more improvements to s3 onboarding ([6c57c16](https://github.com/IBM/kui/commit/6c57c16)), closes [#5947](https://github.com/IBM/kui/issues/5947) +- improve error reporting from APIs ([fb90eaf](https://github.com/IBM/kui/commit/fb90eaf)), closes [#5950](https://github.com/IBM/kui/issues/5950) +- preferReExecute is lost when re-saving a notebook ([d68a9c3](https://github.com/IBM/kui/commit/d68a9c3)), closes [#5954](https://github.com/IBM/kui/issues/5954) +- **plugins/plugin-s3:** using s3 notebook has an ECONNREFUSED ([6e24222](https://github.com/IBM/kui/commit/6e24222)), closes [#5952](https://github.com/IBM/kui/issues/5952) + +### Features + +- **plugins/plugin-client-common:** error messages should format as markdown ([b072898](https://github.com/IBM/kui/commit/b072898)), closes [#5943](https://github.com/IBM/kui/issues/5943) + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/lerna.json b/lerna.json index ff87b65fbcd..0fa9f3843d1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*", "plugins/*"], - "version": "9.0.1", + "version": "9.0.2", "command": { "publish": { "conventionalCommits": true diff --git a/packages/builder/CHANGELOG.md b/packages/builder/CHANGELOG.md index 88dfa0a399a..ba8500f3a67 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/builder + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **Note:** Version bump only for package @kui-shell/builder diff --git a/packages/builder/package.json b/packages/builder/package.json index 5d96f1bd44f..4e102d480eb 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/builder", - "version": "9.0.1", + "version": "9.0.2", "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 a3956b6890a..d74aee8913f 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +### Bug Fixes + +- a few more improvements to s3 onboarding ([6c57c16](https://github.com/IBM/kui/commit/6c57c16)), closes [#5947](https://github.com/IBM/kui/issues/5947) +- improve error reporting from APIs ([fb90eaf](https://github.com/IBM/kui/commit/fb90eaf)), closes [#5950](https://github.com/IBM/kui/issues/5950) +- preferReExecute is lost when re-saving a notebook ([d68a9c3](https://github.com/IBM/kui/commit/d68a9c3)), closes [#5954](https://github.com/IBM/kui/issues/5954) + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/packages/core/package.json b/packages/core/package.json index 389c71e1f01..a77d41d2999 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/core", - "version": "9.0.1", + "version": "9.0.2", "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 4e050dd2714..91513ebfac2 100644 --- a/packages/proxy/CHANGELOG.md +++ b/packages/proxy/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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/proxy + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **Note:** Version bump only for package @kui-shell/proxy diff --git a/packages/proxy/package.json b/packages/proxy/package.json index 2f39f82b620..8bd0ae3a8a1 100644 --- a/packages/proxy/package.json +++ b/packages/proxy/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/proxy", - "version": "9.0.1", + "version": "9.0.2", "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 3f386f15c54..251589d23f9 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/react + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **Note:** Version bump only for package @kui-shell/react diff --git a/packages/react/package.json b/packages/react/package.json index 126cad6e331..8cecfa1f26c 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/react", - "version": "9.0.1", + "version": "9.0.2", "description": "Kui react enablement", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/packages/test/CHANGELOG.md b/packages/test/CHANGELOG.md index 4518a4f658b..10dcfa51ea0 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/test + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **Note:** Version bump only for package @kui-shell/test diff --git a/packages/test/package.json b/packages/test/package.json index 565b5472245..abad488ae50 100644 --- a/packages/test/package.json +++ b/packages/test/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/test", - "version": "9.0.1", + "version": "9.0.2", "description": "", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index cd5048ab331..da93979f423 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/webpack + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **Note:** Version bump only for package @kui-shell/webpack diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 3d371dacbb3..839d1ccb669 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/webpack", - "version": "9.0.1", + "version": "9.0.2", "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 f9ecd9b0d7a..8efd4bbaa02 100644 --- a/plugins/plugin-bash-like/CHANGELOG.md +++ b/plugins/plugin-bash-like/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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-bash-like + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-bash-like/package.json b/plugins/plugin-bash-like/package.json index 924671936b8..944a441d5c3 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": "9.0.1", + "version": "9.0.2", "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 9fc6826c384..f8e3470fe50 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-carbon-themes + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 34a1b8caeff..2df4186187e 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": "9.0.1", + "version": "9.0.2", "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 eaf8755ffd2..949e308cbf6 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-client-alternate + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 b8a62c900be..357006c6e8e 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": "9.0.1", + "version": "9.0.2", "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 759109bed05..99a44008199 100644 --- a/plugins/plugin-client-common/CHANGELOG.md +++ b/plugins/plugin-client-common/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +### Bug Fixes + +- **plugins/plugin-client-common:** active pty output doesn't have repl-context ([5b4173d](https://github.com/IBM/kui/commit/5b4173d)), closes [#5960](https://github.com/IBM/kui/issues/5960) +- improve error reporting from APIs ([fb90eaf](https://github.com/IBM/kui/commit/fb90eaf)), closes [#5950](https://github.com/IBM/kui/issues/5950) +- preferReExecute is lost when re-saving a notebook ([d68a9c3](https://github.com/IBM/kui/commit/d68a9c3)), closes [#5954](https://github.com/IBM/kui/issues/5954) +- **plugins/plugin-client-common:** remove leftover debugging in Scalar/index ([29d73ce](https://github.com/IBM/kui/commit/29d73ce)), closes [#5945](https://github.com/IBM/kui/issues/5945) + +### Features + +- **plugins/plugin-client-common:** error messages should format as markdown ([b072898](https://github.com/IBM/kui/commit/b072898)), closes [#5943](https://github.com/IBM/kui/issues/5943) + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-client-common/package.json b/plugins/plugin-client-common/package.json index ccf1a91290b..0a0ea446b73 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": "9.0.1", + "version": "9.0.2", "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 8043a40978d..fb4a4a7705c 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-client + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 db392cf9956..f08cca68862 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": "9.0.1", + "version": "9.0.2", "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 66bf5d3873b..04ee7645deb 100644 --- a/plugins/plugin-client-notebook/CHANGELOG.md +++ b/plugins/plugin-client-notebook/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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +### Bug Fixes + +- **plugins/plugin-client-notebook:** github button in notebook client does not have hover effect ([e301fe0](https://github.com/IBM/kui/commit/e301fe0)), closes [#5941](https://github.com/IBM/kui/issues/5941) +- **plugins/plugin-client-notebook:** notebook client's version widget has a hard-wired version ([b29c0aa](https://github.com/IBM/kui/commit/b29c0aa)), closes [#5942](https://github.com/IBM/kui/issues/5942) + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-client-notebook/package.json b/plugins/plugin-client-notebook/package.json index 79b02b0246c..94d4c116c1c 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": "9.0.1", + "version": "9.0.2", "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 28e04e655a6..8b65d8ef1e9 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-test-client + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 ef53aa66ef7..d822287e38b 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": "9.0.1", + "version": "9.0.2", "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 3a7b0a1f9ea..a25dfa6cc94 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-core-support + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-core-support/package.json b/plugins/plugin-core-support/package.json index 72340c17de3..8b42c7eef52 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": "9.0.1", + "version": "9.0.2", "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 5740a294d2f..8e9b6775b04 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-core-themes + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 44a7aeefa4b..8a7062d5872 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": "9.0.1", + "version": "9.0.2", "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 35677625bb7..e3ffd91a056 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-electron-components + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 5678c63c950..f74686b283a 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": "9.0.1", + "version": "9.0.2", "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 b758556bc41..ce3304f9f00 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-git + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 e463d566d06..f019e5e7325 100644 --- a/plugins/plugin-git/package.json +++ b/plugins/plugin-git/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-git", - "version": "9.0.1", + "version": "9.0.2", "description": "Kui plugin that offers git integrations", "license": "Apache-2.0", "author": "Nick Mitchell", diff --git a/plugins/plugin-ibmcloud/CHANGELOG.md b/plugins/plugin-ibmcloud/CHANGELOG.md index 4092f87a515..b8c540915a9 100644 --- a/plugins/plugin-ibmcloud/CHANGELOG.md +++ b/plugins/plugin-ibmcloud/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. +## [9.0.2](https://github.com/kui-shell/plugin-kubeui/compare/v9.0.1...v9.0.2) (2020-10-12) + +### Bug Fixes + +- **plugins/plugin-ibmcloud:** further refinements are needed for ibmcloud cos credentials validation ([85e3015](https://github.com/kui-shell/plugin-kubeui/commit/85e3015)), closes [#5962](https://github.com/kui-shell/plugin-kubeui/issues/5962) +- a few more improvements to s3 onboarding ([6c57c16](https://github.com/kui-shell/plugin-kubeui/commit/6c57c16)), closes [#5947](https://github.com/kui-shell/plugin-kubeui/issues/5947) + ## [9.0.1](https://github.com/kui-shell/plugin-kubeui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-ibmcloud/package.json b/plugins/plugin-ibmcloud/package.json index 5c997296075..a166b6152e8 100644 --- a/plugins/plugin-ibmcloud/package.json +++ b/plugins/plugin-ibmcloud/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-ibmcloud", - "version": "9.0.1", + "version": "9.0.2", "description": "ibmcloud kubernetes service kui plugin", "license": "Apache-2.0", "keywords": [ diff --git a/plugins/plugin-iter8/CHANGELOG.md b/plugins/plugin-iter8/CHANGELOG.md index 6b174b53c04..e49bf5bfd7e 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-iter8 + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-iter8/package.json b/plugins/plugin-iter8/package.json index 5e53ca8e49c..2f408702426 100644 --- a/plugins/plugin-iter8/package.json +++ b/plugins/plugin-iter8/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-iter8", - "version": "9.0.1", + "version": "9.0.2", "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 c0726a9df14..08f529941df 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-kubectl-flow-views + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 454e4067c56..0efb428b7cd 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": "9.0.1", + "version": "9.0.2", "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 10144f0f5f2..b7cf6020f1a 100644 --- a/plugins/plugin-kubectl/CHANGELOG.md +++ b/plugins/plugin-kubectl/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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-kubectl + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-kubectl/package.json b/plugins/plugin-kubectl/package.json index d0f9ad02e07..bcc4d40642c 100644 --- a/plugins/plugin-kubectl/package.json +++ b/plugins/plugin-kubectl/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-kubectl", - "version": "9.0.1", + "version": "9.0.2", "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 656ba4b01f0..fd7d8835c07 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-patternfly4-themes + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 4dbbf008d11..7f20287ed75 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": "9.0.1", + "version": "9.0.2", "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 aa7755d3207..f70977e6b65 100644 --- a/plugins/plugin-proxy-support/CHANGELOG.md +++ b/plugins/plugin-proxy-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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-proxy-support + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-proxy-support/package.json b/plugins/plugin-proxy-support/package.json index d45198a90a6..c834c327fba 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": "9.0.1", + "version": "9.0.2", "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 008baec5d1c..41d355d945f 100644 --- a/plugins/plugin-s3/CHANGELOG.md +++ b/plugins/plugin-s3/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +### Bug Fixes + +- **plugins/plugin-s3:** improve s3 parallelization notebook ([9ee0808](https://github.com/IBM/kui/commit/9ee0808)), closes [#5957](https://github.com/IBM/kui/issues/5957) +- preferReExecute is lost when re-saving a notebook ([d68a9c3](https://github.com/IBM/kui/commit/d68a9c3)), closes [#5954](https://github.com/IBM/kui/issues/5954) +- **plugins/plugin-s3:** using s3 notebook has an ECONNREFUSED ([6e24222](https://github.com/IBM/kui/commit/6e24222)), closes [#5952](https://github.com/IBM/kui/issues/5952) +- a few more improvements to s3 onboarding ([6c57c16](https://github.com/IBM/kui/commit/6c57c16)), closes [#5947](https://github.com/IBM/kui/issues/5947) + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) ### Bug Fixes diff --git a/plugins/plugin-s3/package.json b/plugins/plugin-s3/package.json index 334c65ea619..8368b1c1f88 100644 --- a/plugins/plugin-s3/package.json +++ b/plugins/plugin-s3/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-s3", - "version": "9.0.1", + "version": "9.0.2", "description": "s3 related commands for Kui", "license": "Apache-2.0", "keywords": [ diff --git a/plugins/plugin-skeleton/CHANGELOG.md b/plugins/plugin-skeleton/CHANGELOG.md index 65604f4e300..6974c785499 100644 --- a/plugins/plugin-skeleton/CHANGELOG.md +++ b/plugins/plugin-skeleton/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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-skeleton + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **Note:** Version bump only for package @kui-shell/plugin-skeleton diff --git a/plugins/plugin-skeleton/package.json b/plugins/plugin-skeleton/package.json index 8e0ee6422bf..50f0c6d69af 100644 --- a/plugins/plugin-skeleton/package.json +++ b/plugins/plugin-skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-skeleton", - "version": "9.0.1", + "version": "9.0.2", "description": "", "main": "mdist/index.js", "scripts": { diff --git a/plugins/plugin-wskflow/CHANGELOG.md b/plugins/plugin-wskflow/CHANGELOG.md index dfd55bd7500..19e42cedf45 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. +## [9.0.2](https://github.com/IBM/kui/compare/v9.0.1...v9.0.2) (2020-10-12) + +**Note:** Version bump only for package @kui-shell/plugin-wskflow + ## [9.0.1](https://github.com/IBM/kui/compare/v9.0.0...v9.0.1) (2020-10-10) **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 6a3b8388b53..8d57e4af393 100644 --- a/plugins/plugin-wskflow/package.json +++ b/plugins/plugin-wskflow/package.json @@ -1,6 +1,6 @@ { "name": "@kui-shell/plugin-wskflow", - "version": "9.0.1", + "version": "9.0.2", "description": "Visualizations for Composer apps", "license": "Apache-2.0", "author": "Kerry Chang",