All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Resolve compile warnings -> Adjust Config to not warn (#156).
- Bump minimum elixir version to 1.9
- Fix error on elixir v1.14.
- Fix derive missing field issue (#150).
- Update oauther for OTP 24 environment (#149).
- Refine documents (#139).
- Allow for multiple tweets in a given message (#104).
- Support destroy lists API (#145).
- Support add members to a list API (#146).
- Support create lists API (#144).
- Revert "Covering all patterns and preventing errors" (#136).
- Fix for breaking change.
- Fix behavior definition for access_token and request_token (#123).
- Fix for auth.ex to cover all patterns and preventing errors (#124).
Replaced poison dep with jason 1.1 (#121).
- Add
full_text
field back into tweet model (#122).
- Update dependency to fix error with elixir v1.8 (#112, #113).
- Add raw_data fields and specs to models (#117).
- Add support for update with chunked media upload (#114).
- Move all specs into a behaviour file (#108).
- Implement friendships lookup (#111).
- Fix ArgumentError or UnicodeConversionError when parsing request params with a list as value (#102).
- Fixed crash if message is not string (#98).
- Add extended_tweet field to tweet struct (#95).
- Fix - no metadata for search results (#84).
- Immediately stop stream when oauth config is invalid (#81, #87).
- Add unretweet function (#90).
- Requires elixir 1.4.0 or later.
- Bugfix/cleanup char list deprecation warnings (#94).
- Cleanup deps (#89).
- Add media chunk upload functionality (#83).
- Update dependency.
- Bumped poison dep to 3.0 (#80).
- Fix for crash when calling user_lookup on more than 2 twitter IDs (#78).
- Add support for blocking/unblocking users (#71).
- Add support for users/profile_banner (#70).
- Update dependencies.
- Fix option for account/verify_credentials (#68).
-
OAuth dependency library is updated (#63).
- Adding
{:oauth, github: "tim/erlang-oauth"}
in mix.exs becomes not required.
- Adding
-
Configurations for proxy is simplified.
-
Fix [mix bench] task error and library updates.
- Update benchfella and remove some warning notes about setup/teardown.
- Allow for looking up multiple users with a list (#61).
- Add new Tweet fields for extended tweets (#57).
- Support for direct messages in streaming API (#60).
- Update dependencies.
- Improve handling for connection error.
- Trap connection errors and raise with custom exception (#45).
- Support user streaming function.
- ExTwitter.stream_user
- Drop Timex.Date.now() call in favor of native Erlang (#43).
- Implement creating/destroying favorites (#41).
- ExTwitter.create_favorite
- ExTwitter.destroy_favorite
- Expose user_id and screen_name from access_token response (#40).
- Add configurations for proxy (#36).
- Add extended_entities field to Model.Tweet (#37).
- Fix stream operations (ex. Stream.take) in different processes fail to receive tweets (#12, #19).
- Fix auth methods so that redirect_url makes sense (#34).
- Replaces ExTwitter.request_token/0 with ExTwitter.request_token/1 which has redirect_url parameter.
- Removes redirect_url parameter from ExTwitter.authorize_url.
- Removes redirect_url parameter from ExTwitter.authenticate_url.
- Update versions of dependent modules.
- Improve stability of streaming connection.
- Restart stream when connection closed remotely or no messages sent (#32).
- Add remaining direct messages API end points (#30).
- ExTwitter.sent_direct_messages
- ExTwitter.destroy_direct_message
- ExTwitter.new_direct_message
- Support showing direct messages (#29).
- ExTwitter.direct_messages
- ExTwitter.direct_message
- Add missing attributes for Tweet, User, Entities models (#28).
- Fix application naming (:ex_twitter -> :extwitter) in config.exs (#25, #26).
- Please use the name :extwitter instead of :ex_twitter after this version.
- Updates for elixir v1.1 (#24).
- Support verifying credentials (#23).
- ExTwitter.verify_credentials
- Support authentication / authorization (#21).
- ExTwitter.request_token
- ExTwitter.authorize_url
- ExTwitter.authenticate_url
- ExTwitter.access_token
- Support following and unfollowing.
- ExTwitter.follow
- ExTwitter.unfollow
- Support retweeting.
- ExTwitter.retweet
- Support posting tweets with image (#20).
- ExTwitter.update_with_media
- Support specifying
user_id
as basic parameter in addition to the existingscreen_name
in the following functions.- ExTwitter.follower_ids
- ExTwitter.followers
- ExTwitter.friend_ids
- ExTwitter.friends
- ExTwitter.lists
- ExTwitter.user_lookup
- Maps returned by the APIs will have atom keys instead of string keys.
- Use poison as internal JSON parser.
- Apply some benchmark related updates (#11, #13).
- Add
ExTwitter.follower_ids
,ExTwitter.friend_ids
. - Add
ExTwitter.RateLimitExceededError
for handling rate limit exceeded case.
ExTwitter.followers
andExTwitter.friends
now returnExTwitter.Model.Cursor
instead ofExTwitter.Model.User
. Callcursor.items
for the returned cursor to fetch the list of users or ids.