Skip to content

Commit 09c2251

Browse files
committed
*: update postgres dependencies
Signed-off-by: Petros Angelatos <[email protected]>
1 parent 5dcc16b commit 09c2251

File tree

26 files changed

+60
-66
lines changed

26 files changed

+60
-66
lines changed

Cargo.lock

Lines changed: 16 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/adapter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ smallvec = { version = "1.15.1", features = ["union"] }
8989
static_assertions = "1.1"
9090
timely = "0.25.1"
9191
tokio = { version = "1.48.0", features = ["rt", "time"] }
92-
tokio-postgres = { version = "0.7.8" }
92+
tokio-postgres = { version = "0.7.15" }
9393
tokio-stream = "0.1.17"
9494
tracing = "0.1.37"
9595
tracing-core = "0.1.35"

src/balancerd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ proxy-header = "0.1.2"
4545
semver = "1.0.27"
4646
tokio = { version = "1.48.0", default-features = false }
4747
tokio-openssl = "0.6.5"
48-
tokio-postgres = { version = "0.7.8" }
48+
tokio-postgres = { version = "0.7.15" }
4949
tokio-util = { version = "0.7.17", features = ["codec"] }
5050
tokio-metrics = "0.4.5"
5151
tower = "0.5.2"
@@ -57,7 +57,7 @@ workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = tru
5757
[dev-dependencies]
5858
mz-environmentd = { path = "../environmentd", default-features = false, features = ["test"] }
5959
mz-frontegg-mock = { path = "../frontegg-mock" }
60-
postgres = "0.19.5"
60+
postgres = "0.19.12"
6161
reqwest = "0.11.24"
6262
tempfile = "3.23.0"
6363

src/environmentd/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ openssl-sys = { version = "0.9.108", features = ["vendored"] }
8585
opentelemetry = { version = "0.24.0", features = ["trace"] }
8686
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"] }
8787
pin-project = "1.1.10"
88-
postgres = { version = "0.19.5", optional = true }
89-
postgres-openssl = { version = "0.5.0", optional = true }
88+
postgres = { version = "0.19.12", optional = true }
89+
postgres-openssl = { version = "0.5.2", optional = true }
9090
prometheus = { version = "0.14.0", default-features = false }
9191
rdkafka-sys = { version = "4.3.0", features = [
9292
"cmake-build",
@@ -108,7 +108,7 @@ sysctl = "0.7.1"
108108
tempfile = "3.23.0"
109109
thiserror = "2.0.17"
110110
tokio = { version = "1.48.0", features = ["sync"] }
111-
tokio-postgres = { version = "0.7.8" }
111+
tokio-postgres = { version = "0.7.15" }
112112
tokio-stream = { version = "0.1.17", features = ["net"] }
113113
tokio-metrics = "0.4.5"
114114
tower = { version = "0.5.2", features = ["buffer", "limit", "load-shed"] }
@@ -145,8 +145,8 @@ mz-pgrepr = { path = "../pgrepr" }
145145
mz-pgtest = { path = "../pgtest" }
146146
mz-repr = { path = "../repr" }
147147
mz-sql-parser = { path = "../sql-parser" }
148-
postgres = { version = "0.19.5", features = ["with-chrono-0_4"] }
149-
postgres-protocol = { version = "0.6.5" }
148+
postgres = { version = "0.19.12", features = ["with-chrono-0_4"] }
149+
postgres-protocol = { version = "0.6.9" }
150150
postgres_array = { version = "0.11.0" }
151151
predicates = "3.1.3"
152152
proptest = { version = "1.7.0", default-features = false, features = ["std"] }
@@ -161,7 +161,7 @@ serde_json = "1.0.145"
161161
serde_urlencoded = "0.7.1"
162162
similar-asserts = "1.7"
163163
timely = "0.25.1"
164-
tokio-postgres = { version = "0.7.8", features = ["with-chrono-0_4"] }
164+
tokio-postgres = { version = "0.7.15", features = ["with-chrono-0_4"] }
165165

166166
[build-dependencies]
167167
anyhow = "1.0.100"

src/fivetran-destination/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ mz-ore = { path = "../ore", features = ["cli", "id_gen"], default-features = fal
2020
mz-pgrepr = { path = "../pgrepr", default-features = false }
2121
mz-sql-parser = { path = "../sql-parser", default-features = false }
2222
openssl = { version = "0.10.75", features = ["vendored"] }
23-
postgres-openssl = "0.5.0"
24-
postgres-protocol = { version = "0.6.5" }
23+
postgres-openssl = "0.5.2"
24+
postgres-protocol = { version = "0.6.9" }
2525
prost = { version = "0.13.5", features = ["no-recursion-limit"] }
2626
prost-types = { version = "0.13.5" }
2727
serde = { version = "1.0.219", features = ["derive"] }
@@ -31,7 +31,7 @@ socket2 = "0.5.10"
3131
thiserror = "2.0.17"
3232
tonic = { version = "0.12.1", features = ["gzip"] }
3333
tokio = { version = "1.48.0", features = ["rt"] }
34-
tokio-postgres = { version = "0.7.8" }
34+
tokio-postgres = { version = "0.7.15" }
3535
tokio-stream = { version = "0.1.17", features = ["net"] }
3636
tokio-util = { version = "0.7.17", features = ["io"] }
3737
tracing = "0.1.37"

src/mz-debug/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ mz-cloud-resources = { path = "../cloud-resources"}
2222
mz-ore = { path = "../ore", features = ["cli", "test"] }
2323
mz-server-core = { path = "../server-core"}
2424
mz-tls-util = { path = "../tls-util" }
25-
postgres-openssl = { version = "0.5.0" }
25+
postgres-openssl = { version = "0.5.2" }
2626
regex = "1.12.2"
2727
reqwest = { version = "0.11", features = ["stream"] }
2828
serde = "1.0.219"
2929
serde_yaml = "0.9.34"
3030
tokio = "1.48.0"
31-
tokio-postgres = { version = "0.7.8" }
31+
tokio-postgres = { version = "0.7.15" }
3232
tokio-util = { version = "0.7.17", features = ["io"] }
3333
tracing = "0.1.37"
3434
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["env-filter", "fmt"] }

src/orchestratord/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ serde_json = "1.0.145"
4141
sha2 = "0.10.9"
4242
thiserror = "2.0.17"
4343
tokio = "1.48.0"
44-
tokio-postgres = "0.7.8"
44+
tokio-postgres = "0.7.15"
4545
tower-http = "0.6.7"
4646
tracing = "0.1.37"
4747
urlencoding = "2.1.3"

src/persist/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ mz-proto = { path = "../proto" }
5151
openssl = { version = "0.10.75", features = ["vendored"] }
5252
openssl-sys = { version = "0.9.108", features = ["vendored"] }
5353
parquet = { version = "55.2.0", default-features = false, features = ["arrow", "brotli", "flate2", "snap", "lz4", "zstd"] }
54-
postgres-openssl = { version = "0.5.0" }
55-
postgres-protocol = { version = "0.6.5" }
54+
postgres-openssl = { version = "0.5.2" }
55+
postgres-protocol = { version = "0.6.9" }
5656
prometheus = { version = "0.14.0", default-features = false }
5757
proptest = { version = "1.7.0", default-features = false, features = ["std"] }
5858
proptest-derive = { version = "0.7.0", features = ["boxed_union"] }
@@ -63,7 +63,7 @@ serde = { version = "1.0.219", features = ["derive"] }
6363
serde_json = { version = "1.0.145", optional = true }
6464
timely = "0.25.1"
6565
tokio = { version = "1.48.0", default-features = false, features = ["fs", "macros", "sync", "rt", "rt-multi-thread"] }
66-
tokio-postgres = { version = "0.7.8" }
66+
tokio-postgres = { version = "0.7.15" }
6767
tracing = "0.1.37"
6868
turmoil = { version = "0.7.0", optional = true }
6969
url = "2.5.7"

src/pgrepr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mz-ore = { path = "../ore", default-features = false }
1919
mz-pgrepr-consts = { path = "../pgrepr-consts", default-features = false }
2020
mz-pgwire-common = { path = "../pgwire-common", default-features = false }
2121
mz-repr = { path = "../repr", default-features = false }
22-
postgres-types = { version = "0.2.5", features = [
22+
postgres-types = { version = "0.2.11", features = [
2323
"with-chrono-0_4",
2424
"with-uuid-1",
2525
] }

src/pgtest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ clap = { version = "4.5.23", features = ["derive"] }
1616
datadriven = "0.8.0"
1717
fallible-iterator = "0.2.0"
1818
mz-ore = { path = "../ore", features = ["cli"] }
19-
postgres-protocol = { version = "0.6.5" }
19+
postgres-protocol = { version = "0.6.9" }
2020
serde = { version = "1.0.219", features = ["derive"] }
2121
serde_json = "1.0.145"
2222
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }

0 commit comments

Comments
 (0)