Skip to content

Commit 437bf63

Browse files
committed
tests/ci-builder: Bump all kinds of versions
1 parent 7171610 commit 437bf63

File tree

19 files changed

+80
-75
lines changed

19 files changed

+80
-75
lines changed

ci/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ $ ps ax | grep <FAULTY-PROCESS-NAME>
324324
$ gdb -p <FAULTY-PROCESS-PID>
325325
```
326326

327-
[autouseradd]: https://github.com/benesch/autouseradd
327+
[autouseradd]: https://github.com/MaterializeInc/autouseradd
328328
[Buildkite]: https://buildkite.com
329329
[Docker Compose]: https://docs.docker.com/compose/
330330
[MacStadium]: https://www.macstadium.com

ci/builder/Dockerfile

Lines changed: 52 additions & 48 deletions
Large diffs are not rendered by default.

misc/images/debezium/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ FROM confluentinc/cp-kafka-connect-base:8.0.0
1616
# Be sure to use a `X.Y.Z.Final` tag here; `X.Y` tags refer to the latest minor
1717
# version in the release series, and minor versions have been known to introduce
1818
# breakage.
19-
ARG DEBEZIUM_VERSION="3.2.0.Final"
19+
ARG DEBEZIUM_VERSION="3.3.1.Final"
2020

2121
RUN : \
2222
&& curl -fsSL https://repo1.maven.org/maven2/io/debezium/debezium-connector-mysql/${DEBEZIUM_VERSION}/debezium-connector-mysql-${DEBEZIUM_VERSION}-plugin.tar.gz | tar -zxC /usr/share/java \

misc/images/materialized-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# deployed to production, but the version needs to be bumped whenever features
1616
# that the console depends upon are removed (to a version of the console that
1717
# doesn't depend on those features).
18-
FROM materialize/console:26.0.0-dev.2 AS console
18+
FROM materialize/console:26.0.0 AS console
1919

2020
MZFROM ubuntu-base
2121

misc/images/ubuntu-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# the Business Source License, use of this software will be governed
88
# by the Apache License, Version 2.0.
99

10-
FROM ubuntu:plucky-20251001
10+
FROM ubuntu:resolute-20251101
1111

1212
# Ensure any Rust binaries that crash print a backtrace.
1313
ENV RUST_BACKTRACE=1

misc/python/materialize/mzcompose/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
say = ui.speaker("C> ")
3434

3535

36-
DEFAULT_CONFLUENT_PLATFORM_VERSION = "7.9.0"
36+
DEFAULT_CONFLUENT_PLATFORM_VERSION = "7.9.4"
3737

3838
DEFAULT_MZ_VOLUMES = [
3939
"mzdata:/mzdata",

misc/python/materialize/mzcompose/services/cockroach.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222

2323
class Cockroach(Service):
24+
# TODO(def-): Bump when https://github.com/cockroachdb/cockroach/issues/158051 is fixed
2425
DEFAULT_COCKROACH_TAG = "v24.2.0"
2526

2627
def __init__(

misc/python/materialize/mzcompose/services/grafana.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self, name: str = "grafana") -> None:
1919
super().__init__(
2020
name=name,
2121
config={
22-
"image": "grafana/grafana:9.3.2",
22+
"image": "grafana/grafana:12.2.0",
2323
"ports": ["3000"],
2424
"environment": [
2525
"GF_AUTH_ANONYMOUS_ENABLED=true",

misc/python/materialize/mzcompose/services/mysql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def create_mysql_server_args(server_id: str, is_master: bool) -> list[str]:
3232

3333
class MySql(Service):
3434
DEFAULT_ROOT_PASSWORD = "p@ssw0rd"
35-
DEFAULT_VERSION = "9.4.0"
35+
DEFAULT_VERSION = "9.5.0"
3636

3737
DEFAULT_ADDITIONAL_ARGS = create_mysql_server_args(server_id="1", is_master=True)
3838

misc/python/materialize/mzcompose/services/polaris.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(
1818
self,
1919
name: str = "polaris-bootstrap",
2020
image: str = "apache/polaris-admin-tool",
21-
tag: str = "1.0.1-incubating",
21+
tag: str = "1.2.0-incubating",
2222
environment: list[str] = [
2323
"POLARIS_BOOTSTRAP_CREDENTIALS=POLARIS,root,root",
2424
"POLARIS_PERSISTENCE_TYPE=relational-jdbc",

0 commit comments

Comments
 (0)