1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
|
# Changelog
All notable changes to this project will be documented in this file.
## [0.19.2 - 2025-03-17]
### Added
- Optional `response_type` parameter of `nextcloud.ocs` method for calling OCS endpoints that return raw data. #341 Thanks to @janepie
## [0.19.1 - 2025-03-07]
### Fixed
- ExApps(NC32+): When using `HaRP`, use `unix-socket` instead of `host:port`.
## [0.19.0 - 2025-02-15]
### Added
- Files: `FSNode` now have `creation_date` property. #335 Thanks to @SunnyFarmDay
### Changed
- ExApps: no longer require the `AA-VERSION` header. (Nextcloud 32+) #336
- ExApps: `AppAPIAuthMiddleware` now secures the `websocket` connection. (Nextcloud 32+) #338
## [0.18.2 - 2025-01-19]
### 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
## [0.18.1 - 2025-01-14]
### Fixed
- Chunked Upload V2 not working on Nextcloud 30 and later. #324 Thanks to @DrZoidberg09
## [0.18.0 - 2024-10-09]
### Added
- New `webhooks.unregister_all` method. #309
### Fixed
- Files: `user` and `user_path` properties in `FSNode` when Nextcloud located in the sub-path. #297 Thanks to @vwbusguy
- `files.download_directory_as_zip` method now supports upcoming Nextcloud 31. #304
## [0.17.1 - 2024-09-06]
### Added
- NextcloudApp: `setup_nextcloud_logging` function to support transparently sending logs to Nextcloud. #294
### Fixed
- NextcloudApp: `nc.log` now suppresses all exceptions to safe call it anywhere(for example in exception handlers). #293
## [0.17.0 - 2024-09-05]
### Added
- `message_type` property to TalkBotMessage. #292
### Changed
- NextcloudApp: `TextProcessing`, `Speech2Text` and `Translation` AI Providers API was removed. #289
## [0.16.0 - 2024-08-12]
### Changed
- NextcloudApp: rework of TaskProcessing provider API. #284
### Fixed
- `nc.files.makedirs` not working properly on Windows. #280 Thanks to @Wuli6
## [0.15.1 - 2024-07-30]
### Fixed
- Corrected behaviour of `ocs` function for `Group Folders` app routes(they are not fully OCS API). #279
- NextcloudApp: `get_computation_device` function now correctly returns result in upper_case. #278
## [0.15.0 - 2024-07-19]
### Added
- Initial Webhooks API support for the upcoming Nextcloud 30. #272
### Changed
- NextcloudApp: `fetch_models_task` function now saves paths to downloaded models. #274 Thanks to @kyteinsky
## [0.14.0 - 2024-07-09]
### Added
- `LoginFlowV2` implementation by @blvdek #255
- `files.get_tags` function to get all tags assigned to the file or directory. #260
- NextcloudApp: `nc.ui.files_dropdown_menu.register_ex` to register new version of FileActions(AppAPI 2.6.0+) #252
- NextcloudApp: `enabled_state` property to check if the current ExApp is disabled or enabled. #268
- NextcloudApp: support for the new AI API for the Nextcloud 30. #254
## [0.13.0 - 2024-04-28]
### Added
- NextcloudApp: `occ` commands registration API(AppAPI 2.5.0+). #247
- NextcloudApp: `Nodes` events listener registration API(AppAPI 2.5.0+). #249
## [0.12.1 - 2024-04-05]
### Fixed
- Incorrect `Display name` when creating user, which led to the parameter being ignored. #239 Thanks to @derekbuckley
## [0.12.0 - 2024-04-02]
Update with new features only for `NextcloudApp` class. #233
### Added
- `ex_app.get_computation_device` function for retrieving GPU type(only with AppAPI `2.5.0`+).
- `ex_app.integration_fastapi.fetch_models_task` are now public function, added `progress_init_start_value` param.
- Global authentication when used now sets `request.scope["username"]` for easy use.
### Changed
- `UiActionFileInfo` class marked as deprecated, instead `ActionFileInfo` class should be used.
## [0.11.0 - 2024-02-17]
### Added
- Files: `lock` and `unlock` methods, lock file information to `FsNode`. #227
### Fixed
- NextcloudApp: `MachineTranslation` provider registration - added optional `actionDetectLang` param. #229
## [0.10.0 - 2024-02-14]
### Added
- NextcloudApp: `set_handlers`: `models_to_fetch` can now accept direct links to a files to download. #217
- NextcloudApp: DeclarativeSettings UI API for Nextcloud `29`. #222
### Changed
- NextcloudApp: adjusted code related to changes in AppAPI `2.0.3` #216
- NextcloudApp: `set_handlers` **rework of optional parameters** see PR for information. #226
## [0.9.0 - 2024-01-25]
### Added
- class `Share`: added missing `file_source_id`, `can_edit`, `can_delete` properties. #206
- NextcloudApp: `AppAPIAuthMiddleware` for easy cover all endpoints. #205
- NextcloudApp: API for registering `MachineTranslation` providers(*avalaible from Nextcloud 29*). #207
### Changed
- **large amount of incompatible changes** for `AppAPI 2.0`, see PR for description. #212
- class `Share`.raw_data marked as deprecated and changed to `_raw_data`. #206
- `ex_app.talk_bot_app`/`ex_app.atalk_bot_app` renamed to `ex_app.talk_bot_msg`/`ex_app.atalk_bot_msg`.
## [0.8.0 - 2024-01-12]
### Added
- `download_log` method to download `nextcloud.log`. #199
- NextcloudApp: API for registering `Speech to Text` providers(*avalaible from Nextcloud 29*). #196
- NextcloudApp: API for registering `Text Processing` providers(*avalaible from Nextcloud 29*). #198
- NextcloudApp: added `get_model_path` wrapper around huggingface_hub:snapshot_download. #202
### Fixed
- OCS: Correctly handling of `HTTP 204 No Content` status. #197
## [0.7.2 - 2023-12-28]
### Fixed
- files: proper url encoding of special chars in `mkdir` and `delete` methods. #191 Thanks to @tobenary
- files: proper url encoding of special chars in all other `DAV` methods. #194
## [0.7.1 - 2023-12-21]
### Added
- The `ocs` method is now public, making it easy to use Nextcloud OCS that has not yet been described. #187
## [0.7.0 - 2023-12-17]
### Added
- implemented `AsyncNextcloud` and `AsyncNextcloudApp` classes. #181
### Changed
- set_handlers: `enabled_handler`, `heartbeat_handler`, `init_handler` now can be async(Coroutines). #175 #181
- set_handlers: `models_to_fetch` and `models_download_params` united in one more flexible parameter. #184
- drop Python 3.9 support. #180
- internal code refactoring and clean-up #177
## [0.6.0 - 2023-12-06]
### Added
- Ability to develop applications with `UI`, example of such app, support for all new stuff of `AppAPI 1.4`. #168
### Fixed
- AppAPI: added authentication to the `/init` endpoint. #162
## [0.5.1 - 2023-11-12]
### Fixed
- `move`, `copy`, `trashbin_restore` correctly set `utf-8` headers. #157 Thanks to @tschechniker
- `upload_stream` correctly set `utf-8` headers. #159
- `headers` can now be `httpx.Headers` and not only `dict`. #158
## [0.5.0 - 2023-10-23]
### Added
- Support for the new `/init` AppAPI endpoint and the ability to automatically load models from `huggingface`. #151
### Changed
- All examples were adjusted to changes in AppAPI.
- The examples now use FastAPIs `lifespan` instead of the deprecated `on_event`.
## [0.4.0 - 2023-10-15]
As the project moves closer to `beta`, final unification changes are being made.
This release contains some breaking changes in `users`, `notifications` API.
### Added
- Support for users avatars(`get_avatar`). #149
- `__repr__` method added for most objects(previously it was only present for `FsNode`). #147
### Changed
- `users.get_details` renamed to `get_user` and returns a class instead of a dictionary. #145
- Optional argument `displayname` in `users.create` renamed to `display_name`.
- The `apps.ExAppInfo` class has been rewritten in the same format as all the others. #146
- `notifications.Notification` class has been rewritten in the same format as all the others.
### Fixed
- `users.get_details` with empty parameter in some cases was raised exception.
- ClientMode: in case when LDAP was used as user backend, user login differs from `user id`, and most API failed with 404. #148
## [0.3.1 - 2023-10-07]
### Added
- CalendarAPI with the help of [caldav](https://pypi.org/project/caldav/) package. #136
- [NotesAPI](https://github.com/nextcloud/notes) #137
- TalkAPI: `list_participants` method to list conversation participants. #142
### Fixed
- TalkAPI: In One-to-One conversations the `status_message` and `status_icon` fields were always empty.
- Missing CSS styles in the documentation. #143
## [0.3.0 - 2023-09-28]
### Added
- TalkAPI:
* `send_file` to easy send `FsNode` to Talk chat.
* `receive_messages` can return the `TalkFileMessage` subclass of usual `TalkMessage` with additional functionality.
- NextcloudApp: The `ex_app.verify_version` function to simply check whether the application has been updated.
### Changed
- NextcloudApp: Updated `info.xml` in examples to reflect upcoming changes in the [AppStore](https://github.com/nextcloud/appstore/pull/1145)
## [0.2.2 - 2023-09-26]
### Added
- FilesAPI: [Chunked v2 upload](https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html#chunked-upload-v2) support, enabled by default.
- New option to disable `chunked v2 upload` if there is a need for that: `CHUNKED_UPLOAD_V2`
- TalkAPI: Poll API support(create_poll, get_poll, vote_poll, close_poll).
- TalkAPI: Conversation avatar API(get_conversation_avatar, set_conversation_avatar, delete_conversation_avatar)
### Changed
- Default `chunk_size` argument is now 5Mb instead of 4Mb.
## [0.2.1 - 2023-09-14]
### Added
- NextcloudApp: `ex_app.persistent_storage` function that returns path for the Application persistent storage.
- NextcloudApp: `from nc_py_api.ex_app import persist_transformers_cache` - automatic use of persistent app directory for the AI models caching.
## [0.2.0 - 2023-09-13]
### Added
- FilesAPI: `FsNode.info` added `mimetype` property.
### Changed
- AppEcosystem_V2 Project was renamed to App_API, adjust all routes, examples, and docs for this.
- The Application Authentication mechanism was changed to a much simple one.
## [0.1.0 - 2023-09-06]
### Added
- ActivityAPI: `get_filters` and `get_activities`. #112
- FilesAPI: added `tags` support. #115
### Changed
- FilesAPI: removed `listfav` method, use new more powerful `list_by_criteria` method. #115
### Fixed
- `NotificationInfo.time` - was always incorrectly parsed and equal to `datetime(1970,1,1)`
## [0.0.43 - 2023-09-02]
### Added
- Basic APIs for Nextcloud Talk(Part 2) #111
### Fixed
- `makedirs` correctly work with paths started with `/`
- `listdir` correctly handles `exclude_self=True` when input `path` starts with `/`
## [0.0.42 - 2023-08-30]
### Added
- TrashBin API:
* `trashbin_list`
* `trashbin_restore`
* `trashbin_delete`
* `trashbin_cleanup`
- File Versions API: `get_versions` and `restore_version`.
### Fixed
- Created `FsNode` from `UiActionFileInfo` now have the `file_id` with the NC instance ID as from the DAV requests.
## [0.0.41 - 2023-08-26]
### Added
- Nextcloud Talk API for bots + example
## [0.0.40 - 2023-08-22]
### Added
- Basic APIs for Nextcloud Talk(Part 1)
### Changed
- `require_capabilities`/`check_capabilities` can accept value with `dot`: like `files_sharing.api_enabled` and check for sub-values.
- Refactored all API(except `Files`) again.
### Fixed
- `options.NPA_NC_CERT` bug, when setting throw `.env` file.
## [0.0.31 - 2023-08-17]
### Added
- `FsNode` can be created from Nextcloud `UiActionFileInfo` reply.
### Fixed
- `files.find` error when searching by `"name"`. Thanks to @CooperGerman
## [0.0.30 - 2023-08-15]
### Added
- `Nextcloud.response_headers` property, to get headers from last response.
### Changed
- Reworked skeleton for the applications, added skeleton to examples.
## [0.0.29 - 2023-08-13]
### Added
- Finished `Share` API.
### Fixed
- `options` error when setting timeouts with the `.env` file.
- ShareAPI.create wrong handling of `share_with` parameter.
## [0.0.28 - 2023-08-11]
### Added
- APIs for enabling\disabling External Applications.
- FileAPI: `download_directory_as_zip` method.
### Changed
- Much more documentation.
- Regroup APIs, hopes for the last time.
### Fixed
- Assign groups in user creation
## [0.0.27 - 2023-08-05]
### Added
- `Notifications API`
- `options` now independent in each `Nextcloud` class. They can be specified in kwargs, environment or `.env` files.
### Changed
- Switched to `hatching` as a build system, now correct install optional dependencies.
- Renamed methods, attributes that was `shadowing a Python builtins`. Enabled additional `Ruff` linters checks.
- Regroup APIs, now Users related stuff starts with `user`, file related stuff with `file`, UI stuff with `gui`.
## [0.0.26 - 2023-07-29]
### Added
- More documentation.
### Changed
- Reworked `User Status API`, `Users Group API`
- Reworked return type for `weather_status.get_location`
- Reworked `Files API`: `mkdir`, `upload`, `copy`, `move` return new `FsNode` object.
- Reworked `listdir`: added `depth` parameter.
- Reworked `FsNode`: changed `info` from `TypedDict` to `dataclass`, correct fields names with correct descriptions.
- `FsNode` now allows comparison for equality.
## [0.0.25 - 2023-07-25]
### Added
- First `Files Sharing` APIs.
### Changed
- Updated documentation, description.
- Updated `FsNode` class with properties for parsing permissions.
## [0.0.24 - 2023-07-18]
### Added
- `VERIFY_NC_CERTIFICATE` option.
- `apps.ex_app_get_list` and `apps.ex_app_get_info` methods.
- `files.download2stream` and `files.upload_stream` methods.
- most of `FileAPI` can accept `FsNode` as a path.
### Changed
- License changed to `BSD-3 Clause`
## [0.0.23 - 2023-07-07]
### Fixed
- `nextcloud_url` can contain `/` at the end.
- work of `logs` during `enable`/`disable` events.
## [0.0.22 - 2023-07-05]
### Added
- `heartbeat` endpoint support for AppEcosystemV2.
## [0.0.21 - 2023-07-04]
### Added
- `app_cfg` property in the `NextcloudApp` class.
### Fixed
- All input environment variables now in Upper Case.
## [0.0.20 - 2023-07-03]
- Written from the scratch new version of the Nextcloud Python Client. Deep Alpha.
|