Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github

Package Overview
Dependencies
Maintainers
2
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github - npm Package Compare versions

Comparing version 7.3.2 to 8.0.0

examples/getPullRequestReview.js

9

CHANGELOG.md
# CHANGELOG
## 8.0.0
Breaking changes:
* Changes to pullRequests.getReview, pullRequests.getReviewComments.
Features:
* Allow pull request comment endpoints to include reactions.
* Add pull request review examples.
## 7.3.2

@@ -4,0 +13,0 @@

4

package.json
{
"name": "github",
"version": "7.3.2",
"version": "8.0.0",
"description": "NodeJS wrapper for the GitHub API",

@@ -53,3 +53,3 @@ "author": "Mike de Boer <info@mikedeboer.nl>",

"name": "node-github",
"version": "7.3.2",
"version": "8.0.0",
"template": {

@@ -56,0 +56,0 @@ "withCompare": true

@@ -339,6 +339,7 @@ /*

it("should successfully execute GET /repos/:owner/pulls/:number/reviews/:id (getReview)", function(next) {
it("should successfully execute GET /repos/:owner/:repo/pulls/:number/reviews/:id (getReview)", function(next) {
client.pullRequests.getReview(
{
owner: "String",
repo: "String",
number: "Number",

@@ -355,4 +356,4 @@ id: "String"

it("should successfully execute GET /repos/:owner/:repo/pulls/:number/requested_reviewers (getReviewRequests)", function(next) {
client.pullRequests.getReviewRequests(
it("should successfully execute GET /repos/:owner/:repo/pulls/:number/reviews/:id/comments (getReviewComments)", function(next) {
client.pullRequests.getReviewComments(
{

@@ -362,2 +363,3 @@ owner: "String",

number: "Number",
id: "String",
page: "Number",

@@ -374,4 +376,4 @@ per_page: "Number"

it("should successfully execute GET /repos/:owner/:repo/pulls/:number/reviews (getReviews)", function(next) {
client.pullRequests.getReviews(
it("should successfully execute GET /repos/:owner/:repo/pulls/:number/requested_reviewers (getReviewRequests)", function(next) {
client.pullRequests.getReviewRequests(
{

@@ -392,8 +394,8 @@ owner: "String",

it("should successfully execute GET /repos/:owner/pulls/:number/reviews/:id/comments (getReviewsComments)", function(next) {
client.pullRequests.getReviewsComments(
it("should successfully execute GET /repos/:owner/:repo/pulls/:number/reviews (getReviews)", function(next) {
client.pullRequests.getReviews(
{
owner: "String",
repo: "String",
number: "Number",
id: "String",
page: "Number",

@@ -400,0 +402,0 @@ per_page: "Number"

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc