From ebb7a46677fb1d6d7a5fb90f522d39beda06661e Mon Sep 17 00:00:00 2001 From: Joel Andrews Date: Tue, 16 Aug 2022 20:16:46 -0700 Subject: [PATCH 1/2] Fix dotenv dependency The `dotenv` package should have been a runtime dependency rather than a development dependency. Fixed. --- CHANGELOG.md | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08455e7..3316001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log This project adheres to [Semantic Versioning](http://semver.org/). All notable changes will be documented in this file. +## [1.0.1](https://github.com/OldSneerJaw/borealis-pg-cli/compare/v0.9.0...v1.0.1) +- Fixed: Include dotenv in runtime dependencies + ## [1.0.0](https://github.com/OldSneerJaw/borealis-pg-cli/compare/v0.9.0...v1.0.0) - Adds the `borealis-pg:info` (alias: `borealis-pg`) command to retrieve details about an add-on DB - Adds the `borealis-pg:users` command to retrieve a list of active DB users for an add-on diff --git a/package.json b/package.json index 84de8a6..a751a44 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "@oclif/config": "^1.18.3", "chalk": "^2.4.2", "cli-ux": "^5.6.7", + "dotenv": "^16.0.1", "http-call": "^5.3.0", "pg": "^8.7.3", "ssh2": "^1.11.0", @@ -31,7 +32,6 @@ "chai": "^4.3.6", "chai-as-promised": "^7.1.1", "chai-string": "^1.5.0", - "dotenv": "^16.0.1", "eslint": "^7.32.0", "eslint-config-oclif": "^4.0.0", "eslint-config-oclif-typescript": "^1.0.2", From 850b5e446628c930b6aa95d7adfa49c20a1d93d4 Mon Sep 17 00:00:00 2001 From: Joel Andrews Date: Tue, 16 Aug 2022 20:16:59 -0700 Subject: [PATCH 2/2] Preparation for 1.0.1 release Updates `package.json` and the README in preparation for the release of v1.0.1 --- README.md | 20 ++++++++++---------- package.json | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 958eb2b..0c86ce8 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ OPTIONS -o, --addon=addon name or ID of an add-on or one of its attachments ``` -_See code: [src/commands/borealis-pg/index.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/index.ts)_ +_See code: [src/commands/borealis-pg/index.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/index.ts)_ ## `heroku borealis-pg:extensions` @@ -61,7 +61,7 @@ OPTIONS -o, --addon=addon name or ID of an add-on or one of its attachments ``` -_See code: [src/commands/borealis-pg/extensions/index.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/extensions/index.ts)_ +_See code: [src/commands/borealis-pg/extensions/index.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/extensions/index.ts)_ ## `heroku borealis-pg:extensions:install PG_EXTENSION` @@ -97,7 +97,7 @@ EXAMPLES $ heroku borealis-pg:extensions:install --suppress-conflict --addon borealis-pg-hex-12345 pg_trgm ``` -_See code: [src/commands/borealis-pg/extensions/install.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/extensions/install.ts)_ +_See code: [src/commands/borealis-pg/extensions/install.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/extensions/install.ts)_ ## `heroku borealis-pg:extensions:remove PG_EXTENSION` @@ -122,7 +122,7 @@ EXAMPLES $ heroku borealis-pg:extensions:remove --confirm uuid-ossp --addon borealis-pg-hex-12345 uuid-ossp ``` -_See code: [src/commands/borealis-pg/extensions/remove.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/extensions/remove.ts)_ +_See code: [src/commands/borealis-pg/extensions/remove.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/extensions/remove.ts)_ ## `heroku borealis-pg:info` @@ -137,7 +137,7 @@ OPTIONS -o, --addon=addon name or ID of an add-on or one of its attachments ``` -_See code: [src/commands/borealis-pg/info.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/info.ts)_ +_See code: [src/commands/borealis-pg/info.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/info.ts)_ ## `heroku borealis-pg:psql` @@ -183,7 +183,7 @@ EXAMPLES $ heroku borealis-pg:psql --addon borealis-pg-hex-12345 ``` -_See code: [src/commands/borealis-pg/psql.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/psql.ts)_ +_See code: [src/commands/borealis-pg/psql.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/psql.ts)_ ## `heroku borealis-pg:run` @@ -255,7 +255,7 @@ EXAMPLES $ heroku borealis-pg:run --addon borealis-pg-hex-12345 --shell-cmd './manage.py migrate' --write-access ``` -_See code: [src/commands/borealis-pg/run.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/run.ts)_ +_See code: [src/commands/borealis-pg/run.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/run.ts)_ ## `heroku borealis-pg:tunnel` @@ -297,7 +297,7 @@ EXAMPLES $ heroku borealis-pg:tunnel --addon borealis-pg-hex-12345 --write-access ``` -_See code: [src/commands/borealis-pg/tunnel.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/tunnel.ts)_ +_See code: [src/commands/borealis-pg/tunnel.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/tunnel.ts)_ ## `heroku borealis-pg:users` @@ -323,7 +323,7 @@ DESCRIPTION borealis-pg:users:reset command). ``` -_See code: [src/commands/borealis-pg/users/index.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/users/index.ts)_ +_See code: [src/commands/borealis-pg/users/index.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/users/index.ts)_ ## `heroku borealis-pg:users:reset` @@ -356,5 +356,5 @@ DESCRIPTION --personal-user option). ``` -_See code: [src/commands/borealis-pg/users/reset.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.0/src/commands/borealis-pg/users/reset.ts)_ +_See code: [src/commands/borealis-pg/users/reset.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v1.0.1/src/commands/borealis-pg/users/reset.ts)_ diff --git a/package.json b/package.json index a751a44..7939598 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "borealis-pg-cli", "description": "CLI for advanced interactions with Borealis Isolated Postgres add-ons", - "version": "1.0.0", + "version": "1.0.1", "author": "Borealis Data Solutions", "bugs": "https://github.com/OldSneerJaw/borealis-pg-cli/issues", "dependencies": {