Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
3262acb
storage-internal-avro parser (#8893)
ljian3377 May 21, 2020
cd02088
Merge remote-tracking branch 'upstream/master' into storage/stg73base
XiaoningLiu May 21, 2020
8fe8c37
[Storage][Blob] Regenerate with Dec19 swagger
XiaoningLiu May 19, 2020
6bc681f
avor parser offset fix; Readable interface update (#9088)
XiaoningLiu May 22, 2020
d404205
[Storage] Regenerate API review
XiaoningLiu May 26, 2020
031fdce
[storage] avro parser fix (#9154)
ljian3377 Jun 7, 2020
680d952
[Storage] Dec19 - Quickquery (#9112)
XiaoningLiu Jun 9, 2020
4d44581
Merge branch 'master' into storage/stg73base
Jun 9, 2020
f705b5c
regenerate storage-blob
Jun 10, 2020
33b5925
re-generate storage-file-share
Jun 10, 2020
0da47ef
regenrate datalake and undo adding mode to storageClient and storageC…
Jun 10, 2020
fdc9a93
Merge branch 'master' into storage/stg73base
Jun 11, 2020
ff0cf9f
update datalake service version to 2019-12-12
Jun 11, 2020
0bf0b40
[Storage] QuickQuery - Make BlobQueryCsvTextConfiguration properties …
XiaoningLiu Jun 12, 2020
b1e01e4
[storage][blob] blob versioning (#7886)
ljian3377 Jun 12, 2020
5deb5f5
[storage] added change feed (#9151)
ljian3377 Jun 12, 2020
e563ca4
[storage][blob & datalake] Jumbo blob (#9480)
ljian3377 Jun 12, 2020
fdff395
[Storage] Support blob tags (recording will be added later) (#9440)
XiaoningLiu Jun 12, 2020
1e65d73
update service version to 2019-12-12
Jun 12, 2020
d1b3cff
Merge branch 'master' into storage/stg73base
Jun 12, 2020
4659506
blob tags test record
Jun 12, 2020
826d1bd
fix listContainer options
Jun 13, 2020
c4b7dfb
wip
Jun 13, 2020
aa1f962
record skipped test for Jumbo
Jun 13, 2020
ec6710a
set default formatter
Jun 13, 2020
0300eba
me
Jun 14, 2020
7f00cc1
Merge branch 'storage/stg73base' of https://github.com/ljian3377/azur…
Jun 14, 2020
1571e50
wip
Jun 14, 2020
e3adcf8
blob record node
Jun 14, 2020
2a8ff8a
record
Jun 14, 2020
d16d3df
add version check for x permission
Jun 14, 2020
bd253fc
record for browser
Jun 14, 2020
7e6554d
wip
Jun 15, 2020
9e6c6a9
Merge branch 'storage/stg73base' of https://github.com/ljian3377/azur…
Jun 15, 2020
e9b66d5
wip
Jun 15, 2020
1728a17
wip
Jun 15, 2020
262053c
wip
Jun 15, 2020
2077f21
add f for account SAS permission
Jun 15, 2020
026b722
add permission f, and x for container
Jun 15, 2020
c7af1f5
wip
Jun 15, 2020
27f8839
me
Jun 15, 2020
78cbb6c
me
Jun 15, 2020
a088c4a
PR comments
Jun 16, 2020
b20894a
me
Jun 16, 2020
f288d57
add set expiry
Jun 16, 2020
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
4 changes: 3 additions & 1 deletion common/config/rush/common-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
// Following is required to allow for backward compatibility with Event Processor Host Track 1
"@azure/event-hubs": ["^2.1.4"],
// Allow packages to continue to use old eslint-plugin-azure-sdk until they can adapt to 3.0.0
"@azure/eslint-plugin-azure-sdk": ["^2.0.1"]
"@azure/eslint-plugin-azure-sdk": ["^2.0.1"],
// Allow storage-blob-changefeed and storage-file-datalake to use the preview version of storage-blob.
"@azure/storage-blob": ["^12.2.0-preview.1"]
}
}
220 changes: 211 additions & 9 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion rush.json
Original file line number Diff line number Diff line change
Expand Up @@ -447,11 +447,21 @@
"projectFolder": "sdk/servicebus/service-bus",
"versionPolicyName": "client"
},
{
"packageName": "@azure/storage-internal-avro",
"projectFolder": "sdk/storage/storage-internal-avro",
"versionPolicyName": "utility"
},
{
"packageName": "@azure/storage-blob",
"projectFolder": "sdk/storage/storage-blob",
"versionPolicyName": "client"
},
{
"packageName": "@azure/storage-blob-changefeed",
"projectFolder": "sdk/storage/storage-blob-changefeed",
"versionPolicyName": "client"
},
{
"packageName": "@azure/storage-file-share",
"projectFolder": "sdk/storage/storage-file-share",
Expand Down Expand Up @@ -488,4 +498,4 @@
"versionPolicyName": "utility"
}
]
}
}
3 changes: 3 additions & 0 deletions sdk/storage/storage-blob-changefeed/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode"]
}
Loading