Skip to content

Commit a31e056

Browse files
chore(release): 1.44.1 [skip ci]
## [1.44.1](v1.44.0...v1.44.1) (2023-10-19) ### Bug Fixes * **test:** reverting test change ([#929](#929)) ([b9f81be](b9f81be))
1 parent 03c4b66 commit a31e056

File tree

5 files changed

+50
-43
lines changed

5 files changed

+50
-43
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.44.1](https://github.com/architect-team/architect-cli/compare/v1.44.0...v1.44.1) (2023-10-19)
2+
3+
4+
### Bug Fixes
5+
6+
* **test:** reverting test change ([#929](https://github.com/architect-team/architect-cli/issues/929)) ([b9f81be](https://github.com/architect-team/architect-cli/commit/b9f81beb93433dce2e1a9f34d49036ccd2fcb452))
7+
18
# [1.43.0](https://github.com/architect-team/architect-cli/compare/v1.42.1...v1.43.0) (2023-08-08)
29

310

README.md

+32-32
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $ npm install -g @architect-io/cli
3939
$ architect COMMAND
4040
running command...
4141
$ architect (--version)
42-
@architect-io/cli/1.44.0-rc.4 linux-x64 node-v16.20.2
42+
@architect-io/cli/1.44.1-rc.1 linux-x64 node-v16.20.2
4343
$ architect --help [COMMAND]
4444
USAGE
4545
$ architect COMMAND
@@ -143,7 +143,7 @@ EXAMPLES
143143
$ architect clusters --account=myaccount mycluster
144144
```
145145

146-
_See code: [src/commands/clusters/index.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/clusters/index.ts)_
146+
_See code: [src/commands/clusters/index.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/clusters/index.ts)_
147147

148148
## `architect clusters:create [CLUSTER]`
149149

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

181-
_See code: [src/commands/clusters/create.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/clusters/create.ts)_
181+
_See code: [src/commands/clusters/create.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/clusters/create.ts)_
182182

183183
## `architect clusters:destroy [CLUSTER]`
184184

@@ -209,7 +209,7 @@ EXAMPLES
209209
$ architect clusters:deregister --account=myaccount --auto-approve --force architect
210210
```
211211

212-
_See code: [src/commands/clusters/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/clusters/destroy.ts)_
212+
_See code: [src/commands/clusters/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/clusters/destroy.ts)_
213213

214214
## `architect components:versions [COMPONENT_NAME]`
215215

@@ -235,7 +235,7 @@ EXAMPLES
235235
$ architect component:versions --account=myaccount mycomponent
236236
```
237237

238-
_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/components/versions.ts)_
238+
_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/components/versions.ts)_
239239

240240
## `architect config:get OPTION`
241241

@@ -255,7 +255,7 @@ EXAMPLES
255255
$ architect config:get log_level
256256
```
257257

258-
_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/config/get.ts)_
258+
_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/config/get.ts)_
259259

260260
## `architect config:set OPTION VALUE`
261261

@@ -276,7 +276,7 @@ EXAMPLES
276276
$ architect config:set log_level info
277277
```
278278

279-
_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/config/set.ts)_
279+
_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/config/set.ts)_
280280

281281
## `architect config:view`
282282

@@ -296,7 +296,7 @@ EXAMPLES
296296
$ architect config
297297
```
298298

299-
_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/config/view.ts)_
299+
_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/config/view.ts)_
300300

301301
## `architect deploy [CONFIGS_OR_COMPONENTS]`
302302

@@ -339,7 +339,7 @@ EXAMPLES
339339
$ architect deploy ./myfolder/architect.yml --secret-file=./mysecrets.yml --environment=myenvironment --account=myaccount --auto-approve
340340
```
341341

342-
_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/deploy.ts)_
342+
_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/deploy.ts)_
343343

344344
## `architect destroy`
345345

@@ -365,7 +365,7 @@ EXAMPLES
365365
$ architect destroy --account=myaccount --environment=myenvironment --auto-approve
366366
```
367367

368-
_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/destroy.ts)_
368+
_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/destroy.ts)_
369369

370370
## `architect dev [CONFIGS_OR_COMPONENTS]`
371371

@@ -410,7 +410,7 @@ EXAMPLES
410410
$ architect dev --port=1234 --browser=false --debug=true --secret-file=./mycomponent/mysecrets.yml ./mycomponent/architect.yml
411411
```
412412

413-
_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/dev/index.ts)_
413+
_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/dev/index.ts)_
414414

415415
## `architect dev:list`
416416

@@ -431,7 +431,7 @@ EXAMPLES
431431
$ architect dev:list
432432
```
433433

434-
_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/dev/list.ts)_
434+
_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/dev/list.ts)_
435435

436436
## `architect dev:restart [SERVICES]`
437437

@@ -459,7 +459,7 @@ EXAMPLES
459459
$ architect dev:restart hello-world.services.api hello-world.services.app
460460
```
461461

462-
_See code: [src/commands/dev/restart.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/dev/restart.ts)_
462+
_See code: [src/commands/dev/restart.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/dev/restart.ts)_
463463

464464
## `architect dev:stop [NAME]`
465465

@@ -479,7 +479,7 @@ EXAMPLES
479479
$ architect dev:stop <local-environment-name>
480480
```
481481

482-
_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/dev/stop.ts)_
482+
_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/dev/stop.ts)_
483483

484484
## `architect doctor`
485485

@@ -501,7 +501,7 @@ EXAMPLES
501501
$ architect doctor -o ./myoutput.yml
502502
```
503503

504-
_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/doctor.ts)_
504+
_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/doctor.ts)_
505505

506506
## `architect environments:create [ENVIRONMENT]`
507507

@@ -538,7 +538,7 @@ EXAMPLES
538538
environment:create --account=myaccount --ttl=5days --description="My new temporary Architect environment" myenvironment
539539
```
540540

541-
_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/environments/create.ts)_
541+
_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/environments/create.ts)_
542542

543543
## `architect environments:destroy [ENVIRONMENT]`
544544

@@ -572,7 +572,7 @@ EXAMPLES
572572
$ architect environment:deregister --account=myaccount --auto-approve --force myenvironment
573573
```
574574

575-
_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/environments/destroy.ts)_
575+
_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/environments/destroy.ts)_
576576

577577
## `architect environments:ingresses [ENVIRONMENT]`
578578

@@ -597,7 +597,7 @@ ALIASES
597597
$ architect env:ingresses
598598
```
599599

600-
_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/environments/ingresses.ts)_
600+
_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/environments/ingresses.ts)_
601601

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

@@ -630,7 +630,7 @@ EXAMPLES
630630
$ architect exec --account myaccount --environment myenvironment mycomponent.services.app --replica 0 -- /bin/sh
631631
```
632632

633-
_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/exec.ts)_
633+
_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/exec.ts)_
634634

635635
## `architect help [COMMAND]`
636636

@@ -680,7 +680,7 @@ EXAMPLES
680680
$ architect init --from-compose=mycompose.yml --component-file=architect.yml
681681
```
682682

683-
_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/init.ts)_
683+
_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/init.ts)_
684684

685685
## `architect link [COMPONENTPATH]`
686686

@@ -702,7 +702,7 @@ EXAMPLES
702702
$ architect link -p ./mycomponent/architect.yml
703703
```
704704

705-
_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/link/index.ts)_
705+
_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/link/index.ts)_
706706

707707
## `architect link:list`
708708

@@ -719,7 +719,7 @@ EXAMPLES
719719
$ architect link:list
720720
```
721721

722-
_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/link/list.ts)_
722+
_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/link/list.ts)_
723723

724724
## `architect login`
725725

@@ -742,7 +742,7 @@ EXAMPLES
742742
$ architect login -e [email protected]
743743
```
744744

745-
_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/login.ts)_
745+
_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/login.ts)_
746746

747747
## `architect logout`
748748

@@ -759,7 +759,7 @@ EXAMPLES
759759
$ architect logout
760760
```
761761

762-
_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/logout.ts)_
762+
_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/logout.ts)_
763763

764764
## `architect logs [RESOURCE]`
765765

@@ -794,7 +794,7 @@ EXAMPLES
794794
$ architect logs --follow --raw --timestamps
795795
```
796796

797-
_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/logs.ts)_
797+
_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/logs.ts)_
798798

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

@@ -829,7 +829,7 @@ EXAMPLES
829829
$ architect port-forward --address 0.0.0.0 --port 8080
830830
```
831831

832-
_See code: [src/commands/port-forward.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/port-forward.ts)_
832+
_See code: [src/commands/port-forward.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/port-forward.ts)_
833833

834834
## `architect register [COMPONENT]`
835835

@@ -871,7 +871,7 @@ EXAMPLES
871871
$ architect register -a myaccount -t latest --arg NODE_ENV=dev ./architect.yml
872872
```
873873

874-
_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/register.ts)_
874+
_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/register.ts)_
875875

876876
## `architect scale [SERVICE]`
877877

@@ -902,7 +902,7 @@ EXAMPLES
902902
$ architect scale api --component my-component --clear
903903
```
904904

905-
_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/scale.ts)_
905+
_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/scale.ts)_
906906

907907
## `architect secrets:download SECRETS_FILE`
908908

@@ -935,7 +935,7 @@ EXAMPLES
935935
$ architect secrets --account=myaccount --environment=myenvironment ./mysecrets.yml
936936
```
937937

938-
_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/secrets/download.ts)_
938+
_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/secrets/download.ts)_
939939

940940
## `architect secrets:upload SECRETS_FILE`
941941

@@ -974,7 +974,7 @@ EXAMPLES
974974
$ architect secrets:set --account=myaccount --environment=myenvironment --override ./mysecrets.yml
975975
```
976976

977-
_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/secrets/upload.ts)_
977+
_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/secrets/upload.ts)_
978978

979979
## `architect task COMPONENT TASK`
980980

@@ -1004,7 +1004,7 @@ EXAMPLES
10041004
$ architect task --account=myaccount --environment=myenvironment mycomponent:latest mytask
10051005
```
10061006

1007-
_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/task.ts)_
1007+
_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/task.ts)_
10081008

10091009
## `architect unlink [COMPONENTPATHORNAME]`
10101010

@@ -1028,5 +1028,5 @@ EXAMPLES
10281028
$ architect unlink -p mycomponent
10291029
```
10301030

1031-
_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.44.0-rc.4/src/commands/unlink.ts)_
1031+
_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.44.1-rc.1/src/commands/unlink.ts)_
10321032
<!-- commandsstop -->

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@architect-io/cli",
33
"description": "Command-line interface for Architect.io",
4-
"version": "1.44.1-rc.1",
4+
"version": "1.44.1",
55
"author": "Architect.io",
66
"bin": {
77
"architect": "./bin/run"

yarn.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -3056,7 +3056,14 @@ dateformat@^4.5.0:
30563056
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.6.3.tgz#556fa6497e5217fedb78821424f8a1c22fa3f4b5"
30573057
integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==
30583058

3059-
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:
3059+
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:
3060+
version "4.3.4"
3061+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
3062+
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
3063+
dependencies:
3064+
ms "2.1.2"
3065+
3066+
[email protected], debug@^4.0.0, debug@^4.0.1:
30603067
version "4.3.3"
30613068
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
30623069
integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
@@ -3070,13 +3077,6 @@ debug@^3.2.7:
30703077
dependencies:
30713078
ms "^2.1.1"
30723079

3073-
debug@^4.3.3, debug@^4.3.4:
3074-
version "4.3.4"
3075-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
3076-
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
3077-
dependencies:
3078-
ms "2.1.2"
3079-
30803080
debuglog@^1.0.1:
30813081
version "1.0.1"
30823082
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"

0 commit comments

Comments
 (0)