Skip to content

Commit 6ab6504

Browse files
authored
Update Timely, Differential, Columnar (#31470)
The columnar crate had some breaking changes, which we're fixing as part of this change. ### Checklist - [ ] This PR has adequate test coverage / QA involvement has been duly considered. ([trigger-ci for additional test/nightly runs](https://trigger-ci.dev.materialize.com/)) - [ ] This PR has an associated up-to-date [design doc](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/design/README.md), is a design doc ([template](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/design/00000000_template.md)), or is sufficiently small to not require a design. <!-- Reference the design in the description. --> - [ ] If this PR evolves [an existing `$T ⇔ Proto$T` mapping](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/command-and-response-binary-encoding.md) (possibly in a backwards-incompatible way), then it is tagged with a `T-proto` label. - [ ] If this PR will require changes to cloud orchestration or tests, there is a companion cloud PR to account for those changes that is tagged with the release-blocker label ([example](MaterializeInc/cloud#5021)). <!-- Ask in #team-cloud on Slack if you need help preparing the cloud PR. --> - [ ] If this PR includes major [user-facing behavior changes](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/guide-changes.md#what-changes-require-a-release-note), I have pinged the relevant PM to schedule a changelog post. --------- Signed-off-by: Moritz Hoffmann <[email protected]>
1 parent e17e28f commit 6ab6504

File tree

28 files changed

+72
-90
lines changed

28 files changed

+72
-90
lines changed

Cargo.lock

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

src/adapter-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mz-ore = { path = "../ore" }
1515
mz-repr = { path = "../repr" }
1616
mz-storage-types = { path = "../storage-types" }
1717
serde = "1.0.152"
18-
timely = "0.17.1"
18+
timely = "0.18.1"
1919
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
2020

2121
[package.metadata.cargo-udeps.ignore]

src/adapter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bytesize = "1.3.0"
1818
chrono = { version = "0.4.39", default-features = false, features = ["std"] }
1919
dec = "0.4.8"
2020
derivative = "2.2.0"
21-
differential-dataflow = "0.13.5"
21+
differential-dataflow = "0.13.6"
2222
enum-kinds = "0.5.1"
2323
fail = { version = "0.5.1", features = ["failpoints"] }
2424
futures = "0.3.25"
@@ -81,7 +81,7 @@ serde_plain = "1.0.1"
8181
sha2 = "0.10.6"
8282
smallvec = { version = "1.10.0", features = ["union"] }
8383
static_assertions = "1.1"
84-
timely = "0.17.1"
84+
timely = "0.18.1"
8585
tokio = { version = "1.38.0", features = ["rt", "time"] }
8686
tokio-postgres = { version = "0.7.8" }
8787
tracing = "0.1.37"

src/catalog/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bytesize = "1.3.0"
1818
chrono = { version = "0.4.39", default-features = false, features = ["std"] }
1919
clap = { version = "4.5.23", features = ["derive"] }
2020
derivative = "2.2.0"
21-
differential-dataflow = "0.13.5"
21+
differential-dataflow = "0.13.6"
2222
futures = "0.3.25"
2323
ipnet = "2.11.0"
2424
itertools = "0.12.1"
@@ -60,7 +60,7 @@ serde_plain = "1.0.1"
6060
static_assertions = "1.1"
6161
sha2 = "0.10.6"
6262
thiserror = "1.0.37"
63-
timely = "0.17.1"
63+
timely = "0.18.1"
6464
tokio = { version = "1.38.0" }
6565
tracing = "0.1.37"
6666
uuid = "1.2.2"

src/cluster/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ workspace = true
1313
anyhow = "1.0.95"
1414
async-trait = "0.1.83"
1515
crossbeam-channel = "0.5.14"
16-
differential-dataflow = "0.13.5"
16+
differential-dataflow = "0.13.6"
1717
futures = "0.3.25"
1818
mz-cluster-client = { path = "../cluster-client" }
1919
mz-ore = { path = "../ore", features = ["async", "process", "tracing_"] }
2020
mz-persist-client = { path = "../persist-client" }
2121
mz-service = { path = "../service" }
2222
mz-txn-wal = { path = "../txn-wal" }
2323
regex = "1.7.0"
24-
timely = "0.17.1"
24+
timely = "0.18.1"
2525
tokio = { version = "1.38.0", features = ["fs", "rt", "sync", "net"] }
2626
tracing = "0.1.37"
2727
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }

src/compute-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async-trait = "0.1.83"
1515
bytesize = "1.3.0"
1616
crossbeam-channel = "0.5.14"
1717
derivative = "2.2.0"
18-
differential-dataflow = "0.13.5"
18+
differential-dataflow = "0.13.6"
1919
futures = "0.3.25"
2020
http = "1.1.0"
2121
mz-build-info = { path = "../build-info" }
@@ -43,7 +43,7 @@ prost = { version = "0.13.4", features = ["no-recursion-limit"] }
4343
serde = { version = "1.0.152", features = ["derive"] }
4444
serde_json = "1.0.125"
4545
thiserror = "1.0.37"
46-
timely = "0.17.1"
46+
timely = "0.18.1"
4747
tokio = "1.38.0"
4848
tokio-stream = "0.1.11"
4949
tonic = "0.12.1"

src/compute-types/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ publish = false
1010
workspace = true
1111

1212
[dependencies]
13-
columnar = "0.2.2"
13+
columnar = "0.3.0"
1414
columnation = "0.1.0"
15-
differential-dataflow = "0.13.5"
15+
differential-dataflow = "0.13.6"
1616
itertools = "0.12.1"
1717
mz-dyncfg = { path = "../dyncfg" }
1818
mz-expr = { path = "../expr" }
@@ -24,7 +24,7 @@ proptest = { version = "1.6.0", default-features = false, features = ["std"] }
2424
proptest-derive = { version = "0.5.1", features = ["boxed_union"] }
2525
prost = { version = "0.13.4", features = ["no-recursion-limit"] }
2626
serde = { version = "1.0.152", features = ["derive"] }
27-
timely = "0.17.1"
27+
timely = "0.18.1"
2828
tracing = "0.1.37"
2929
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
3030

src/compute/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ workspace = true
1313
anyhow = "1.0.95"
1414
async-stream = "0.3.3"
1515
bytesize = "1.3.0"
16-
columnar = "0.2.2"
16+
columnar = "0.3.0"
1717
crossbeam-channel = "0.5.14"
1818
dec = { version = "0.4.8", features = ["serde"] }
19-
differential-dataflow = "0.13.5"
20-
differential-dogs3 = "0.1.5"
19+
differential-dataflow = "0.13.6"
20+
differential-dogs3 = "0.1.6"
2121
futures = "0.3.25"
2222
itertools = "0.12.1"
2323
lgalloc = "0.4"
@@ -40,7 +40,7 @@ prometheus = { version = "0.13.3", default-features = false }
4040
scopeguard = "1.1.0"
4141
serde = { version = "1.0.152", features = ["derive"] }
4242
smallvec = { version = "1.10.0", features = ["serde", "union"] }
43-
timely = "0.17.1"
43+
timely = "0.18.1"
4444
tokio = { version = "1.38.0", features = ["fs", "rt", "sync", "net"] }
4545
tracing = "0.1.37"
4646
uuid = { version = "1.7.0", features = ["serde", "v4"] }

src/controller/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mz-txn-wal = { path = "../txn-wal" }
3232
regex = "1.7.0"
3333
serde = { version = "1.0.152", features = ["derive"] }
3434
serde_json = "1.0.125"
35-
timely = "0.17.1"
35+
timely = "0.18.1"
3636
tokio = "1.38.0"
3737
tracing = "0.1.37"
3838
uuid = { version = "1.7.0" }

src/durable-cache/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ workspace = true
1212
[dependencies]
1313
async-trait = "0.1.83"
1414
bytes = { version = "1.3.0" }
15-
differential-dataflow = "0.13.5"
15+
differential-dataflow = "0.13.6"
1616
futures = "0.3.25"
1717
itertools = { version = "0.12.1" }
1818
mz-ore = { path = "../ore", features = ["process"] }
@@ -23,7 +23,7 @@ mz-timely-util = { path = "../timely-util" }
2323
prometheus = { version = "0.13.3", default-features = false }
2424
prost = { version = "0.13.4", features = ["no-recursion-limit"] }
2525
serde = { version = "1.0.152", features = ["derive", "rc"] }
26-
timely = "0.17.1"
26+
timely = "0.18.1"
2727
tokio = { version = "1.38.0", default-features = false, features = ["rt", "rt-multi-thread"] }
2828
tracing = "0.1.37"
2929
uuid = { version = "1.7.0", features = ["v4"] }

0 commit comments

Comments
 (0)