Releases: treeben77/rblx-open-cloud
v2.1.5
- 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 insend_request
. - Increased the default timeout from 10 seconds to 15 seconds globally.
Happy new year!
v2.1.4
v2.1.3
v2.1.2
v2.1.1
- 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
- Add
Group.update_member()
. Allows for the update of group member's ranks. - Add
GroupMember.update
as a shortcut for the previous method.
v2.0.0 - Version 2 of rblx-open-cloud!
Version 2 is finally here! Now with many new library features, including:
- Many new APIs including experience restrictions, subscriptions, join requests, memory stores, notifications and more.
- Asynchronous version of the library
- New
send_request
function and other shortcut functions - Many breaking changes from v1 - read more
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
- Docs Rewrite by @treeben77 in #12
- rewritten readme and added interactions.py to the list of possible libraries by @LawMixer in #13
- feat: changed datastore setter methods to x_entry by @LawMixer in #14
- rename: data_store -> datastore by @LawMixer in #15
- v2: rewrite the documentation by @LawMixer in #16
- many improvements, fix docs by @ignaigna in #17
- version 2 by @treeben77 in #19
New Contributors
Full Changelog: v1.6.0...v2.0.0
v1.6.0 - Inventory & Read Groups API
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
v1.5.0 - Request Sessions & OAuth2 Headshort URI
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
andPyJWT
were installed.