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
Due to an oversight the two functions introduced in
6039cd2 and released as part of the
(retroactively deprecated) 0.1.6.0 release were lost in the
0.1.6.1 release.
This merge-commit tries to rectify the situation by finally
reintroducing them in a PVP-gnostic way by tagging a new 0.1.7.0
release and treating 0.1.6.0 as if it didn't exist (by deprecation
on Hackage).
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
See also http://pvp.haskell.org/faq
2
2
3
+
### 0.1.7.0
4
+
5
+
* New function `voidContextSSL` for creating a _void_ SSL Context which rejects any TLS handshake attempts
6
+
* New function `contextSetCASystemStore` exposing functionality embedded in `baselineContextSSL`
7
+
8
+
NB: These functions were originally introduced in the retroactively deprecated 0.1.6.0 release but due to an oversight were dropped again in 0.1.6.1 inadvertently. This minor release reintroduces them in a PVP-compliant way.
9
+
3
10
#### 0.1.6.4
4
11
5
12
* Depend on `directory` rather than `system-fileio` ([PR #18](https://github.com/haskell-hvr/http-io-streams/pull/18)).
@@ -26,9 +33,12 @@ Tested with GHC 7.4 - 9.6.
26
33
#### 0.1.6.1
27
34
28
35
* Build with GHC 9.2 and `ghc-prim-0.8` (via `base-4.16`).
36
+
* Accidentally removed function `voidContextSSL` and `contextSetCASystemStore` introduced in 0.1.6.0
29
37
30
-
### 0.1.6.0
38
+
### 0.1.6.0**deprecated**
31
39
40
+
* New function `voidContextSSL` for creating a _void_ SSL Context which rejects any TLS handshake attempts
41
+
* New function `contextSetCASystemStore` exposing functionality embedded in `baselineContextSSL`
32
42
* New function `openConnectionAddress''` supporting supplying local `SSLContext`s as well as modifying the `SSL` connection before initiating the client SSL handshake.
33
43
* New function `openConnectionSSL'` which allows to customize the SSL connection _before_ a client SSL handshake is attempted.
34
44
* New convenience function `getContextSSL` function allowing to retrieve global `SSLContext`.
0 commit comments