Skip to content

Commit 28330f9

Browse files
committed
CDRIVER-4444 Bump minimum libmongocrypt version to 1.5.2 (#1082)
1 parent ec734b7 commit 28330f9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.evergreen/compile-unix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ pkg-config --modversion libssl || true
233233

234234
if [ "$COMPILE_LIBMONGOCRYPT" = "ON" ]; then
235235
# Build libmongocrypt, using the previously fetched installed source.
236-
git clone https://github.com/mongodb/libmongocrypt --branch 1.5.0
236+
git clone https://github.com/mongodb/libmongocrypt --branch 1.5.2
237237

238238
mkdir libmongocrypt/cmake-build
239239
cd libmongocrypt/cmake-build

.evergreen/compile-windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ fi
115115

116116
if [ "$COMPILE_LIBMONGOCRYPT" = "ON" ]; then
117117
# Build libmongocrypt, using the previously fetched installed source.
118-
git clone https://github.com/mongodb/libmongocrypt --branch 1.5.0
118+
git clone https://github.com/mongodb/libmongocrypt --branch 1.5.2
119119
mkdir libmongocrypt/cmake-build
120120
cd libmongocrypt/cmake-build
121121
"$CMAKE" -G "$CC" "-DCMAKE_PREFIX_PATH=${INSTALL_DIR}/lib/cmake" -DENABLE_SHARED_BSON=ON -DCMAKE_INSTALL_PREFIX="$INSTALL_DIR" ../

src/libmongoc/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,10 +441,10 @@ elseif (NOT ENABLE_CLIENT_SIDE_ENCRYPTION STREQUAL OFF)
441441
find_package (mongocrypt QUIET)
442442
endif ()
443443

444-
if (mongocrypt_FOUND AND "${mongocrypt_VERSION}" VERSION_LESS 1.5.0)
444+
if (mongocrypt_FOUND AND "${mongocrypt_VERSION}" VERSION_LESS 1.5.2)
445445
message ("-- libmongocrypt found at ${mongocrypt_DIR}")
446446
message ("-- libmongocrypt version ${mongocrypt_VERSION} found")
447-
message ("-- libmongocrypt version 1.5.0 is required to enable Client-Side Field Level Encryption Support.")
447+
message ("-- libmongocrypt version 1.5.2 is required to enable Client-Side Field Level Encryption Support.")
448448
set (REQUIRED_MONGOCRYPT_VERSION_FOUND OFF)
449449
elseif (mongocrypt_FOUND)
450450
set (REQUIRED_MONGOCRYPT_VERSION_FOUND ON)

0 commit comments

Comments
 (0)