diff --git a/docs/release_notes/ver_1_7.md b/docs/release_notes/ver_1_7.md new file mode 100644 index 00000000..119fe717 --- /dev/null +++ b/docs/release_notes/ver_1_7.md @@ -0,0 +1,34 @@ +--- +title: Version 1.7 +--- + +### ClearML SDK 1.7.0 + +**New Features and Improvements** +* ClearML Data: Support providing list of links +* Upload artifacts with a custom serializer [ClearML GitHub issue #689](https://github.com/allegroai/clearml/issues/689) +* Allow user to specify extension when using custom serializer functions (for artifacts) +* Skip server URL verification in `clearml-init` wizard process +* When calling `Dataset.get()` without "alias" field, tell user that he can use alias to log it in the UI +* Add support for mmcv for logging models +* Add support for Azure and GCP storage in `task.setup_upload()` +* Support pipeline retrying tasks which are failing on suspected non-stable failures +* Better storage (AWS, GCP) internal load balancing and configurations +* Add `Task.register_abort_callback` + +**Bug Fixes** +* Allow getting datasets with non-semantic versioning [ClearML GitHub issue #776](https://github.com/allegroai/clearml/issues/776) +* Fix interactive plots (instead of a generated png) +* Fix Python 2.7 support +* Fix clearml datasets `list` functionality +* Fix `Dataset.init` to not modify task (to `Dataset.create`) +* Fix failure with large files upload on HTTPS +* Fix 3d plots with plt shows 2d plot on task results page +* Fix uploading files with project's `default_upload_destination` [ClearML GitHub issue #734](https://github.com/allegroai/clearml/issues/734) +* Fix broken Matplotlib reporting - using logarithmic scale breaks reporting +* Fix wildcard support in `clearml-data` CLI +* Fix `report_histogram` - does not show "horizontal" orientation [ClearML GitHub issue 699](https://github.com/allegroai/clearml/issues/699) +* Fix table reporting - when using `logger.report_table(title, series, iteration, etc)`, the `series` arg does not appear in UI [ClearML GitHub issue 684](https://github.com/allegroai/clearml/issues/684) +* Fix artifacts (and models) use task's original name and not new name +* Fix very long filenames from s3 can't be downloaded (with `get_local_copy()`) +* Fix overwrite of existing output models on pipeline task with `monitor_models` [ClearML GitHub issue #758](https://github.com/allegroai/clearml/issues/758) \ No newline at end of file diff --git a/docusaurus.config.js b/docusaurus.config.js index c9f1f4e7..fd7a9370 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -100,7 +100,7 @@ module.exports = { }, { label: 'Release Notes', - to: '/docs/release_notes/ver_1_6', + to: '/docs/release_notes/ver_1_7', }, { label: 'Community Resources', diff --git a/sidebars.js b/sidebars.js index a85fe6b6..92c1ebd0 100644 --- a/sidebars.js +++ b/sidebars.js @@ -156,7 +156,7 @@ module.exports = { ], rnSidebar: { - 'Release Notes': ['release_notes/ver_1_6', 'release_notes/ver_1_5', 'release_notes/ver_1_4', 'release_notes/ver_1_3', 'release_notes/ver_1_2','release_notes/ver_1_1', 'release_notes/ver_1_0', 'release_notes/ver_0_17', 'release_notes/ver_0_16', 'release_notes/ver_0_15', 'release_notes/ver_0_14', + 'Release Notes': ['release_notes/ver_1_7', 'release_notes/ver_1_6', 'release_notes/ver_1_5', 'release_notes/ver_1_4', 'release_notes/ver_1_3', 'release_notes/ver_1_2','release_notes/ver_1_1', 'release_notes/ver_1_0', 'release_notes/ver_0_17', 'release_notes/ver_0_16', 'release_notes/ver_0_15', 'release_notes/ver_0_14', 'release_notes/ver_0_13', 'release_notes/ver_0_12', 'release_notes/ver_0_11', 'release_notes/ver_0_10', 'release_notes/ver_0_9', ],