Skip to content

Commit

Permalink
chore(release): 1.33.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.33.0](v1.32.1...v1.33.0) (2023-02-13)

### Bug Fixes

* **account:** Allow uppercase account name ([#822](#822)) ([2b145bc](2b145bc))
* **cluster:** Add minimum supported version for clusters. Currently set to 1.2.2 ([a25ee6c](a25ee6c))
* **lint:** Only run linter for git on changed files ([#819](#819)) ([77aa221](77aa221))
* **posthog:** Don't identify with an anon id ([#825](#825)) ([50e207b](50e207b))
* **release:** Manually trigger release ([5c0696b](5c0696b))
* **schema:** Fix branch name for json schema ([#817](#817)) ([5a10acc](5a10acc))
* **ux:** Add list alias for cmds ([#814](#814)) ([224f6be](224f6be))

### Features

* **analytics:** added posthog ([#823](#823)) ([7cd9e3f](7cd9e3f))
* **build:** Add buildpack as an experimental feature ([fa7995f](fa7995f))
* **cli:** Added command to log ingress URLs associated with an environment ([#827](#827)) ([24cd029](24cd029))
  • Loading branch information
semantic-release-bot committed Feb 13, 2023
1 parent 79ec1ef commit 260a424
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 30 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# [1.33.0](https://github.com/architect-team/architect-cli/compare/v1.32.1...v1.33.0) (2023-02-13)


### Bug Fixes

* **account:** Allow uppercase account name ([#822](https://github.com/architect-team/architect-cli/issues/822)) ([2b145bc](https://github.com/architect-team/architect-cli/commit/2b145bc89fe130584c7bfef0cb79d821b9e717de))
* **cluster:** Add minimum supported version for clusters. Currently set to 1.2.2 ([a25ee6c](https://github.com/architect-team/architect-cli/commit/a25ee6cfa6620e8ae1f73e85b578a65b01ee7725))
* **lint:** Only run linter for git on changed files ([#819](https://github.com/architect-team/architect-cli/issues/819)) ([77aa221](https://github.com/architect-team/architect-cli/commit/77aa221a5642b21da3edf1fcfb1145ca62344737))
* **posthog:** Don't identify with an anon id ([#825](https://github.com/architect-team/architect-cli/issues/825)) ([50e207b](https://github.com/architect-team/architect-cli/commit/50e207b97185bbdb6da9309cf98b88f702462f3e))
* **release:** Manually trigger release ([5c0696b](https://github.com/architect-team/architect-cli/commit/5c0696bb4765111b551e86320d25b4c0ccd69e03))
* **schema:** Fix branch name for json schema ([#817](https://github.com/architect-team/architect-cli/issues/817)) ([5a10acc](https://github.com/architect-team/architect-cli/commit/5a10acc2ac39d48546d7f0b2035f97e552a34a3b))
* **ux:** Add list alias for cmds ([#814](https://github.com/architect-team/architect-cli/issues/814)) ([224f6be](https://github.com/architect-team/architect-cli/commit/224f6be2625c53c050bc88f6b02e16a85cec22b2))


### Features

* **analytics:** added posthog ([#823](https://github.com/architect-team/architect-cli/issues/823)) ([7cd9e3f](https://github.com/architect-team/architect-cli/commit/7cd9e3f834160c29d70b9f181e91b57e8c274ef7))
* **build:** Add buildpack as an experimental feature ([fa7995f](https://github.com/architect-team/architect-cli/commit/fa7995fb17e4edc66ffea9eddf43f5015bed0890))
* **cli:** Added command to log ingress URLs associated with an environment ([#827](https://github.com/architect-team/architect-cli/issues/827)) ([24cd029](https://github.com/architect-team/architect-cli/commit/24cd029cc3ab526898716b886ec72214e81411d0))

## [1.32.1](https://github.com/architect-team/architect-cli/compare/v1.32.0...v1.32.1) (2023-01-23)


Expand Down
54 changes: 27 additions & 27 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.33.0-rc.8 linux-x64 node-v16.19.0
@architect-io/cli/1.33.0-rc.9 linux-x64 node-v16.19.0
$ architect --help [COMMAND]
USAGE
$ architect COMMAND
Expand Down Expand Up @@ -132,7 +132,7 @@ EXAMPLES
$ architect component:versions --account=myaccount mycomponent
```

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

## `architect config:get OPTION`

Expand All @@ -152,7 +152,7 @@ EXAMPLES
$ architect config:get log_level
```

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

## `architect config:set OPTION VALUE`

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

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

## `architect config:view`

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

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

## `architect deploy [CONFIGS_OR_COMPONENTS]`

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

## `architect destroy`

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

## `architect dev [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -301,7 +301,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.33.0-rc.8/src/commands/dev/index.ts)_
_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.33.0-rc.9/src/commands/dev/index.ts)_

## `architect dev:list`

Expand All @@ -322,7 +322,7 @@ EXAMPLES
$ architect dev:list
```

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

## `architect dev:stop [NAME]`

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

_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.33.0-rc.8/src/commands/dev/stop.ts)_
_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.33.0-rc.9/src/commands/dev/stop.ts)_

## `architect doctor`

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

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

## `architect environments:create [ENVIRONMENT]`

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

## `architect environments:destroy [ENVIRONMENT]`

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

## `architect environments:ingresses [ENVIRONMENT]`

Expand All @@ -458,7 +458,7 @@ ALIASES
$ architect env:ingresses
```

_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.33.0-rc.8/src/commands/environments/ingresses.ts)_
_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.33.0-rc.9/src/commands/environments/ingresses.ts)_

## `architect exec [RESOURCE] [FLAGS] -- [COMMAND]`

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

## `architect help [COMMAND]`

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

## `architect link [COMPONENTPATH]`

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

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

## `architect link:list`

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

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

## `architect login`

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

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

## `architect logout`

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

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

## `architect logs [RESOURCE]`

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

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

## `architect register [COMPONENT]`

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

## `architect scale [SERVICE]`

Expand Down Expand Up @@ -730,7 +730,7 @@ EXAMPLES
$ architect scale api --component my-component --clear
```

_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.33.0-rc.8/src/commands/scale.ts)_
_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.33.0-rc.9/src/commands/scale.ts)_

## `architect secrets:download SECRETS_FILE`

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

## `architect secrets:upload SECRETS_FILE`

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

## `architect task COMPONENT TASK`

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

## `architect unlink [COMPONENTPATHORNAME]`

Expand All @@ -856,5 +856,5 @@ EXAMPLES
$ architect unlink -p mycomponent
```

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

0 comments on commit 260a424

Please sign in to comment.