Skip to content

Commit

Permalink
chore(release): 8.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [8.0.0](v7.6.0...v8.0.0) (2024-08-02)

### Bug Fixes

* **apply:** print file name when there is a parsing error ([413ce94](413ce94))
* **auth:** do not save password in cli config ([08a399c](08a399c))
* **bootstrap:** handle exceptions thrown by the cli ([d703df3](d703df3))
* **configtree:** prefix keys with '/' when importing to etcd ([#336](#336)) ([9c74fb5](9c74fb5))
* **configtree:** update sentinel key when tree is imported in etcd ([#337](#337)) ([8ea304b](8ea304b))
* **deployment:** show errors in deployments list ([66f2c7f](66f2c7f))
* **device:** filter uploaded files by name in name_to_request_id ([7348be2](7348be2))
* **jsonschema:** add platform as a product for virtual devices ([#338](#338)) ([6eb50f0](6eb50f0))
* **organization:** fix organization select command ([#339](#339)) ([7943a4a](7943a4a))
* **package:** update the imageTag regex to support semver tags ([#335](#335)) ([6e17408](6e17408))
* **v2client:** set organizationguid header by default ([#330](#330)) ([eaa1185](eaa1185))

### Features

* adds command to list explain examples ([3fc228e](3fc228e))
* **template:** sort rendered templates by file-name ([161ddfc](161ddfc))

### BREAKING CHANGES

* **auth:** The password is no longer saved in the riocli
config.json file.

Wrike Ticket: https://www.wrike.com/open.htm?id=1162009098
  • Loading branch information
semantic-release-bot committed Aug 2, 2024
1 parent d8c02fd commit 96438a1
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# [8.0.0](https://github.com/rapyuta-robotics/rapyuta-io-cli/compare/v7.6.0...v8.0.0) (2024-08-02)


### Bug Fixes

* **apply:** print file name when there is a parsing error ([413ce94](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/413ce94d7a5b039753342951b04411c2bc88ab91))
* **auth:** do not save password in cli config ([08a399c](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/08a399c52874b13786d4f9114fa3ae84b98ce95c))
* **bootstrap:** handle exceptions thrown by the cli ([d703df3](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/d703df3d107c2656b1ff128d49f89769ee739860))
* **configtree:** prefix keys with '/' when importing to etcd ([#336](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/336)) ([9c74fb5](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/9c74fb54c24c2083c4c7aa72a9c33dd4fa52d764))
* **configtree:** update sentinel key when tree is imported in etcd ([#337](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/337)) ([8ea304b](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/8ea304b914e5708d2ce8cb87ac9c88de11ff7b7c))
* **deployment:** show errors in deployments list ([66f2c7f](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/66f2c7f721181df35b3d4d6102f4d74d35f9024c))
* **device:** filter uploaded files by name in name_to_request_id ([7348be2](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/7348be2a022bfea965000d147e2804e053fb5757))
* **jsonschema:** add platform as a product for virtual devices ([#338](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/338)) ([6eb50f0](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/6eb50f0ab2bfb5e169b97654a94d7c5edbe3d6a9))
* **organization:** fix organization select command ([#339](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/339)) ([7943a4a](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/7943a4afa43cb1a191664b1c460473889201ade5))
* **package:** update the imageTag regex to support semver tags ([#335](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/335)) ([6e17408](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/6e1740805365c89e3b35427e70e6ab8e94aa1ad9))
* **v2client:** set organizationguid header by default ([#330](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/330)) ([eaa1185](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/eaa118513676370fefdc3e6867094d443192dd1f))


### Features

* adds command to list explain examples ([3fc228e](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/3fc228efed5db5e79f31826bfc851339ad121182))
* **template:** sort rendered templates by file-name ([161ddfc](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/161ddfcb257caece8be40b272abbb6d1f643b165))


### BREAKING CHANGES

* **auth:** The password is no longer saved in the riocli
config.json file.

Wrike Ticket: https://www.wrike.com/open.htm?id=1162009098

# [7.6.0](https://github.com/rapyuta-robotics/rapyuta-io-cli/compare/v7.5.0...v7.6.0) (2024-07-04)


Expand Down
2 changes: 1 addition & 1 deletion riocli/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "7.6.0"
__version__ = "8.0.0"

import os
import pretty_traceback
Expand Down

0 comments on commit 96438a1

Please sign in to comment.