From 6080bef28d6939beeb3b4d6392ef27a3fbf59a6e Mon Sep 17 00:00:00 2001 From: Narasimha Kulkarni <63087328+nakulkar-msft@users.noreply.github.com> Date: Sun, 22 Jan 2023 12:29:52 +0530 Subject: [PATCH] Release notes and version update --- ChangeLog.md | 13 +++++++++++++ common/version.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 318dfa36a..86e0338fb 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,19 @@ # Change Log +## Version 10.17.0 + +### New features + +1. Added support for hash-based sync. AzCopy sync can now take two new flags `--compare-hash` and `--missing-hash-policy=Generate`, which which user will be able to transfer only those files which differ in their MD5 hash. + +### Bug fixes +1. Fixed [issue 1994](https://github.com/Azure/azure-storage-azcopy/pull/1994): Error in calculation of block size +2. Fixed [issue 1957](https://github.com/Azure/azure-storage-azcopy/pull/1957): Repeated Authentication token refresh +3. Fixed [issue 1870](https://github.com/Azure/azure-storage-azcopy/pull/1870): Fixed issue where CPK would not be injected on retries +4. Fixed [issue 1946](https://github.com/Azure/azure-storage-azcopy/issues/1946): Fixed Metadata parsing +5: Fixed [issue 1931](https://github.com/Azure/azure-storage-azcopy/issues/1931) + ## Version 10.16.2 ### Bug Fixes diff --git a/common/version.go b/common/version.go index 6240c121d..55222b260 100644 --- a/common/version.go +++ b/common/version.go @@ -1,6 +1,6 @@ package common -const AzcopyVersion = "10.16.2" +const AzcopyVersion = "10.17.0" const UserAgent = "AzCopy/" + AzcopyVersion const S3ImportUserAgent = "S3Import " + UserAgent const GCPImportUserAgent = "GCPImport " + UserAgent