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] Fixed issue of not be able to update package version in release pipeline #30034

Merged
merged 3 commits into from
Jun 13, 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: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@

# PRLabel: %Storage
# ServiceLabel: %Storage
/sdk/storage/ @EmmaZhu @XiaoningLiu @vinjiang @jiacfan @ljian3377
/sdk/storage/ @EmmaZhu @XiaoningLiu @vinjiang @jiacfan @ljian3377 @blueww

# PRLabel: %Synapse
# ServiceLabel: %Synapse
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 @@ -87,7 +87,7 @@
"//metadata": {
"constantPaths": [
{
"path": "src/generated/src/storageClientContext.ts",
"path": "src/generated/src/storageClient.ts",
"prefix": "packageVersion"
},
{
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 @@ -84,7 +84,7 @@
"//metadata": {
"constantPaths": [
{
"path": "src/generated/src/storageClientContext.ts",
"path": "src/generated/src/storageClient.ts",
"prefix": "packageVersion"
},
{
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 @@ -81,7 +81,7 @@
"//metadata": {
"constantPaths": [
{
"path": "src/generated/src/storageClientContext.ts",
"path": "src/generated/src/storageClient.ts",
"prefix": "packageVersion"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ describe("FileServiceClient Premium", () => {
assert.ok(propertiesSet.protocol?.smb?.multichannel);
});

it("Share Enable Protocol & Share Squash Root", async function (this: Context) {
it.skip("Share Enable Protocol & Share Squash Root", async function (this: Context) {
EmmaZhu marked this conversation as resolved.
Show resolved Hide resolved
const shareName = recorder.variable("share", getUniqueName("share"));
const shareClient = serviceClient.getShareClient(shareName);

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 @@ -77,7 +77,7 @@
"//metadata": {
"constantPaths": [
{
"path": "src/generated/src/storageClientContext.ts",
"path": "src/generated/src/storageClient.ts",
"prefix": "packageVersion"
},
{
Expand Down
Loading