Skip to content

Tags: microsoft/PowerShellForGitHub

Tags

0.16.1

Toggle 0.16.1's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
HowardWolosky Howard Wolosky
[0.16.1](https://github.com/PowerShell/PowerShellForGitHub/tree/0.16.1)…

… - (2021/05/26)

Features

+ `Invoke-GHRestMethodMultipleResult` now allows callers to specify `AdditionalHeader`, just like
  `Invoke-GHRestMethod`.
  [[pr]](#319) | [[cl]](a2329d6)

Fixes

- Fixes encoding issues when calling `Set-GitHubContent`
  [[pr]](#328) | [[cl]](1200b5b)

Authors

   * [**@HowardWolosky**](https://github.com/HowardWolosky)
   * [**@jing8956**](https://github.com/jing8956)

0.16.0

Toggle 0.16.0's commit message
[0.16.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.16.0)…

… - (2021/01/06)

Features:

+ Added the ability to retrieve and modify team permissions on a repository with
  `Get-GitHubRepositoryTeamPermission`, `Set-GitHubRepositoryTeamPermission` and
  `Remove-GitHubRepositoryTeamPermission`
  [[pr]](#300) | [[cl]](22e3d7b)

+ Added the ability to retrieve and modify the GitHub Actions permissions policy for repositories
  with `Get-GitHubRepositoryActionsPermission` and `Set-GitHubRepositoryActionsPermission`
  [[pr]](#301) | [[cl]](d499705)

Fixes:

- Added missing `.SYNOPSIS` to a number of functions throughout the module.
  [[pr]](#293) | [[cl]](ab536c7)

- Fixed an error in `Set-GitHubContent` which caused it to ignore requested changes to
  `AuthorName`/`AuthorEmail`.
  [[pr]](#295) | [[cl]](ec7950c)

- Fixed `Get-GitHubEvent`, which was erroring out when its result contained any labels.  (The labels
  were being post-processed incorrectly when adding support for pipelining).
  [[pr]](#306) | [[cl]](8fd4201)

Authors:
   * [**@HowardWolosky**](https://github.com/HowardWolosky)
   * [**@@X-Guardian**](https://github.com/X-Guardian)
   * [**@johnlokerse**](https://github.com/johnlokerse)
   * [**@joseartrivera**](https://github.com/joseartrivera)

0.15.1

Toggle 0.15.1's commit message
[0.15.1](https://github.com/PowerShell/PowerShellForGitHub/tree/0.15.1)…

… - (2020/09/09)

Fixes:

- Fixed the default `LogPath` when no user profile is available (like in the situation of running
  within the context of an Azure Function App).  The alternate default log path in this scenario
  will now be the `LocalApplicationDataFolder`.
  [[pr]](#283) | [[cl]](e9a6810)

Authors:
   * [**@HowardWolosky**](https://github.com/HowardWolosky)

0.15.0

Toggle 0.15.0's commit message
 [0.15.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.15.0…

…) - (2020/08/17)

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___
+ Complete pipeline support has been added to the module.  You can now pipe the output of almost
  any command as input to almost any command.  Every command output now has a specific `GitHub.*`
  type that is queryable as well.

+ Major performance increase.  It turns out that showing animated status would make an operation
  take 3 seconds that would otherwise take 1/4 second due to performance issues with ProgressBar.
  We no longer show status except for commands that 10+ pages of results which we must query for,
  and that minimum can be changed with a new configuration property: `multiRequestProgressThreshold`
  (set it to `0` to never see any progress).

+ Lots of new functionality added:
  + Full support for gists: `Get-GitHubGist`, `Remove-GitHubGist`,
    `Copy-GitHubGist` (aka `Fork-GitHubGist`), `Add-GitHubGistStar`, `Remove-GitHubGistStar`,
    `Set-GitHubGistStar`, `Test-GitHubGistStar`, `New-GitHubGist`, `Set-GitHubGist`,
    `Rename-GitHubGistFile`, `Remove-GitHubGistFile`, `Set-GitHubGistFile` (aka`Add-GitHubGistFile`),
    `Get-GitHubGistComment`, `Set-GitHubGistComment`, `New-GitHubGistComment`,
    `Remove-GitHubGistComment`

  + Full support for Releases:
    `New-GitHubRelease`, `Set-GitHubRelease`, `Remove-GitHubRelease`, `Get-GitHubReleaseAsset`,
    `New-GitHubReleaseAsset`, `Set-GitHubReleaseAsset`, `Remove-GitHubReleaseAsset`

  + Improved support for Teams:
    `New-GitHubTeam`, `Set-GitHubTeam`, `Remove-GitHubTeam`, `Rename-GitHubTeam`

  + Dependabot support: `Test-GitHubRepositoryVulnerabilityAlert`,
    `Enable-GitHubRepositoryVulnerabilityAlert`, `Disable-GitHubRepositoryVulnerabilityAlert`,
    `Enable-GitHubRepositorySecurityFix`, `Disable-GitHubRepositorySecurityFix`

  + New Repository-related commands:
    `New-GitHubRepositoryFromTemplate`, `Set-GitHubContent`, `New-GitHubRepositoryBranch`,
    `Remove-GitHubRepositoryBranch`, `Get-GitHubRepositoryBranchProtectionRule`,
    `New-GitHubRepositoryBranchProtectionRule`, `Remove-GitHubRepositoryBranchProtectionRule`

  + New Reaction support added for issues and pull requests:
    `Get-GitHubReaction`, `Set-GitHubReaction`, `Remove-GitHubReaction`

+ Default formatters have been added for many (but not yet all) of the types introduced by this
  module.  Formatter support will be increased over the coming releases.

+ No longer has any external dependencies.  Previously had to download .NET
  assemblies in order to send telemetry, which made the initial commands
  take up much more time than needed.  With no eternal dependencies involved
  anymore, telemetry is lightning-fast with negligible impact to normal
  command execution.

___Breaking Changes___

____Stardized naming (and verb usage) throughout the module____
* A number of commands have been renamed to follow the pattern that we're standardizing on:
  `Get` / `Set` / `New` / `Remove`
  (but we will continue to alias `Remove-*` as `Delete-*`).
  * That resulted in the following command renames:
    * `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-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')]`

* The following parameter renames occurred as well:
  * `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____
* 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`
  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:
  * Only GitHub state-changing commands now support `-WhatIf` (which means `Get-GitHub*` and
    `Test-GitHub*` no longer support `-WhatIf`).
  * All other `-WhatIf`-supporting commands will only have a single `-WhatIf` output.

* The `NoStatus` parameter has been removed from all functions due to the change in status behavior
  as descried above.  The `DefaultNoStatus` configuration value has also been removed for the same
  reason.

* All state-changing functions are now silent by default (no resulting output).  If you want them
  to return the result, you can pass in `-PassThru`, which is a PowerShell standard design pattern.
  To truly get back to previous module behavior, you can set the new configuration property:
  `DefaultPassThru`.

* `Get-GitHubTeam` and `Get-GitHubTeamMember` no longer support the `TeamId` parameter, as that
  functionality has been deprecated by GitHub.  You can use `TeamSlug` instead.

___Features___
+ Complete pipeline support has been added to the module.  You can now pipe the output of almost
  any command as input to almost any command.  Every command output now has a specific `GitHub.*`
  type that is queryable as well.
  [[pr]](#242) | [[cl]](17f6122)

+ All removal functions (and some rename functions) now prompt for confirmation.  This can be silently
  disabled with `-Confirm:$false`.  A later change will add support for using `-Force` as well.
  [[pr]](#174) | [[cl]](a6a27aa)

+ All commands that require confirmation now accept `-Force` in addition to `-Confirm:$false`.
  [[pr]](#226) | [[cl]](3c642d2)

+ Telemetry no longer has any external dependencies.  We used to have to download .NET assemblies
  in order to send telemetry, and the downloading of those binaries took up time.  Telemetry
  reporting has now been completely implemented within PowerShell, removing all external dependencies.
  [[pr]](#186) | [[cl]](ae8467f)

+ Added additional options to `Update-GitHubRepository` (later renamed to `Set-GitHubRepository`):
  `DeleteBranchOnMerge` and `IsTemplate`
  [[pr]](#192) | [[cl]](ef246cd)

+ Added Dependabot service functions: `Test-GitHubRepositoryVulnerabilityAlert`,
  `Enable-GitHubRepositoryVulnerabilityAlert`, `Disable-GitHubRepositoryVulnerabilityAlert`,
  `Enable-GitHubRepositorySecurityFix`, `Disable-GitHubRepositorySecurityFix`
  [[pr]](#235) | [[cl]](b70c7d4)

+ Added `New-GitHubRepositoryFromTemplate` which can create a new GitHub repository from a specified
  template repository.
  [[pr]](#221) | [[cl]](d96541e)

+ Added `Set-GitHubContent` and added a `BranchName` parameter to `Get-GitHubContent`.
  [[pr]](#241) | [[cl]](a1f5e93)

+ Added default "views" for all types exposed in GitHubRepositories.ps1: `GitHub.Repository`,
  `GitHub.RepositoryTopic`, `GitHub.RepositoryContributor`, `GitHub.RepositoryContributorStatistics`,
  `GitHub.RepositoryCollaborator`, `GitHub.RepositoryTag`
  [[pr]](#205) | [[cl]](41de3ad)

+ Standardized verb usage and parameter naming throughout the module.  This is great for long-term
  maintainability of the module, but it does introduced breaking changes from 0.14.0.  The breaking
  changes are covered more completely, above.
  [[pr]](#228) | [[cl]](e57a956)

+ Overhauled how status works for the module.  No longer shows an animation while invoking a web
  request.  This has the side effect of simplifying the code and significantly speeding-up the
  module.  This deprecates `NoStatus` and `DefaultNoStatus`.  This adds
  `MultiRequestProgressThreshold` to control how many pages of results are needed before a command
  will show status of completion across the full number of pages being retrieved.  This defaults to
  10.
  [[pr]](#253) | [[cl]](2740026)

+ Added `New-GitHubRepositoryBranch` and `Remove-GitHubRepositoryBranch`
  [[pr]](#256) | [[cl]](d76f54b)

+ Updated `New-GitHubRepositoryBranch` to better support pipeline input, and added `Sha` as an
  optional parameter to allow for arbitrary commit branch creation.  Also added `Sha` as a top-level
  property to a `GitHub.Branch` object.
  [[pr]](#277) | [[cl]](3e79c25)

+ Added GitHub Reactions support for Issues and Pull Requests: `Get-GitHubReaction`,
  `Set-GitHubReaction`, `Remove-GitHubReaction`
  [[pr]](#193) | [[cl]](8e55f5a)

+ Added complete support for the GitHub Releases API surface: `New-GitHubRelease`,
  `Set-GitHubRelease`, `Remove-GitHubRelease`, `Get-GitHubReleaseAsset`, `New-GitHubReleaseAsset`,
  `Set-GitHubReleaseAsset`, `Remove-GitHubReleaseAsset`
  [[pr]](#177) | [[cl]](356af2f)

+ Added complete support for the GitHub gists API surface: `Get-GitHubGist`, `Remove-GitHubGist`,
  `Copy-GitHubGist` (aka `Fork-GitHubGist`), `Add-GitHubGistStar`, `Remove-GitHubGistStar`,
  `Set-GitHubGistStar`, `Test-GitHubGistStar`, `New-GitHubGist`, `Set-GitHubGist`,
  `Rename-GitHubGistFile`, `Remove-GitHubGistFile`, `Set-GitHubGistFile` (aka`Add-GitHubGistFile`),
  `Get-GitHubGistComment`, `Set-GitHubGistComment`, `New-GitHubGistComment`,
  `Remove-GitHubGistComment`
  [[pr]](#172) | [[cl]](92c4aa8)

+ Added branch protection rule commands: `Get-GitHubRepositoryBranchProtectionRule`,
  `New-GitHubRepositoryBranchProtectionRule`, `Remove-GitHubRepositoryBranchProtectionRule`
  [[pr]](#255) | [[cl]](981b85c)

+ Standardized and improved the `WhatIf` support throughout the entire module.
  [[pr]](#254) | [[cl]](2f16de1)

+ Added additional support for Teams: `New-GitHubTeam`, `Set-GitHubTeam`, `Remove-GitHubTeam`, and
  adds `TeamName` as an additional way to call into `Get-GitHubTeam`.
  [[pr]](#257) | [[cl]](6a51601)

+ Minor improvements to the new Teams commands to better support pipeline input and to provide
  alternative calling patterns (which can specify a team's `slug` or parent team's `TeamId` in order
  to minimize additional queries that would have to be done internally to complete your request).
  Added `Rename-GitHubTeam` as well.
  This _also_ removes `TeamId` as a way to call `Get-GitHubTeam` or `Get-GitHubTeamMember`, as
  those API's have been deprecated by GitHub.  You can now speficy a `TeamSlug` instead.
  [[pr]](#275) | [[cl]](9ef3c2b)

* All state-changing functions are now silent by default (no resulting output).  If you want them
  to return the result, you can pass in `-PassThru`, which is a PowerShell standard design pattern.
  To truly get back to previous module behavior, you can set the new configuration property:
  `DefaultPassThru`.
  [[pr]](#276) | [[cl]](9600fc2)

___Fixes___
- Example description
  [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/xxx) | [[cl]](xxxxxxx)

- Module update check needs to be able to handle when the module in use is newer than the published
  version (since publication to PowerShellGallery happens a few hours after the version is updated
  in GitHub).
  [[pr]](#204) | [[cl]](efdcbfa)

- Simplified `-WhatIf` handling within `Invoke-GHRestMethod` to only have a single `ShouldProcess`
  statement.  This was the first attempt at simplifying how `-WhatIf` should work.  There was a
  successive change that took things further (see below).
  [[pr]](#213) | [[cl]](ad15657)

- Fixed exception that occurred when calling `Set-GitHubRepositoryTopic` with `-Clear`.
  [[pr]](#216) | [[cl]](d1bd976)

- Disabled the progress bar for `Invoke-WebRequest` which greatly improves its performance in
  PowerShell 5.1.
  [[pr]](#229) | [[cl]](6e794cb)

- Significantly increased the performance of `Get-GitHubContent` with some internal changes.
  [[pr]](#232) | [[cl]](7818776)

- Removed positional binding support on `Set-GitHubConfiguration` to solve a common misconfiguration
  problem introduced by accidentally setting the wrong configuration value state.
  [[pr]](#234) | [[cl]](08ff284)

- The module will now restore the previous state of `[Net.ServicePointManager]::SecurityProtocol `
  after performing its operation.
  [[pr]](#240) | [[cl]](618398e)

- Some commands were not properly validating the `OwnerName`/`RepositoryName` input due to a
  misconfiguration.  That has now been fixed.
  [[pr]](#243) | [[cl]](2385b5c)

- Added a `ValidateSet` to the `Affiiliation` parameter in `Get-GitHubRepository` to limit input to
  the set of permitted options. Comment-based help was updated for `Get-GitHubRepositoryCollaborator`
  and `Move-GitHubRepositoryOwnership`.  Removed an unreachable codepath in `Get-GitHubRepository`.
  [[pr]](#233) | [[cl]](eedfaa3)

- Fixes to module version update checking: Fixed regression introduced by the
  [pipeline work](#242), and suppressed
  its usage of the progress bar to speed it up further.
  [[pr]](#252) | [[cl]](d32bd11)

- Fixed pipeline support for the newly added
  [`New-GitHubRepositoryFromTemplate`](#221).
  [[pr]](#259) | [[cl]](f31d791)

- Fixed how numerical configuration values are handled to accommodate behavior differences in
  PowerShell 5 and PowerShell 7 Core.
  [[pr]](#262) | [[cl]](683187a)

- Fixed pipeline input handling for the newly added Dependabot functions.
  [[pr]](#272) | [[cl]](4ded2fa)

- Removed `NoStatus` completely from the module to complete the transitional work done for how
  status is handled in the module.
  [[pr]](#274) | [[cl]](db11155)

Authors:
   * [**@HowardWolosky**](https://github.com/HowardWolosky)
   * [**@X-Guardian**](https://github.com/X-Guardian)
   * [**@themilfan**](https://github.com/themilfan)
   * [**@TylerLeonhardt**](https://github.com/TylerLeonhardt)

0.14.0

Toggle 0.14.0's commit message
[0.14.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.14.0)…

… - (2020/05/30)

Features:
+ The module will now asynchronously check for updates up to once per day.  This can be disabled
  if desired with the `Set-GitHubConfiguration -DisableUpdateCheck`.
  [[pr]](#185) | [[cl]](a9f48a8)
+ It turns out that `Group-GitHubPullRequest` which was written back in `0.2.0` was never actually
  exported.  Now it is.
  [[pr]](#180) | [[cl]](b7e1ea1)

Fixes:
- Fixes the behavior of `Get-GitHubRepository`.  It actually had a number of issues:
  [[pr]](#179) | [[cl]](c4c1ec3)
  - `-GetAllPublicRepositories` didn't acutally work.  Now it does, along with the newly
     added `Since` parameters.
  - Fixed the ParameterSet handling for all parameters to make sure that users can only specify
    the correct combination of parameters.
- Fixes multi-result behavior across all versions of PowerShell.  You can now reliably capture
  the result of an API call like this: `@(Get-GitHubRepository ...)` and be assured that you'll
  get an array result with the proper count of items.  As a result, this fixes all remaining failing
  UT's on PowerShell 7.
  [[pr]](#199) | [[cl]](bcd0a56)
- Fixed an erroneous exception that occurred when calling `New-GitHubRepository` when specifying
  a `TeamId`.
  [[pr]](#196) | [[cl]](587e204)
- The module is now PSScriptAnalyzer clean (again).  This also fixed pipeline handling in
  `Group-GitHubPullRequest`, `Group-GitHubIssue` and `ConvertFrom-GitHubMarkdown`.
  [[pr]](#180) | [[cl]](b7e1ea1)
- Fixed some documentation which referenced that private repos were only available to paid GitHub
  plans.
  [[pr]](#191) | [[cl]](3c70b8d)
- Fixed a bug preventing quering for a specifically named branch with `Get-GitHubRepositoryBranch`.
  [[pr]](#188) | [[cl]](5807d00)
- Correctly fixed the hash that catches whether or not a developer has updated the settings file used
  when running this module's unit tests.  It involved updating the hash and then also ensuring we
  always check the file out with consistent line endings.
  [[pr]](#181) | [[cl]](93689d6) &&
  [[pr]](#183) | [[cl]](b4439f4)
- Documentation updates around configuring unattended authentication.
  [[pr]](#173) | [[cl]](3440909)

0.13.1

Toggle 0.13.1's commit message
[0.13.1](https://github.com/PowerShell/PowerShellForGitHub/tree/0.13.1)…

… - (2020/05/12)

  Fixes:
- Ensure progress bar for Wait-JobWithAnimation gets marked as Completed
  [[pr]](#169) | [[cl]](bb2ad45)

Authors:
   * [**@HowardWolosky**](https://github.com/HowardWolosky)

0.13.0

Toggle 0.13.0's commit message
[0.13.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.13.0)…

… - (2020/05/12)

Improvement:
- Migrate REST API progress status to use Write-Progress
  [[pr]](#167) | [[cl]](992f678)

Authors:
   * [**@HowardWolosky**](https://github.com/HowardWolosky)

0.12.0

Toggle 0.12.0's commit message
[0.12.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.12.0)…

… - (2020/05/12)

Features:
+ Added core support for Projects
  [[pr]](#160) | [[cl]](1cdaac1)
+ Added suport for Project Columns
  [[pr]](#162) | [[cl]](85170ce)
+ Added suport for Project Cards
  [[pr]](#163) | [[cl]](3a87f2b)
+ Added sample usage documentation for the new Project API's
  [[pr]](#164) | [[cl]](1556b8b)

Fixes:
- Minor spelling fixes in documentation throughout module
  [[pr]](#165) | [[cl]](6735ba5)
- Fixed confirmation message for `Rename-GitHubRepository`
  [[pr]](#161) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/3fab72464e38cb573408add7e99d5a6bb0db2ea1)

Authors:
   * [**@jpomfret**](https://github.com/jpomfret)
   * [**@HowardWolosky**](https://github.com/HowardWolosky)

0.11.0

Toggle 0.11.0's commit message

0.10.0

Toggle 0.10.0's commit message