Releases: himura/twitter-conduit
Releases · himura/twitter-conduit
0.6.1
What's Changed
- Deprecate Web.Twitter.Conduit.Status module by @himura in #87
- Drop GHC 8.4 support by @himura in #89
- Use DataKinds for cursorKey impl of WithCursor by @himura in #88
- Fix document by @himura in #91
- Fix doco by @bjing in #90
- Export TweetMode (Extended) by @himura in #92
- Release 0.6.1 by @himura in #93
Full Changelog: 0.6.0...0.6.1
0.6.0
0.5.1
0.5.0
-
Support for OverloadedLabels
twitter-conduit
now supports the OverloadedLabels extensions for overloaded parameters inAPIRequest
(e.g.:#count
,#max_id
).We can now write:
homeTimeline & #count ?~ 200
instead of:
import qualified Web.Twitter.Conduit.Parameters as P homeTimeline & P.count ?~ 200
NOTE: See
Web.Twitter.Conduit.ParametersDeprecated
module if you would like to use classic value lenses. -
Drop supports conduit < 1.3 and http-conduit < 2.3 #69.
-
Web.Twitter.Conduit.Status
is no longer re-exported by Web.Twitter.Conduit in order to avoid name conflictions (e.g.update
,lookup
) #71. -
Add alias for functions in
Web.Twitter.Conduit.Status
with statuses- prefix #71.
(e.g.Web.Twitter.Conduit.Api.statusesHomeTimeline
forWeb.Twitter.Conduit.Status.homeTimeline
) -
Drop supports network < 2.6 #74.
-
Support
tweet_mode
parameter #72.