Skip to content

Commit

Permalink
chore(release): 1.34.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.34.0](v1.33.2...v1.34.0) (2023-03-07)

### Bug Fixes

* **cluster:create:** Make sure a cluster name is unique before creation ([#840](#840)) ([27d14f7](27d14f7))
* **deploy:** Add missing flags from register to deploy ([#849](#849)) ([61c3349](61c3349))
* **dev:restart:** Default --build to true ([#847](#847)) ([dbf8cc0](dbf8cc0))
* **dev:** Update description of environment flag to emphasize it is for local use only ([e9a66c4](e9a66c4))
* **init:** Depends on now supports dictionaries ([#848](#848)) ([30fedca](30fedca))
* **register:** Hard remove old cache directory before renaming ([#846](#846)) ([a9e2720](a9e2720))
* **spec:** Remove parameters ([#808](#808)) ([72cb793](72cb793))

### Features

* **dev:restart:** Add dev:restart command ([#842](#842)) ([93d10cf](93d10cf))
  • Loading branch information
semantic-release-bot committed Mar 7, 2023
1 parent 531a874 commit eb55cbe
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 31 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
56 changes: 28 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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`

Expand All @@ -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`

Expand All @@ -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`

Expand All @@ -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]`

Expand Down Expand Up @@ -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`

Expand All @@ -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]`

Expand Down Expand Up @@ -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`

Expand All @@ -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]`

Expand Down Expand Up @@ -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]`

Expand All @@ -376,7 +376,7 @@ EXAMPLES
$ architect dev:stop <local-environment-name>
```

_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`

Expand All @@ -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]`

Expand Down Expand Up @@ -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]`

Expand Down Expand Up @@ -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]`

Expand All @@ -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]`

Expand Down Expand Up @@ -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]`

Expand Down Expand Up @@ -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]`

Expand All @@ -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`

Expand All @@ -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`

Expand All @@ -640,7 +640,7 @@ EXAMPLES
$ architect login -e [email protected]
```

_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`

Expand All @@ -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]`

Expand Down Expand Up @@ -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]`

Expand Down Expand Up @@ -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]`

Expand Down Expand Up @@ -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`

Expand Down Expand Up @@ -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`

Expand Down Expand Up @@ -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`

Expand Down Expand Up @@ -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]`

Expand All @@ -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)_
<!-- commandsstop -->
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit eb55cbe

Please sign in to comment.