Skip to content

Commit 085a0ce

Browse files
committed
Update CHANGELOG.md for 1.12.0
1 parent 11a8060 commit 085a0ce

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# ChangeLog
22
## 1.12.0
3+
### New features
4+
- Add option to configure Data Encryption Key cache lifetime (`mongocrypt_setopt_key_expiration`)
5+
- Add opt-in retry behavior for KMS operations (`mongocrypt_setopt_retry_kms`)
36
### Removed
47
- libmongocrypt is no longer published in the MongoDB package repository for RHEL 6. libmongocrypt may instead be built from source on RHEL 6, but support for RHEL 6 will be dropped in a future release.
58

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ See [releasing](./doc/releasing.md).
112112
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.
113113

114114
### Unstable Development Distribution Packages ###
115-
To install the latest unstable development package, change `1.11` to `development` in the package URLs listed in the subsequent instructions. For example, `https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.11` 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.
115+
To install the latest unstable development package, change `1.12` to `development` in the package URLs listed in the subsequent instructions. For example, `https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.12` 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.
116116

117117
### .deb Packages (Debian and Ubuntu) ###
118118

@@ -153,13 +153,13 @@ sudo sh -c 'curl -s --location https://pgp.mongodb.com/libmongocrypt.asc | gpg -
153153
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):
154154

155155
```
156-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.11 universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
156+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.12 universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
157157
```
158158

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

161161
```
162-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/1.11 main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
162+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/1.12 main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
163163
```
164164

165165
#### Package installation ####
@@ -181,7 +181,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
181181
```
182182
[libmongocrypt]
183183
name=libmongocrypt repository
184-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/redhat/$releasever/libmongocrypt/1.11/x86_64
184+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/redhat/$releasever/libmongocrypt/1.12/x86_64
185185
gpgcheck=1
186186
enabled=1
187187
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -200,7 +200,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
200200
```
201201
[libmongocrypt]
202202
name=libmongocrypt repository
203-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2023/libmongocrypt/1.11/x86_64
203+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2023/libmongocrypt/1.12/x86_64
204204
gpgcheck=1
205205
enabled=1
206206
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -219,7 +219,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
219219
```
220220
[libmongocrypt]
221221
name=libmongocrypt repository
222-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2/libmongocrypt/1.11/x86_64
222+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2/libmongocrypt/1.12/x86_64
223223
gpgcheck=1
224224
enabled=1
225225
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -238,7 +238,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
238238
```
239239
[libmongocrypt]
240240
name=libmongocrypt repository
241-
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2013.03/libmongocrypt/1.11/x86_64
241+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2013.03/libmongocrypt/1.12/x86_64
242242
gpgcheck=1
243243
enabled=1
244244
gpgkey=https://pgp.mongodb.com/libmongocrypt.asc
@@ -261,7 +261,7 @@ sudo rpm --import https://pgp.mongodb.com/libmongocrypt.asc
261261
Second, add the repository (be sure to change `<release>` to `12` or `15`, as appropriate to your system):
262262

263263
```
264-
sudo zypper addrepo --gpgcheck "https://libmongocrypt.s3.amazonaws.com/zypper/suse/<release>/libmongocrypt/1.11/x86_64" libmongocrypt
264+
sudo zypper addrepo --gpgcheck "https://libmongocrypt.s3.amazonaws.com/zypper/suse/<release>/libmongocrypt/1.12/x86_64" libmongocrypt
265265
```
266266

267267
Finally, install the libmongocrypt packages:

0 commit comments

Comments
 (0)