Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Tags: attackgithub/PowerShellForGitHub

Tags

0.8.0

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

… - (2019/04/12)

Features:
+ Added support for GitHub Enterprise users by adding a new `ApiHostName` configuration value.
  ([more info](https://github.com/Microsoft/PowerShellForGitHub/blob/master/README.md#github-enterprise))

Fixes:
* Renamed `ConvertFrom-Markdown` to `ConvertFrom-GitHubMarkdown` to avoid a conflict with
  PSCore's new `ConvertFrom-Markdown` command.

More Info:
  * [[pr]](microsoft#101) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/d5acd0f73d97f6692914976ce9366456a59cbf70)

  * [[pr]](microsoft#100) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/088f95b5a1340c7ce570e6e68a41967fd5760c46)

0.7.0

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

… - (2019/03/15)

Fixes:
* Modified all [int] parameters to be [int64] to avoid out of bounds issues with large ID's.
* `Split-GitHubUri` updated to work with the `https://api.github.com/*` uri's included in some of
  the REST responses.

Features:
+ Added `Test-GitHubOrganizationMember` to test if a user is in an organization.
+ Updated `Get-GitHubTeamMember` to optionally work directly with a TeamId.

More Info:
  * [[pr]](microsoft#88) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/592167de9b3f07635c49365e291082fd3f712586)

  * [[pr]](microsoft#90) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/c60bb29ac02e7ab9fcd2e29db865b63876cb0125)

  * [[pr]](microsoft#94) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/a22739e7f535faf4c5f486694bd213782437e82a)

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

0.6.4

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

… - (2019/01/16)

Fixes:
* Updated the `*-GitHubIssue` functions to support specifying the `MediaType` that should be used
  for the returned result.

More Info: [[pr]](microsoft#83) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/e3b6c53017abd36fc70253e1a49c31046c885ad1)

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

0.6.3

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

… - (2019/01/07)

Fixes:
* Updated all parameter sets to use `CamelCase` for the permitted options, and stopped
  any use of abbreviation, to be more consistent with the rest of PowerShell.

More Info: [[pr]](microsoft#81) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/185441078efeb0e6693eafeb023785388a1a5a69)

0.6.2

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

… - (2018/12/13)

Fixes:
- Fixes a bug preventing Labels from being correctly added at the time of new Issue creation or
  modified when updating an issue.

More Info:
  * [[pr]](microsoft#76) | [[cl]]
  (microsoft@3b6e84c)

  * [[pr]](microsoft#78) | [[cl]](microsoft@577f07b)

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

0.6.1

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

… - (2018/12/13)

Fixes:
- Fixes a bug with checking Issues.  When trying to list all issues, it tried to speficially look
  for Issue 0.

More Info:
  * [[pr]](microsoft#73) | [[cl]](microsoft@bf67640)

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

0.6.0

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

… - (2018/12/13)

Features:
+ Completes all support for GitHub Issue API's:
  + Added support for the [Issue Event](https://developer.github.com/v3/issues/events/) API's.
  + Added support for the [Issue Milestone](https://developer.github.com/v3/issues/milestones/) API's.
  + Added support for the [Issue Label](https://developer.github.com/v3/issues/labels/) API's.
+ Added new `LogRequestBody` configuration option to help with development, allowing you to see the
  exact body of the REST request being sent before it is sent over the wire.

More Info:
  * [[pr]](microsoft#64) | [[cl]](microsoft@06e2524)

  * [[pr]](microsoft#62) | [[cl]](microsoft@2bd2447)

  * [[pr]](microsoft#59) | [[cl]](microsoft@6c73554)

  * [[pr]](microsoft#60) | [[cl]](microsoft@98aec29)

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

0.5.0

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

… - (2018/11/30)

Features:
+ Added support for the [Issue Comment](https://developer.github.com/v3/issues/comments/) API's.
+ Added support for the [Issue Assignee](https://developer.github.com/v3/issues/assignees/) API's.

Fixes:
* Fixed bug that caused single or empty arrays returned within objects to be flattened
  (instead of remaining as arrays)

More Info:
  * [[pr]](microsoft#56) | [[cl]](microsoft@6cf344f)

  * [[pr]](microsoft#53) | [[cl]](microsoft@28b314b)

  * [[pr]](microsoft#54) | [[cl]](microsoft@680696a)

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

0.4.0

Toggle 0.4.0's commit message
Features:

+ Added support for the [Repository Traffic API's](https://developer.github.com/v3/repos/traffic/).

Fixes:
* Made NuGet dll retrieval more robust by preventing potential file access problems from being
  written to the error stream.
* Prevented the possibility of Access Tokens from being written into the log file in plain text
  if explicitly passed-in

0.3.1

Toggle 0.3.1's commit message
* Minor static analysis issues fixed.

* Corrected name of the test file for `GitHubRepositoryForks`
* Ensured the `getParams` are used during execution of `Get-GitHubRepositoryFork`
Morty Proxy This is a proxified and sanitized view of the page, visit original site.