File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,14 @@ 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
- # TODO: once 1.12.0 is released (containing de69cc91e1574e8861cd0ceb4bb866cc02a53d6b) replace the following with:
14
- # git clone -q --depth=1 https://github.com/mongodb/libmongocrypt --branch 1.12.0 || return
15
- {
16
- git clone -q https://github.com/mongodb/libmongocrypt || return
17
- git -C libmongocrypt checkout de69cc91e1574e8861cd0ceb4bb866cc02a53d6b
18
- }
13
+ git clone -q --depth=1 https://github.com/mongodb/libmongocrypt --branch 1.12.0 || return
19
14
20
15
declare -a crypt_cmake_flags=(
21
16
" -DMONGOCRYPT_MONGOC_DIR=${mongoc_dir} "
22
17
" -DBUILD_TESTING=OFF"
23
18
" -DENABLE_ONLINE_TESTS=OFF"
24
19
" -DENABLE_MONGOC=OFF"
25
- " -DBUILD_VERSION=1.11.0-pre "
20
+ " -DBUILD_VERSION=1.12.0 "
26
21
)
27
22
28
23
env \
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ Deprecated:
12
12
* `mongoc_database_command` is deprecated and planned for removal in a future release. Use `mongoc_database_command_simple` instead.
13
13
* `mongoc_collection_command` is deprecated and planned for removal in a future release. Use `mongoc_collection_command_simple` instead.
14
14
15
+ Notes:
16
+
17
+ * Raise required version of libmongocrypt to 1.12.0 to support In-Use Encryption (corresponds to the CMake option: `ENABLE_CLIENT_SIDE_ENCRYPTION`).
18
+
15
19
libmongoc 1.28.1
16
20
================
17
21
Original file line number Diff line number Diff line change @@ -514,10 +514,10 @@ elseif (NOT ENABLE_CLIENT_SIDE_ENCRYPTION STREQUAL OFF)
514
514
find_package (mongocrypt QUIET )
515
515
endif ()
516
516
517
- if (mongocrypt_FOUND AND "${mongocrypt_VERSION} " VERSION_LESS 1.11 .0 )
517
+ if (mongocrypt_FOUND AND "${mongocrypt_VERSION} " VERSION_LESS 1.12 .0 )
518
518
message (STATUS " libmongocrypt found at ${mongocrypt_DIR} " )
519
519
message (STATUS " libmongocrypt version ${mongocrypt_VERSION} found" )
520
- message (STATUS " libmongocrypt version 1.11 .0 is required to enable In-Use Encryption Support." )
520
+ message (STATUS " libmongocrypt version 1.12 .0 is required to enable In-Use Encryption Support." )
521
521
set (REQUIRED_MONGOCRYPT_VERSION_FOUND OFF )
522
522
elseif (mongocrypt_FOUND )
523
523
set (REQUIRED_MONGOCRYPT_VERSION_FOUND ON )
You can’t perform that action at this time.
0 commit comments