Skip to content

Commit 2966c67

Browse files
authored
CDRIVER-4444 Bump minimum libmongocrypt version to 1.5.2 (#1082)
1 parent 02e3a3f commit 2966c67

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
@@ -238,7 +238,7 @@ pkg-config --modversion libssl || true
238238

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

243243
mkdir libmongocrypt/cmake-build
244244
cd libmongocrypt/cmake-build

.evergreen/compile-windows.sh

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

121121
if [ "$COMPILE_LIBMONGOCRYPT" = "ON" ]; then
122122
# Build libmongocrypt, using the previously fetched installed source.
123-
git clone https://github.com/mongodb/libmongocrypt --branch 1.5.0
123+
git clone https://github.com/mongodb/libmongocrypt --branch 1.5.2
124124
mkdir libmongocrypt/cmake-build
125125
cd libmongocrypt/cmake-build
126126
"$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)