Skip to content

Commit 867e494

Browse files
authored
CXX-2795 Bump the C driver dependency version to 1.25.2 (#1067)
1 parent 5f2077f commit 867e494

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

etc/releasing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -282,21 +282,21 @@ Next, build the image. Prefer doing a no-cache-build with a clean docker cache.
282282
283283
```
284284
$ yes | docker system prune -a
285-
$ cd mongo-cxx-driver/extras/docker/redhat-ubi-9.2
285+
$ cd mongo-cxx-driver/extras/docker/redhat-ubi-9.3
286286
$ make nocachebuild
287287
```
288288

289289
Then, test that the image works as expected:
290290
```
291-
$ cd redhat-ubi-9.2/
291+
$ cd redhat-ubi-9.3/
292292
$ make test
293293
```
294294

295295
If the test passes, you will see the following output with the version number
296296
of the driver that you are currently releasing:
297297
```
298-
mongo-cxx-driver version: 3.8.0
299-
THE redhat-ubi-9.2 IMAGE WORKS!
298+
mongo-cxx-driver version: 3.9.0
299+
THE redhat-ubi-9.3 IMAGE WORKS!
300300
```
301301

302302
If the test passes, then check in the bumped version numbers, and get it merged
@@ -317,7 +317,7 @@ images will be pushed to the public Docker Hub repository, so **only run these
317317
commands when you are ready to push the images!**
318318
```
319319
$ docker buildx create --name mybuilder --use --bootstrap
320-
$ docker buildx build --push --platform linux/amd64,linux/arm64 --tag mongodb/mongo-cxx-driver:<VERSION NUMBER>-redhat-ubi-9.2 .
320+
$ docker buildx build --push --platform linux/amd64,linux/arm64 --tag mongodb/mongo-cxx-driver:<VERSION NUMBER>-redhat-ubi-9.3 .
321321
```
322322

323323
Update the `Tags` section of the Docker Hub

extras/docker/alpine3.18/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM alpine:3.18 AS builder
55

66
ARG MONGOCXX_VERSION=3.9.0
7-
ARG MONGOC_VERSION=1.25.1
7+
ARG MONGOC_VERSION=1.25.2
88
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build

extras/docker/bookworm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM debian:12-slim AS builder
55

66
ARG MONGOCXX_VERSION=3.9.0
7-
ARG MONGOC_VERSION=1.25.1
7+
ARG MONGOC_VERSION=1.25.2
88
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build

extras/docker/generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
MONGOCXX_VERSION = "3.9.0"
8-
MONGOC_VERSION = "1.25.1"
8+
MONGOC_VERSION = "1.25.2"
99
MONGOCRYPT_VERSION = "1.8.2"
1010

1111

extras/docker/jammy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM ubuntu:22.04 AS builder
55

66
ARG MONGOCXX_VERSION=3.9.0
7-
ARG MONGOC_VERSION=1.25.1
7+
ARG MONGOC_VERSION=1.25.2
88
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build

extras/docker/redhat-ubi-9.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 AS builder
55

66
ARG MONGOCXX_VERSION=3.9.0
7-
ARG MONGOC_VERSION=1.25.1
7+
ARG MONGOC_VERSION=1.25.2
88
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build

0 commit comments

Comments
 (0)