Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6d9a50c

Browse files
authoredMay 28, 2024··
10.25 Changelog (#2688)
1 parent bc87edc commit 6d9a50c

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed
 

‎ChangeLog.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11

22
# Change Log
33

4+
## Version 10.25.0
5+
6+
### Security fixes
7+
8+
1. Updated Golang version to 1.22.3 to address security vulnerabilities
9+
10+
### New Features
11+
12+
1. Workload Identity authentication is now available (#2619)
13+
2. `azcopy list` now supports a `--location` flag, to support ambiguous URIs (#2595)
14+
3. `azcopy list` now properly supports `--output-type=json` for users in automated scenarios. (#2629)
15+
16+
### Bug Fixes
17+
18+
1. Fixed a bug where AzCopy was not reporting performance info in `-output-type=json` (#2636)
19+
2. Fixed a bug AzCopy would crash when operating on extremely large (16.5+TB) managed disks (#2635)
20+
3. Fixed a bug with hash-based sync where the directory structure would not be replicated when using `--local-hash-storage-mode=HiddenFiles` with `--hash-meta-dir` (#2611)
21+
4. Fixed a bug where attempting to use a non-S3/GCP/Azure storage URI would result in treating the URI as a local path (#2652)
22+
23+
### Documentation changes
24+
25+
1. Updated inaccurate helptext and filled in missing helptext (#2649)
26+
2. Many important errors now include a link to relevant documentation to assist users in troubleshooting AzCopy (#2647)
27+
3. Ambiguous flags (such as `--cpk-by-value`) have improved clarity in documentation (#2615)
28+
4. A clearer error message is provided when failing a transfer due to authorization. (#2644)
29+
5. A special error has been created when performing an Azure Files to Azure Blob Storage transfer, indicating present lack of service-side support (#2616)
30+
431
## Version 10.25.0-Preview-1
532

633
### Security fixes

‎common/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package common
22

3-
const AzcopyVersion = "10.25.0-Preview-1"
3+
const AzcopyVersion = "10.25.0"
44
const UserAgent = "AzCopy/" + AzcopyVersion
55
const S3ImportUserAgent = "S3Import " + UserAgent
66
const GCPImportUserAgent = "GCPImport " + UserAgent

0 commit comments

Comments
 (0)
Please sign in to comment.