Skip to content

Commit 7aa3141

Browse files
authored
Updated changelog for 10.23.0 release (#2548)
1 parent 76d32b8 commit 7aa3141

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

ChangeLog.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,37 @@
11

22
# Change Log
33

4+
## Version 10.23.0
5+
6+
### New Features
7+
8+
1. Added support to ignore the error and output a summary if a cancelled job has already completed through the use of the --ignore-error-if-completed flag. ([#2519](https://github.com/Azure/azure-storage-azcopy/pull/2519))
9+
2. Added support for high throughput append blob. Append blob block size can now be set to up to 100 MB. ([#2480](https://github.com/Azure/azure-storage-azcopy/pull/2480))
10+
3. Added support to exclude containers when transferring from account to account through the use of the --exclude-container flag. ([#2504](https://github.com/Azure/azure-storage-azcopy/pull/2504))
11+
12+
### Bug Fixes
13+
14+
1. Fixed an issue where specifying AZCOPY_AUTO_LOGIN_TYPE in any form other than uppercase would be incorrectly parsed. ([#2499](https://github.com/Azure/azure-storage-azcopy/pull/2499))
15+
2. Fixed an issue where a failure to rename a file from the temporary prefix to the file name would not be considered to be a failed transfer. ([#2481](https://github.com/Azure/azure-storage-azcopy/pull/2481))
16+
3. Fixed an issue where closing the log would panic for benchmark jobs. ([#2537](https://github.com/Azure/azure-storage-azcopy/issues/2537))
17+
4. Fixed an issue where --preserve-posix-properties would not work on download. ([#2497](https://github.com/Azure/azure-storage-azcopy/issues/2497))
18+
5. Fixed an issue where --decompress would not be honored in Linux. ([#2392](https://github.com/Azure/azure-storage-azcopy/issues/2392))
19+
6. Fixed an issue where log files would miss the .log extension. ([#2529](https://github.com/Azure/azure-storage-azcopy/issues/2529))
20+
7. Fixed an issue where AzCopy would fail to set metadata properties on a read only directory when using the --force-if-read-only flag. ([#2515](https://github.com/Azure/azure-storage-azcopy/pull/2515))
21+
8. Fixed an issue where the AzCopy log location on resumed jobs would be reported incorrectly. ([#2466](https://github.com/Azure/azure-storage-azcopy/issues/2466))
22+
9. Fixed an issue with preserving SMB properties in Linux. ([#2530](https://github.com/Azure/azure-storage-azcopy/pull/2530))
23+
10. Fixed an issue where long-running service to service copies using OAuth at the source would result in the token expiring too early. ([#2513](https://github.com/Azure/azure-storage-azcopy/pull/2513))
24+
11. Fixed an issue where AzCopy would try to create folders that already existed, resulting in many unnecessary requests. ([#2511](https://github.com/Azure/azure-storage-azcopy/pull/2511))
25+
26+
### Documentation
27+
28+
1. Updated --include-directory-stub inline help to match public documentation. ([#2488](https://github.com/Azure/azure-storage-azcopy/pull/2488))
29+
30+
431
## Version 10.22.2
532

33+
### Bug Fixes
34+
635
1. Fixed an issue where AzCopy operations pointed at a snapshot or version object would operation on the base object instead.
736
2. Fixed an issue where AzCopy would download only the base blob when the --list-of-versions flag was used.
837

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.22.2"
3+
const AzcopyVersion = "10.23.0"
44
const UserAgent = "AzCopy/" + AzcopyVersion
55
const S3ImportUserAgent = "S3Import " + UserAgent
66
const GCPImportUserAgent = "GCPImport " + UserAgent

0 commit comments

Comments
 (0)