From eb55cbeae16e902ff78e52f703d9d204452a5b50 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 7 Mar 2023 19:17:30 +0000 Subject: [PATCH] chore(release): 1.34.0 [skip ci] # [1.34.0](https://github.com/architect-team/architect-cli/compare/v1.33.2...v1.34.0) (2023-03-07) ### Bug Fixes * **cluster:create:** Make sure a cluster name is unique before creation ([#840](https://github.com/architect-team/architect-cli/issues/840)) ([27d14f7](https://github.com/architect-team/architect-cli/commit/27d14f7a4b93dc22f21e3e16f1762f80f7d2f261)) * **deploy:** Add missing flags from register to deploy ([#849](https://github.com/architect-team/architect-cli/issues/849)) ([61c3349](https://github.com/architect-team/architect-cli/commit/61c33496f3502a2a9918aeec5229a72b2a5e23cc)) * **dev:restart:** Default --build to true ([#847](https://github.com/architect-team/architect-cli/issues/847)) ([dbf8cc0](https://github.com/architect-team/architect-cli/commit/dbf8cc000aabfe00145208924fee8ad220acce4c)) * **dev:** Update description of environment flag to emphasize it is for local use only ([e9a66c4](https://github.com/architect-team/architect-cli/commit/e9a66c4ae7b1c4c2f023c7ac0f7a93180d84a5c6)) * **init:** Depends on now supports dictionaries ([#848](https://github.com/architect-team/architect-cli/issues/848)) ([30fedca](https://github.com/architect-team/architect-cli/commit/30fedca35dbcdc5b4bf42847c8792d4196873264)) * **register:** Hard remove old cache directory before renaming ([#846](https://github.com/architect-team/architect-cli/issues/846)) ([a9e2720](https://github.com/architect-team/architect-cli/commit/a9e2720b581c015a15d1afcba1c810e47c23d17d)) * **spec:** Remove parameters ([#808](https://github.com/architect-team/architect-cli/issues/808)) ([72cb793](https://github.com/architect-team/architect-cli/commit/72cb7937ad82239add6807eee65c27fbde4cbd31)) ### Features * **dev:restart:** Add dev:restart command ([#842](https://github.com/architect-team/architect-cli/issues/842)) ([93d10cf](https://github.com/architect-team/architect-cli/commit/93d10cf01ffb5a75f00aa3a46f54c616d8a00750)) --- CHANGELOG.md | 18 +++++++++++++++ README.md | 56 +++++++++++++++++++++++------------------------ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 49 insertions(+), 31 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f24e9179..505c793fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# [1.34.0](https://github.com/architect-team/architect-cli/compare/v1.33.2...v1.34.0) (2023-03-07) + + +### Bug Fixes + +* **cluster:create:** Make sure a cluster name is unique before creation ([#840](https://github.com/architect-team/architect-cli/issues/840)) ([27d14f7](https://github.com/architect-team/architect-cli/commit/27d14f7a4b93dc22f21e3e16f1762f80f7d2f261)) +* **deploy:** Add missing flags from register to deploy ([#849](https://github.com/architect-team/architect-cli/issues/849)) ([61c3349](https://github.com/architect-team/architect-cli/commit/61c33496f3502a2a9918aeec5229a72b2a5e23cc)) +* **dev:restart:** Default --build to true ([#847](https://github.com/architect-team/architect-cli/issues/847)) ([dbf8cc0](https://github.com/architect-team/architect-cli/commit/dbf8cc000aabfe00145208924fee8ad220acce4c)) +* **dev:** Update description of environment flag to emphasize it is for local use only ([e9a66c4](https://github.com/architect-team/architect-cli/commit/e9a66c4ae7b1c4c2f023c7ac0f7a93180d84a5c6)) +* **init:** Depends on now supports dictionaries ([#848](https://github.com/architect-team/architect-cli/issues/848)) ([30fedca](https://github.com/architect-team/architect-cli/commit/30fedca35dbcdc5b4bf42847c8792d4196873264)) +* **register:** Hard remove old cache directory before renaming ([#846](https://github.com/architect-team/architect-cli/issues/846)) ([a9e2720](https://github.com/architect-team/architect-cli/commit/a9e2720b581c015a15d1afcba1c810e47c23d17d)) +* **spec:** Remove parameters ([#808](https://github.com/architect-team/architect-cli/issues/808)) ([72cb793](https://github.com/architect-team/architect-cli/commit/72cb7937ad82239add6807eee65c27fbde4cbd31)) + + +### Features + +* **dev:restart:** Add dev:restart command ([#842](https://github.com/architect-team/architect-cli/issues/842)) ([93d10cf](https://github.com/architect-team/architect-cli/commit/93d10cf01ffb5a75f00aa3a46f54c616d8a00750)) + ## [1.33.2](https://github.com/architect-team/architect-cli/compare/v1.33.1...v1.33.2) (2023-02-23) diff --git a/README.md b/README.md index 27a1e9186..26cabde7c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ $ npm install -g @architect-io/cli $ architect COMMAND running command... $ architect (--version) -@architect-io/cli/1.34.0-rc.6 linux-x64 node-v16.19.1 +@architect-io/cli/1.34.0-rc.7 linux-x64 node-v16.19.1 $ architect --help [COMMAND] USAGE $ architect COMMAND @@ -133,7 +133,7 @@ EXAMPLES $ architect component:versions --account=myaccount mycomponent ``` -_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/components/versions.ts)_ +_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/components/versions.ts)_ ## `architect config:get OPTION` @@ -153,7 +153,7 @@ EXAMPLES $ architect config:get log_level ``` -_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/config/get.ts)_ +_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/config/get.ts)_ ## `architect config:set OPTION VALUE` @@ -174,7 +174,7 @@ EXAMPLES $ architect config:set log_level info ``` -_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/config/set.ts)_ +_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/config/set.ts)_ ## `architect config:view` @@ -194,7 +194,7 @@ EXAMPLES $ architect config ``` -_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/config/view.ts)_ +_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/config/view.ts)_ ## `architect deploy [CONFIGS_OR_COMPONENTS]` @@ -238,7 +238,7 @@ EXAMPLES $ architect deploy ./myfolder/architect.yml --secret-file=./mysecrets.yml --environment=myenvironment --account=myaccount --auto-approve ``` -_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/deploy.ts)_ +_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/deploy.ts)_ ## `architect destroy` @@ -264,7 +264,7 @@ EXAMPLES $ architect destroy --account=myaccount --environment=myenvironment --auto-approve ``` -_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/destroy.ts)_ +_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/destroy.ts)_ ## `architect dev [CONFIGS_OR_COMPONENTS]` @@ -307,7 +307,7 @@ EXAMPLES $ architect dev --port=81 --browser=false --debug=true --secret-file=./mycomponent/mysecrets.yml ./mycomponent/architect.yml ``` -_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/dev/index.ts)_ +_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/dev/index.ts)_ ## `architect dev:list` @@ -328,7 +328,7 @@ EXAMPLES $ architect dev:list ``` -_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/dev/list.ts)_ +_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/dev/list.ts)_ ## `architect dev:restart [SERVICES]` @@ -356,7 +356,7 @@ EXAMPLES $ architect dev:restart hello-world.services.api hello-world.services.app ``` -_See code: [src/commands/dev/restart.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/dev/restart.ts)_ +_See code: [src/commands/dev/restart.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/dev/restart.ts)_ ## `architect dev:stop [NAME]` @@ -376,7 +376,7 @@ EXAMPLES $ architect dev:stop ``` -_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/dev/stop.ts)_ +_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/dev/stop.ts)_ ## `architect doctor` @@ -398,7 +398,7 @@ EXAMPLES $ architect doctor -o ./myoutput.yml ``` -_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/doctor.ts)_ +_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/doctor.ts)_ ## `architect environments:create [ENVIRONMENT]` @@ -433,7 +433,7 @@ EXAMPLES environment:create --account=myaccount --ttl=5days --description="My new temporary Architect environment" myenvironment ``` -_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/environments/create.ts)_ +_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/environments/create.ts)_ ## `architect environments:destroy [ENVIRONMENT]` @@ -467,7 +467,7 @@ EXAMPLES $ architect environment:deregister --account=myaccount --auto-approve --force myenvironment ``` -_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/environments/destroy.ts)_ +_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/environments/destroy.ts)_ ## `architect environments:ingresses [ENVIRONMENT]` @@ -492,7 +492,7 @@ ALIASES $ architect env:ingresses ``` -_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/environments/ingresses.ts)_ +_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/environments/ingresses.ts)_ ## `architect exec [RESOURCE] [FLAGS] -- [COMMAND]` @@ -528,7 +528,7 @@ EXAMPLES $ architect exec --account myaccount --environment myenvironment --replica 0 -- /bin/sh ``` -_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/exec.ts)_ +_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/exec.ts)_ ## `architect help [COMMAND]` @@ -578,7 +578,7 @@ EXAMPLES $ architect init --from-compose=mycompose.yml --component-file=architect.yml ``` -_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/init.ts)_ +_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/init.ts)_ ## `architect link [COMPONENTPATH]` @@ -600,7 +600,7 @@ EXAMPLES $ architect link -p ./mycomponent/architect.yml ``` -_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/link/index.ts)_ +_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/link/index.ts)_ ## `architect link:list` @@ -617,7 +617,7 @@ EXAMPLES $ architect link:list ``` -_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/link/list.ts)_ +_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/link/list.ts)_ ## `architect login` @@ -640,7 +640,7 @@ EXAMPLES $ architect login -e my-email-address@my-email-domain.com ``` -_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/login.ts)_ +_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/login.ts)_ ## `architect logout` @@ -657,7 +657,7 @@ EXAMPLES $ architect logout ``` -_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/logout.ts)_ +_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/logout.ts)_ ## `architect logs [RESOURCE]` @@ -691,7 +691,7 @@ EXAMPLES $ architect logs --follow --raw --timestamps ``` -_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/logs.ts)_ +_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/logs.ts)_ ## `architect register [COMPONENT]` @@ -733,7 +733,7 @@ EXAMPLES $ architect register -a myaccount -t latest --arg NODE_ENV=dev ./architect.yml ``` -_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/register.ts)_ +_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/register.ts)_ ## `architect scale [SERVICE]` @@ -764,7 +764,7 @@ EXAMPLES $ architect scale api --component my-component --clear ``` -_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/scale.ts)_ +_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/scale.ts)_ ## `architect secrets:download SECRETS_FILE` @@ -797,7 +797,7 @@ EXAMPLES $ architect secrets --account=myaccount --environment=myenvironment ./mysecrets.yml ``` -_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/secrets/download.ts)_ +_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/secrets/download.ts)_ ## `architect secrets:upload SECRETS_FILE` @@ -836,7 +836,7 @@ EXAMPLES $ architect secrets:set --account=myaccount --environment=myenvironment --override ./mysecrets.yml ``` -_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/secrets/upload.ts)_ +_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/secrets/upload.ts)_ ## `architect task COMPONENT TASK` @@ -866,7 +866,7 @@ EXAMPLES $ architect task --account=myaccount --environment=myenvironment mycomponent:latest mytask ``` -_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/task.ts)_ +_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/task.ts)_ ## `architect unlink [COMPONENTPATHORNAME]` @@ -890,5 +890,5 @@ EXAMPLES $ architect unlink -p mycomponent ``` -_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.6/src/commands/unlink.ts)_ +_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.34.0-rc.7/src/commands/unlink.ts)_ diff --git a/package-lock.json b/package-lock.json index 58a84dd3e..82598f7ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@architect-io/cli", - "version": "1.34.0-rc.7", + "version": "1.34.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@architect-io/cli", - "version": "1.34.0-rc.7", + "version": "1.34.0", "license": "GPL-3.0", "dependencies": { "@kubernetes/client-node": "^0.17.1", diff --git a/package.json b/package.json index ec29146fc..7ccc90a23 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@architect-io/cli", "description": "Command-line interface for Architect.io", - "version": "1.34.0-rc.7", + "version": "1.34.0", "author": "Architect.io", "bin": { "architect": "./bin/run"