Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ jobs:
# the version many folks are on
- "25.2.0"
# the most recent version
- "26.1.0"
- "26.2.5"
steps:
- uses: "actions/checkout@v7"
if: |
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
# the version many folks are on
- "25.2.0"
# the most recent version
- "26.1.0"
- "26.2.5"
steps:
- uses: "actions/checkout@v7"
if: |
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# FOR DEVELOPMENT ONLY
services:
crdb:
image: "cockroachdb/cockroach:v25.2.0"
image: "cockroachdb/cockroach:v26.2.5"
command: "start-single-node --insecure --accept-sql-without-tls"
restart: "unless-stopped"
ports:
Expand All @@ -14,7 +14,7 @@ services:
timeout: "3s"
retries: 5
crdb-init:
image: "cockroachdb/cockroach:v25.2.0"
image: "cockroachdb/cockroach:v26.2.5"
depends_on:
crdb:
condition: "service_healthy"
Expand Down
7 changes: 1 addition & 6 deletions internal/datastore/crdb/version/version.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
package version

// MinimumSupportedCockroachDBVersion is the minimum version of CockroachDB supported for this driver.
//
// NOTE: must match a tag on DockerHub for the `cockroachdb/cockroach` image, without the `v` prefix.
const MinimumSupportedCockroachDBVersion = "23.1.30"

// LatestTestedCockroachDBVersion is the latest version of CockroachDB that has been tested with this driver.
//
// NOTE: must match a tag on DockerHub for the `cockroachdb/cockroach` image, without the `v` prefix.
const LatestTestedCockroachDBVersion = "26.1.0"
const LatestTestedCockroachDBVersion = "26.2.5"
Loading