File tree 3 files changed +9
-10
lines changed
3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -10,20 +10,15 @@ compile_libmongocrypt() {
10
10
# `.evergreen/scripts/kms-divergence-check.sh` to ensure that there is no
11
11
# divergence in the copied files.
12
12
13
- # Clone libmongocrypt and check-out commit for MONGOCRYPT-723.
14
- # TODO: once libmongocrypt 1.13.0 is released, updated to:
15
- # git clone -q --depth=1 https://github.com/mongodb/libmongocrypt --branch 1.13.0 || return
16
- git clone -q https://github.com/mongodb/libmongocrypt || return
17
- cd libmongocrypt
18
- git checkout 33fdf65cce5a0c0cdd293c64ed40e4a8205c3ce0
19
- cd ..
13
+ # Clone libmongocrypt and check-out 1.13.0.
14
+ git clone -q --depth=1 https://github.com/mongodb/libmongocrypt --branch 1.13.0 || return
20
15
21
16
declare -a crypt_cmake_flags=(
22
17
" -DMONGOCRYPT_MONGOC_DIR=${mongoc_dir} "
23
18
" -DBUILD_TESTING=OFF"
24
19
" -DENABLE_ONLINE_TESTS=OFF"
25
20
" -DENABLE_MONGOC=OFF"
26
- " -DBUILD_VERSION=1.13.0-pre "
21
+ " -DBUILD_VERSION=1.13.0"
27
22
)
28
23
29
24
. " $( dirname " ${BASH_SOURCE[0]} " ) /find-ccache.sh"
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ New Features:
23
23
Unreleased (2.0.0)
24
24
==================
25
25
26
+ ## Notes
27
+
28
+ * Raise required version of libmongocrypt to 1.13.0 to support In-Use Encryption (corresponds to the CMake option: `ENABLE_CLIENT_SIDE_ENCRYPTION`).
29
+
26
30
## Changes
27
31
28
32
* Passing `batchSize:0` as an option to `mongoc_client_watch`, `mongoc_database_watch`, or `mongoc_collection_watch`
Original file line number Diff line number Diff line change @@ -489,10 +489,10 @@ elseif (NOT ENABLE_CLIENT_SIDE_ENCRYPTION STREQUAL OFF)
489
489
find_package (mongocrypt QUIET )
490
490
endif ()
491
491
492
- if (mongocrypt_FOUND AND "${mongocrypt_VERSION} " VERSION_LESS 1.12 .0)
492
+ if (mongocrypt_FOUND AND "${mongocrypt_VERSION} " VERSION_LESS 1.13 .0)
493
493
message (STATUS " libmongocrypt found at ${mongocrypt_DIR} " )
494
494
message (STATUS " libmongocrypt version ${mongocrypt_VERSION} found" )
495
- message (STATUS " libmongocrypt version 1.12 .0 is required to enable In-Use Encryption Support." )
495
+ message (STATUS " libmongocrypt version 1.13 .0 is required to enable In-Use Encryption Support." )
496
496
set (REQUIRED_MONGOCRYPT_VERSION_FOUND OFF )
497
497
elseif (mongocrypt_FOUND)
498
498
set (REQUIRED_MONGOCRYPT_VERSION_FOUND ON )
You can’t perform that action at this time.
0 commit comments