Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Update dependency tweepy to v4 #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 19, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
tweepy (source) ^3.10.0 -> ^4.0.0 age adoption passing confidence

Release Notes

tweepy/tweepy

v4.12.1: 4.12.1

Compare Source

Bug Fixes

  • Add 1 second buffer to API v2 streaming timeout (51a5d61)
    • The keep-alive is often received after marginally longer than 20 seconds, causing unnecessary timeouts and reconnects with a timeout of exactly 20 seconds
  • Default AsyncBaseStream to abort closed SSL transports (#​1904)
  • Warn when Tweet data is missing default edit_history_tweet_ids field (3dea0df, #​1994)
  • Change initial network_error_wait to 0 for streaming (b18c1a6)
    • Attempt to reconnect immediately when established streaming connection drops

Misc

  • Document limit and pagination_token parameters for Paginator and AsyncPaginator (e98ab02, bb934fc)
  • Use separate method to construct Response in Client and AsyncClient (#​1997, 9983735)
  • Log streaming connection error exceptions (b7f02c6)
  • Add CITATION.cff (2547b44)
  • Add DOI badge to README (72a33c9)
  • Replace docs/requirements.txt with docs extra (0ccfe86)
  • Fix Intersphinx link to namedtuple in documentation for Response (352c74a)
  • Improve format of badges in README (d41c813)

v4.12.0: 4.12.0

Compare Source

New Features / Improvements

  • Add support for Direct Messages with Twitter API v2 (#​1995)
    • Add DirectMessageEvent model
    • Add Client.get_direct_message_events, Client.create_direct_message, and Client.create_direct_message_conversation
    • Add AsyncClient.get_direct_message_events, AsyncClient.create_direct_message, and AsyncClient.create_direct_message_conversation
  • Add support for Python 3.11 (a391c66)
  • Add support for variants Media field (#​1910, e31be15)

Bug Fixes

Misc

  • Add documentation for edit_history_tweet_ids and edit_controls Tweet fields (2b1e159)
    • This documentation was previously missing from Twitter's API documentation
  • Fix class references in notes in documentation for AsyncClient methods (f737b87)
  • Fix signature of Client.get_quote_tweets in documentation (6f7de39)
  • Update actions/setup-python from v2 to v4 (f16b3dc, 0148be7)

v4.11.0: 4.11.0

Compare Source

New Features / Improvements

  • Add support for retrieving edited Tweet metadata
    • Add support for include_ext_edit_control parameter for API methods (e122f35, e736770)
    • Add support for edit_history_tweet_ids and edit_controls Tweet fields (#​1979, a1c104f)
  • Add asynchronous.AsyncPaginator for pagination for AsyncClient (33e444a)
  • Add support for exclude parameter for get_quote_tweets (4f28bd8, 17e02b7, 48ebdb7)

Bug Fixes

  • Handle 429 HTTP errors for streaming (#​1982, #​1986)
  • Lower API v2 streaming timeout to 20 seconds (#​1986)
  • Regenerate Authorization header prior to any reconnection requests for AsyncStream (29bbb7b, a4c6325, 5ade386)
  • Use tuple for endpoint_parameters argument in API.indicate_direct_message_typing (396ab84)
  • Update models.List methods to pass keyword arguments to API methods (#​1987)
  • Update models.List methods to use list ID instead of slug (73f6308)

Misc

  • Log text of HTTP response when handling request error in AsyncBaseStream (51c3762)
  • Update signature for get_list_tweets in documentation (86577b1)
    • Add media_fields, place_fields, and poll_fields parameters
  • Add version changed directive to documentation for get_list_tweets (5cb2616)
  • Improve documentation for wait_on_rate_limit parameter for streaming (#​1986)
  • Add release dates to changelog (f665ce6, eafa665, 3f0cc76)
  • Add sections for old and previously missing versions to changelog (6aa1b77)
  • Update cassettes for testing methods that return Tweet objects (872b33e)

v4.10.1: 4.10.1

Compare Source

Bug Fixes

  • Fix AsyncBaseClient rate limit handling (#​1902)
  • Fix handling of StreamRule when passed in list to StreamingClient.delete_rules or AsyncStreamingClient.delete_rules (#​1942)
  • Add support for media_fields, place_fields, and poll_fields parameters for Client.get_list_tweets and AsyncClient.get_list_tweets (#​1931)
  • Ignore AsyncClient method parameters explicitly passed as None (#​1944)

Misc

  • Log text of HTTP response when handling request error in BaseStream (598ea64)
  • Update Requests documentation URL for Intersphinx linking (2c7213d)
  • Correct typo in documentation for StreamingClient and AsyncStreamingClient add_rules and delete_rules methods (#​1937)

v4.10.0: 4.10.0

Compare Source

New Features / Improvements

  • Add asynchronous interfaces for Twitter API v2
    • Add asynchronous.AsyncClient (0aadd53)
      • Add async_lru as requirement for async extra
    • Add asynchronous.AsyncStreamingClient (9051ba6)
  • Add support for reverse chronological home timeline with Twitter API v2 (#​1900)
    • Add Client.get_home_timeline and AsyncClient.get_home_timeline
  • Update the User-Agent header based on AsyncStream.user_agent even if AsyncStream.session is already initialized/set (096a62c)

Twitter API Deprecations

  • Deprecate AsyncStream.sample and note deprecation of compliance messages for AsyncStream.filter (e043074, 1b77007)

Misc

  • Update and improve various documentation and tests

v4.9.0: 4.9.0

Compare Source

New Features / Improvements

  • Add support for Direct Message typing indicator and read receipts (#​1856)
    • Add API.indicate_direct_message_typing and API.mark_direct_message_read
  • Fallback to "detail" response value for HTTPException message (b6b8241)
  • Handle "error" key of response being a string in HTTPException (2da4452)

Twitter API Deprecations

  • Deprecate Stream.sample and note deprecation of compliance messages for Stream.filter (#​1876)

Misc

  • Use setup.cfg for coverage.py configuration (e24bb2f)
    • Explicitly specify coverage >= 4.4.2 requirement for dev extra (b5bd35e)
  • Use setup.cfg for tox configuration (e24bb2f)
    • Update lower bound for dev extra tox requirement to >= 3.21.0 (ba6e6b1)
  • Remove tests_require from setup.py (2870031)
  • Stop creating universal wheels (9d93ec8)
  • Update and improve various documentation and tests

v4.8.0: 4.8.0

Compare Source

New Features / Improvements

  • Add support for Bookmarks with Twitter API v2 (#​1848)
    • Add Client.remove_bookmark, Client.get_bookmarks, Client.bookmark
  • Add support for using OAuth 2.0 Authorization Code Flow with Client methods that require the authenticating user's ID (0157d0b)
    • Raise TypeError for those methods when the access token isn't set
  • Raise NotFound rather than HTTPException when encountering 404 response status codes in BaseClient.request (b6b8219)

v4.7.0: 4.7.0

Compare Source

New Features / Improvements

  • Add support for Quote Tweets lookup with Twitter API v2 (#​1844)
    • Add Client.get_quote_tweets

Python Backwards-Incompatible Changes

  • Drop support for Python 3.6, which has reached end-of-life status (#​1788)

Bug Fixes

  • Fix Client.follow to return response from Client.follow_user rather than None (0742f54)
  • Fix Client.unfollow to return response from Client.unfollow_user rather than None (c1787f0)

Misc

  • Organize documentation arrangement and improve index / table of contents categorization (c5310d1)
  • Add documentation for API v2 models
    • Add documentation for List (360594b)
    • Add documentation for Media (c2dacc8)
    • Add documentation for Place (e3fa223)
    • Add documentation for Poll (61ed5d7)
    • Add documentation for Space (1a7ea1f)
    • Add documentation for Tweet (b9cef72)
    • Add documentation for ReferencedTweet (9a995b5)
    • Add documentation for User (aa3658e)
  • Use Read the Docs Sphinx search extension for documentation (72c7e01)
  • Add and improve API v2 examples (#​1835, 6a6ef98)
  • Use dash instead of underscore for requests-oauthlib requirement (2c94758)
  • Optimize Tweet.referenced_tweets initialization (3299881)
  • Update and improve various documentation

v4.6.0: 4.6.0

Compare Source

This will be the last minor version to support Python 3.6 (#​1788).

New Features / Improvements

  • Add support for streaming with Twitter API v2 (86244c1)
    • Refactor Client and Stream to inherit from new BaseClient and BaseStream classes and add StreamingClient, StreamResponse, and StreamRule
  • Add support for new max_results and pagination_token parameters for Client.get_liking_users (bdd6b55)
  • Add support for new max_results and pagination_token parameters for Client.get_retweeters (3479e56)
  • Add support for new sort_order parameter for Client.search_all_tweets (bd202e5)
  • Add support for new sort_order parameter for Client.search_recent_tweets (8b47170)
  • Add Client.get_space_tweets (c8d5d9a)
  • Add Space.subscriber_count (1ffc8cd)
  • Use repr of text in Tweet.__repr__ (4e2997e)
    • This avoids including inconstant newlines, rather than escaped newlines, in the string representation of the Tweet object, making it more consistent
  • Override Mapping.__contains__ in DataMapping (9f10a58)
    • This allows membership tests to check for existence within data in Twitter API v2 models, rather than existence of the attribute at all
  • Initialize Stream.session within Stream.__init__ (80adf5b)
    • Update the user agent based on Stream.user_agent even if Stream.session is already initialized
  • Use oauthlib to create code challenge and verifier for PKCE (eb22416)
    • Explicitly specify oauthlib dependency requirement as >= 3.2.0 (fc0d967)
      • Update requests_oauthlib dependency requirement to >= 1.2.0 (dd7e2c9)

Bug Fixes

  • Fix datetime endpoint parameter formatting in Client._make_request (#​1793)

Misc

  • Remove undocumented debug function (a702325)
  • Add logging documentation (7701506)
  • Update and improve various documentation

v4.5.0: 4.5.0

Compare Source

New Features / Improvements

  • Revamp authentication interface
    • Add support for OAuth 2.0 Authorization Code Flow with PKCE
    • Rename OAuthHandler to OAuth1UserHandler (fb6eb7d)
      • OAuthHandler is kept as a deprecated alias (cba7317)
    • Rename AppAuthHandler to Oauth2AppHandler (529d793)
      • AppAuthHandler is kept as a deprecated alias (d4ceb1a)
    • Rename OAuth2Bearer to OAuth2BearerHandler (0781fde)
    • Allow passing access token and secret directly to OAuth1UserHandler.__init__ (99f3583)
      • Note, this changes the callback parameter to be the fifth argument, positionally
    • Allow OAuth2BearerHandler to be used as auth parameter for API (5a2a3fc)
    • Remove AuthHandler (d600c4c)
    • Remove OAuth1UserHandler.get_xauth_access_token (8e2de9f)
    • Update and improve authentication documentation (f9a722b)
    • Other improvements and optimizations
  • Add Client.get_me (c49cbdf, 62b5b58, f6895d3, bb87b26)
  • Add support for Media.url (#​1722)
  • Use requests exception to handle JSONDecodeError (b492b0a)
    • Update requests dependency requirement to >= 2.27.0 (ed66e8e)

Bug Fixes

  • Fix Response.includes["polls"] not being Poll objects (#​1733)
  • Fix Paginator handling of Client.get_all_tweets_count (#​1761)

Misc

  • Improve and optimize Model.__getstate__ (#​1707)
  • Add API v2 examples to documentation (bbdbb7b)
  • Update and improve various documentation

v4.4.0: 4.4.0

Compare Source

New Features / Improvements

  • Add support for List lookup with Twitter API v2 (0aa2366)
  • Add Client.get_space_buyers (8bf58ca)
  • Add Space.ended_at and Space.topic_ids (c89a233)

Bug Fixes

  • Remove erroneous Space.__str__ (ebb4bfd)

v4.3.0: 4.3.0

Compare Source

New Features / Improvements

  • Add support for managing Tweets with Twitter API v2 (7884e3a)

Misc

  • Document HTTPException attributes (c62c31a)
  • Add table to documentation mapping Client methods to Twitter API v2 endpoints (0572b03)
  • Add and improve examples
  • Revamp examples page in documentation
  • Update and improve various documentation and tests

v4.2.0: 4.2.0

Compare Source

New Features / Improvements

  • Add support for managing lists with Twitter API v2 (b1342bf)
  • Rename Client.follow and Client.unfollow to Client.follow_user and Client.unfollow_user, respectively (8f8de15)
    • Client.follow and Client.unfollow are kept as deprecated aliases
  • Add FAQ section in documentation
  • Update and improve various documentation and tests
Twitter API Changes
  • Change state to optional parameter for Client.search_spaces (e61d5d6)

Bug Fixes

  • Fix parsing of datetime strings for API v2 models with Python 3.6 (5bf2446)
  • Fix models missing an API instance attribute when using Cursor with pagination by ID (451e921)

v4.1.0: 4.1.0

Compare Source

New Features / Improvements

  • Add support for Python 3.10 (229b738)
    • Update minimum dev requirement version for tox to 3.14.0
  • Add support for Spaces (5c68892)
    • Add Space model
    • Add Client.search_spaces, Client.get_spaces, and Client.get_space
  • Add support for batch compliance (6ca75e1)
    • Add Client.get_compliance_jobs, Client.get_compliance_job, and Client.create_compliance_job
  • Add Client.get_muted (00cdab8)
  • Minor documentation corrections

v4.0.1: 4.0.1

Compare Source

Bug Fixes

  • Fix handling of strings passed as fields parameters for Client methods (d61a5d9)
  • Include unexpected parameters passed to Client methods in Twitter API request (618d1c2)
    • This future-proofs for new endpoint parameters
  • Stop checking parameter names when converting parameters passed to Client methods from datetimes to strings (1320a37)
    • This future-proofs for new endpoint parameters besides start_time and end_time that accept datetimes
  • Handle simplejson being installed when handling JSONDecodeError in HTTPException (586c162)

Misc

  • Update documentation requirements (3fa38b6, 388e2f6, 4315ab0)
  • Remove nose usage from tests (b4c06a4)
  • Remove mock and nose from tests extra and requirements (0f071fd, b4c06a4)
  • Update and improve various documentation and tests

v4.0.0: 4.0.0

Compare Source

Major New Features / Improvements

  • Support Twitter API v2 (#​1472, #​1535)

    • Replace API v1.1 models in package namespace
  • Rework media uploading (#​640, #​1486, #​1501)

  • Support asynchronous streaming (#​732, #​1491)

  • Rework API

    • Replace bind_api and APIMethod with API.request
      • Stop using property decorators for API methods
      • Use pagination decorator
    • Add requests.Session instance as API.session attribute (2f28757)
      • Initialize a single requests.Session instance per API instance, rather than for each request
    • Log warning when API.request is passed an unexpected keyword argument that isn't an endpoint parameter (c82d7ac)
    • Rename allowed parameters (allowed_param) to endpoint parameters (endpoint_parameters) (b4fc6a0)
    • Rename methods and method parameters (see Backwards-Incompatible Changes section)
    • Require parameters for methods (see Backwards-Incompatible Changes section)
    • Stop allowing arbitrary positional arguments for methods (see Backwards-Incompatible Changes section)
    • Remove unnecessary attributes and parameters (see Backwards-Incompatible Changes section)
    • Improve, optimize, and simplify API.request and other API methods
  • Rework streaming

    • StreamListener has been merged into Stream (see Backwards-Incompatible Changes section)
    • Stream data/event handling methods (i.e. those starting with on_) now log by default and disregard return values
    • Allow the stream to disconnect when any line of data is received, including keep-alive signals (#​773, #​897)
    • Remove, rename, and replace attributes, methods, and parameters (see Backwards-Incompatible Changes section)
    • Improve, optimize, and simplify Stream
  • Rework documentation

    • Automatically use docstrings for documentation
    • Use NumPy style docstrings
    • Use Intersphinx linking
    • Add tooltips for cross references using sphinx-hoverxref
    • Document Stream (18a6059)
    • Document models (0724060, 78a0c22)
    • Document pagination (695d531, 652fece)
    • Add table for API documentation (6db8e4c)
    • Separate documentation for exceptions (8a831b1)
    • Move changelog to documentation (fc98629)
    • Update, improve, and organize documentation
  • Rework exceptions

Backwards-Incompatible Changes

API
  • Rename API and models methods
    • API.blocks -> API.get_blocks (9541794)
    • API.blocks_ids -> API.get_blocked_ids (e241ca4)
    • API.destroy_direct_message -> API.delete_direct_message (2731fc9)
      • DirectMessage.destroy -> DirectMessage.delete (2731fc9)
    • API.favorites -> API.get_favorites (3c467da)
    • API.followers -> API.get_followers (ce768d9)
    • API.followers_ids -> API.get_follower_ids (fa5e7c4)
      • models.User.followers_ids -> models.User.follower_ids (fa5e7c4)
    • API.friends -> API.get_friends (6f3fccb)
    • API.friends_ids -> API.get_friend_ids (bab3e5e)
    • API.friendships_incoming -> API.incoming_friendships (007bd07)
    • API.friendships_outgoing -> API.outgoing_friendships (1400065)
    • API.geo_search -> API.search_geo (6f4fb39)
    • API.list_direct_messages -> API.get_direct_messages (ff1186f)
    • API.list_members -> API.get_list_members (5845f02)
    • API.list_subscribers -> API.get_list_subscribers (a05b630)
    • API.lists_all -> API.get_lists (458e0e8)
    • API.lists_memberships -> API.get_list_memberships (9dddc12)
      • models.User.lists_memberships -> models.User.list_memberships (9dddc12)
    • API.lists_subscriptions -> API.get_list_subscriptions (51945a7)
      • models.User.lists_subscriptions -> models.User.list_subscriptions (51945a7)
    • API.mutes -> API.get_mutes (744edc2)
    • API.mutes_ids -> API.get_muted_ids (ea26a29)
    • API.retweeters -> API.get_retweeter_ids (588c342)
    • API.retweets -> API.get_retweets (3b3ba24)
    • API.retweets_of_me -> API.get_retweets_of_me (737bd0b)
    • API.saved_searches -> API.get_saved_searches (8b39f74)
    • API.search -> API.search_tweets (7fac253)
    • API.show_friendship -> API.get_friendship (ee9ea2e)
    • API.show_list_member -> API.get_list_member (431ab15)
    • API.show_list_subscriber -> API.get_list_subscriber (bf26301)
    • API.statuses_lookup -> API.lookup_statuses (#​477)
    • API.trends_available -> API.available_trends (68b33d7)
    • API.trends_closest -> API.closest_trends (2e18162)
    • API.trends_place -> API.get_place_trends (4912a7c)
    • API.update_with_media -> API.update_status_with_media (0a5e533)
  • Rename API method parameters
    • API.geo_id: id -> place_id (78051e8)
    • API.lookup_friendships: screen_names -> screen_name (4573b35), user_ids -> user_id (3bcccf8)
    • API.lookup_statuses: id_ -> id (f13a34b)
    • API.lookup_users: screen_names -> screen_name (17a2e7c), user_ids -> user_id (e7d9e55)
    • API.search_30_day: environment_name -> label (6c66c60)
    • API.search_full_archive: environment_name -> label (295bfe4)
    • API.update_profile_image: file_ -> file (69f6c1d)
  • Require API method parameters
    • API.closest_trends: lat, long (75b9616)
    • API.create_favorite: id (d3d2abe)
    • API.create_list: name (5e7385a)
    • API.create_saved_search: query (c57a4be)
    • API.delete_direct_message: id (bcb56ab)
    • API.destroy_favorite: id (a9d41b6)
    • API.get_direct_message: id (f5775ee)
    • API.get_oembed: url (af0cc51)
    • API.get_place_trends: id (c50f540)
    • API.get_retweeter_ids: id (66f6704)
    • API.get_status: id (bac73c3)
    • API.reverse_geocode: lat, long (87d8646)
    • API.search_30_day: query (52874b7)
    • API.search_full_archive: query (801f15d)
    • API.search_tweets: q (9377e7e)
    • API.search_users: q (21802f9)
    • API.update_status: status (f64c076)
    • API.update_status_with_media: status (0726263)
  • Stop allowing positional arguments for API methods (change to be keyword-only arguments):
    • API.add_list_member (ae18ee5)
    • API.add_list_members (8eb900f)
    • API.available_trends (7a74863)
    • API.closest_trends, besides lat and long (7946490)
    • API.create_block (caa34c6)
    • API.create_favorite, besides id (0b83984)
    • API.create_friendship (82cd798)
    • API.create_list, besides name (25cb01e)
    • API.create_mute (4aae710)
    • API.create_saved_search, besides query (76be2d9)
    • API.delete_direct_message, besides id (53ca00f)
    • API.destroy_block (c49cfb2)
    • API.destroy_favorite, besides id (8afee87)
    • API.destroy_friendship (b2d44fe)
    • API.destroy_list (4b2cfc4)
    • API.destroy_mute (009b54e)
    • API.destroy_saved_search, besides id (b7afca2)
    • API.destroy_status, besides id (876c8ca)
    • API.geo_id, besides place_id (a0cff22)
    • API.get_blocked_ids (ff38b70)
    • API.get_blocks (dc81854)
    • API.get_direct_message, besides id (4ae0ec8)
    • API.get_direct_messages (8e0507d)
    • API.get_favorites (e80b49a)
    • API.get_follower_ids (7d42597)
    • API.get_followers (c6ab5a0)
    • API.get_friend_ids (c65641b)
    • API.get_friends (e6965fa)
    • API.get_friendship (6dea7de)
    • API.get_list (92dc37f)
    • API.get_list_member (0af06db)
    • API.get_list_members (7c8be8d)
    • API.get_list_memberships (ec7601f)
    • API.get_list_subscriber (a175cdd)
    • API.get_list_subscribers (3ee84ef)
    • API.get_list_subscriptions (178d719)
    • API.get_lists (3cd0058)
    • API.get_muted_ids (2967104)
    • API.get_mutes (9e9d370)
    • API.get_oembed, besides url (d13d853)
    • API.get_place_trends, besides id (548810c)
    • API.get_retweeter_ids, besides id (9907c25)
    • API.get_retweets, besides id (0bd0292)
    • API.get_retweets_of_me (2b2ed0a)
    • API.get_saved_search, besides id (1d3d3ae)
    • API.get_saved_searches (c5f5b4b)
    • API.get_settings (2c2f0ec)
    • API.get_status, besides id (30af3ac)
    • API.get_user (6b761ce)
    • API.home_timeline (b91be22)
    • API.incoming_friendships (6d3b7f2)
    • API.list_timeline (e3ec5c1)
    • API.lookup_friendships (0eff951)
    • API.lookup_statuses, besides id (cf9845d)
    • API.lookup_users (7317109)
    • API.media_upload, besides filename (ec2498f)
    • API.mentions_timeline (3614ce4)
    • API.outgoing_friendships (09f8504)
    • API.rate_limit_status (b4b91c1)
    • API.remove_list_member (e7fa800)
    • API.remove_list_members (593ef1c)
    • API.report_spam (f55efcf)
    • API.retweet, besides id (4f7be88)
    • API.reverse_geocode: besides lat and long (b209c48)
    • API.search_30_day, besides label and query (434fd35)
    • API.search_full_archive, besides label and query (44391bc)
    • API.search_geo (0a6bec9)
    • API.search_tweets, besides q (445da4e)
    • API.search_users, besides q (76ca416)
    • API.send_direct_message, besides recipient_id and text (7d1a549)
    • API.set_settings (bf1d928)
    • API.supported_languages (2034efc)
    • API.subscribe_list (ee3b718)
    • API.unretweet, besides id (4626c42)
    • API.unsubscribe_list (2df2311)
    • API.update_list (8b3b4fb)
    • API.update_profile (99cd815)
    • API.update_profile_banner, besides filename (1ca22be)
    • API.update_profile_image, besides filename (3539fa2)
    • API.update_status, besides status (761cbfe)
    • API.update_status_with_media, besides filename and status (0ac4e83)
    • API.user_timeline (0ef964f)
  • Reorder API.update_status_with_media parameters (87abdcd)
  • Rename API initialization parameter: auth_handler -> auth (ee313bd)
  • Stop allowing positional arguments besides auth for API initialization (da2f276)
  • Remove API.api_root and API.upload_root (e757919)
  • Remove API.compression (4590c7a)
  • Remove API.me, AuthHandler.get_username, and OAuthHandler.get_username (807f937)
  • Remove API.search_host and API.search_root (92db0cf)
  • Remove API.wait_on_rate_limit_notify (f325738)
    • Always log warning when rate limit reached
  • Remove map_ keyword argument aliasing for API.lookup_statuses (0a404c3)
Stream
  • Remove and replace StreamListener by merging it into Stream (39abff4)
    • StreamListener.keep_alive -> Stream.on_keep_alive (abf4d5d)
    • StreamListener.on_connect -> Stream.on_connect
    • StreamListener.on_data -> Stream.on_data
    • StreamListener.on_delete -> Stream.on_delete
    • StreamListener.on_disconnect -> Stream.on_disconnect_message (6c3b997)
    • StreamListener.on_error -> Stream.on_request_error (fe3bb8b)
    • StreamListener.on_exception -> Stream.on_exception

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants