|
| 1 | +Changelog |
| 2 | +========= |
| 3 | + |
| 4 | +2.20.11 |
| 5 | +------- |
| 6 | + |
| 7 | +Improvements |
| 8 | +^^^^^^^^^^^^ |
| 9 | + |
| 10 | +* Added a compatibility notice. |
| 11 | +* Included the changelog in the CTERA Python SDK documentation. |
| 12 | + |
| 13 | +*Related issues and pull requests on GitHub:* `#301 <https://github.com/ctera/ctera-python-sdk/pull/301>`_ |
| 14 | + |
| 15 | +2.20.10 |
| 16 | +------- |
| 17 | + |
| 18 | +Improvements |
| 19 | +^^^^^^^^^^^^ |
| 20 | + |
| 21 | +* Revamped the exception modules in ``cterasdk.exceptions``. |
| 22 | +* Added support for file-walk operations without specifying a path (defaults to the root directory). |
| 23 | +* Implemented automatic file rename during upload if the destination path includes a file name that already exists. |
| 24 | + |
| 25 | +*Related issues and pull requests on GitHub:* `#300 <https://github.com/ctera/ctera-python-sdk/pull/300>`_ |
| 26 | + |
| 27 | +2.20.9 |
| 28 | +------ |
| 29 | + |
| 30 | +Improvements |
| 31 | +^^^^^^^^^^^^ |
| 32 | + |
| 33 | +* Introduced new exceptions for HTTP errors. |
| 34 | +* Added support for listing and walking directories via WebDAV on the Edge Filer using ``AsyncEdge`` and ``Edge`` clients. |
| 35 | +* Added a method to check if a file or folder exists. |
| 36 | + |
| 37 | +*Related issues and pull requests on GitHub:* `#299 <https://github.com/ctera/ctera-python-sdk/pull/299>`_ |
| 38 | + |
| 39 | + |
| 40 | +2.20.8 |
| 41 | +------ |
| 42 | + |
| 43 | +What's New |
| 44 | +^^^^^^^^^^ |
| 45 | + |
| 46 | +* Added compatibility for CTERA Direct IO with CTERA Portal v8.3. |
| 47 | + |
| 48 | +*Related issues and pull requests on GitHub:* `#298 <https://github.com/ctera/ctera-python-sdk/pull/298>`_ |
| 49 | + |
| 50 | + |
| 51 | +2.20.7 |
| 52 | +------ |
| 53 | + |
| 54 | +Improvements |
| 55 | +^^^^^^^^^^^^ |
| 56 | + |
| 57 | +* Updated :py:class:`cterasdk.common.object.Object` to inherit from ``MutableMapping``, enabling dictionary-like access. |
| 58 | +* Added support for the HTTP PROPFIND method. |
| 59 | + |
| 60 | +*Related issues and pull requests on GitHub:* `#297 <https://github.com/ctera/ctera-python-sdk/pull/297>`_ |
| 61 | + |
| 62 | + |
| 63 | +2.20.6 |
| 64 | +------ |
| 65 | + |
| 66 | +Bug Fixes |
| 67 | +^^^^^^^^^ |
| 68 | + |
| 69 | +* Added support for deleting multiple files on the Edge Filer in a single call. |
| 70 | + |
| 71 | +*Related issues and pull requests on GitHub:* `#296 <https://github.com/ctera/ctera-python-sdk/pull/296>`_ |
| 72 | + |
| 73 | + |
| 74 | +2.20.5 |
| 75 | +------ |
| 76 | + |
| 77 | +Bug Fixes |
| 78 | +^^^^^^^^^ |
| 79 | + |
| 80 | +* Fixed an issue where ``AsyncGlobalAdmin`` could not browse Team Portal tenants. |
| 81 | + |
| 82 | + |
| 83 | +2.20.4 |
| 84 | +------ |
| 85 | + |
| 86 | +Bug Fixes |
| 87 | +^^^^^^^^^ |
| 88 | + |
| 89 | +* Moved instantiation of the TCP connector to the point of ``ClientSession`` creation. |
| 90 | + |
| 91 | +*Related issues and pull requests on GitHub:* `#295 <https://github.com/ctera/ctera-python-sdk/pull/295>`_ |
| 92 | + |
| 93 | + |
| 94 | +2.20.3 |
| 95 | +------ |
| 96 | + |
| 97 | +What's New |
| 98 | +^^^^^^^^^^ |
| 99 | + |
| 100 | +* This version introduces a new ``AsyncEdge`` object for asynchronous access to the CTERA Edge Filer. |
| 101 | +* Supported file browser operations include: |
| 102 | + ``listdir``, ``handle``, ``handle_many``, ``download``, ``download_many``, |
| 103 | + ``upload``, ``upload_file``, ``mkdir``, ``makedirs``, ``copy``, ``move``, and ``delete``. |
| 104 | + |
| 105 | +Improvements |
| 106 | +^^^^^^^^^^^^ |
| 107 | + |
| 108 | +* Logging is no longer enabled by default. As of this version, it is the responsibility of the |
| 109 | + client application to configure logging explicitly. |
| 110 | + This change aligns with best practices for libraries and allows greater flexibility in how logs are managed. |
| 111 | + |
| 112 | +* Introduced improved configuration settings to support both synchronous and asynchronous access to the CTERA Portal and Edge Filers. |
| 113 | + |
| 114 | + .. code-block:: python |
| 115 | +
|
| 116 | + # Disable TLS verification for CTERA Portal clients |
| 117 | + cterasdk.settings.core.syn.settings.connector.ssl = False # GlobalAdmin, ServicesPortal |
| 118 | + cterasdk.settings.core.asyn.settings.connector.ssl = False # AsyncGlobalAdmin, AsyncServicesPortal |
| 119 | +
|
| 120 | + # Disable TLS verification for CTERA Edge Filer clients |
| 121 | + cterasdk.settings.edge.syn.settings.connector.ssl = False # Edge |
| 122 | + cterasdk.settings.edge.asyn.settings.connector.ssl = False # AsyncEdge |
| 123 | +
|
| 124 | +*Related issues and pull requests on GitHub:* `#294 <https://github.com/ctera/ctera-python-sdk/pull/294>`_ |
| 125 | + |
0 commit comments