- Export TweetMode (Extended) #92
- Add result_type to searchTweets #78.
-
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.
- Follow direct message API changes #65 #62
- Changed WithCursor type 5b9e9d7a
- Added type parameter to WithCursor to supports
Text
as the next cursor type. - Changed {previous,next}Cursor in WithCursor to be optional
- Added type parameter to WithCursor to supports
- Changed APIRequest type to take HTTP Method f25fd9b3
- Upgrade http-conduit dependencies to: http-conduit >= 2.0 && < 2.4 #59
- Upgrade http-conduit and http-client dependencies to: http-conduit >= 2.1.8 && http-client >= 0.4.30 #51
- Added
include_email
parameter toAccountVerifyCredentials
#49 - Added
extAltText
parameter toshowId
#50
- Added
fullText
parameter to direct message calls #47 - Replaced
SearchStatus
withStatus
type #46 - Added
accountUpdateProfile
#45 - Added
listsMembersCreateAll
andlistsMembersDestroyAll
- Parameter lenses in
Web.Twitter.Conduit
re-exported fromWeb.Twitter.Conduit.Parameters
are deprecated
- Changed the signature of functions defined in Web.Twitter.Conduit.Base, because Manager of http-conduit 2.0 and later does not need MonadResource. #43
- Removed
TwitterBaseM
- Removed
TW
monad - Re-exported
OAuth (..)
andCredential (..)
from authenticate-oauth - Re-exported
def
from data-default - Re-exported
Manager
,newManager
andtlsManagerSettings
from http-conduit
- Make TWToken and TWInfo an instance of Read and Typeable #42
- Fix warnings on GHC 7.10
- Fix doctest when twitter-feed package exists
- Add
sourceWithSearchResult
andsourceWithSearchResult'