diff --git a/docs/changes/5.2.2.md b/docs/changes/5.2.2.md index 7acc46a895..49ec73a24a 100644 --- a/docs/changes/5.2.2.md +++ b/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 @@ -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 @@ -79,8 +75,8 @@ 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()` @@ -88,8 +84,16 @@ Release date: `2021-0x-xx` - 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` @@ -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()`