Skip to content

Releases: Jackenmen/rlapi

0.6.0a1

24 Apr 21:07
2b8c2ad
Compare
Choose a tag to compare

This release focuses on migration to the new Rocket League API.

Breaking changes:

  • Removed rlapi.utils module
  • Removed Playlist.tier_max instance attribute
    • use Playlist.TIER_MAX class attribute instead
  • platform.value is now no longer the same as str(platform)
  • The library is now using the new Rocket League API which requires a client ID and secret from Epic Games Developer Portal, instead of the old token.
    As a result, following breaking changes have been made:
    • Client now has 2 required keyword arguments client_id and client_secret instead of token.
    • Client.change_token() has been removed in favor of Client.update_client_credentials()
  • Client.get_player() for Epic Games platform now requires Epic Account ID, instead of Epic Display Name.
    • This is a limitation of the new API.
  • Player.user_name is now only present for PlayStation 4, Xbox One, and Nintendo Switch players.
    This change corresponds to the platforms for which the player lookup requires the player's user name.
    • This is a limitation of the new API.
  • Player.user_id is now present for Steam and Epic Games players.
    This change corresponds to the platforms for which the player lookup requires the player's user ID.
    • This is a limitation of the new API.

Features:

  • Added Client.close() method

Enhancements:

  • Library users can now install aiohttp in <3.5.4, 4.0) version range
  • Library users can now install lxml in <4.4.2, 5.0) version range

Fixes:

  • Fixed casing of the friendly name of the PlayStation 4 platform

0.5.0a1

22 Feb 22:52
bf7c4c4
Compare
Choose a tag to compare

Features:

  • added Epic Games and Nintendo Switch platform
  • added Tournaments playlist
  • added new ranks

Enhancements:

  • lib users can now install aiohttp 3.7.x and lxml 4.6.x

Fixes:

  • Player.highest_tier now only includes the playlists that count towards season rewards
    • this also fixes the value of SeasonRewards.can_advance in relevant cases
  • due to API providing outdated value, a temporary fix for Playlist.tier_max has been included in this release
  • fixed Tracker Network provider module

Docs:

  • fixed the issue causing the license headers from rlapi's code to show in the documentation

0.4.1a1

27 Jul 17:08
251536d
Compare
Choose a tag to compare

Enhancements:

  • added representations (__repr__) to all data classes
  • Player objects are now hashable and comparable

Docs:

  • fixed usage examples

Miscellaneous:

  • project relicensed to Apache License 2.0

0.4.0a1

24 Jun 22:43
64e410c
Compare
Choose a tag to compare

This release takes an effort towards making the attribute names more consistent with the Rocket League API.

Breaking changes:

  • user_id from the payload is now in Player.user_id and the attribute can be None if the payload doesn't contain
    user_id (as is the case for non-Steam players).
  • Player.player_id now instead contains the player_id as passed to Client.get_player().

Enhancements:

  • Allow lib users to install aiohttp 3.6.x and lxml 4.5.x.
  • Change typing_extensions req to only specify minimum version.

0.3.0a1

09 Feb 15:18
014e566
Compare
Choose a tag to compare

Breaking changes:

  • loop can no longer be explicitly passed to rlapi.Client in loop kwarg

0.2.2a1

03 Feb 22:44
db21e09
Compare
Choose a tag to compare

Fixes:

  • update MANIFEST.in to include py.typed

Enhancements:

  • add py.typed to rlapi.ext.tier_breakdown for proper type hint support
  • improve breakdown type hints

0.2.1a1

28 Jan 19:43
fe564ad
Compare
Choose a tag to compare

Bug fixes:

  • fetching stats will no longer fail when API responds with some nulls

Enhancements:

  • added py.typed for proper type hinting support

0.2.0a1

06 Jan 02:18
9ffb6c9
Compare
Choose a tag to compare

Breaking changes:

  • reward_ready attribute of rlapi.SeasonRewards is now called can_advance

Enhancements:

  • Python 3.8 support

Dependency changes:

  • removed defusedxml
  • minimum version of lxml is now 4.4.2
  • added typing_extensions==3.7.4 (Python 3.7 only)

Misc:

  • docs improvements
  • we're using black code style now
  • rlapi is now typed

0.1.0a1

19 May 18:32
Compare
Choose a tag to compare

Initial release.