Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/pipeline-github-plugin
  Commit: 611cd47c84a240ee198f697d499b612947a59941
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/611cd47c84a240ee198f697d499b612947a59941
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-02 (Wed, 02 May 2018)

  Changed paths:
    M 
src/main/java/org/jenkinsci/plugins/pipeline/github/client/ExtendedPullRequestService.java

  Log Message:
  -----------
  Remove unnecessary GitHub API preview accept header

Pull request reviews have been part of the v3 API [for almost a year now][1].
Specifying `application/vnd.github.v3+json` would work just as well, but since
[that][2] is already [the default][3], it's not necessary to specify it at all.

[1]: https://developer.github.com/changes/2017-05-09-end-black-cat-preview/
[2]: 
https://github.com/eclipse/egit-github/blob/v4.11.0.201803080745-r/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/GitHubService.java#L52
[3]: 
https://github.com/eclipse/egit-github/blob/v4.11.0.201803080745-r/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/client/GitHubClient.java#L249


  Commit: 66955d371744d6b4a3cb4af5d6960e9ace591561
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/66955d371744d6b4a3cb4af5d6960e9ace591561
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-02 (Wed, 02 May 2018)

  Changed paths:
    M 
src/main/java/org/jenkinsci/plugins/pipeline/github/client/ExtendedPullRequestService.java

  Log Message:
  -----------
  Fix raw type warning


  Commit: dcd8b521f65a108ec1627826a8f749ac59b925d6
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/dcd8b521f65a108ec1627826a8f749ac59b925d6
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M README.md
    M 
src/main/java/org/jenkinsci/plugins/pipeline/github/PullRequestGroovyObject.java
    A 
src/main/java/org/jenkinsci/plugins/pipeline/github/ReviewGroovyObject.java
    M 
src/main/java/org/jenkinsci/plugins/pipeline/github/client/ExtendedPullRequestService.java
    A src/main/java/org/jenkinsci/plugins/pipeline/github/client/Review.java

  Log Message:
  -----------
  Allow listing a PR's reviews

This allows checking if a PR really is ready for merging, for example. A build
could be failed if there are any PENDING or CHANGES_REQUESTED reviews. Or if
there isn't enough APPROVED reviews.

Closes #16


  Commit: 9218a9468d4955780c85356e733eed7c085ceee8
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/9218a9468d4955780c85356e733eed7c085ceee8
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M README.md

  Log Message:
  -----------
  Remove trailing whitespace


  Commit: 507491e34b53aa2a39cb60364e6708e1180dbf9c
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/507491e34b53aa2a39cb60364e6708e1180dbf9c
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M README.md

  Log Message:
  -----------
  Remove incomplete description

I would've completed the description, if I knew what the possible statuses are,
but GitHub API documentation only gives "added" and "modified" as examples. Not
sure if there are other options.


  Commit: 81fd0369528eb055af8aa855f1d072f0c1bcdbab
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/81fd0369528eb055af8aa855f1d072f0c1bcdbab
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M README.md

  Log Message:
  -----------
  Fix commit status state documentation

Closes #14


  Commit: d30a21fe7c1c334fa3938ca29531f083627bfcd2
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/d30a21fe7c1c334fa3938ca29531f083627bfcd2
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M README.md

  Log Message:
  -----------
  Include comment about NonCPS for using rawBuild

Closes #13


  Commit: a84d222694a33f13995ffeb6c490e0270d371c9f
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/a84d222694a33f13995ffeb6c490e0270d371c9f
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/pipeline/github/client/Review.java

  Log Message:
  -----------
  Use final, immutable set for review state validation

Implementation based on [this SO answer][1].

[1]: https://stackoverflow.com/a/37406054/1456578


  Commit: 7fa0d37d8b8edf0eed3027a65075f0e9b019c403
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/7fa0d37d8b8edf0eed3027a65075f0e9b019c403
  Author: Deiwin Sarjas <deiwin.sar...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M README.md
    M 
src/main/java/org/jenkinsci/plugins/pipeline/github/ReviewGroovyObject.java
    M src/main/java/org/jenkinsci/plugins/pipeline/github/client/Review.java

  Log Message:
  -----------
  Add commitId to Review object

Allows identifying outdated reviews by comparing review commit ID with PR head
revision.


  Commit: 0b8c7b9e9faeaf807937795ee9d0e1800f8ef194
      
https://github.com/jenkinsci/pipeline-github-plugin/commit/0b8c7b9e9faeaf807937795ee9d0e1800f8ef194
  Author: Aaron Whiteside <aaronjwhites...@gmail.com>
  Date:   2018-05-07 (Mon, 07 May 2018)

  Changed paths:
    M README.md
    M 
src/main/java/org/jenkinsci/plugins/pipeline/github/PullRequestGroovyObject.java
    A 
src/main/java/org/jenkinsci/plugins/pipeline/github/ReviewGroovyObject.java
    M 
src/main/java/org/jenkinsci/plugins/pipeline/github/client/ExtendedPullRequestService.java
    A src/main/java/org/jenkinsci/plugins/pipeline/github/client/Review.java

  Log Message:
  -----------
  Merge pull request #18 from salemove/add_reviews

Allow listing a PR's reviews


Compare: 
https://github.com/jenkinsci/pipeline-github-plugin/compare/dab31bc9cf42...0b8c7b9e9fae
      **NOTE:** This service been marked for deprecation: 
https://developer.github.com/changes/2018-04-25-github-services-deprecation/

      Functionality will be removed from GitHub.com on January 31st, 2019.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to