Releases: Fedihosting-Foundation/plemmy
Releases · Fedihosting-Foundation/plemmy
Pagination Bugfix
Full Changelog: 0.4.7...0.4.8
0.4.7
Full Changelog: 0.4.6...0.4.7
0.4.6
Simplifies Dependencies
Full Changelog: 0.4.5...0.4.6
0.4.5 - Image Uploads
Added Image Upload Feature
Addresses: #28
0.4.4
0.4.3 - bug fixes
0.4.2 - fix for list of federated instances
0.4.1 - implement basic unit tests
Implemented unit tests for:
LemmyHttp.login
LemmyHttp.get_community
LemmyHttp.create_post
LemmyHttp.delete_post
LemmyHttp.create_comment
LemmyHttp.delete_comment
0.4.0 - Lemmy 0.19.X updates
Updates Plemmy to play nice with Lemmy 0.19.X
instances.
LemmyHttp
object now optionally accepts ajwt
token on__init__
ifLemmyHttp.login
method not called afterwardsjwt
token is no longer stored in theLemmyHttp
object, it is passed directly to arequests.Session
objectplemmy.utils.create_session
function accepts headers andjwt
token, returnsrequests.Session
object- used in
LemmyHttp.__init__
andLemmyHttp.login
- used in
plemmy.utils.get_handler
,plemmy.utils.post_handler
, andplemmy.utils.put_handler
now accept arequests.Session
object as their first arguments- Updated all
LemmyHttp
methods to passrequests.Session
object (LemmyHttp._session
attribute) to updatedutils
functions