From 9981b544f40e5cbd3be81fe66d4dea9ce7deafd0 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 23 Feb 2023 19:51:24 +0000 Subject: [PATCH] chore(release): 1.33.2 [skip ci] ## [1.33.2](https://github.com/architect-team/architect-cli/compare/v1.33.1...v1.33.2) (2023-02-23) ### Bug Fixes * **analytics:** Fix issue with incorrect distinct id ([#834](https://github.com/architect-team/architect-cli/issues/834)) ([926902e](https://github.com/architect-team/architect-cli/commit/926902e294f30b2763a7ed9cc33bdb0cf2098c83)) * **deploy:** Support deploying multiple components in one pipeline ([#837](https://github.com/architect-team/architect-cli/issues/837)) ([0457eed](https://github.com/architect-team/architect-cli/commit/0457eedd40e9923f7462eb7f73b8bc27ea733f48)) --- CHANGELOG.md | 8 +++++++ README.md | 54 +++++++++++++++++++++++------------------------ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 38 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3179e55ee..6f24e9179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.33.2](https://github.com/architect-team/architect-cli/compare/v1.33.1...v1.33.2) (2023-02-23) + + +### Bug Fixes + +* **analytics:** Fix issue with incorrect distinct id ([#834](https://github.com/architect-team/architect-cli/issues/834)) ([926902e](https://github.com/architect-team/architect-cli/commit/926902e294f30b2763a7ed9cc33bdb0cf2098c83)) +* **deploy:** Support deploying multiple components in one pipeline ([#837](https://github.com/architect-team/architect-cli/issues/837)) ([0457eed](https://github.com/architect-team/architect-cli/commit/0457eedd40e9923f7462eb7f73b8bc27ea733f48)) + ## [1.33.1](https://github.com/architect-team/architect-cli/compare/v1.33.0...v1.33.1) (2023-02-17) diff --git a/README.md b/README.md index c60e83a63..8fbdce4de 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.33.2-rc.1 linux-x64 node-v16.19.1 +@architect-io/cli/1.33.2-rc.2 linux-x64 node-v16.19.1 $ architect --help [COMMAND] USAGE $ architect COMMAND @@ -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.2-rc.1/src/commands/components/versions.ts)_ +_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/components/versions.ts)_ ## `architect config:get OPTION` @@ -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.2-rc.1/src/commands/config/get.ts)_ +_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/config/get.ts)_ ## `architect config:set OPTION VALUE` @@ -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.2-rc.1/src/commands/config/set.ts)_ +_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/config/set.ts)_ ## `architect config:view` @@ -193,7 +193,7 @@ EXAMPLES $ architect config ``` -_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.1/src/commands/config/view.ts)_ +_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/config/view.ts)_ ## `architect deploy [CONFIGS_OR_COMPONENTS]` @@ -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.2-rc.1/src/commands/deploy.ts)_ +_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/deploy.ts)_ ## `architect destroy` @@ -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.2-rc.1/src/commands/destroy.ts)_ +_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/destroy.ts)_ ## `architect dev [CONFIGS_OR_COMPONENTS]` @@ -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.2-rc.1/src/commands/dev/index.ts)_ +_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/dev/index.ts)_ ## `architect dev:list` @@ -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.2-rc.1/src/commands/dev/list.ts)_ +_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/dev/list.ts)_ ## `architect dev:stop [NAME]` @@ -342,7 +342,7 @@ EXAMPLES $ architect dev:stop ``` -_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.1/src/commands/dev/stop.ts)_ +_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/dev/stop.ts)_ ## `architect doctor` @@ -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.2-rc.1/src/commands/doctor.ts)_ +_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/doctor.ts)_ ## `architect environments:create [ENVIRONMENT]` @@ -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.2-rc.1/src/commands/environments/create.ts)_ +_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/environments/create.ts)_ ## `architect environments:destroy [ENVIRONMENT]` @@ -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.2-rc.1/src/commands/environments/destroy.ts)_ +_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/environments/destroy.ts)_ ## `architect environments:ingresses [ENVIRONMENT]` @@ -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.2-rc.1/src/commands/environments/ingresses.ts)_ +_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/environments/ingresses.ts)_ ## `architect exec [RESOURCE] [FLAGS] -- [COMMAND]` @@ -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.2-rc.1/src/commands/exec.ts)_ +_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/exec.ts)_ ## `architect help [COMMAND]` @@ -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.2-rc.1/src/commands/init.ts)_ +_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/init.ts)_ ## `architect link [COMPONENTPATH]` @@ -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.2-rc.1/src/commands/link/index.ts)_ +_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/link/index.ts)_ ## `architect link:list` @@ -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.2-rc.1/src/commands/link/list.ts)_ +_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/link/list.ts)_ ## `architect login` @@ -606,7 +606,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.33.2-rc.1/src/commands/login.ts)_ +_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/login.ts)_ ## `architect logout` @@ -623,7 +623,7 @@ EXAMPLES $ architect logout ``` -_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.1/src/commands/logout.ts)_ +_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/logout.ts)_ ## `architect logs [RESOURCE]` @@ -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.2-rc.1/src/commands/logs.ts)_ +_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/logs.ts)_ ## `architect register [COMPONENT]` @@ -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.2-rc.1/src/commands/register.ts)_ +_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/register.ts)_ ## `architect scale [SERVICE]` @@ -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.2-rc.1/src/commands/scale.ts)_ +_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/scale.ts)_ ## `architect secrets:download SECRETS_FILE` @@ -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.2-rc.1/src/commands/secrets/download.ts)_ +_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/secrets/download.ts)_ ## `architect secrets:upload SECRETS_FILE` @@ -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.2-rc.1/src/commands/secrets/upload.ts)_ +_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/secrets/upload.ts)_ ## `architect task COMPONENT TASK` @@ -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.2-rc.1/src/commands/task.ts)_ +_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/task.ts)_ ## `architect unlink [COMPONENTPATHORNAME]` @@ -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.2-rc.1/src/commands/unlink.ts)_ +_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.33.2-rc.2/src/commands/unlink.ts)_ diff --git a/package-lock.json b/package-lock.json index 73f2b08a7..e0b8e8ca3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@architect-io/cli", - "version": "1.33.2-rc.2", + "version": "1.33.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@architect-io/cli", - "version": "1.33.2-rc.2", + "version": "1.33.2", "license": "GPL-3.0", "dependencies": { "@kubernetes/client-node": "^0.17.1", diff --git a/package.json b/package.json index cacd843bc..670ea4f4c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@architect-io/cli", "description": "Command-line interface for Architect.io", - "version": "1.33.2-rc.2", + "version": "1.33.2", "author": "Architect.io", "bin": { "architect": "./bin/run"