From bd1bb02b28ac94444aabe05dc1d72cbd57bc6509 Mon Sep 17 00:00:00 2001 From: Yshay Yaacobi Date: Mon, 2 Oct 2023 20:06:01 +0300 Subject: [PATCH] v0.0.52 --- lerna.json | 2 +- packages/cli-common/package.json | 4 +- packages/cli/README.md | 145 +++++++++++++------- packages/cli/package.json | 20 +-- packages/common/package.json | 2 +- packages/compose-tunnel-agent/package.json | 4 +- packages/core/package.json | 6 +- packages/driver-azure/package.json | 4 +- packages/driver-gce/package.json | 4 +- packages/driver-kube-pod/package.json | 6 +- packages/driver-lightsail/package.json | 4 +- packages/plugin-github-pr-link/package.json | 6 +- 12 files changed, 124 insertions(+), 83 deletions(-) diff --git a/lerna.json b/lerna.json index 1e8f2a2f..e01865fe 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, - "version": "0.0.50" + "version": "0.0.52" } diff --git a/packages/cli-common/package.json b/packages/cli-common/package.json index 437e756c..f2928f2c 100644 --- a/packages/cli-common/package.json +++ b/packages/cli-common/package.json @@ -1,6 +1,6 @@ { "name": "@preevy/cli-common", - "version": "0.0.50", + "version": "0.0.52", "description": "Common library for the Preevy CLI and plugins", "main": "dist/index.js", "files": [ @@ -9,7 +9,7 @@ "license": "Apache-2.0", "dependencies": { "@oclif/core": "^2", - "@preevy/core": "0.0.50", + "@preevy/core": "0.0.52", "chalk": "^4.1.2", "iter-tools-es": "^7.5.3", "lodash": "^4.17.21" diff --git a/packages/cli/README.md b/packages/cli/README.md index a52b4ef0..c1a57cd3 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -19,7 +19,7 @@ $ npm install -g preevy $ preevy COMMAND running command... $ preevy (--version) -preevy/0.0.50 linux-x64 node-v18.17.1 +preevy/0.0.52 darwin-arm64 node-v18.17.1 $ preevy --help [COMMAND] USAGE $ preevy COMMAND @@ -55,7 +55,7 @@ Delete preview environments ``` USAGE - $ preevy down [-D] [-f ] [--system-compose-file ] [-p ] [-d + $ preevy down [-D] [-f ] [--system-compose-file ] [-p ] [--profile ] [-d lightsail|gce|azure|kube-pod] [--lightsail-region us-east-2|us-east-1|us-west-2|ap-south-1|ap-northeast-2|ap-southea st-1|ap-southeast-2|ap-northeast-1|ca-central-1|eu-central-1|eu-west-1|eu-west-2|eu-west-3|eu-north-1] [--gce-project-id ] [--gce-zone ] [--azure-region ] [--azure-subscription-id ] @@ -67,6 +67,7 @@ FLAGS --force Do not error if the environment is not found --id= Environment id - affects created URLs. If not specified, will try to detect automatically + --profile= Run in a specific profile context --wait Wait for resource deletion to complete. If false (the default), the deletion will be started but not waited for @@ -101,7 +102,7 @@ DESCRIPTION Delete preview environments ``` -_See code: [dist/commands/down.ts](https://github.com/livecycle/preevy/blob/v0.0.50/dist/commands/down.ts)_ +_See code: [dist/commands/down.ts](https://github.com/livecycle/preevy/blob/v0.0.52/dist/commands/down.ts)_ ## `preevy help [COMMANDS]` @@ -147,7 +148,7 @@ DESCRIPTION Initialize or import a new profile ``` -_See code: [dist/commands/init.ts](https://github.com/livecycle/preevy/blob/v0.0.50/dist/commands/init.ts)_ +_See code: [dist/commands/init.ts](https://github.com/livecycle/preevy/blob/v0.0.52/dist/commands/init.ts)_ ## `preevy login` @@ -173,7 +174,7 @@ DESCRIPTION Login to the Livecycle SaaS ``` -_See code: [dist/commands/login.ts](https://github.com/livecycle/preevy/blob/v0.0.50/dist/commands/login.ts)_ +_See code: [dist/commands/login.ts](https://github.com/livecycle/preevy/blob/v0.0.52/dist/commands/login.ts)_ ## `preevy logs [SERVICES]` @@ -181,9 +182,9 @@ Show logs for an existing environment ``` USAGE - $ preevy logs [SERVICES] [-D] [-f ] [--system-compose-file ] [-p ] [-d - lightsail|gce|azure|kube-pod] [--lightsail-region us-east-2|us-east-1|us-west-2|ap-south-1|ap-northeast-2|ap-southea - st-1|ap-southeast-2|ap-northeast-1|ca-central-1|eu-central-1|eu-west-1|eu-west-2|eu-west-3|eu-north-1] + $ preevy logs [SERVICES] [-D] [-f ] [--system-compose-file ] [-p ] [--profile + ] [-d lightsail|gce|azure|kube-pod] [--lightsail-region us-east-2|us-east-1|us-west-2|ap-south-1|ap-northeast + -2|ap-southeast-1|ap-southeast-2|ap-northeast-1|ca-central-1|eu-central-1|eu-west-1|eu-west-2|eu-west-3|eu-north-1] [--gce-project-id ] [--gce-zone ] [--azure-region ] [--azure-subscription-id ] [--kube-pod-namespace ] [--kube-pod-kubeconfig ] [--kube-pod-context ] [--kube-pod-template ] [--id ] [--follow] [--tail ] [--no-log-prefix] [--timestamps] [--since ] [--until @@ -198,6 +199,7 @@ FLAGS --follow Follow log output --id= Environment id - affects created URLs. If not specified, will try to detect automatically --no-log-prefix Don't print log prefix in logs + --profile= Run in a specific profile context --since= Show logs since timestamp --tail= Number of lines to show from the end of the logs for each container (default: all) --timestamps Show timestamps @@ -233,7 +235,7 @@ DESCRIPTION Show logs for an existing environment ``` -_See code: [dist/commands/logs.ts](https://github.com/livecycle/preevy/blob/v0.0.50/dist/commands/logs.ts)_ +_See code: [dist/commands/logs.ts](https://github.com/livecycle/preevy/blob/v0.0.52/dist/commands/logs.ts)_ ## `preevy ls` @@ -241,7 +243,7 @@ List preview environments ``` USAGE - $ preevy ls [-D] [-f ] [--system-compose-file ] [-p ] [-d + $ preevy ls [-D] [-f ] [--system-compose-file ] [-p ] [--profile ] [-d lightsail|gce|azure|kube-pod] [--lightsail-region us-east-2|us-east-1|us-west-2|ap-south-1|ap-northeast-2|ap-southea st-1|ap-southeast-2|ap-northeast-1|ca-central-1|eu-central-1|eu-west-1|eu-west-2|eu-west-3|eu-north-1] [--gce-project-id ] [--gce-zone ] [--azure-region ] [--azure-subscription-id ] @@ -260,6 +262,7 @@ FLAGS --no-truncate do not truncate output to fit screen --output=