Skip to content

Commit 83d9b65

Browse files
authored
[storage-file-datalake] Migrate to core-rest-pipeline (#24835)
### Packages impacted by this PR `@azure/storage-file-datalake` ### Issues associated with this PR #15813 ### Describe the problem that is addressed by this PR This PR migrates storage-file-datalake to the new core pipeline in the same fashion that storage-blob was recently migrated. There are no changes to the public surface and existing recorded tests still pass. ### Provide a list of related PRs _(if any)_ #24141
1 parent 7fd5e39 commit 83d9b65

60 files changed

Lines changed: 1245 additions & 2725 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

sdk/storage/storage-blob/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Release History
22

3+
## 12.20.0 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
12+
13+
- Migrated dependency on `@azure/core-http` to `@azure/core-rest-pipeline`.
14+
315
## 12.13.0 (Unreleased)
416

517
### Features Added

sdk/storage/storage-blob/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@azure/storage-blob",
33
"sdk-type": "client",
4-
"version": "12.13.0",
4+
"version": "12.20.0",
55
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
66
"main": "./dist/index.js",
77
"module": "./dist-esm/storage-blob/src/index.js",

sdk/storage/storage-file-datalake/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Release History
22

3+
## 12.20.0 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
12+
13+
- Migrated dependency on `@azure/core-http` to `@azure/core-rest-pipeline`.
14+
315
## 12.12.0 (Unreleased)
416

517
### Features Added

sdk/storage/storage-file-datalake/package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/storage-file-datalake",
3-
"version": "12.12.0",
3+
"version": "12.20.0",
44
"description": "Microsoft Azure Storage SDK for JavaScript - DataLake",
55
"sdk-type": "client",
66
"main": "./dist/index.js",
@@ -118,11 +118,15 @@
118118
},
119119
"dependencies": {
120120
"@azure/abort-controller": "^1.0.0",
121-
"@azure/core-http": "^3.0.0",
121+
"@azure/core-auth": "^1.4.0",
122+
"@azure/core-client": "^1.6.2",
123+
"@azure/core-http-compat": "^2.0.0",
122124
"@azure/core-paging": "^1.1.1",
125+
"@azure/core-rest-pipeline": "^1.10.1",
123126
"@azure/core-tracing": "1.0.0-preview.13",
127+
"@azure/core-util": "^1.1.1",
124128
"@azure/logger": "^1.0.0",
125-
"@azure/storage-blob": "^12.12.0",
129+
"@azure/storage-blob": "^12.20.0",
126130
"events": "^3.0.0",
127131
"tslib": "^2.2.0"
128132
},

0 commit comments

Comments
 (0)