Skip to content

Commit a36949b

Browse files
Updating changelog for azfile STG 87 GA, azblob STG87-90 GA (Azure#21739)
* Updated Changelog for 1.2.0 release * Updated Changelog for 1.1.0 release * updating changelog for STG 87-90 release * Fix AppendBlockFRomUrl contentMD5 nil test
1 parent 92cf047 commit a36949b

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

sdk/storage/azblob/CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
# Release History
22

3-
## 1.2.0-beta.2 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 1.2.0 (2023-10-11)
84

95
### Bugs Fixed
106
* Fixed null pointer exception when `SetImmutabilityPolicyOptions` is passed as `nil`.
117

12-
### Other Changes
13-
148
## 1.2.0-beta.1 (2023-09-18)
159

1610
### Features Added

sdk/storage/azblob/appendblob/client_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,9 @@ func (s *AppendBlobUnrecordedTestsSuite) TestAppendBlockFromURL() {
453453
_, err = destBlob.Create(context.Background(), nil)
454454
_require.NoError(err)
455455

456-
appendFromURLResp, err := destBlob.AppendBlockFromURL(context.Background(), srcBlobURLWithSAS, nil)
456+
appendFromURLResp, err := destBlob.AppendBlockFromURL(context.Background(), srcBlobURLWithSAS, &appendblob.AppendBlockFromURLOptions{
457+
SourceContentValidation: blob.SourceContentValidationTypeMD5(contentMD5[:]),
458+
})
457459

458460
_require.NoError(err)
459461
_require.Equal(*appendFromURLResp.BlobAppendOffset, "0")

sdk/storage/azblob/internal/exported/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ package exported
88

99
const (
1010
ModuleName = "azblob"
11-
ModuleVersion = "v1.2.0-beta.2"
11+
ModuleVersion = "v1.2.0"
1212
)

sdk/storage/azfile/CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# Release History
22

3-
## 1.1.0-beta.2 (Unreleased)
3+
## 1.1.0 (2023-10-11)
44

55
### Features Added
66

7-
### Breaking Changes
7+
* Updated service version to `2022-11-02`.
88

99
### Bugs Fixed
10-
* Fixed a bug where the `x-ms-file-attributes` header could be set to contain invalid trailing or leading | characters.
1110

12-
### Other Changes
11+
* Fixed a bug where the `x-ms-file-attributes` header could be set to contain invalid trailing or leading | characters.
1312

1413
## 1.1.0-beta.1 (2023-09-12)
1514

sdk/storage/azfile/internal/exported/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ package exported
88

99
const (
1010
ModuleName = "azfile"
11-
ModuleVersion = "v1.1.0-beta.2"
11+
ModuleVersion = "v1.1.0"
1212
)

0 commit comments

Comments
 (0)