Enhancing CHANGELOG for 0.15.0 (#279)
Added a number of additional details for the breaking changes being introduced in order to make it easier for existing users to migrate their code. Some very minor changes have been additionally made to fix some documentation or parameter typename issues. Given that 0.15.0 still hasn't been officially published yet, these changes will be part of the eventual 0.15.0 release.
This commit is contained in:
Родитель
515c1db36e
Коммит
db5d33e7d8
65
CHANGELOG.md
65
CHANGELOG.md
|
@ -3,7 +3,8 @@
|
||||||
|
|
||||||
[0.15.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.15.0) - (2020/08/16)
|
[0.15.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.15.0) - (2020/08/16)
|
||||||
### Overview:
|
### Overview:
|
||||||
This is a significant update that has a number of breaking changes amongst its payload.
|
This is a significant update that has a number of breaking changes amongst its payload that
|
||||||
|
existing users need to be made aware of.
|
||||||
|
|
||||||
### Highlights:
|
### Highlights:
|
||||||
+ Complete pipeline support has been added to the module. You can now pipe the output of almost
|
+ Complete pipeline support has been added to the module. You can now pipe the output of almost
|
||||||
|
@ -54,23 +55,71 @@ This is a significant update that has a number of breaking changes amongst its p
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|
||||||
#### Stardized naming (and verb usage) throghout the module
|
#### Stardized naming (and verb usage) throughout the module
|
||||||
* A number of commands have been renamed to follow the pattern that we're standardizing on:
|
* A number of commands have been renamed to follow the pattern that we're standardizing on:
|
||||||
`Get` / `Set` / `New` / `Remove`
|
`Get` / `Set` / `New` / `Remove`
|
||||||
(but we will continue to alias `Remove-*` as `Delete-*`).
|
(but we will continue to alias `Remove-*` as `Delete-*`).
|
||||||
|
* That resulted in the following command renames:
|
||||||
* The following renames have occurred:
|
* `Get-GitHubComment` -> `Get-GitHubIssueComment` `[Alias('Get-GitHubComment)]`
|
||||||
|
* `New-GitHubAssignee` -> `Add-GitHubAssignee` `[Alias('New-GitHubAssignee')]`
|
||||||
|
* `New-GitHubComment` -> `New-GitHubIssueComment` `[Alias('New-GitHubComment)]`
|
||||||
|
* `Remove-GitHubComment` -> `Remove-GitHubIssueComment` `[Alias('Remove-GitHubComment)]`
|
||||||
|
* `Set-GitHubLabel` -> `Initialize-GitHubLabel` _[breaking behavior due to the `Update-GitHubLabel` change below]_`
|
||||||
* `Update-GitHubCurrentUser` -> `Set-GitHubProfile` `[Alias('Update-GitHubCurrentUser')]`
|
* `Update-GitHubCurrentUser` -> `Set-GitHubProfile` `[Alias('Update-GitHubCurrentUser')]`
|
||||||
* `Update-GitHubIssue` -> `Set-GitHubIssue` `[Alias('Update-GitHubIssue')]`
|
* `Update-GitHubIssue` -> `Set-GitHubIssue` `[Alias('Update-GitHubIssue')]`
|
||||||
|
* `Update-GitHubLabel` -> `Set-GitHubLabel` `[Alias('Update-GitHubLabel')]`
|
||||||
|
_[breaking behavior since `Set-GitHubLabel` used to do something else]_
|
||||||
* `Update-GitHubRepository` -> `Set-GitHubRepository` `[Alias('Update-GitHubRepository')]`
|
* `Update-GitHubRepository` -> `Set-GitHubRepository` `[Alias('Update-GitHubRepository')]`
|
||||||
* `New-GitHubAssignee` -> `Add-GitHubAssignee` `[Alias('New-GitHubAssignee')]`
|
|
||||||
* [breaking] `Update-GitHubLabel` -> `Set-GitHubLabel` `[Alias('Update-GitHubLabel')]`
|
* The following parameter renames occurred as well:
|
||||||
* [breaking] `Set-GitHubLabel` -> `Initialize-GitHubLabel` `<no alias due to above>`
|
* `Add-GitHubIssueLabel`: `Name` -> `Label`
|
||||||
|
* `Get-GitHubCodeOfConduct`: `Name` -> `Key`
|
||||||
|
* `Get-GitHubProjectCard`: `ArchivedState` -> `State` (although we kept an alias for `ArchivedState`)
|
||||||
|
* `Get-GitHubLabel`: `Name` -> `Label`, `Milestone` -> `MilestoneNumber`
|
||||||
|
* `Get-GitHubLicense`: `Name` -> `Key`
|
||||||
|
* `Get-GitHubRelease`: `ReleaseId` -> `Release` (although we kept an alias for `ReleaseId`)
|
||||||
|
* `Get-GitHubRepositoryBranch`: `Name` -> `BranchName`
|
||||||
|
* `Get-GitHubUser`: `User` -> `UserName` (although we kept an alias for `User`)
|
||||||
|
* `Get-GitHubUserContextualInformation`: There is no longer `SubjectId` and `Subject`.
|
||||||
|
Instead you either specify `OrganizationId`, `RepositoryId`, `IssueId` or `PullRequestId`.
|
||||||
|
* `Move-GitHubProjectCard`: `ColumnId` -> `Column` (although we kept an alias for `ColumnId`)
|
||||||
|
* `New-GitHubLabel`: `Name` -> `Label`
|
||||||
|
* `New-GitHubProject`: `Name` -> `ProjectName` (although we kept an alias for `Name`)
|
||||||
|
* `New-GitHubProjectCard`: There is no longer `ContentId` and `ContentType`.
|
||||||
|
Instead you either specify `IssueId` or `PullRequestId`.
|
||||||
|
* `New-GitHubProjectColumn`: `Name` -> `ColumnName` (although we kept an alias for `Name`)
|
||||||
|
* `Remove-GitHubIssueLabel`: `Name` -> `Label`
|
||||||
|
* `Remove-GitHubLabel`: `Name` -> `Label`
|
||||||
|
* `Rename-GitHubRepository`: `html_url` alias for `Uri` has been removed
|
||||||
|
* `Set-GitHubIssueLabel`: `Name` -> `Label`
|
||||||
|
* `Set-GitHubLabel` (formerly `Update-GitHubLabel`): `Name` -> `Label`
|
||||||
|
* `Set-GitHubProjectColumn`: `Name` -> `ColumnName` (although we kept an alias for `Name`)
|
||||||
|
* `Set-GitHubRepositoryTopic`: `Name` -> `Topic` (although we kept an alias for `Name`)
|
||||||
|
|
||||||
#### Other breaking changes
|
#### Other breaking changes
|
||||||
* All `Remove-*` functions (and some `Rename-*` functions) now prompt for confirmation before
|
* All `Remove-*` functions (and some `Rename-*`/`Set-*` functions) now prompt for confirmation before
|
||||||
performing the requested action. This can be silently bypassed by passing-in `-Confirm:$false`
|
performing the requested action. This can be silently bypassed by passing-in `-Confirm:$false`
|
||||||
or `-Force`.
|
or `-Force`.
|
||||||
|
* Affected commands that existed in previous releases:
|
||||||
|
* `Remove-GitHubAssignee`
|
||||||
|
* `Remove-GitHubIssueComment` (formerly named `Remove-GitHubComment`)
|
||||||
|
* `Remove-GitHubIssueLabel`
|
||||||
|
* `Remove-GitHubLabel`
|
||||||
|
* `Remove-GitHubMilestone`
|
||||||
|
* `Remove-GitHubProject`
|
||||||
|
* `Remove-GitHubProjectCard`
|
||||||
|
* `Remove-GitHubProjectColumn`
|
||||||
|
* `Remove-GitHubRepository`
|
||||||
|
* `Rename-GitHubRepository`
|
||||||
|
* `Set-GitHubLabel` (formerly named `Update-GitHubLabel`)
|
||||||
|
* `Set-GitHubRepository` (only affected when being used to rename the repository)
|
||||||
|
|
||||||
|
* Some parameters have had their type updated:
|
||||||
|
* `Comment`: `[string]` -> `[int64]`
|
||||||
|
* `Issue`/`IssueNumber`: `[string]`/`[int]` -> `[int64]`
|
||||||
|
* `Milestone`/`MilestoneNumber`: `[string]` -> `[int64]`
|
||||||
|
* `PullRequest`/`PullRequestNumber`: `[string]`/`[int]` -> `[int64]`
|
||||||
|
* `Release`/`ReleaseId`: `[string]` -> `[int64]`
|
||||||
|
|
||||||
* `WhatIf` support changes:
|
* `WhatIf` support changes:
|
||||||
* Only GitHub state-changing commands now support `-WhatIf` (which means `Get-GitHub*` and
|
* Only GitHub state-changing commands now support `-WhatIf` (which means `Get-GitHub*` and
|
||||||
|
|
|
@ -164,7 +164,7 @@ filter Get-GitHubIssueComment
|
||||||
ValueFromPipelineByPropertyName,
|
ValueFromPipelineByPropertyName,
|
||||||
ParameterSetName='CommentUri')]
|
ParameterSetName='CommentUri')]
|
||||||
[Alias('CommentId')]
|
[Alias('CommentId')]
|
||||||
[string] $Comment,
|
[int64] $Comment,
|
||||||
|
|
||||||
[Parameter(
|
[Parameter(
|
||||||
Mandatory,
|
Mandatory,
|
||||||
|
|
|
@ -327,7 +327,7 @@ filter New-GitHubPullRequest
|
||||||
ValueFromPipelineByPropertyName,
|
ValueFromPipelineByPropertyName,
|
||||||
ParameterSetName='Uri_Issue')]
|
ParameterSetName='Uri_Issue')]
|
||||||
[Alias('IssueNumber')]
|
[Alias('IssueNumber')]
|
||||||
[int] $Issue,
|
[int64] $Issue,
|
||||||
|
|
||||||
[Parameter(Mandatory)]
|
[Parameter(Mandatory)]
|
||||||
[string] $Head,
|
[string] $Head,
|
||||||
|
|
|
@ -1581,7 +1581,7 @@ filter Get-GitHubRepositoryContributor
|
||||||
GitHub.Repository
|
GitHub.Repository
|
||||||
|
|
||||||
.OUTPUTS
|
.OUTPUTS
|
||||||
GitHub.User
|
GitHub.Contributor
|
||||||
GitHub.RepositoryContributorStatistics
|
GitHub.RepositoryContributorStatistics
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
|
|
|
@ -19,7 +19,7 @@ filter Get-GitHubUser
|
||||||
|
|
||||||
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
|
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
|
||||||
|
|
||||||
.PARAMETER User
|
.PARAMETER UserName
|
||||||
The GitHub user to retrieve information for.
|
The GitHub user to retrieve information for.
|
||||||
If not specified, will retrieve information on all GitHub users
|
If not specified, will retrieve information on all GitHub users
|
||||||
(and may take a while to complete).
|
(and may take a while to complete).
|
||||||
|
|
Загрузка…
Ссылка в новой задаче