Skip to content

Commit f2e5939

Browse files
committed
Release 1.16.0
1 parent 9c8522f commit f2e5939

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ChangeLog
22

3-
## 1.16.0 (Unreleased)
3+
## 1.16.0
44

55
### Changed
66

@@ -11,6 +11,12 @@
1111
- Note: `FetchContent_Populate()` is still used for CMake versions prior to 3.18 to avoid `add_subdirectory()` behavior.
1212
- Bump downloaded libbson version from 1.30.3 to 2.1.0.
1313

14+
### New features
15+
- Support in-place retry on KMS requests.
16+
17+
### Fixed
18+
- Do not propagate `-fPIC` in CMake targets.
19+
1420
## 1.15.2
1521

1622
### Fixed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ See [releasing](./doc/releasing.md).
106106
Distribution packages (i.e., .deb/.rpm) are built and published for several Linux distributions. The installation of these packages for supported platforms is documented here.
107107

108108
### Unstable Development Distribution Packages ###
109-
To install the latest unstable development package, change `1.15` to `development` in the package URLs listed in the subsequent instructions. For example, `https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.15` in the instructions would become `https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/development`. Do not use the unstable version of libmongocrypt in a production environment.
109+
To install the latest unstable development package, change `1.16` to `development` in the package URLs listed in the subsequent instructions. For example, `https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.16` in the instructions would become `https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/development`. Do not use the unstable version of libmongocrypt in a production environment.
110110

111111
### .deb Packages (Debian and Ubuntu) ###
112112

@@ -147,13 +147,13 @@ sudo sh -c 'curl -s --location https://pgp.mongodb.com/libmongocrypt.asc | gpg -
147147
Second, create a list entry for the repository. For Ubuntu systems (be sure to change `<release>` to `xenial`, `bionic`, `focal`, or `jammy`, as appropriate to your system):
148148

149149
```
150-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.15 universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
150+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.16 universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
151151
```
152152

153153
For Debian systems (be sure to change `<release>` to `stretch`, `buster`, `bullseye`, or `bookworm` as appropriate to your system):
154154

155155
```
156-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/1.15 main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
156+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/1.16 main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
157157
```
158158

159159
#### Package installation ####
@@ -176,7 +176,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
176176
```
177177
[libmongocrypt]
178178
name=libmongocrypt repository
179-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/redhat/$releasever/libmongocrypt/1.15/x86_64
179+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/redhat/$releasever/libmongocrypt/1.16/x86_64
180180
gpgcheck=1
181181
enabled=1
182182
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -195,7 +195,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
195195
```
196196
[libmongocrypt]
197197
name=libmongocrypt repository
198-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2023/libmongocrypt/1.15/x86_64
198+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2023/libmongocrypt/1.16/x86_64
199199
gpgcheck=1
200200
enabled=1
201201
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -214,7 +214,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
214214
```
215215
[libmongocrypt]
216216
name=libmongocrypt repository
217-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2/libmongocrypt/1.15/x86_64
217+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2/libmongocrypt/1.16/x86_64
218218
gpgcheck=1
219219
enabled=1
220220
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -233,7 +233,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
233233
```
234234
[libmongocrypt]
235235
name=libmongocrypt repository
236-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2013.03/libmongocrypt/1.15/x86_64
236+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2013.03/libmongocrypt/1.16/x86_64
237237
gpgcheck=1
238238
enabled=1
239239
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -256,7 +256,7 @@ sudo rpm --import https://pgp.mongodb.com/libmongocrypt.asc
256256
Second, add the repository (be sure to change `<release>` to `12` or `15`, as appropriate to your system):
257257

258258
```
259-
sudo zypper addrepo --gpgcheck "https://libmongocrypt.s3.amazonaws.com/zypper/suse/<release>/libmongocrypt/1.15/x86_64" libmongocrypt
259+
sudo zypper addrepo --gpgcheck "https://libmongocrypt.s3.amazonaws.com/zypper/suse/<release>/libmongocrypt/1.16/x86_64" libmongocrypt
260260
```
261261

262262
Finally, install the libmongocrypt packages:

0 commit comments

Comments
 (0)