Skip to content

Commit 4a7a6a8

Browse files
authored
Cut 1.2.0 release (#783)
1 parent 29a476e commit 4a7a6a8

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgcat"
3-
version = "1.1.2-dev4"
3+
version = "1.2.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

charts/pgcat/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ description: A Helm chart for PgCat a PostgreSQL pooler and proxy (like PgBounce
44
maintainers:
55
- name: Wildcard
66
7-
appVersion: "1.1.1"
8-
version: 0.1.0
7+
appVersion: "1.2.0"
8+
version: 0.2.0

charts/pgcat/values.yaml

+12-4
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,13 @@ configuration:
170170
connect_timeout: 5000
171171

172172
# How long an idle connection with a server is left open (ms).
173-
idle_timeout: 30000 # milliseconds
173+
idle_timeout: 30000 # milliseconds
174174

175175
# Max connection lifetime before it's closed, even if actively used.
176-
server_lifetime: 86400000 # 24 hours
176+
server_lifetime: 86400000 # 24 hours
177177

178178
# How long a client is allowed to be idle while in a transaction (ms).
179-
idle_client_in_transaction_timeout: 0 # milliseconds
179+
idle_client_in_transaction_timeout: 0 # milliseconds
180180

181181
# @param configuration.general.healthcheck_timeout How much time to give `SELECT 1` health check query to return with a result (ms).
182182
healthcheck_timeout: 1000
@@ -240,7 +240,15 @@ configuration:
240240
## the pool_name is what clients use as database name when connecting
241241
## For the example below a client can connect using "postgres://sharding_user:sharding_user@pgcat_host:pgcat_port/sharded"
242242
## @param [object]
243-
pools: []
243+
pools:
244+
[{
245+
name: "simple", pool_mode: "transaction",
246+
users: [{username: "user", password: "pass", pool_size: 5, statement_timeout: 0}],
247+
shards: [{
248+
servers: [{host: "postgres", port: 5432, role: "primary"}],
249+
database: "postgres"
250+
}]
251+
}]
244252
# - ## default values
245253
# ##
246254
# ##

0 commit comments

Comments
 (0)