Skip to content

Commit

Permalink
Merge pull request #25 from OldSneerJaw/release-0.6.0
Browse files Browse the repository at this point in the history
Preparation for 0.6.0 release
  • Loading branch information
OldSneerJaw authored Dec 7, 2021
2 parents 0ef039c + 76efae1 commit 92c77e5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/). All notable changes will be documented in this file.

## [Unreleased](https://github.com/OldSneerJaw/borealis-pg-cli/compare/v0.4.0...HEAD)
## [0.6.0](https://github.com/OldSneerJaw/borealis-pg-cli/compare/v0.5.0...v0.6.0)
- Handle cases where DB write access is disabled due to persistent storage limit violations

## [0.5.0](https://github.com/OldSneerJaw/borealis-pg-cli/compare/v0.4.0...v0.5.0)
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ OPTIONS
-o, --addon=addon (required) 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/v0.5.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/v0.6.0/src/commands/borealis-pg/extensions/index.ts)_

## `heroku borealis-pg:extensions:install PG_EXTENSION`

Expand All @@ -66,13 +66,13 @@ DESCRIPTION
part of the extension.
If an extension has any unsatisfied dependencies, its dependencies will be
installed automatically only if the --recursive flag is provided.
installed automatically only if the --recursive option is provided.
Details of all supported extensions can be found here:
https://www.borealis-data.com/pg-extensions-support.html
```

_See code: [src/commands/borealis-pg/extensions/install.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v0.5.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/v0.6.0/src/commands/borealis-pg/extensions/install.ts)_

## `heroku borealis-pg:extensions:remove PG_EXTENSION`

Expand All @@ -92,7 +92,7 @@ OPTIONS
-s, --suppress-missing suppress nonzero exit code when an extension is not installed
```

_See code: [src/commands/borealis-pg/extensions/remove.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v0.5.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/v0.6.0/src/commands/borealis-pg/extensions/remove.ts)_

## `heroku borealis-pg:run`

Expand Down Expand Up @@ -126,14 +126,14 @@ DESCRIPTION
A command can take the form of a database command or a shell command. In either
case, it is executed using the Heroku application's dedicated database user by
default, but it can be made to execute as a database user that is specifically
tied to the current Heroku user account via the --personal-user flag instead.
tied to the current Heroku user account via the --personal-user option instead.
Note that any tables, indexes, views or other objects that are created when
connected as a personal user will be owned by that user rather than the
application database user unless ownership is explicitly reassigned.
By default, the user credentials that are provided allow read-only access to
the add-on database; to enable read and write access, supply the --write-access
flag.
option.
Database commands are raw statements (e.g. SQL, PL/pgSQL) that are sent over
the secure tunnel to the add-on Postgres database to be executed verbatim, with
Expand All @@ -160,7 +160,7 @@ EXAMPLES
$ heroku borealis-pg:run --app sushi --addon DATABASE_URL --db-cmd-file ~/scripts/example.sql --personal-user
```

_See code: [src/commands/borealis-pg/run.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v0.5.0/src/commands/borealis-pg/run.ts)_
_See code: [src/commands/borealis-pg/run.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v0.6.0/src/commands/borealis-pg/run.ts)_

## `heroku borealis-pg:tunnel`

Expand All @@ -183,7 +183,7 @@ DESCRIPTION
psql or pgAdmin and the provided user credentials to interact with the add-on
database. By default, the user credentials that are provided allow read-only
access to the add-on database; to enable read and write access, supply the
--write-access flag.
--write-access option.
See also the borealis-pg:run command to execute a noninteractive script for an
add-on Postgres database.
Expand All @@ -194,5 +194,5 @@ EXAMPLES
$ heroku borealis-pg:tunnel --app sushi --addon DATABASE_URL
```

_See code: [src/commands/borealis-pg/tunnel.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v0.5.0/src/commands/borealis-pg/tunnel.ts)_
_See code: [src/commands/borealis-pg/tunnel.ts](https://github.com/OldSneerJaw/borealis-pg-cli/blob/v0.6.0/src/commands/borealis-pg/tunnel.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "borealis-pg-cli",
"description": "CLI for advanced interactions with Borealis Isolated Postgres add-ons",
"version": "0.5.0",
"version": "0.6.0",
"author": "Borealis Data Solutions",
"bugs": "https://github.com/OldSneerJaw/borealis-pg-cli/issues",
"dependencies": {
Expand Down

0 comments on commit 92c77e5

Please sign in to comment.