Skip to content

Commit

Permalink
chore(release): 1.25.2-rc.2 [skip ci]
Browse files Browse the repository at this point in the history
## [1.25.2-rc.2](v1.25.2-rc.1...v1.25.2-rc.2) (2022-09-06)

### Bug Fixes

* **analytics:** No longer report errors caused by missing software such as docker. ([51328c1](51328c1))
* **dev:** Improve the way we handle local environments to avoid conflicts ([38623a6](38623a6))
  • Loading branch information
semantic-release-bot committed Sep 6, 2022
1 parent 38623a6 commit f96e01e
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 33 deletions.
78 changes: 48 additions & 30 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.25.1 linux-x64 node-v16.17.0
@architect-io/cli/1.25.2-rc.1 linux-x64 node-v16.17.0
$ architect --help [COMMAND]
USAGE
$ architect COMMAND
Expand Down Expand Up @@ -72,6 +72,7 @@ USAGE
* [`architect deploy [CONFIGS_OR_COMPONENTS]`](#architect-deploy-configs_or_components)
* [`architect destroy`](#architect-destroy)
* [`architect dev [CONFIGS_OR_COMPONENTS]`](#architect-dev-configs_or_components)
* [`architect dev:list`](#architect-devlist)
* [`architect doctor`](#architect-doctor)
* [`architect env [QUERY]`](#architect-env-query)
* [`architect env:create [ENVIRONMENT]`](#architect-envcreate-environment)
Expand Down Expand Up @@ -462,7 +463,7 @@ EXAMPLES
$ architect components mycomponent
```

_See code: [src/commands/components/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/components/index.ts)_
_See code: [src/commands/components/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/components/index.ts)_

## `architect components:register [COMPONENT]`

Expand Down Expand Up @@ -587,7 +588,7 @@ EXAMPLES
$ architect component:versions --account=myaccount mycomponent
```

_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/components/versions.ts)_
_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/components/versions.ts)_

## `architect config`

Expand Down Expand Up @@ -625,7 +626,7 @@ EXAMPLES
$ architect config:get log_level
```

_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/config/get.ts)_
_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/config/get.ts)_

## `architect config:set OPTION VALUE`

Expand All @@ -646,7 +647,7 @@ EXAMPLES
$ architect config:set log_level info
```

_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/config/set.ts)_
_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/config/set.ts)_

## `architect config:view`

Expand All @@ -666,7 +667,7 @@ EXAMPLES
$ architect config
```

_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/config/view.ts)_
_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/config/view.ts)_

## `architect deploy [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -707,7 +708,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.25.1/src/commands/deploy.ts)_
_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/deploy.ts)_

## `architect destroy`

Expand All @@ -733,7 +734,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.25.1/src/commands/destroy.ts)_
_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/destroy.ts)_

## `architect dev [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -774,7 +775,24 @@ EXAMPLES
$ architect dev --port=81 --browser=false --debug=true --secret-file=./mycomponent/mysecrets.yml ./mycomponent/architect.yml
```

_See code: [src/commands/dev.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/dev.ts)_
_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/dev/index.ts)_

## `architect dev:list`

List all running dev instances.

```
USAGE
$ architect dev:list
DESCRIPTION
List all running dev instances.
EXAMPLES
$ architect link:list
```

_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/dev/list.ts)_

## `architect doctor`

Expand All @@ -796,7 +814,7 @@ EXAMPLES
$ architect doctor -o ./myoutput.yml
```

_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/doctor.ts)_
_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/doctor.ts)_

## `architect env [QUERY]`

Expand Down Expand Up @@ -1087,7 +1105,7 @@ EXAMPLES
$ architect environments myenvironment
```

_See code: [src/commands/environments/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/environments/index.ts)_
_See code: [src/commands/environments/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/environments/index.ts)_

## `architect environments:create [ENVIRONMENT]`

Expand Down Expand Up @@ -1121,7 +1139,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.25.1/src/commands/environments/create.ts)_
_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/environments/create.ts)_

## `architect environments:destroy [ENVIRONMENT]`

Expand Down Expand Up @@ -1155,7 +1173,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.25.1/src/commands/environments/destroy.ts)_
_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/environments/destroy.ts)_

## `architect environments:search [QUERY]`

Expand Down Expand Up @@ -1353,7 +1371,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.25.1/src/commands/exec.ts)_
_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/exec.ts)_

## `architect help [COMMAND]`

Expand Down Expand Up @@ -1399,7 +1417,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.25.1/src/commands/init.ts)_
_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/init.ts)_

## `architect link [COMPONENTPATH]`

Expand All @@ -1421,7 +1439,7 @@ EXAMPLES
$ architect link -p ./mycomponent/architect.yml
```

_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/link/index.ts)_
_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/link/index.ts)_

## `architect link:list`

Expand All @@ -1438,7 +1456,7 @@ EXAMPLES
$ architect link:list
```

_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/link/list.ts)_
_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/link/list.ts)_

## `architect login`

Expand All @@ -1461,7 +1479,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.25.1/src/commands/login.ts)_
_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/login.ts)_

## `architect logout`

Expand All @@ -1478,7 +1496,7 @@ EXAMPLES
$ architect logout
```

_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/logout.ts)_
_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/logout.ts)_

## `architect logs [RESOURCE]`

Expand Down Expand Up @@ -1512,7 +1530,7 @@ EXAMPLES
$ architect logs --follow --raw --timestamps
```

_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/logs.ts)_
_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/logs.ts)_

## `architect platform [QUERY]`

Expand Down Expand Up @@ -1665,7 +1683,7 @@ EXAMPLES
$ architect platforms --account=myaccount myplatform
```

_See code: [src/commands/platforms/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/platforms/index.ts)_
_See code: [src/commands/platforms/index.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/platforms/index.ts)_

## `architect platforms:create [PLATFORM]`

Expand Down Expand Up @@ -1701,7 +1719,7 @@ EXAMPLES
$ architect platforms:register --account=myaccount --type=kubernetes --kubeconfig=~/.kube/config --auto-approve
```

_See code: [src/commands/platforms/create.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/platforms/create.ts)_
_See code: [src/commands/platforms/create.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/platforms/create.ts)_

## `architect platforms:deregister [PLATFORM]`

Expand Down Expand Up @@ -1763,7 +1781,7 @@ EXAMPLES
$ architect platforms:deregister --account=myaccount --auto-approve --force architect
```

_See code: [src/commands/platforms/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/platforms/destroy.ts)_
_See code: [src/commands/platforms/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/platforms/destroy.ts)_

## `architect platforms:register [PLATFORM]`

Expand Down Expand Up @@ -1868,7 +1886,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.25.1/src/commands/register.ts)_
_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/register.ts)_

## `architect secrets SECRETS_FILE`

Expand Down Expand Up @@ -1954,7 +1972,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.25.1/src/commands/secrets/download.ts)_
_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/secrets/download.ts)_

## `architect secrets:set SECRETS_FILE`

Expand Down Expand Up @@ -2012,7 +2030,7 @@ EXAMPLES
$ architect secrets:set --account=myaccount --override ./mysecrets.yml
```

_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/secrets/upload.ts)_
_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/secrets/upload.ts)_

## `architect task COMPONENT TASK`

Expand Down Expand Up @@ -2043,7 +2061,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.25.1/src/commands/task.ts)_
_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/task.ts)_

## `architect task:exec COMPONENT TASK`

Expand Down Expand Up @@ -2096,7 +2114,7 @@ EXAMPLES
$ architect unlink -p mycomponent
```

_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/unlink.ts)_
_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/unlink.ts)_

## `architect validate [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -2126,7 +2144,7 @@ EXAMPLES
$ architect validate ../mycomponent/architect.yml ../myothercomponent/architect.yml
```

_See code: [src/commands/validate.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/validate.ts)_
_See code: [src/commands/validate.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/validate.ts)_

## `architect whoami`

Expand All @@ -2146,5 +2164,5 @@ EXAMPLES
$ architect whoami
```

_See code: [src/commands/whoami.ts](https://github.com/architect-team/architect-cli/blob/v1.25.1/src/commands/whoami.ts)_
_See code: [src/commands/whoami.ts](https://github.com/architect-team/architect-cli/blob/v1.25.2-rc.1/src/commands/whoami.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.25.2-rc.1",
"version": "1.25.2-rc.2",
"author": "Architect.io",
"bin": {
"architect": "./bin/run"
Expand Down

0 comments on commit f96e01e

Please sign in to comment.