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

neonctl

Package Overview
Dependencies
Maintainers
2
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

neonctl - npm Package Compare versions

Comparing version

to
1.27.6

10

auth.js

@@ -68,2 +68,12 @@ import { custom, generators, Issuer } from 'openid-client';

}
// process the CORS preflight OPTIONS request
if (request.method === 'OPTIONS') {
response.writeHead(200, {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST',
'Access-Control-Allow-Headers': 'Content-Type',
});
response.end();
return;
}
log.debug(`Callback received: ${request.url}`);

@@ -70,0 +80,0 @@ const params = neonOAuthClient.callbackParams(request);

2

package.json

@@ -8,3 +8,3 @@ {

"type": "module",
"version": "1.27.5",
"version": "1.27.6",
"description": "CLI tool for NeonDB Cloud management",

@@ -11,0 +11,0 @@ "main": "index.js",