Nuxeo

Latest version: v6.1.1

Safety actively analyzes 626157 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 6

2.2.2

-----

Release date: ``2019-08-26``

- `NXPY-112 <https://jira.nuxeo.com/browse/NXPY-112>`__: Update uploadedSize on each and every upload iteration
- `NXPY-110 <https://jira.nuxeo.com/browse/NXPY-110>`__: Max retries for all connections
- `NXPY-111 <https://jira.nuxeo.com/browse/NXPY-111>`__: Add timeouts handling
- `NXPY-113 <https://jira.nuxeo.com/browse/NXPY-113>`__: Use ``requests.sessions.Session`` rather than the deprecated ``requests.session``
- `NXPY-114 <https://jira.nuxeo.com/browse/NXPY-114>`__: Do not log the response of the CMIS endpoint
- `NXPY-117 <https://jira.nuxeo.com/browse/NXPY-117>`__: Use black for a one-shot big clean-up
- `NXPY-118 <https://jira.nuxeo.com/browse/NXPY-118>`__: Missing status code from ``Forbidden`` and ``Unauthorized`` exceptions
- `NXPY-119 <https://jira.nuxeo.com/browse/NXPY-119>`__: Remove the requests warning
- `NXPY-120 <https://jira.nuxeo.com/browse/NXPY-120>`__: Add a test for unavailable converters
- `NXPY-121 <https://jira.nuxeo.com/browse/NXPY-121>`__: Do not log the response of the automation endpoint
- `NXPY-123 <https://jira.nuxeo.com/browse/NXPY-123>`__: Pass the ``NXDRIVE_TEST_NUXEO_URL`` envar to tox
- `NXPY-126 <https://jira.nuxeo.com/browse/NXPY-126>`__: Allow several callables for transfer callbacks

Technical changes
-----------------

- Added ``NuxeoClient.disable_retry()``
- Added ``NuxeoClient.enable_retry()``
- Added ``NuxeoClient.retries``
- Added nuxeo/constants.py::\ ``MAX_RETRY``
- Added nuxeo/constants.py::\ ``RETRY_BACKOFF_FACTOR``
- Added nuxeo/constants.py::\ ``RETRY_METHODS``
- Added nuxeo/constants.py::\ ``RETRY_STATUS_CODES``
- Added nuxeo/constants.py::\ ``TIMEOUT_CONNECT``
- Added nuxeo/constants.py::\ ``TIMEOUT_READ``
- Changed nuxeo/exceptions.py::\ ``HTTPError`` to inherits from ``requests.exceptions.RetryError`` and ``NuxeoError``

2.2.1

-----

Release date: ``2019-06-27``

- `NXPY-108 <https://jira.nuxeo.com/browse/NXPY-108>`__: [Python 2] Fix ``repr(HTTPError)`` with non-ascii characters in the message

2.2.0

-----

Release date: unreleased

- `NXPY-102 <https://jira.nuxeo.com/browse/NXPY-102>`__: Set Upload operations to void operations
- `NXPY-103 <https://jira.nuxeo.com/browse/NXPY-103>`__: Launch flake8 on actual client data
- `NXPY-104 <https://jira.nuxeo.com/browse/NXPY-104>`__: Do not log server response based on content length but content type
- `NXPY-105 <https://jira.nuxeo.com/browse/NXPY-105>`__: Make a diffrence between HTTP 401 and 403 errors
- `NXPY-106 <https://jira.nuxeo.com/browse/NXPY-106>`__: Lower logging level in ``get_digester()``

Technical changes
-----------------

- Added nuxeo/client.py::\ ``HTTP_ERROR``
- Added nuxeo/exceptions.py::\ ``Forbidden``
- Added ``void_op=True`` keyword argument to nuxeo/uploads.py::\ ``API.execute()``

2.1.1

-----

Release date: ``2019-06-13``

- `NXPY-97 <https://jira.nuxeo.com/browse/NXPY-97>`__: Remove usage of pytest_namespace to allow using pytest > 4
- `NXPY-100 <https://jira.nuxeo.com/browse/NXPY-100>`__: Improve memory consumption

2.1.0

-----

Release date: ``2019-06-06``

- `NXPY-88 <https://jira.nuxeo.com/browse/NXPY-88>`__: Pass the file descriptor to Requests when doing a simple upload
- `NXPY-89 <https://jira.nuxeo.com/browse/NXPY-89>`__: Add ``repr(Uploader)`` to ease debug
- `NXPY-90 <https://jira.nuxeo.com/browse/NXPY-90>`__: Do not open file descriptor on empty file
- `NXPY-91 <https://jira.nuxeo.com/browse/NXPY-91>`__: Make uploads rely on server info for missing chunks
- `NXPY-92 <https://jira.nuxeo.com/browse/NXPY-92>`__: Fix ``server_info()`` default value check
- `NXPY-94 <https://jira.nuxeo.com/browse/NXPY-94>`__: Force write of file to disk
- `NXPY-95 <https://jira.nuxeo.com/browse/NXPY-95>`__: Use Sentry in tests
- `NXPY-96 <https://jira.nuxeo.com/browse/NXPY-96>`__: Fix tests execution not failing when it should do (+ clean-up)

Technical changes
-----------------

- Added ``Uploader.is_complete()``
- Added ``Uploader.process()``
- Removed ``chunked`` argument from ``Uploader.__init__()``
- Removed ``Uploader.index``
- Removed ``Uploader.init()``
- Removed ``Uploader.response``
- Renamed nuxeo/operations.py::\ ``API.save_to_file()`` ``check_suspended`` keyword argument to ``callback``
- Added nuxeo/uploads.py::\ ``ChunkUploader``
- Changed nuxeo/uploads.py::\ ``API.state()`` return value ``index`` (int) to ``uploaded_chunks`` (set)

2.0.5

-----

Release date: ``2019-03-28``

- `NXPY-80 <https://jira.nuxeo.com/browse/NXPY-80>`__: Stick with pytest < 4 to prevent internal error due to the use of deprecated ``pytest_namespace``
- `NXPY-81 <https://jira.nuxeo.com/browse/NXPY-81>`__: Fix flake8 errors and add flake8 to the CI
- `NXPY-82 <https://jira.nuxeo.com/browse/NXPY-82>`__: Fix ``test_convert_xpath()``
- `NXPY-83 <https://jira.nuxeo.com/browse/NXPY-83>`__: Fix ``test_convert()`` and ``test_convert_given_converter()``
- `NXPY-84 <https://jira.nuxeo.com/browse/NXPY-84>`__: Handle ``list`` type in operation parameters
- `NXPY-86 <https://jira.nuxeo.com/browse/NXPY-86>`__: Fix directories API
- `NXPY-87 <https://jira.nuxeo.com/browse/NXPY-87>`__: Add an upload helper to control the chunk uploads

Technical changes
-----------------

- Added ``Batch.get_uploader()``
- Added nuxeo/uploads.py::\ ``API.get_uploader()``
- Added `chunk_size` keyword argument to nuxeo/uploads.py::\ ``API.upload()``
- Added `chunk_size` keyword argument to nuxeo/uploads.py::\ ``API.state()``
- Removed `chunk_limit` keyword argument from nuxeo/uploads.py::\ ``API.upload()``
- Added ``callback`` keyword argument to nuxeo/uploads.py::\ ``API.upload()``
- Added nuxeo/uploads.py::\ ``Uploader``
- Added ``UploadError.info``

Page 5 of 6

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.