Skip to content

Releases: treeben77/rblx-open-cloud

v2.1.5

01 Jan 01:56
8ca72a8
Compare
Choose a tag to compare
  • Fix an issue with Place.upload_place_file timing out with large files (the timeout for this function is now 180 seconds)
  • Added support for configuration of the timeout parameter in send_request.
  • Increased the default timeout from 10 seconds to 15 seconds globally.

Happy new year!

v2.1.4

24 Dec 01:16
d849db7
Compare
Choose a tag to compare
  • Fix an issue with Experience.update that provides a broken json payload.

v2.1.3

07 Dec 01:14
dc1c586
Compare
Choose a tag to compare
  • Fix issue with type union syntax that was not compatible with older versions of Python.
  • Fix issue with async version not supporting the new datastore endpoints/ features.

v2.1.2

30 Nov 07:59
45c8ae1
Compare
Choose a tag to compare
  • Fixed issue with asynchronous iterators; see pull request #22.

Thanks to @mikeshardmind for their contributions.

v2.1.1

26 Nov 05:28
edd9a22
Compare
Choose a tag to compare
  • Resolved an issue with Group.update_member being a poorly formatted request.
  • Patched issues with various asynchronous group methods not configured for async correctly.

v2.1.0 - Update Group Member

22 Nov 10:16
c1bc047
Compare
Choose a tag to compare

v2.0.0 - Version 2 of rblx-open-cloud!

09 Nov 08:28
f8a0cf0
Compare
Choose a tag to compare

Version 2 is finally here! Now with many new library features, including:

If you do not wish to migrate to v2 to avoid breaking changes, use the following import:

pip install rblx-open-cloud==1.6.0

Thanks to @LawMixer, @ignaigna and @treeben77

What's Changed

New Contributors

Full Changelog: v1.6.0...v2.0.0

v1.6.0 - Inventory & Read Groups API

28 Sep 00:08
50f246d
Compare
Choose a tag to compare

Inventory API

The inventory API has been added, view the docs: https://rblx-open-cloud.readthedocs.io/en/latest/user.html#rblx-open-cloud.User.list_inventory

Groups API

The read part of the groups API has been added, view the docs: https://rblx-open-cloud.readthedocs.io/en/latest/group.html

v1.5.1

25 Sep 22:36
535a9ff
Compare
Choose a tag to compare

Bug Fixes

  • Fixed a bug where PartialAccessToken.fetch_resources would raise an error when called for an authorization with no experience/account scopes. fetch_resources will now give empty lists when there is no accounts to fill them.

v1.5.0 - Request Sessions & OAuth2 Headshort URI

21 Sep 01:13
872fd0a
Compare
Choose a tag to compare

Oauth2 Headshot URI

A new OAuth2 claim for the headshot URI was just announced. When authorizing OAuth2 with the profile scope, it can be accessed using AccessToken.user.headshot_uri.

Requests Sessions

All HTTP requests to Roblox in the library now use a request session object, which makes requests slightly faster.

Bug Fixes

  • Fixed a bug which would make OAuth2 not work if both jwt and PyJWT were installed.