Releases: cloud-py-api/nc_py_api
Releases · cloud-py-api/nc_py_api
v0.21.1
Changed
- ExApps: Now exception is raised during model download if there was error to prevent incorrect ExApp installation. #376
Fixed
- ExApps: Broken models download ue a typo in the previous PRs. #376
v0.21.0
Added
Changed
- Switch from
httpx
library to the niquests
library. #375 Thanks to @Ousret
v0.20.2
Added
- ExApps(NC32+): field
sensitive
to the SettingsField
class (Declarative Settings) and to the PreferencesExAPI
class. #357
v0.20.1
Fixed
- ExApps:
AppAPIAuthMiddleware
: correct handling of disable_for
parameter. #357 Thanks to @BerengarWLehr
v0.20.0
Changed
- ExApps:
nc_py_api.ex_app.events_listener.EventsListener
was removed in favor of nc_py_api.webhooks
. #348
Fixed
- Method
download2stream
not working correctly when Nextcloud returns compressed content. #352 Thanks to @PatrickPromitzer for reporting this.
v0.19.2
Added
- Optional
response_type
parameter of nextcloud.ocs
method for calling OCS endpoints that return raw data. #341 Thanks to @janepie
v0.19.1
Fixed
- ExApps(NC32+): When using
HaRP
, use unix-socket
instead of host:port
.
v0.19.0
Added
Changed
- ExApps: no longer require the
AA-VERSION
header. (Nextcloud 32+) #336
- ExApps:
AppAPIAuthMiddleware
now secures the websocket
connection. (Nextcloud 32+) #338
v0.18.2
Changed
- Default "User-Agent" for ExApps now set to
ExApp/appid/version (httpx/version)
. #329
System Trust Store
from now are used by default. #328
v0.18.1
Fixed
- Chunked Upload V2 not working on Nextcloud 30 and later. #324 Thanks to @DrZoidberg09