Skip to content

Commit

Permalink
release v7.58.0 (#1860)
Browse files Browse the repository at this point in the history
  • Loading branch information
cafreeman authored Aug 24, 2021
1 parent 68a4cf7 commit 5294749
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.58.0](https://github.com/heroku/cli/compare/v7.57.0...v7.58.0) (2021-08-24)

**Note:** Version bump only for package heroku





# [7.57.0](https://github.com/heroku/cli/compare/v7.56.1...v7.57.0) (2021-08-17)

**Note:** Version bump only for package heroku
Expand Down
27 changes: 27 additions & 0 deletions docs/pg.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ manage postgresql databases
* [`heroku pg:settings:log-lock-waits [VALUE] [DATABASE]`](#heroku-pgsettingslog-lock-waits-value-database)
* [`heroku pg:settings:log-min-duration-statement [VALUE] [DATABASE]`](#heroku-pgsettingslog-min-duration-statement-value-database)
* [`heroku pg:settings:log-statement [VALUE] [DATABASE]`](#heroku-pgsettingslog-statement-value-database)
* [`heroku pg:settings:track-functions [VALUE] [DATABASE]`](#heroku-pgsettingstrack-functions-value-database)
* [`heroku pg:unfollow DATABASE`](#heroku-pgunfollow-database)
* [`heroku pg:upgrade [DATABASE]`](#heroku-pgupgrade-database)
* [`heroku pg:vacuum-stats [DATABASE]`](#heroku-pgvacuum-stats-database)
Expand Down Expand Up @@ -959,6 +960,32 @@ DESCRIPTION
all - All statements are logged
```

## `heroku pg:settings:track-functions [VALUE] [DATABASE]`

track_functions controls tracking of function call counts and time used. Default is none.

```
track_functions controls tracking of function call counts and time used. Default is none.
Valid values for VALUE:
none - No functions are tracked
pl - Only procedural language functions are tracked
all - All functions, including SQL and C language functions, are tracked. Simple SQL-language that are inlined are not tracked
USAGE
$ heroku pg:settings:track-functions [VALUE] [DATABASE]
OPTIONS
-a, --app=app (required) app to run command against
-r, --remote=remote git remote of app to use
DESCRIPTION
Valid values for VALUE:
none - No functions are tracked
pl - Only procedural language functions are tracked
all - All functions, including SQL and C language functions, are tracked. Simple SQL-language that are inlined are
not tracked
```

## `heroku pg:unfollow DATABASE`

stop a replica from following and make it a writeable database
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.57.0",
"version": "7.58.0",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.58.0](https://github.com/heroku/cli/compare/v7.57.0...v7.58.0) (2021-08-24)

**Note:** Version bump only for package heroku





# [7.57.0](https://github.com/heroku/cli/compare/v7.56.1...v7.57.0) (2021-08-17)

**Note:** Version bump only for package heroku
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "heroku",
"description": "CLI to interact with Heroku",
"version": "7.57.0",
"version": "7.58.0",
"author": "Jeff Dickey @jdxcode",
"bin": {
"heroku": "./bin/run"
Expand All @@ -26,7 +26,7 @@
"@heroku-cli/plugin-local": "^7.54.0",
"@heroku-cli/plugin-oauth-v5": "^7.54.0",
"@heroku-cli/plugin-orgs-v5": "^7.54.0",
"@heroku-cli/plugin-pg-v5": "^7.56.1",
"@heroku-cli/plugin-pg-v5": "^7.58.0",
"@heroku-cli/plugin-pipelines": "^7.54.0",
"@heroku-cli/plugin-ps": "^7.54.0",
"@heroku-cli/plugin-ps-exec": "2.3.8",
Expand Down
11 changes: 11 additions & 0 deletions packages/pg-v5/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.58.0](https://github.com/heroku/cli/compare/v7.57.0...v7.58.0) (2021-08-24)


### Features

* **pg-v5:** Add pg:settings:track-functions ([#1854](https://github.com/heroku/cli/issues/1854)) ([68a4cf7](https://github.com/heroku/cli/commit/68a4cf7d759eceee012ff56b4ac26710ab0c025b))





## [7.56.1](https://github.com/heroku/cli/compare/v7.56.0...v7.56.1) (2021-07-12)


Expand Down
2 changes: 1 addition & 1 deletion packages/pg-v5/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-pg-v5",
"description": "Heroku CLI plugin to manage Postgres.",
"version": "7.56.1",
"version": "7.58.0",
"author": "Jeff Dickey (@dickeyxxx)",
"bugs": "https://github.com/heroku/cli/issues",
"cli-engine": {
Expand Down

0 comments on commit 5294749

Please sign in to comment.