Skip to content

Commit

Permalink
chore(release): 1.40.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.40.0](v1.39.0...v1.40.0) (2023-05-11)

### Bug Fixes

* **dev:** Fix build overlay ([#901](#901)) ([9e5e748](9e5e748))
* **register:** Remove the build block when a component is regsitered ([a3897a5](a3897a5))

### Features

* **deployment:** Warn for deleted cluster deployment ([#902](#902)) ([b5bf8d4](b5bf8d4))
* **dev:** Dev overlay adding architect command + docs shortcuts ([#900](#900)) ([8ff760e](8ff760e))
* **exec:** Allow the account flag to be used with local exec ([b060a2b](b060a2b))
  • Loading branch information
semantic-release-bot committed May 11, 2023
1 parent ed74e32 commit 79986d3
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 43 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# [1.40.0](https://github.com/architect-team/architect-cli/compare/v1.39.0...v1.40.0) (2023-05-11)


### Bug Fixes

* **dev:** Fix build overlay ([#901](https://github.com/architect-team/architect-cli/issues/901)) ([9e5e748](https://github.com/architect-team/architect-cli/commit/9e5e74852ec8b228e23fa7d945199b3ae8fa07b8))
* **register:** Remove the build block when a component is regsitered ([a3897a5](https://github.com/architect-team/architect-cli/commit/a3897a58b11b5641f6aff90da28a427a9992c083))


### Features

* **deployment:** Warn for deleted cluster deployment ([#902](https://github.com/architect-team/architect-cli/issues/902)) ([b5bf8d4](https://github.com/architect-team/architect-cli/commit/b5bf8d427bec7a6120de7856e6f99b458a53e89b))
* **dev:** Dev overlay adding architect command + docs shortcuts ([#900](https://github.com/architect-team/architect-cli/issues/900)) ([8ff760e](https://github.com/architect-team/architect-cli/commit/8ff760e2aae32f05a8ba91376e8c1941be5c4309))
* **exec:** Allow the account flag to be used with local exec ([b060a2b](https://github.com/architect-team/architect-cli/commit/b060a2b7d9a066c0f9e7e88d2551d932970eedc8))

# [1.39.0](https://github.com/architect-team/architect-cli/compare/v1.38.0...v1.39.0) (2023-04-26)


Expand Down
64 changes: 32 additions & 32 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.40.0-rc.4 linux-x64 node-v16.20.0
@architect-io/cli/1.40.0-rc.5 linux-x64 node-v16.20.0
$ architect --help [COMMAND]
USAGE
$ architect COMMAND
Expand Down Expand Up @@ -143,7 +143,7 @@ EXAMPLES
$ architect clusters --account=myaccount mycluster
```

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

## `architect clusters:create [CLUSTER]`

Expand Down Expand Up @@ -178,7 +178,7 @@ EXAMPLES
$ architect clusters:register --account=myaccount --kubeconfig=~/.kube/config --auto-approve
```

_See code: [src/commands/clusters/create.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.4/src/commands/clusters/create.ts)_
_See code: [src/commands/clusters/create.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.5/src/commands/clusters/create.ts)_

## `architect clusters:destroy [CLUSTER]`

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

_See code: [src/commands/clusters/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.4/src/commands/clusters/destroy.ts)_
_See code: [src/commands/clusters/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.5/src/commands/clusters/destroy.ts)_

## `architect components:versions [COMPONENT_NAME]`

Expand All @@ -235,7 +235,7 @@ EXAMPLES
$ architect component:versions --account=myaccount mycomponent
```

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

## `architect config:get OPTION`

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

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

## `architect config:set OPTION VALUE`

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

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

## `architect config:view`

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

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

## `architect deploy [CONFIGS_OR_COMPONENTS]`

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

## `architect destroy`

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

## `architect dev [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -411,7 +411,7 @@ EXAMPLES
$ architect dev --port=1234 --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.40.0-rc.4/src/commands/dev/index.ts)_
_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.5/src/commands/dev/index.ts)_

## `architect dev:list`

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

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

## `architect dev:restart [SERVICES]`

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

## `architect dev:stop [NAME]`

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

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

## `architect doctor`

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

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

## `architect environments:create [ENVIRONMENT]`

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

## `architect environments:destroy [ENVIRONMENT]`

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

## `architect environments:ingresses [ENVIRONMENT]`

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

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

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

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

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

## `architect help [COMMAND]`

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

## `architect link [COMPONENTPATH]`

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

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

## `architect link:list`

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

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

## `architect login`

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

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

## `architect logout`

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

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

## `architect logs [RESOURCE]`

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

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

## `architect port-forward [RESOURCE] [FLAGS]`

Expand Down Expand Up @@ -828,7 +828,7 @@ EXAMPLES
$ architect port-forward --address 0.0.0.0 --port 8080
```

_See code: [src/commands/port-forward.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.4/src/commands/port-forward.ts)_
_See code: [src/commands/port-forward.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.5/src/commands/port-forward.ts)_

## `architect register [COMPONENT]`

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

## `architect scale [SERVICE]`

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

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

## `architect secrets:download SECRETS_FILE`

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

## `architect secrets:upload SECRETS_FILE`

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

## `architect task COMPONENT TASK`

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

## `architect unlink [COMPONENTPATHORNAME]`

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

_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.4/src/commands/unlink.ts)_
_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.5/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.40.0-rc.5",
"version": "1.40.0",
"author": "Architect.io",
"bin": {
"architect": "./bin/run"
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3066,7 +3066,14 @@ dateformat@^4.5.0:
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.6.3.tgz#556fa6497e5217fedb78821424f8a1c22fa3f4b5"
integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==

debug@4, [email protected], debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2:
debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4:
version "4.3.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"

[email protected], debug@^4.0.0, debug@^4.0.1:
version "4.3.3"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
Expand All @@ -3080,13 +3087,6 @@ debug@^3.2.7:
dependencies:
ms "^2.1.1"

debug@^4.3.3, debug@^4.3.4:
version "4.3.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"

debuglog@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
Expand Down

0 comments on commit 79986d3

Please sign in to comment.