Socket
Socket
Sign inDemoInstall

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 6.0.3 to 6.0.4

examples/getReferences.js

5

CHANGELOG.md
# CHANGELOG
## 6.0.4
Bug fixes:
* Don't trim endpoint params.
## 6.0.3

@@ -4,0 +9,0 @@

4

lib/generate.js

@@ -146,3 +146,5 @@ #!/usr/bin/env node

if (paramInfo['enum']) {
allowedValues = '=' + paramInfo['enum'].join(',');
allowedValues = '=' + paramInfo['enum'].map(function(val) {
return val; //"\"" + val + "\"";
}).join(',');
}

@@ -149,0 +151,0 @@

@@ -173,3 +173,3 @@ "use strict";

value = trim(msg[paramName]);
value = msg[paramName];
if (typeof value != "boolean" && !value) {

@@ -176,0 +176,0 @@ // we don't need validation for undefined parameter values

{
"name": "github",
"version": "6.0.3",
"version": "6.0.4",
"description": "NodeJS wrapper for the GitHub API",

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

"name": "node-github",
"version": "6.0.3",
"version": "6.0.4",
"template": {

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

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