-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Moved UseDiffPackage checkbox to Upgrade section and enabled it by default #7345
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
function Create-DiffPackage | ||
function New-DiffPackage | ||
{ | ||
[CmdletBinding()] | ||
param( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
], | ||
"version": { | ||
"Major": 1, | ||
"Minor": 7, | ||
"Patch": 9 | ||
"Minor": 8, | ||
"Patch": 0 | ||
}, | ||
"demands": [ | ||
"Cmd" | ||
|
@@ -95,9 +95,9 @@ | |
"name": "useDiffPackage", | ||
"type": "boolean", | ||
"label": "Use Diff Package", | ||
"defaultValue": "false", | ||
"defaultValue": "true", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you should also enable compression option by default There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not required now as per requirements There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. minor: move this code piece to all other inputs which are in upgrade group |
||
"required": false, | ||
"groupname": "advanced", | ||
"groupname": "upgrade", | ||
"helpMarkDown": "Upgrade by using a diff package that contains only the updated application files, the updated application manifest, and the service manifest files." | ||
}, | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
], | ||
"version": { | ||
"Major": 1, | ||
"Minor": 7, | ||
"Patch": 9 | ||
"Minor": 8, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just update patch version. No need to update minor version. |
||
"Patch": 0 | ||
}, | ||
"demands": [ | ||
"Cmd" | ||
|
@@ -95,9 +95,9 @@ | |
"name": "useDiffPackage", | ||
"type": "boolean", | ||
"label": "ms-resource:loc.input.label.useDiffPackage", | ||
"defaultValue": "false", | ||
"defaultValue": "true", | ||
"required": false, | ||
"groupname": "advanced", | ||
"groupname": "upgrade", | ||
"helpMarkDown": "ms-resource:loc.input.help.useDiffPackage" | ||
}, | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please show me how the UI looks like?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done