Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NXDRIVE-2672: Release 5.2.2 #2870

Merged
merged 1 commit into from Jun 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 13 additions & 21 deletions docs/changes/5.2.2.md
@@ -1,11 +1,11 @@
# 5.2.2

Release date: `2021-0x-xx`
Release date: `2021-06-21`

## Core

- [NXDRIVE-1995](https://jira.nuxeo.com/browse/NXDRIVE-1995): Display a proper message when no application associated to a given file type
- [NXDRIVE-2218](https://jira.nuxeo.com/browse/NXDRIVE-2218): Introduce (database) Migrations objects
- [NXDRIVE-2218](https://jira.nuxeo.com/browse/NXDRIVE-2218): Introduce (database) migrations objects
- [NXDRIVE-2548](https://jira.nuxeo.com/browse/NXDRIVE-2548): Databases refactoring
- [NXDRIVE-2640](https://jira.nuxeo.com/browse/NXDRIVE-2640): [Windows] Remote deletions are not locally impacted when the local folder is a UNC name
- [NXDRIVE-2654](https://jira.nuxeo.com/browse/NXDRIVE-2654): Remove the `execution.profile` custom metric
Expand Down Expand Up @@ -57,10 +57,6 @@ Release date: `2021-0x-xx`
- [NXDRIVE-2689](https://jira.nuxeo.com/browse/NXDRIVE-2689): Fix `test_wrong_server_reply()`
- [NXDRIVE-2691](https://jira.nuxeo.com/browse/NXDRIVE-2691): Use proper job names in GitHub workflows

## Docs

- [NXDRIVE-2](https://jira.nuxeo.com/browse/NXDRIVE-2):

## Minor Changes

- Upgraded `authlib` from 0.15.3 to 0.15.4
Expand All @@ -79,17 +75,25 @@ Release date: `2021-0x-xx`

## Technical Changes

- Added `LocalClientMixin.can_use_trash()`
- Chanded `Engine.use_trash()`: it is no more a static method
- Added `LocalClientMixin.can_use_trash()`
- Added `Manager.reload_client_global_headers()`
- Added `Manager.set_sentry()`
- Added `Manager.use_sentry()`
- Removed `Options.exec_profile`
- Added `Remote.custom_global_metrics`
- Added `Remote.escape()`
- Added `Remote.reload_global_headers()`
- Added dao/adapters.py
- Renamed dao/base.py::`ConfigurationDAO` to dao/base.py::`BaseDAO`
- Added dao/migrations
- Moved dao/sqlite.py::`EngineDAO` to dao/engine.py::`EngineDAO`
- Moved dao/sqlite.py::`ManagerDAO` to dao/manager.py::`ManagerDAO`
- Moved dao/sqlite.py::`register_adapter` to dao/\_\_init\_\_.py::`register_adapter`
- Moved dao/sqlite.py::`SCHEMA_VERSION` to dao/\_\_init\_\_.py::`SCHEMA_VERSION`
- Renamed dao/sqlite.py to dao/base.py
- Moved engine/dao to dao
- Added exceptions.py::`NoAssociatedSoftware`
- Added utils.py::`path_is_unc_name()`
- Added metrics/constants.py::`DT_FILE_EXTENSION`
- Added metrics/constants.py::`DT_FILE_MIMETYPE`
- Added metrics/constants.py::`DT_FILE_SIZE`
Expand All @@ -98,16 +102,4 @@ Release date: `2021-0x-xx`
- Added metrics/constants.py::`DT_SESSION_ITEM_COUNT`
- Added metrics/constants.py::`UPLOAD_PROVIDER`
- Removed metrics/constants.py::`EXEC_PROFILE`
- Added dao/adapters.py
- Added dao/migrations/migration.py
- Added dao/migrations/engine/\_\_init\_\_.py
- Added dao/migrations/engine/\_\_init\_\_.py
- Added dao/migrations/engine/0021_initial_migration.py
- Added dao/migrations/manager/0004_initial_migration.py
- Moved dao/sqlite.py::`register_adapter` to dao/\_\_init\_\_.py::`register_adapter`
- Moved dao/sqlite.py::`SCHEMA_VERSION` to dao/\_\_init\_\_.py::`SCHEMA_VERSION`
- Moved dao/sqlite.py::`EngineDAO` to dao/engine.py::`EngineDAO`
- Moved dao/sqlite.py::`ManagerDAO` to dao/manager.py::`ManagerDAO`
- Renamed dao/sqlite.py to dao/base.py
- Renamed dao/base.py::`ConfigurationDAO` to dao/base.py::`BaseDAO`
- Moved nxdrive/engine/dao to nxdrive/dao
- Added utils.py::`path_is_unc_name()`