You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,11 @@
2
2
3
3
## Unreleased
4
4
5
+
6
+
### Changed
7
+
8
+
- Final release packages in the PPA are now available by specifying `release` in the repository configuration in place of the major/minor version (e.g., `1.17`). Details in `README.md`.
9
+
5
10
### Removed
6
11
7
12
- The configure-time CMake parameter `ENABLE_WINDOWS_STATIC_RUNTIME` has been
Copy file name to clipboardExpand all lines: README.md
+16-10Lines changed: 16 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,8 +105,14 @@ See [releasing](./doc/releasing.md).
105
105
## Installing libmongocrypt From Distribution Packages ##
106
106
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.
107
107
108
-
### Unstable Development Distribution Packages ###
109
-
To install the latest unstable development package, change `1.17` to `development` in the package URLs listed in the subsequent instructions. For example, `https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.17` 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.
108
+
### Package Publication Channels ###
109
+
The libmongocrypt project publishes packages in three different channels: `release`, `testing`, and `development`. The channel descriptions are:
110
+
111
+
-`release`: packages representing final releases, having version numbers like `1.17.2`, `1.18.0`, etc.
112
+
-`testing`: packages representing pre-releases (e.g., alpha and beta versions); this channel is currently dormant
113
+
-`development`: packages created from each build which passes CI, having version numbers like `1.17.3~<date>+git<commit-hash>`; these packages are not considered suitable for production use
114
+
115
+
In the below sections, replace the placeholder `<channel>` with the value that best matches your particular needs.
110
116
111
117
### .deb Packages (Debian and Ubuntu) ###
112
118
@@ -144,16 +150,16 @@ First, import the public key used to sign the package repositories:
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):
153
+
Second, create a list entry for the repository. For Ubuntu systems (be sure to change `<release>` to `xenial`, `bionic`, `focal`, `jammy`, or `noble` as appropriate to your system):
148
154
149
155
```
150
-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/1.17 universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
156
+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/ubuntu <release>/libmongocrypt/<channel> universe" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
151
157
```
152
158
153
159
For Debian systems (be sure to change `<release>` to `stretch`, `buster`, `bullseye`, `bookworm`, or `trixie` as appropriate to your system):
154
160
155
161
```
156
-
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/1.17 main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
162
+
echo "deb https://libmongocrypt.s3.amazonaws.com/apt/debian <release>/libmongocrypt/<channel> main" | sudo tee /etc/apt/sources.list.d/libmongocrypt.list
157
163
```
158
164
159
165
#### Package installation ####
@@ -176,7 +182,7 @@ Create the file `/etc/yum.repos.d/libmongocrypt.repo` with contents:
0 commit comments