Skip to content

Commit

Permalink
chore(release): 1.19.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.19.1](v1.19.0...v1.19.1) (2022-07-13)

### Bug Fixes

* **liveness:** Update liveness probe to better emulate kubernetes locally. ([33a4184](33a4184))
  • Loading branch information
semantic-release-bot committed Jul 13, 2022
1 parent 6b2b3bb commit b257b55
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 31 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.19.1](https://github.com/architect-team/architect-cli/compare/v1.19.0...v1.19.1) (2022-07-13)


### Bug Fixes

* **liveness:** Update liveness probe to better emulate kubernetes locally. ([33a4184](https://github.com/architect-team/architect-cli/commit/33a4184823592c988aff01aff2462d17f0f01b4e))

# [1.19.0](https://github.com/architect-team/architect-cli/compare/v1.18.2...v1.19.0) (2022-07-12)


Expand Down
56 changes: 28 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $ npm install -g @architect-io/cli
$ architect COMMAND
running command...
$ architect (--version)
@architect-io/cli/1.19.0 linux-x64 node-v16.16.0
@architect-io/cli/1.19.1-rc.1 linux-x64 node-v16.16.0
$ architect --help [COMMAND]
USAGE
$ architect COMMAND
Expand Down Expand Up @@ -384,7 +384,7 @@ ALIASES
$ architect component:search
```

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

## `architect components:register [COMPONENT]`

Expand Down Expand Up @@ -481,7 +481,7 @@ ALIASES
$ architect component:version
```

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

## `architect config`

Expand Down Expand Up @@ -513,7 +513,7 @@ DESCRIPTION
Get the value of a CLI config option
```

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

## `architect config:set OPTION VALUE`

Expand All @@ -531,7 +531,7 @@ DESCRIPTION
Set a new value for a CLI configuration option
```

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

## `architect config:view`

Expand All @@ -548,7 +548,7 @@ ALIASES
$ architect config
```

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

## `architect deploy [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -582,7 +582,7 @@ DESCRIPTION
Create a deploy job on Architect Cloud
```

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

## `architect destroy`

Expand All @@ -603,7 +603,7 @@ DESCRIPTION
Destroy components from an environment
```

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

## `architect dev [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -634,7 +634,7 @@ DESCRIPTION
Run your stack locally
```

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

## `architect env [QUERY]`

Expand Down Expand Up @@ -874,7 +874,7 @@ ALIASES
$ architect env:search
```

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

## `architect environments:create [ENVIRONMENT]`

Expand Down Expand Up @@ -903,7 +903,7 @@ ALIASES
$ architect env:create
```

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

## `architect environments:destroy [ENVIRONMENT]`

Expand Down Expand Up @@ -932,7 +932,7 @@ ALIASES
$ architect environment:deregister
```

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

## `architect environments:search [QUERY]`

Expand Down Expand Up @@ -1087,7 +1087,7 @@ DESCRIPTION
Exec into service instances
```

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

## `architect help [COMMAND]`

Expand Down Expand Up @@ -1126,7 +1126,7 @@ DESCRIPTION
Initialize an architect component from an existing docker-compose file
```

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

## `architect link [COMPONENTPATH]`

Expand All @@ -1140,7 +1140,7 @@ DESCRIPTION
Link a local component to the host to be used to power local deployments.
```

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

## `architect login`

Expand All @@ -1158,7 +1158,7 @@ DESCRIPTION
Login to the Architect Cloud platform
```

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

## `architect logout`

Expand All @@ -1172,7 +1172,7 @@ DESCRIPTION
Logout from the Architect registry
```

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

## `architect logs [RESOURCE]`

Expand Down Expand Up @@ -1201,7 +1201,7 @@ DESCRIPTION
Get logs from services both locally and remote
```

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

## `architect platform [QUERY]`

Expand Down Expand Up @@ -1329,7 +1329,7 @@ ALIASES
$ architect platforms:search
```

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

## `architect platforms:create [PLATFORM]`

Expand Down Expand Up @@ -1360,7 +1360,7 @@ ALIASES
$ architect platforms:create
```

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

## `architect platforms:deregister [PLATFORM]`

Expand Down Expand Up @@ -1412,7 +1412,7 @@ ALIASES
$ architect platforms:destroy
```

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

## `architect platforms:register [PLATFORM]`

Expand Down Expand Up @@ -1496,7 +1496,7 @@ ALIASES
$ architect comp:register
```

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

## `architect secrets SECRETS_FILE`

Expand Down Expand Up @@ -1567,7 +1567,7 @@ ALIASES
$ architect secrets/get
```

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

## `architect secrets:set SECRETS_FILE`

Expand Down Expand Up @@ -1615,7 +1615,7 @@ ALIASES
$ architect secrets:set
```

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

## `architect task COMPONENT TASK`

Expand All @@ -1642,7 +1642,7 @@ ALIASES
$ architect task:exec
```

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

## `architect task:exec COMPONENT TASK`

Expand Down Expand Up @@ -1684,7 +1684,7 @@ DESCRIPTION
Unlink a component from the host by path or name
```

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

## `architect validate [CONFIGS_OR_COMPONENTS]`

Expand All @@ -1709,7 +1709,7 @@ ALIASES
$ architect validate
```

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

## `architect whoami`

Expand All @@ -1726,5 +1726,5 @@ ALIASES
$ architect whoami
```

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

0 comments on commit b257b55

Please sign in to comment.