From 52947494add67b74d722ffabd81913f6f44eef67 Mon Sep 17 00:00:00 2001 From: Chris Freeman Date: Tue, 24 Aug 2021 11:26:14 -0600 Subject: [PATCH] release v7.58.0 (#1860) --- CHANGELOG.md | 8 ++++++++ docs/pg.md | 27 +++++++++++++++++++++++++++ lerna.json | 2 +- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 4 ++-- packages/pg-v5/CHANGELOG.md | 11 +++++++++++ packages/pg-v5/package.json | 2 +- 7 files changed, 58 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8db6938550..a85d5d158c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/pg.md b/docs/pg.md index 64e8fb0d58..d8a9aae039 100644 --- a/docs/pg.md +++ b/docs/pg.md @@ -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) @@ -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 diff --git a/lerna.json b/lerna.json index 08a3f8ece0..e388557c21 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "7.57.0", + "version": "7.58.0", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 8db6938550..a85d5d158c 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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 diff --git a/packages/cli/package.json b/packages/cli/package.json index 99310064b0..d478620a44 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -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" @@ -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", diff --git a/packages/pg-v5/CHANGELOG.md b/packages/pg-v5/CHANGELOG.md index d434e48af2..e1fdcb56f8 100644 --- a/packages/pg-v5/CHANGELOG.md +++ b/packages/pg-v5/CHANGELOG.md @@ -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) diff --git a/packages/pg-v5/package.json b/packages/pg-v5/package.json index 20dfa22727..2ffe8e3282 100644 --- a/packages/pg-v5/package.json +++ b/packages/pg-v5/package.json @@ -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": {