Skip to content

Commit

Permalink
chore(release): 1.24.0-rc.7 [skip ci]
Browse files Browse the repository at this point in the history
# [1.24.0-rc.7](v1.24.0-rc.6...v1.24.0-rc.7) (2022-08-22)

### Bug Fixes

* **exec:** Handle case where older version of compose is used and ConfigFiles doesnt exist ([#681](#681)) ([c0112d2](c0112d2))
* **exec:** Improve error message for Windows PS users ([#680](#680)) ([c214870](c214870))
  • Loading branch information
semantic-release-bot committed Aug 22, 2022
1 parent c214870 commit fa6e64a
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
60 changes: 30 additions & 30 deletions README.md
Expand Up @@ -35,7 +35,7 @@ $ npm install -g @architect-io/cli
$ architect COMMAND
running command...
$ architect (--version)
@architect-io/cli/1.24.0-rc.5 linux-x64 node-v16.16.0
@architect-io/cli/1.24.0-rc.6 linux-x64 node-v16.16.0
$ architect --help [COMMAND]
USAGE
$ architect COMMAND
Expand Down Expand Up @@ -455,7 +455,7 @@ EXAMPLES
$ architect components mycomponent
```

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

## `architect components:register [COMPONENT]`

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

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

## `architect config`

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

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

## `architect config:set OPTION VALUE`

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

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

## `architect config:view`

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

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

## `architect deploy [CONFIGS_OR_COMPONENTS]`

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

## `architect destroy`

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

## `architect dev [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -763,7 +763,7 @@ EXAMPLES
$ architect dev --port=81 --no-browser --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.24.0-rc.5/src/commands/dev.ts)_
_See code: [src/commands/dev.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.6/src/commands/dev.ts)_

## `architect doctor`

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

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

## `architect env [QUERY]`

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

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

## `architect environments:create [ENVIRONMENT]`

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

## `architect environments:destroy [ENVIRONMENT]`

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

## `architect environments:search [QUERY]`

Expand Down Expand Up @@ -1336,7 +1336,7 @@ EXAMPLES
$ architect exec --account myaccount --environment myenvironment mycomponent.services.app -- /bin/sh
```

_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.5/src/commands/exec.ts)_
_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.6/src/commands/exec.ts)_

## `architect help [COMMAND]`

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

## `architect link [COMPONENTPATH]`

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

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

## `architect link:list`

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

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

## `architect login`

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

## `architect logout`

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

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

## `architect logs [RESOURCE]`

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

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

## `architect platform [QUERY]`

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

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

## `architect platforms:create [PLATFORM]`

Expand Down Expand Up @@ -1684,7 +1684,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.24.0-rc.5/src/commands/platforms/create.ts)_
_See code: [src/commands/platforms/create.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.6/src/commands/platforms/create.ts)_

## `architect platforms:deregister [PLATFORM]`

Expand Down Expand Up @@ -1746,7 +1746,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.24.0-rc.5/src/commands/platforms/destroy.ts)_
_See code: [src/commands/platforms/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.6/src/commands/platforms/destroy.ts)_

## `architect platforms:register [PLATFORM]`

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

## `architect secrets SECRETS_FILE`

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

## `architect secrets:set SECRETS_FILE`

Expand Down Expand Up @@ -1994,7 +1994,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.24.0-rc.5/src/commands/secrets/upload.ts)_
_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.6/src/commands/secrets/upload.ts)_

## `architect task COMPONENT TASK`

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

## `architect task:exec COMPONENT TASK`

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

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

## `architect validate [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -2106,7 +2106,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.24.0-rc.5/src/commands/validate.ts)_
_See code: [src/commands/validate.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.6/src/commands/validate.ts)_

## `architect whoami`

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

_See code: [src/commands/whoami.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.5/src/commands/whoami.ts)_
_See code: [src/commands/whoami.ts](https://github.com/architect-team/architect-cli/blob/v1.24.0-rc.6/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
@@ -1,7 +1,7 @@
{
"name": "@architect-io/cli",
"description": "Command-line interface for Architect.io",
"version": "1.24.0-rc.6",
"version": "1.24.0-rc.7",
"author": "Architect.io",
"bin": {
"architect": "./bin/run"
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Expand Up @@ -6495,14 +6495,14 @@ semver@^6.0.0, semver@^6.3.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==

semver@^7.1.1, semver@^7.1.3, semver@^7.3.5:
semver@^7.1.1, semver@^7.3.5:
version "7.3.5"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
dependencies:
lru-cache "^6.0.0"

semver@^7.1.2, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.7:
semver@^7.1.2, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.7:
version "7.3.7"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
Expand Down

0 comments on commit fa6e64a

Please sign in to comment.