Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump github.com/aiven/go-api-schemas from 1.47.0 to 1.48.0 #567

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [MAJOR.MINOR.PATCH] - YYYY-MM-DD

- Change `PostgreSQL` field `userConfig.pg_qualstats.enabled`: deprecated
- Change `PostgreSQL` field `userConfig.pg_qualstats.min_err_estimate_num`: deprecated
- Change `PostgreSQL` field `userConfig.pg_qualstats.min_err_estimate_ratio`: deprecated
- Change `PostgreSQL` field `userConfig.pg_qualstats.track_constants`: deprecated
- Change `PostgreSQL` field `userConfig.pg_qualstats.track_pg_catalog`: deprecated

## v0.16.1 - YYYY-MM-DD

- Check VPC for running services before deletion
Expand Down
20 changes: 13 additions & 7 deletions api/v1alpha1/userconfig/service/pg/pg.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 10 additions & 6 deletions charts/aiven-operator-crds/templates/aiven.io_postgresqls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -624,24 +624,28 @@ spec:
type: integer
type: object
pg_qualstats:
description: System-wide settings for the pg_qualstats extension
description: Deprecated. System-wide settings for the pg_qualstats
extension
properties:
enabled:
description: Enable / Disable pg_qualstats
description: Deprecated. Enable / Disable pg_qualstats
type: boolean
min_err_estimate_num:
description: Error estimation num threshold to save quals
description: Deprecated. Error estimation num threshold to
save quals
minimum: 0
type: integer
min_err_estimate_ratio:
description: Error estimation ratio threshold to save quals
description: Deprecated. Error estimation ratio threshold
to save quals
minimum: 0
type: integer
track_constants:
description: Enable / Disable pg_qualstats constants tracking
description: Deprecated. Enable / Disable pg_qualstats constants
tracking
type: boolean
track_pg_catalog:
description: Track quals on system catalogs too.
description: Deprecated. Track quals on system catalogs too.
type: boolean
type: object
pg_read_replica:
Expand Down
16 changes: 10 additions & 6 deletions config/crd/bases/aiven.io_postgresqls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -624,24 +624,28 @@ spec:
type: integer
type: object
pg_qualstats:
description: System-wide settings for the pg_qualstats extension
description: Deprecated. System-wide settings for the pg_qualstats
extension
properties:
enabled:
description: Enable / Disable pg_qualstats
description: Deprecated. Enable / Disable pg_qualstats
type: boolean
min_err_estimate_num:
description: Error estimation num threshold to save quals
description: Deprecated. Error estimation num threshold to
save quals
minimum: 0
type: integer
min_err_estimate_ratio:
description: Error estimation ratio threshold to save quals
description: Deprecated. Error estimation ratio threshold
to save quals
minimum: 0
type: integer
track_constants:
description: Enable / Disable pg_qualstats constants tracking
description: Deprecated. Enable / Disable pg_qualstats constants
tracking
type: boolean
track_pg_catalog:
description: Track quals on system catalogs too.
description: Deprecated. Track quals on system catalogs too.
type: boolean
type: object
pg_read_replica:
Expand Down
14 changes: 7 additions & 7 deletions docs/docs/api-reference/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ PostgreSQL specific user configuration options.
- [`ip_filter`](#spec.userConfig.ip_filter-property){: name='spec.userConfig.ip_filter-property'} (array of objects, MaxItems: 1024). Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`. See below for [nested schema](#spec.userConfig.ip_filter).
- [`migration`](#spec.userConfig.migration-property){: name='spec.userConfig.migration-property'} (object). Migrate data from existing server. See below for [nested schema](#spec.userConfig.migration).
- [`pg`](#spec.userConfig.pg-property){: name='spec.userConfig.pg-property'} (object). postgresql.conf configuration values. See below for [nested schema](#spec.userConfig.pg).
- [`pg_qualstats`](#spec.userConfig.pg_qualstats-property){: name='spec.userConfig.pg_qualstats-property'} (object). System-wide settings for the pg_qualstats extension. See below for [nested schema](#spec.userConfig.pg_qualstats).
- [`pg_qualstats`](#spec.userConfig.pg_qualstats-property){: name='spec.userConfig.pg_qualstats-property'} (object). Deprecated. System-wide settings for the pg_qualstats extension. See below for [nested schema](#spec.userConfig.pg_qualstats).
- [`pg_read_replica`](#spec.userConfig.pg_read_replica-property){: name='spec.userConfig.pg_read_replica-property'} (boolean). Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
- [`pg_service_to_fork_from`](#spec.userConfig.pg_service_to_fork_from-property){: name='spec.userConfig.pg_service_to_fork_from-property'} (string, Immutable, MaxLength: 64). Name of the PG Service from which to fork (deprecated, use service_to_fork_from). This has effect only when a new service is being created.
- [`pg_stat_monitor_enable`](#spec.userConfig.pg_stat_monitor_enable-property){: name='spec.userConfig.pg_stat_monitor_enable-property'} (boolean). Enable the pg_stat_monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg_stat_statements results for utility commands are unreliable.
Expand Down Expand Up @@ -256,15 +256,15 @@ postgresql.conf configuration values.

_Appears on [`spec.userConfig`](#spec.userConfig)._

System-wide settings for the pg_qualstats extension.
Deprecated. System-wide settings for the pg_qualstats extension.

**Optional**

- [`enabled`](#spec.userConfig.pg_qualstats.enabled-property){: name='spec.userConfig.pg_qualstats.enabled-property'} (boolean). Enable / Disable pg_qualstats.
- [`min_err_estimate_num`](#spec.userConfig.pg_qualstats.min_err_estimate_num-property){: name='spec.userConfig.pg_qualstats.min_err_estimate_num-property'} (integer, Minimum: 0). Error estimation num threshold to save quals.
- [`min_err_estimate_ratio`](#spec.userConfig.pg_qualstats.min_err_estimate_ratio-property){: name='spec.userConfig.pg_qualstats.min_err_estimate_ratio-property'} (integer, Minimum: 0). Error estimation ratio threshold to save quals.
- [`track_constants`](#spec.userConfig.pg_qualstats.track_constants-property){: name='spec.userConfig.pg_qualstats.track_constants-property'} (boolean). Enable / Disable pg_qualstats constants tracking.
- [`track_pg_catalog`](#spec.userConfig.pg_qualstats.track_pg_catalog-property){: name='spec.userConfig.pg_qualstats.track_pg_catalog-property'} (boolean). Track quals on system catalogs too.
- [`enabled`](#spec.userConfig.pg_qualstats.enabled-property){: name='spec.userConfig.pg_qualstats.enabled-property'} (boolean). Deprecated. Enable / Disable pg_qualstats.
- [`min_err_estimate_num`](#spec.userConfig.pg_qualstats.min_err_estimate_num-property){: name='spec.userConfig.pg_qualstats.min_err_estimate_num-property'} (integer, Minimum: 0). Deprecated. Error estimation num threshold to save quals.
- [`min_err_estimate_ratio`](#spec.userConfig.pg_qualstats.min_err_estimate_ratio-property){: name='spec.userConfig.pg_qualstats.min_err_estimate_ratio-property'} (integer, Minimum: 0). Deprecated. Error estimation ratio threshold to save quals.
- [`track_constants`](#spec.userConfig.pg_qualstats.track_constants-property){: name='spec.userConfig.pg_qualstats.track_constants-property'} (boolean). Deprecated. Enable / Disable pg_qualstats constants tracking.
- [`track_pg_catalog`](#spec.userConfig.pg_qualstats.track_pg_catalog-property){: name='spec.userConfig.pg_qualstats.track_pg_catalog-property'} (boolean). Deprecated. Track quals on system catalogs too.

### pgbouncer {: #spec.userConfig.pgbouncer }

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21

require (
github.com/aiven/aiven-go-client/v2 v2.4.0
github.com/aiven/go-api-schemas v1.47.0
github.com/aiven/go-api-schemas v1.48.0
github.com/dave/jennifer v1.7.0
github.com/docker/go-units v0.5.0
github.com/ghodss/yaml v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/aiven/aiven-go-client/v2 v2.4.0 h1:vBBKgYEYyFZp/f+vcdxTkWnJ2b09Wlto3kwEzj5uvBQ=
github.com/aiven/aiven-go-client/v2 v2.4.0/go.mod h1:x0xhzxWEKAwKv0xY5FvECiI6tesWshcPHvjwl0B/1SU=
github.com/aiven/go-api-schemas v1.47.0 h1:TWzXlDrhh2SO6Xi+FSpgFT1YFJIJ+Qkkq15XcvdfPzE=
github.com/aiven/go-api-schemas v1.47.0/go.mod h1:/bPxBUHza/2Aeer6hIIdB++GxKiw9K1KCBtRa2rtZ5I=
github.com/aiven/go-api-schemas v1.48.0 h1:igci7tl0cDG6CSCrfyquOVGBs0blWRbsZUxkLsD+EmI=
github.com/aiven/go-api-schemas v1.48.0/go.mod h1:/bPxBUHza/2Aeer6hIIdB++GxKiw9K1KCBtRa2rtZ5I=
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
Expand Down
Loading