Skip to content

Commit 5b1b515

Browse files
authored
Prepare Docker Hub release for version 3.8.1 (#1038)
1 parent d591a33 commit 5b1b515

File tree

15 files changed

+27
-24
lines changed

15 files changed

+27
-24
lines changed

etc/releasing.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,9 @@ version numbers as appropriate:
280280
- MONGOC_VERSION
281281
- MONGOCRYPT_VERSION
282282

283+
**Make sure you run `python3 generate.py` to generate the files for building the
284+
images!**
285+
283286
Next, build the image. Prefer doing a no-cache-build with a clean docker cache.
284287

285288
> As of now, company policy only allows for redhat-ubi images, so only build and

extras/docker/TestDockerfile.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mongodb/mongo-cxx-driver:3.8.0-{{ distro }}
1+
FROM mongodb/mongo-cxx-driver:{{ mongocxx_version }}-{{ distro }}
22

33
WORKDIR /build
44

extras/docker/alpine3.18/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
FROM alpine:3.18 AS builder
55

6-
ARG MONGOCXX_VERSION=3.8.0
7-
ARG MONGOC_VERSION=1.24.2
8-
ARG MONGOCRYPT_VERSION=1.8.1
6+
ARG MONGOCXX_VERSION=3.8.1
7+
ARG MONGOC_VERSION=1.24.4
8+
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build
1111

extras/docker/alpine3.18/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file Makefile.j2 using the generate.py script
33

4-
MONGOCXX_VERSION=3.8.0
4+
MONGOCXX_VERSION=3.8.1
55
DOCKER=docker
66

77
.PHONY: build

extras/docker/alpine3.18/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongodb/mongo-cxx-driver:3.8.0-alpine3.18
4+
FROM mongodb/mongo-cxx-driver:3.8.1-alpine3.18
55

66
WORKDIR /build
77

extras/docker/bookworm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
FROM debian:12-slim AS builder
55

6-
ARG MONGOCXX_VERSION=3.8.0
7-
ARG MONGOC_VERSION=1.24.2
8-
ARG MONGOCRYPT_VERSION=1.8.1
6+
ARG MONGOCXX_VERSION=3.8.1
7+
ARG MONGOC_VERSION=1.24.4
8+
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build
1111

extras/docker/bookworm/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file Makefile.j2 using the generate.py script
33

4-
MONGOCXX_VERSION=3.8.0
4+
MONGOCXX_VERSION=3.8.1
55
DOCKER=docker
66

77
.PHONY: build

extras/docker/bookworm/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongodb/mongo-cxx-driver:3.8.0-bookworm
4+
FROM mongodb/mongo-cxx-driver:3.8.1-bookworm
55

66
WORKDIR /build
77

extras/docker/generate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
from jinja2 import FileSystemLoader
55

66

7-
MONGOCXX_VERSION = "3.8.0"
8-
MONGOC_VERSION = "1.24.2"
9-
MONGOCRYPT_VERSION = "1.8.1"
7+
MONGOCXX_VERSION = "3.8.1"
8+
MONGOC_VERSION = "1.24.4"
9+
MONGOCRYPT_VERSION = "1.8.2"
1010

1111

1212
def render_template(template_filename, context):

extras/docker/jammy/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
FROM ubuntu:22.04 AS builder
55

6-
ARG MONGOCXX_VERSION=3.8.0
7-
ARG MONGOC_VERSION=1.24.2
8-
ARG MONGOCRYPT_VERSION=1.8.1
6+
ARG MONGOCXX_VERSION=3.8.1
7+
ARG MONGOC_VERSION=1.24.4
8+
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build
1111

extras/docker/jammy/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file Makefile.j2 using the generate.py script
33

4-
MONGOCXX_VERSION=3.8.0
4+
MONGOCXX_VERSION=3.8.1
55
DOCKER=docker
66

77
.PHONY: build

extras/docker/jammy/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongodb/mongo-cxx-driver:3.8.0-jammy
4+
FROM mongodb/mongo-cxx-driver:3.8.1-jammy
55

66
WORKDIR /build
77

extras/docker/redhat-ubi-9.2/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 AS builder
55

6-
ARG MONGOCXX_VERSION=3.8.0
7-
ARG MONGOC_VERSION=1.24.2
8-
ARG MONGOCRYPT_VERSION=1.8.1
6+
ARG MONGOCXX_VERSION=3.8.1
7+
ARG MONGOC_VERSION=1.24.4
8+
ARG MONGOCRYPT_VERSION=1.8.2
99

1010
WORKDIR /build
1111

extras/docker/redhat-ubi-9.2/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file Makefile.j2 using the generate.py script
33

4-
MONGOCXX_VERSION=3.8.0
4+
MONGOCXX_VERSION=3.8.1
55
DOCKER=docker
66

77
.PHONY: build

extras/docker/redhat-ubi-9.2/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongodb/mongo-cxx-driver:3.8.0-redhat-ubi-9.2
4+
FROM mongodb/mongo-cxx-driver:3.8.1-redhat-ubi-9.2
55

66
WORKDIR /build
77

0 commit comments

Comments
 (0)