File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.8.2] - 2024-09-27
11
+
12
+ ### Added
13
+
14
+ - Add support for overriding the CA file path by setting the ` HEX_CACERTS_PATH `
15
+ env var, which is the same that Mix uses. If unset, it will fallback to
16
+ ` CAStore.file_path/0 ` .
17
+
10
18
## [ 0.8.1] - 2024-09-11
11
19
12
20
### Fixed
@@ -269,7 +277,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
269
277
270
278
- Add basic features to download and use the precompiled NIFs in a safe way.
271
279
272
- [ Unreleased ] : https://github.com/philss/rustler_precompiled/compare/v0.8.1...HEAD
280
+ [ Unreleased ] : https://github.com/philss/rustler_precompiled/compare/v0.8.2...HEAD
281
+ [ 0.8.2 ] : https://github.com/philss/rustler_precompiled/compare/v0.8.1...v0.8.2
273
282
[ 0.8.1 ] : https://github.com/philss/rustler_precompiled/compare/v0.8.0...v0.8.1
274
283
[ 0.8.0 ] : https://github.com/philss/rustler_precompiled/compare/v0.7.3...v0.8.0
275
284
[ 0.7.3 ] : https://github.com/philss/rustler_precompiled/compare/v0.7.2...v0.7.3
Original file line number Diff line number Diff line change @@ -109,6 +109,9 @@ defmodule RustlerPrecompiled do
109
109
110
110
* `HTTPS_PROXY` or `https_proxy` - Sets the HTTPS proxy configuration.
111
111
112
+ * `HEX_CACERTS_PATH` - Sets the path for a custom CA certificates file.
113
+ If unset, defaults to `CAStore.file_path/0`.
114
+
112
115
* `MIX_XDG` - If present, sets the OS as `:linux` for the `:filename.basedir/3` when getting
113
116
an user cache dir.
114
117
Original file line number Diff line number Diff line change 1
1
defmodule RustlerPrecompiled.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.8.1 "
4
+ @ version "0.8.2 "
5
5
@ repo "https://github.com/philss/rustler_precompiled"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments