Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Storage]Bump dependency version on @azure/core-xml #31091

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sdk/storage/storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Other Changes

- Upgraded dependency on `@azure/core-xml` to version `1.4.3`.

## 12.25.0-beta.1 (2024-08-09)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"@azure/core-rest-pipeline": "^1.10.1",
"@azure/core-tracing": "^1.1.2",
"@azure/core-util": "^1.6.1",
"@azure/core-xml": "^1.3.2",
"@azure/core-xml": "^1.4.3",
"@azure/logger": "^1.0.0",
"events": "^3.0.0",
"tslib": "^2.2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,8 @@ describe("syncUploadFromURL", () => {
await blockBlobClient.syncUploadFromURL(sourceBlobURLWithSAS);
}).timeout(10 * 60 * 1000);

it("large content with timeout", async function () {
// TODO: should enable this case when service is ready
it.skip("large content with timeout", async function () {
if (!isLiveMode()) {
this.skip();
}
Expand Down
2 changes: 2 additions & 0 deletions sdk/storage/storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Other Changes

- Upgraded dependency on `@azure/core-xml` to version `1.4.3`.

## 12.24.0-beta.1 (2024-08-09)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file-datalake/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"@azure/core-paging": "^1.1.1",
"@azure/core-rest-pipeline": "^1.10.1",
"@azure/core-tracing": "^1.1.2",
"@azure/core-xml": "^1.3.2",
"@azure/core-xml": "^1.4.3",
"@azure/core-util": "^1.1.1",
"@azure/logger": "^1.0.0",
"@azure/storage-blob": "^12.25.0-beta.1",
Expand Down
2 changes: 2 additions & 0 deletions sdk/storage/storage-file-share/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Other Changes

- Upgraded dependency on `@azure/core-xml` to version `1.4.3`.

## 12.25.0-beta.1 (2024-08-09)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file-share/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"@azure/core-rest-pipeline": "^1.10.1",
"@azure/core-tracing": "^1.1.2",
"@azure/core-util": "^1.6.1",
"@azure/core-xml": "^1.3.2",
"@azure/core-xml": "^1.4.3",
"@azure/logger": "^1.0.0",
"events": "^3.0.0",
"tslib": "^2.2.0"
Expand Down
2 changes: 2 additions & 0 deletions sdk/storage/storage-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Other Changes

- Upgraded dependency on `@azure/core-xml` to version `1.4.3`.

## 12.24.0-beta.1 (2024-08-09)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-queue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"@azure/core-rest-pipeline": "^1.10.1",
"@azure/core-tracing": "^1.1.2",
"@azure/core-util": "^1.6.1",
"@azure/core-xml": "^1.3.2",
"@azure/core-xml": "^1.4.3",
"@azure/logger": "^1.0.0",
"tslib": "^2.2.0"
},
Expand Down
Loading