Skip to content

Commit eb5dc5b

Browse files
committed
update CHANGELOG.md for 1.9.0
1 parent c99073e commit eb5dc5b

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# ChangeLog
2+
## 1.9.0
3+
### New features
4+
- Support named KMS providers.
5+
- Add `arm64` Debian packages
6+
## Fixed
7+
- Fix `arm64` Alpine build.
28
## 1.8.4
39
### Fixed
410
- Fix `aarch64` packages for RHEL 8, RHEL 9, Amazon 2023, and Amazon 2

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Do the following when releasing:
137137
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.
138138

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

142142
### .deb Packages (Debian and Ubuntu) ###
143143

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

152152
```
153-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.8 universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
153+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.9 universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
154154
```
155155

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

158158
```
159-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/1.8 main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
159+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/1.9 main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
160160
```
161161

162162
Third, update the package cache:
@@ -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.8/x86_64
184+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/redhat/$releasever/libmongocrypt/1.9/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.8/x86_64
203+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2023/libmongocrypt/1.9/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.8/x86_64
222+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2/libmongocrypt/1.9/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.8/x86_64
241+
baseurl=https://libmongocrypt.s3.amazonaws.com/yum/amazon/2013.03/libmongocrypt/1.9/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.8/x86_64" libmongocrypt
264+
sudo zypper addrepo --gpgcheck "https://libmongocrypt.s3.amazonaws.com/zypper/suse/<release>/libmongocrypt/1.9/x86_64" libmongocrypt
265265
```
266266

267267
Finally, install the libmongocrypt packages:

0 commit comments

Comments
 (0)