Skip to content
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
4 changes: 2 additions & 2 deletions DiffPalReviewDevV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"version": {
"Major": 1,
"Minor": 6,
"Patch": 11
"Patch": 12
},
"minimumAgentVersion": "3.224.0",
"instanceNameFormat": "DiffPal Review Dev",
Expand All @@ -28,7 +28,7 @@
"type": "string",
"label": "DiffPal version",
"required": false,
"defaultValue": "0.1.32",
"defaultValue": "0.1.33",
"helpMarkDown": "npm version or dist-tag for @diffpal/diffpal."
},
{
Expand Down
4 changes: 2 additions & 2 deletions DiffPalReviewV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"version": {
"Major": 1,
"Minor": 6,
"Patch": 11
"Patch": 12
},
"minimumAgentVersion": "3.224.0",
"instanceNameFormat": "DiffPal Review",
Expand All @@ -28,7 +28,7 @@
"type": "string",
"label": "DiffPal version",
"required": false,
"defaultValue": "0.1.32",
"defaultValue": "0.1.33",
"helpMarkDown": "npm version or dist-tag for @diffpal/diffpal."
},
{
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ VSIX packaging, and Marketplace release flow.

The task installs `@diffpal/diffpal` by default and runs `diffpal review ado`.
Bring the provider recipe you want to use; the Azure review flow stays the same.
By default it installs `@diffpal/diffpal@0.1.32`, the tested CLI release paired
By default it installs `@diffpal/diffpal@0.1.33`, the tested CLI release paired
with this extension. Set `diffpalVersion` only when you need to override that
default rollout.

Expand Down Expand Up @@ -67,7 +67,7 @@ steps:
- task: DiffPalReview@1
displayName: DiffPal review
inputs:
diffpalVersion: 0.1.32
diffpalVersion: 0.1.33
profile: ci
feedback: balanced
env:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
"publish:prod": "npm run build \u0026\u0026 tfx extension publish --manifest-globs vss-extension.json",
"smoke": "npm run build \u0026\u0026 node scripts/smoke-test.js"
},
"version": "0.1.33"
"version": "0.1.34"
}
2 changes: 1 addition & 1 deletion scripts/smoke-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function testDefaultPinnedVersionIsUsedWhenInputIsUnset() {
PATH: `${fakeBin}${path.delimiter}${process.env.PATH || ""}`
});

assert(read(npmArgv).includes("@diffpal/diffpal@0.1.32"), "default install did not request the pinned DiffPal version");
assert(read(npmArgv).includes("@diffpal/diffpal@0.1.33"), "default install did not request the pinned DiffPal version");
assert(read(diffpalArgv).includes("review\nado"), "default pinned version did not run diffpal review ado");
}

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type ReviewRange = {
pullRequest: PullRequestContext;
};

const DEFAULT_DIFFPAL_VERSION = "0.1.32";
const DEFAULT_DIFFPAL_VERSION = "0.1.33";
const TRANSIENT_REVIEW_EXIT_CODE = 3;
const REVIEW_BLOCKED_EXIT_CODE = 10;

Expand Down
2 changes: 1 addition & 1 deletion vss-extension.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"id": "Microsoft.VisualStudio.Services"
}
],
"version": "0.1.33"
"version": "0.1.34"
}
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"id": "Microsoft.VisualStudio.Services"
}
],
"version": "0.1.33"
"version": "0.1.34"
}