New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kongfig

Package Overview
Dependencies
Maintainers
3
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kongfig - npm Package Compare versions

Comparing version 1.2.14 to 1.2.15

dev.yml

13

lib/adminApi.js

@@ -111,3 +111,3 @@ 'use strict';

function getPaginatedJson(uri) {
return _requester2.default.get(uri).then(function (r) {
return _requester2.default.get(uri).then(handleError).then(function (r) {
return r.json();

@@ -122,2 +122,13 @@ }).then(function (json) {

function handleError(response) {
if (!response.ok) {
var error = new Error(response.statusText);
error.response = response;
throw error;
}
return response;
}
var prepareOptions = function prepareOptions(_ref4) {

@@ -124,0 +135,0 @@ var method = _ref4.method;

@@ -150,2 +150,6 @@ 'use strict';

function parseApiPlugins(plugins, prepareConfig) {
if (!Array.isArray(plugins)) {
return [];
}
return plugins.map(function (_ref9) {

@@ -152,0 +156,0 @@ var name = _ref9.name;

2

package.json
{
"name": "kongfig",
"version": "1.2.14",
"version": "1.2.15",
"description": "A tool for Kong to allow declarative configuration.",

@@ -5,0 +5,0 @@ "repository": "https://github.com/mybuilder/kongfig",

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