-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[new release] conduit, conduit-lwt, conduit-async, conduit-mirage and conduit-lwt-unix (2.0.0) #14689
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… conduit-lwt-unix (2.0.0) CHANGES: * lwt-unix: obtain client IP correctly when using TLS connections (mirage/ocaml-conduit#277 @victorgomes) * lwt-unix: replace the dune/ocaml file with a `(select)` build form. This avoids invoking `ocamlfind` from the build, and fits in with the rest of dune builds much more naturally (@avsm). * lwt-unix: force callers to give a custom callback `on_exn` in case of exceptions to avoid random crashes (mirage/ocaml-conduit#261 @kit-ty-kate) * mirage: use `dns-client>=4.0.0` which is the `udns` implementation (mirage/ocaml-conduit#290 @hannesm) * mirage: rename `mirage-conduit` to `conduit-mirage` to fit the naming structure of this library suite more. All new users of Mirage should use `conduit-mirage`, and migrating should involve simply swapping the name in your `dune` and `opam` files (mirage/ocaml-conduit#302 @hannesm @avsm) * async: expose `verify_mode` correctly in `Conduit_async` (mirage/ocaml-conduit#298 @brendanlong)
avsm
added a commit
to avsm/opam-repository
that referenced
this pull request
Aug 18, 2019
due to Sequence.flat_map and find found in revdeps for ocaml#14689
due to making ?on_exn a mandatory function in the callback cc @zshipko
thanks @avsm! |
anmonteiro
added a commit
to anmonteiro/ocaml-h2
that referenced
this pull request
Sep 2, 2019
Following the rename in v2 (ocaml/opam-repository#14689)
anmonteiro
added a commit
to anmonteiro/ocaml-h2
that referenced
this pull request
Sep 3, 2019
Following the rename in v2 (ocaml/opam-repository#14689)
anmonteiro
added a commit
to anmonteiro/httpun
that referenced
this pull request
Sep 3, 2019
Following the rename in v2 (ocaml/opam-repository#14689)
anmonteiro
added a commit
to anmonteiro/httpun
that referenced
this pull request
Sep 3, 2019
Following the rename in v2 (ocaml/opam-repository#14689)
anmonteiro
added a commit
to anmonteiro/ocaml-h2
that referenced
this pull request
Sep 3, 2019
Following the rename in v2 (ocaml/opam-repository#14689)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A network connection establishment library
CHANGES:
(select)
build form.This avoids invoking
ocamlfind
from the build, and fits in with therest of dune builds much more naturally (@avsm).
on_exn
in case of exceptionsto avoid random crashes (Force users to give a custom callback in case of exception to avoid random crashes mirage/ocaml-conduit#261 @kit-ty-kate)
dns-client>=4.0.0
which is theudns
implementation (use dns-client >= 4.0.0 in mirage-conduit mirage/ocaml-conduit#290 @hannesm)mirage-conduit
toconduit-mirage
to fit the naming structureof this library suite more. All new users of Mirage should use
conduit-mirage
,and migrating should involve simply swapping the name in your
dune
andopam
files (Rename mirage-conduit to conduit-mirage mirage/ocaml-conduit#302 @hannesm @avsm)
verify_mode
correctly inConduit_async
(Expose verify_mode in Conduit_async mirage/ocaml-conduit#298 @brendanlong)