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
Lwt 5.0.0 will be released in November 2019 or later, with some minor breaking changes. All breaking changes are announced at least three months ahead of time by Lwt, and this issue includes details on the ones scheduled for 5.0.0.
We found only one usage in opam that could be affected by this, in package eliom. This is fixed by checking for the empty list before calling Lwt.pick, or otherwise reasoning that the argument cannot be the empty list.
configure.ml will be removed, and replaced by direct use of discover.ml (Remove configure.ml #700 (comment)). Maintainers have been notified in that issue.
Lwt 5.0.0 will be released in November 2019 or later, with some minor breaking changes. All breaking changes are announced at least three months ahead of time by Lwt, and this issue includes details on the ones scheduled for 5.0.0.
Lwt.pick
will raiseInvalid_argument
on the empty list, instead of returning a forever-pending promise. This also applies toLwt.choose
,Lwt.npick
,Lwt.nchoose
, andLwt.nchoose_split
(#562).We found only one usage in opam that could be affected by this, in package
eliom
. This is fixed by checking for the empty list before callingLwt.pick
, or otherwise reasoning that the argument cannot be the empty list.cc @vasilisp @vouillon
[%lwt ...]
will no longer be translated toLwt.catch
by the PPX (#527). The replacement is to useLwt.catch
directly, ortry%lwt
.[%lwt ...]
is found in opam packagessqlexpr
andeliom
.cc @vasilisp @vouillon @mfp
The
-no-debug
option will be removed from the PPX (#528). It has no users in opam.Support for
Lwt_log
will be removed from the PPX (#520). It has no users in opam.The text was updated successfully, but these errors were encountered: