Skip to content

Commit 3357c2e

Browse files
alnrory-bot
authored andcommitted
chore: bump to CRDB v25.4
GitOrigin-RevId: 63d7c55b706c9f2fedb10688cff86daff856941f
1 parent cf77ed6 commit 3357c2e

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
steps:
5858
- run: |
5959
docker create --name cockroach -p 26257:26257 \
60-
cockroachdb/cockroach:latest-v25.3 start-single-node --insecure
60+
cockroachdb/cockroach:latest-v25.4 start-single-node --insecure
6161
docker start cockroach
6262
name: Start CockroachDB
6363
- uses: ory/ci/checkout@master
@@ -144,7 +144,7 @@ jobs:
144144
steps:
145145
- run: |
146146
docker create --name cockroach -p 26257:26257 \
147-
cockroachdb/cockroach:latest-v25.3 start-single-node --insecure
147+
cockroachdb/cockroach:latest-v25.4 start-single-node --insecure
148148
docker start cockroach
149149
name: Start CockroachDB
150150
- uses: ory/ci/checkout@master

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ test-resetdb:
4949
docker rm --force --volumes hydra_test_database_cockroach || true
5050
docker run --rm --name hydra_test_database_mysql -p 3444:3306 -e MYSQL_ROOT_PASSWORD=secret -d mysql:8.0
5151
docker run --rm --name hydra_test_database_postgres -p 3445:5432 -e POSTGRES_PASSWORD=secret -e POSTGRES_DB=postgres -d postgres:16
52-
docker run --rm --name hydra_test_database_cockroach -p 3446:26257 -d cockroachdb/cockroach:latest-v25.3 start-single-node --insecure
52+
docker run --rm --name hydra_test_database_cockroach -p 3446:26257 -d cockroachdb/cockroach:latest-v25.4 start-single-node --insecure
5353

5454
# Build local docker images
5555
.PHONY: docker

oryx/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ resetdb:
3636
docker rm -f hydra_test_database_cockroach || true
3737
docker run --rm --name hydra_test_database_mysql -p 3444:3306 -e MYSQL_ROOT_PASSWORD=secret -d mysql:8.0
3838
docker run --rm --name hydra_test_database_postgres -p 3445:5432 -e POSTGRES_PASSWORD=secret -e POSTGRES_DB=hydra -d postgres:11.8
39-
docker run --rm --name hydra_test_database_cockroach -p 3446:26257 -d cockroachdb/cockroach:latest-v25.3 start-single-node --insecure
39+
docker run --rm --name hydra_test_database_cockroach -p 3446:26257 -d cockroachdb/cockroach:latest-v25.4 start-single-node --insecure
4040

4141
.PHONY: lint
4242
lint: .bin/golangci-lint

oryx/sqlcon/dockertest/test_helper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func RunTestMySQLWithVersion(t testing.TB, version string) string {
207207
func startCockroachDB(version string) (*dockertest.Resource, error) {
208208
resource, err := pool.RunWithOptions(&dockertest.RunOptions{
209209
Repository: "cockroachdb/cockroach",
210-
Tag: cmp.Or(version, "latest-v25.3"),
210+
Tag: cmp.Or(version, "latest-v25.4"),
211211
Cmd: []string{"start-single-node", "--insecure"},
212212
})
213213
if err == nil {

quickstart-cockroach.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
environment:
1818
- DSN=cockroach://root@cockroachd:26257/defaultdb?sslmode=disable&max_conns=20&max_idle_conns=4
1919
cockroachd:
20-
image: cockroachdb/cockroach:latest-v25.3
20+
image: cockroachdb/cockroach:latest-v25.4
2121
ports:
2222
- "26257:26257"
2323
command: start-single-node --insecure

scripts/db-diff.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function dump_cockroach {
9696
sleep 4
9797
go run . migrate sql up "$TEST_DATABASE_COCKROACHDB" --yes > /dev/null || true
9898
hydra::util::parse-connection-url "${TEST_DATABASE_COCKROACHDB}"
99-
docker run --rm --net=host -it cockroachdb/cockroach:latest-v25.3 dump --dump-all --dump-mode=schema --insecure --user="${DB_USER}" --host="${DB_HOST}" --port="${DB_PORT}"
99+
docker run --rm --net=host -it cockroachdb/cockroach:latest-v25.4 dump --dump-all --dump-mode=schema --insecure --user="${DB_USER}" --host="${DB_HOST}" --port="${DB_PORT}"
100100
}
101101

102102
function dump_sqlite {

test/e2e/docker-compose.cockroach.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
- DSN=cockroach://root@cockroachd:26257/defaultdb?sslmode=disable&max_conns=20&max_idle_conns=4
1616

1717
cockroachd:
18-
image: cockroachdb/cockroach:latest-v25.3
18+
image: cockroachdb/cockroach:latest-v25.4
1919
ports:
2020
- "26257:26257"
2121
command: start-single-node --insecure

0 commit comments

Comments
 (0)