Skip to content

Commit 2dd05e7

Browse files
Updating module to 0.9.0 (#128)
1 parent 788465f commit 2dd05e7

File tree

3 files changed

+53
-48
lines changed

3 files changed

+53
-48
lines changed

CHANGELOG.md

Lines changed: 43 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,38 @@
11
# PowerShellForGitHub PowerShell Module
22
## Changelog
33

4+
[0.9.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.9.0) - (2019/09/19)
5+
### Features:
6+
+ Added `Get-GitHubRelease`
7+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/125) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/7ea773c715525273dddd451d2a05f429e7fe69e1)
8+
+ Added `New-GitHubPullRequest`
9+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/111) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/788465faec1b6d6331537aa87c2d94039682e373)
10+
11+
### Fixes:
12+
* Updates the GitHub Enterprise support to use the `http(s)://[hostname]/api/v3` syntax
13+
instead of the non-standard `http(s)://api.[hostname]/` syntax.
14+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/118) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/f7b956da4ae169ec6ec1bb6582ce742372677f5c)
15+
* Minor Comment Based Help (CBH) update for Get-GitHubRepository
16+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/120) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/220333a71214fb88a33093b5e907d431dcfdb4c8)
17+
18+
Authors:
19+
* [**@smaglio81**](https://github.com/smaglio81)
20+
* [**@rjmholt**](https://github.com/rjmholt)
21+
* [**@v2kiran**](https://github.com/v2kiran)
22+
* [**@PrzemyslawKlys**](https://github.com/PrzemyslawKlys)
23+
24+
------
25+
426
[0.8.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.8.0) - (2019/04/12)
527
### Features:
628
+ Added support for GitHub Enterprise users by adding a new `ApiHostName` configuration value.
729
([more info](https://github.com/Microsoft/PowerShellForGitHub/blob/master/README.md#github-enterprise))
30+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/101) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/d5acd0f73d97f6692914976ce9366456a59cbf70)
831

932
### Fixes:
1033
* Renamed `ConvertFrom-Markdown` to `ConvertFrom-GitHubMarkdown` to avoid a conflict with
1134
PSCore's new `ConvertFrom-Markdown` command.
12-
13-
More Info:
14-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/101) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/d5acd0f73d97f6692914976ce9366456a59cbf70)
15-
16-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/100) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/088f95b5a1340c7ce570e6e68a41967fd5760c46)
35+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/100) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/088f95b5a1340c7ce570e6e68a41967fd5760c46)
1736

1837
Authors:
1938
* [**@Cellivar**](https://github.com/Cellivar)
@@ -24,19 +43,16 @@ Authors:
2443
[0.7.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.7.0) - (2019/03/15)
2544
### Fixes:
2645
* Modified all [int] parameters to be [int64] to avoid out of bounds issues with large ID's.
46+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/94) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/a22739e7f535faf4c5f486694bd213782437e82a)
2747
* `Split-GitHubUri` updated to work with the `https://api.github.com/*` uri's included in some of
2848
the REST responses.
49+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/88) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/592167de9b3f07635c49365e291082fd3f712586)
2950

3051
### Features:
3152
+ Added `Test-GitHubOrganizationMember` to test if a user is in an organization.
53+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/90) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/c60bb29ac02e7ab9fcd2e29db865b63876cb0125)
3254
+ Updated `Get-GitHubTeamMember` to optionally work directly with a TeamId.
33-
34-
More Info:
35-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/88) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/592167de9b3f07635c49365e291082fd3f712586)
36-
37-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/90) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/c60bb29ac02e7ab9fcd2e29db865b63876cb0125)
38-
39-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/94) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/a22739e7f535faf4c5f486694bd213782437e82a)
55+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/90) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/c60bb29ac02e7ab9fcd2e29db865b63876cb0125)
4056

4157
Author: [**@HowardWolosky**](https://github.com/HowardWolosky)
4258

@@ -46,8 +62,7 @@ Author: [**@HowardWolosky**](https://github.com/HowardWolosky)
4662
### Fixes:
4763
* Updated the `*-GitHubIssue` functions to support specifying the `MediaType` that should be used
4864
for the returned result.
49-
50-
More Info: [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/83) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/e3b6c53017abd36fc70253e1a49c31046c885ad1)
65+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/83) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/e3b6c53017abd36fc70253e1a49c31046c885ad1)
5166

5267
Author: [**@joseartrivera**](https://github.com/joseartrivera)
5368

@@ -57,8 +72,7 @@ Author: [**@joseartrivera**](https://github.com/joseartrivera)
5772
### Fixes:
5873
* Updated all parameter sets to use `CamelCase` for the permitted options, and stopped
5974
any use of abbreviation, to be more consistent with the rest of PowerShell.
60-
61-
More Info: [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/81) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/185441078efeb0e6693eafeb023785388a1a5a69)
75+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/81) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/185441078efeb0e6693eafeb023785388a1a5a69)
6276

6377
Author: [**@HowardWolosky**](https://github.com/HowardWolosky)
6478

@@ -68,11 +82,8 @@ Author: [**@HowardWolosky**](https://github.com/HowardWolosky)
6882
### Fixes:
6983
- Fixes a bug preventing Labels from being correctly added at the time of new Issue creation or
7084
modified when updating an issue.
71-
72-
More Info:
73-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/76) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/3b6e84cbafaf044e2154a06612b1c43a873cd002)
74-
75-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/78) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/577f07bd219e9b5c03d481e562fd7f2fc3586474)
85+
{[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/76) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/3b6e84cbafaf044e2154a06612b1c43a873cd002) and
86+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/78) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/577f07bd219e9b5c03d481e562fd7f2fc3586474)}
7687

7788
Authors:
7889
* [**@lazywinadmin**](https://github.com/lazywinadmin)
@@ -84,9 +95,7 @@ Authors:
8495
### Fixes:
8596
- Fixes a bug with checking Issues. When trying to list all issues, it tried to speficially look
8697
for Issue 0.
87-
88-
More Info:
89-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/73) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/bf6764080ce1291cfe2530a39ffd292f38b37440)
98+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/73) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/bf6764080ce1291cfe2530a39ffd292f38b37440)
9099

91100
Authors:
92101
* [**@joseartrivera**](https://github.com/joseartrivera)
@@ -97,19 +106,14 @@ Authors:
97106
### Features:
98107
+ Completes all support for GitHub Issue API's:
99108
+ Added support for the [Issue Event](https://developer.github.com/v3/issues/events/) API's.
109+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/64) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/06e25243086954013b50c1fa7e3eb11bc34a9501)
100110
+ Added support for the [Issue Milestone](https://developer.github.com/v3/issues/milestones/) API's.
111+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/62) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/2bd244768d0bed85943e5e8375bb3f5bebdc763b)
101112
+ Added support for the [Issue Label](https://developer.github.com/v3/issues/labels/) API's.
113+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/59) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/6c7355424828d5ada457bdbe2182c8fdf6845641)
102114
+ Added new `LogRequestBody` configuration option to help with development, allowing you to see the
103115
exact body of the REST request being sent before it is sent over the wire.
104-
105-
More Info:
106-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/64) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/06e25243086954013b50c1fa7e3eb11bc34a9501)
107-
108-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/62) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/2bd244768d0bed85943e5e8375bb3f5bebdc763b)
109-
110-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/59) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/6c7355424828d5ada457bdbe2182c8fdf6845641)
111-
112-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/60) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/98aec29d61bf013a153705079703ae027cc25c9f)
116+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/60) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/98aec29d61bf013a153705079703ae027cc25c9f)
113117

114118
Authors:
115119
* [**@HowardWolosky**](https://github.com/HowardWolosky)
@@ -121,18 +125,14 @@ Authors:
121125
## [0.5.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.5.0) - (2018/11/30)
122126
### Features:
123127
+ Added support for the [Issue Comment](https://developer.github.com/v3/issues/comments/) API's.
128+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/53) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/28b314bd7c0a810848e1acb3df43a1d83291be7b)
124129
+ Added support for the [Issue Assignee](https://developer.github.com/v3/issues/assignees/) API's.
130+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/54) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/680696a833b3cc753e961fc8c723b0be9b39ecc2)
125131

126132
### Fixes:
127133
* Fixed bug that caused single or empty arrays returned within objects to be flattened
128134
(instead of remaining as arrays)
129-
130-
More Info:
131-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/56) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/6cf344fb38485275f94b1e85c1a5f932e1b519c3)
132-
133-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/53) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/28b314bd7c0a810848e1acb3df43a1d83291be7b)
134-
135-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/54) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/680696a833b3cc753e961fc8c723b0be9b39ecc2)
135+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/56) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/6cf344fb38485275f94b1e85c1a5f932e1b519c3)
136136

137137
Authors:
138138
* [**@HowardWolosky**](https://github.com/HowardWolosky)
@@ -143,19 +143,15 @@ Authors:
143143
## [0.4.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.4.0) - (2018/11/16)
144144
### Features:
145145
+ Added support for the [Repository Traffic API's](https://developer.github.com/v3/repos/traffic/).
146+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/49) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/8d2e76f9059f0939b892d08386fe43f0e2722bb0)
146147

147148
### Fixes:
148149
* Made NuGet dll retrieval more robust by preventing potential file access problems from being
149150
written to the error stream.
151+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/48) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/b614f4a0fbcb570ef462fea64f776ca85480de86)
150152
* Prevented the possibility of Access Tokens from being written into the log file in plain text
151153
if explicitly passed-in
152-
153-
More Info:
154-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/48) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/b614f4a0fbcb570ef462fea64f776ca85480de86)
155-
156-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/49) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/8d2e76f9059f0939b892d08386fe43f0e2722bb0)
157-
158-
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/50) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/c6835f4cb1ef0e78e23a8195949eb9ad2555fd4a)
154+
[[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/50) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/c6835f4cb1ef0e78e23a8195949eb9ad2555fd4a)
159155

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

CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,15 @@ Thank you to all of our contributors, no matter how big or small the contributio
448448
- **[Ethan Gottlieb (@etgottli)](https://github.com/etgottli)**
449449
- **[François-Xavier Cat (@lazywinadmin)](https://github.com/lazywinadmin)**
450450
- **[Cliff Chapman (@Cellivar)](https://github.com/Cellivar)**
451+
- **[Robert Holt (@rjmholt)](https://github.com/rjmholt)**
452+
- **[Steven Maglio (@smaglio81)](https://github.com/smaglio81)**
453+
- **[Kiran Reddy (@v2kiran)](https://github.com/v2kiran)**
454+
- **[Darío Hereñú (@kant)](https://github.com/kant)**
455+
- **[@wikijm](https://github.com/wikijm)**
456+
- **[Przemysław Kłys (@PrzemyslawKlys)](https://github.com/PrzemyslawKlys)**
457+
458+
459+
451460

452461
----------
453462

PowerShellForGitHub.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
CompanyName = 'Microsoft Corporation'
88
Copyright = 'Copyright (C) Microsoft Corporation. All rights reserved.'
99

10-
ModuleVersion = '0.8.0'
10+
ModuleVersion = '0.9.0'
1111
Description = 'PowerShell wrapper for GitHub API'
1212

1313
# Script module or binary module file associated with this manifest.

0 commit comments

Comments
 (0)