Skip to content

Update module to 0.16.0 #310

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

Merged
merged 1 commit into from
Jan 5, 2021
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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
# PowerShellForGitHub PowerShell Module
# Changelog

## [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]](https://github.com/PowerShell/PowerShellForGitHub/pull/300) | [[cl]](https://github.com/microsoft/PowerShellForGitHub/commit/22e3d7bdf6c3b33fdead74dac831e0bb43beb2c4)

+ Added the ability to retrieve and modify the GitHub Actions permissions policy for repositories
with `Get-GitHubRepositoryActionsPermission` and `Set-GitHubRepositoryActionsPermission`
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/301) | [[cl]](https://github.com/microsoft/PowerShellForGitHub/commit/d4997057f8b1234ea1aabeb4fb6742148d3afaaf)

### Fixes:

- Added missing `.SYNOPSIS` to a number of functions throughout the module.
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/293) | [[cl]](https://github.com/microsoft/PowerShellForGitHub/commit/ab536c772a7656f92166d13f5df9ef7bf6627a3f)

- Fixed an error in `Set-GitHubContent` which caused it to ignore requested changes to
`AuthorName`/`AuthorEmail`.
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/295) | [[cl]](https://github.com/microsoft/PowerShellForGitHub/commit/ec7950c02c1e52af2a6edc30331982d172f6e7ff)

- 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]](https://github.com/PowerShell/PowerShellForGitHub/pull/306) | [[cl]](https://github.com/microsoft/PowerShellForGitHub/commit/8fd42010209edaf10936751b8eb190655a2bdb38)

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](https://github.com/PowerShell/PowerShellForGitHub/tree/0.15.1) - (2020/09/09)

### Fixes:
Expand Down
2 changes: 1 addition & 1 deletion PowerShellForGitHub.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
CompanyName = 'Microsoft Corporation'
Copyright = 'Copyright (C) Microsoft Corporation. All rights reserved.'

ModuleVersion = '0.15.1'
ModuleVersion = '0.16.0'
Description = 'PowerShell wrapper for GitHub API'

# Script module or binary module file associated with this manifest.
Expand Down