Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cterasdk/clients/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ def multipart(self, path, form, *, on_response=None, on_error=None, **kwargs):

@decorators.authenticated
def delete(self, path, data=None, *, data_serializer=None, on_response=None, on_error=None, **kwargs):
request = async_requests.DeleteRequest(self._builder(path), data=data_serializer(data), **kwargs)
data = data_serializer(data) if data is not None else data
request = async_requests.DeleteRequest(self._builder(path), data=data, **kwargs)
return self.request(request, on_response=on_response, on_error=on_error)

def _request(self, request, *, on_response=None, on_error=None):
Expand Down
17 changes: 13 additions & 4 deletions docs/source/UserGuides/Miscellaneous/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,24 @@ Changelog
2.20.44
=======

Improvements
^^^^^^^^^^^^

- Support path-style addressing when connecting to S3-compatible buckets
- Support listing zone cloud folders and devices
- Support remote access via CTTP using asynchronous I/O (`asyncio`)

Bug Fixes
^^^^^^^^^

- Support path style addressing when connecting to S3-Compatible buckets
- Support listing zone cloud folders and devices
- Support remote access via CTTP through asynchronous I/O (``asyncio``)
- Updated the Edge Filer shares module to accommodate the removal of the ``dirPermissions`` attribute.
- Resolve a regression in delete requests that do not contain data
- Update the Edge Filer shares module to accommodate the removal of the
``dirPermissions`` attribute

Related issues and pull requests on GitHub: `#365 <https://github.com/ctera/ctera-python-sdk/pull/365>`_
`#366 <https://github.com/ctera/ctera-python-sdk/pull/366>`_
`#367 <https://github.com/ctera/ctera-python-sdk/pull/367>`_


2.20.43
-------
Expand Down
Loading