From 0f39018e59e41bfb59eab2c8ae2ba397c8b967ef Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 12 Apr 2023 19:10:50 +0000 Subject: [PATCH] chore(release): 1.38.0 [skip ci] # [1.38.0](https://github.com/architect-team/architect-cli/compare/v1.37.0...v1.38.0) (2023-04-12) ### Bug Fixes * **revert:** Revert changes to spec involving build/image ([11a2e36](https://github.com/architect-team/architect-cli/commit/11a2e3632ffeebe55683f679cb709c6d6aa8e55a)) * **spec:** Update spec to make sure build and image can not be specified at the same time. ([b08f29f](https://github.com/architect-team/architect-cli/commit/b08f29f88b4956bcde8454619a654c0f800165a7)) * **tests:** fix test conflicts ([#889](https://github.com/architect-team/architect-cli/issues/889)) ([e79e845](https://github.com/architect-team/architect-cli/commit/e79e8454faa30ea4ab828401d8ea485761f9d6ec)) * **tests:** Test deduplication refactor ([de1f1e2](https://github.com/architect-team/architect-cli/commit/de1f1e2c33d79236da4429ec23e659ff6c1b2ccf)) ### Features * **cluster:** Make sure nodes exist before allowing a cluster to be registered ([ccdbb7d](https://github.com/architect-team/architect-cli/commit/ccdbb7d7b392145c3ce2d40f1e71b727bf105637)) * **spec:** Add support for making an ingress private in spec ([#880](https://github.com/architect-team/architect-cli/issues/880)) ([f3dc92a](https://github.com/architect-team/architect-cli/commit/f3dc92a98f11536fba65ee26256b70f7ee0fe129)) --- CHANGELOG.md | 16 ++++++++++++ README.md | 64 +++++++++++++++++++++++------------------------ package-lock.json | 4 +-- package.json | 2 +- 4 files changed, 51 insertions(+), 35 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f7dd9580..99befe0a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [1.38.0](https://github.com/architect-team/architect-cli/compare/v1.37.0...v1.38.0) (2023-04-12) + + +### Bug Fixes + +* **revert:** Revert changes to spec involving build/image ([11a2e36](https://github.com/architect-team/architect-cli/commit/11a2e3632ffeebe55683f679cb709c6d6aa8e55a)) +* **spec:** Update spec to make sure build and image can not be specified at the same time. ([b08f29f](https://github.com/architect-team/architect-cli/commit/b08f29f88b4956bcde8454619a654c0f800165a7)) +* **tests:** fix test conflicts ([#889](https://github.com/architect-team/architect-cli/issues/889)) ([e79e845](https://github.com/architect-team/architect-cli/commit/e79e8454faa30ea4ab828401d8ea485761f9d6ec)) +* **tests:** Test deduplication refactor ([de1f1e2](https://github.com/architect-team/architect-cli/commit/de1f1e2c33d79236da4429ec23e659ff6c1b2ccf)) + + +### Features + +* **cluster:** Make sure nodes exist before allowing a cluster to be registered ([ccdbb7d](https://github.com/architect-team/architect-cli/commit/ccdbb7d7b392145c3ce2d40f1e71b727bf105637)) +* **spec:** Add support for making an ingress private in spec ([#880](https://github.com/architect-team/architect-cli/issues/880)) ([f3dc92a](https://github.com/architect-team/architect-cli/commit/f3dc92a98f11536fba65ee26256b70f7ee0fe129)) + # [1.37.0](https://github.com/architect-team/architect-cli/compare/v1.36.2...v1.37.0) (2023-04-10) diff --git a/README.md b/README.md index 03760dcbb..ec7ac9b80 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ $ npm install -g @architect-io/cli $ architect COMMAND running command... $ architect (--version) -@architect-io/cli/1.38.0-rc.2 linux-x64 node-v16.20.0 +@architect-io/cli/1.38.0-rc.3 linux-x64 node-v16.20.0 $ architect --help [COMMAND] USAGE $ architect COMMAND @@ -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.38.0-rc.2/src/commands/clusters/index.ts)_ +_See code: [src/commands/clusters/index.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/clusters/index.ts)_ ## `architect clusters:create [CLUSTER]` @@ -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.38.0-rc.2/src/commands/clusters/create.ts)_ +_See code: [src/commands/clusters/create.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/clusters/create.ts)_ ## `architect clusters:destroy [CLUSTER]` @@ -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.38.0-rc.2/src/commands/clusters/destroy.ts)_ +_See code: [src/commands/clusters/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/clusters/destroy.ts)_ ## `architect components:versions [COMPONENT_NAME]` @@ -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.38.0-rc.2/src/commands/components/versions.ts)_ +_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/components/versions.ts)_ ## `architect config:get OPTION` @@ -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.38.0-rc.2/src/commands/config/get.ts)_ +_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/config/get.ts)_ ## `architect config:set OPTION VALUE` @@ -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.38.0-rc.2/src/commands/config/set.ts)_ +_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/config/set.ts)_ ## `architect config:view` @@ -296,7 +296,7 @@ EXAMPLES $ architect config ``` -_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/config/view.ts)_ +_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/config/view.ts)_ ## `architect deploy [CONFIGS_OR_COMPONENTS]` @@ -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.38.0-rc.2/src/commands/deploy.ts)_ +_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/deploy.ts)_ ## `architect destroy` @@ -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.38.0-rc.2/src/commands/destroy.ts)_ +_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/destroy.ts)_ ## `architect dev [CONFIGS_OR_COMPONENTS]` @@ -408,7 +408,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.38.0-rc.2/src/commands/dev/index.ts)_ +_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/dev/index.ts)_ ## `architect dev:list` @@ -429,7 +429,7 @@ EXAMPLES $ architect dev:list ``` -_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/dev/list.ts)_ +_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/dev/list.ts)_ ## `architect dev:restart [SERVICES]` @@ -457,7 +457,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.38.0-rc.2/src/commands/dev/restart.ts)_ +_See code: [src/commands/dev/restart.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/dev/restart.ts)_ ## `architect dev:stop [NAME]` @@ -477,7 +477,7 @@ EXAMPLES $ architect dev:stop ``` -_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/dev/stop.ts)_ +_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/dev/stop.ts)_ ## `architect doctor` @@ -499,7 +499,7 @@ EXAMPLES $ architect doctor -o ./myoutput.yml ``` -_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/doctor.ts)_ +_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/doctor.ts)_ ## `architect environments:create [ENVIRONMENT]` @@ -534,7 +534,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.38.0-rc.2/src/commands/environments/create.ts)_ +_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/environments/create.ts)_ ## `architect environments:destroy [ENVIRONMENT]` @@ -568,7 +568,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.38.0-rc.2/src/commands/environments/destroy.ts)_ +_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/environments/destroy.ts)_ ## `architect environments:ingresses [ENVIRONMENT]` @@ -593,7 +593,7 @@ ALIASES $ architect env:ingresses ``` -_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/environments/ingresses.ts)_ +_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/environments/ingresses.ts)_ ## `architect exec [RESOURCE] [FLAGS] -- [COMMAND]` @@ -626,7 +626,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.38.0-rc.2/src/commands/exec.ts)_ +_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/exec.ts)_ ## `architect help [COMMAND]` @@ -676,7 +676,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.38.0-rc.2/src/commands/init.ts)_ +_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/init.ts)_ ## `architect link [COMPONENTPATH]` @@ -698,7 +698,7 @@ EXAMPLES $ architect link -p ./mycomponent/architect.yml ``` -_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/link/index.ts)_ +_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/link/index.ts)_ ## `architect link:list` @@ -715,7 +715,7 @@ EXAMPLES $ architect link:list ``` -_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/link/list.ts)_ +_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/link/list.ts)_ ## `architect login` @@ -738,7 +738,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.38.0-rc.2/src/commands/login.ts)_ +_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/login.ts)_ ## `architect logout` @@ -755,7 +755,7 @@ EXAMPLES $ architect logout ``` -_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/logout.ts)_ +_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/logout.ts)_ ## `architect logs [RESOURCE]` @@ -790,7 +790,7 @@ EXAMPLES $ architect logs --follow --raw --timestamps ``` -_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/logs.ts)_ +_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/logs.ts)_ ## `architect port-forward [RESOURCE] [FLAGS]` @@ -825,7 +825,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.38.0-rc.2/src/commands/port-forward.ts)_ +_See code: [src/commands/port-forward.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/port-forward.ts)_ ## `architect register [COMPONENT]` @@ -867,7 +867,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.38.0-rc.2/src/commands/register.ts)_ +_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/register.ts)_ ## `architect scale [SERVICE]` @@ -898,7 +898,7 @@ EXAMPLES $ architect scale api --component my-component --clear ``` -_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/scale.ts)_ +_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/scale.ts)_ ## `architect secrets:download SECRETS_FILE` @@ -931,7 +931,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.38.0-rc.2/src/commands/secrets/download.ts)_ +_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/secrets/download.ts)_ ## `architect secrets:upload SECRETS_FILE` @@ -970,7 +970,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.38.0-rc.2/src/commands/secrets/upload.ts)_ +_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/secrets/upload.ts)_ ## `architect task COMPONENT TASK` @@ -1000,7 +1000,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.38.0-rc.2/src/commands/task.ts)_ +_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/task.ts)_ ## `architect unlink [COMPONENTPATHORNAME]` @@ -1024,5 +1024,5 @@ EXAMPLES $ architect unlink -p mycomponent ``` -_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.2/src/commands/unlink.ts)_ +_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.38.0-rc.3/src/commands/unlink.ts)_ diff --git a/package-lock.json b/package-lock.json index d026ee52e..d4bbc09b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@architect-io/cli", - "version": "1.38.0-rc.3", + "version": "1.38.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@architect-io/cli", - "version": "1.38.0-rc.3", + "version": "1.38.0", "license": "GPL-3.0", "dependencies": { "@kubernetes/client-node": "^0.17.1", diff --git a/package.json b/package.json index 63e35a23e..a9aed7f6c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@architect-io/cli", "description": "Command-line interface for Architect.io", - "version": "1.38.0-rc.3", + "version": "1.38.0", "author": "Architect.io", "bin": { "architect": "./bin/run"