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

@authx/http-proxy-client

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@authx/http-proxy-client - npm Package Compare versions

Comparing version 3.1.0-alpha.10 to 3.1.0-alpha.11

5

dist/index.js

@@ -81,2 +81,3 @@ "use strict";

if (this._closed || this._closing) {
response.setHeader("Cache-Control", "no-cache");
response.statusCode = 503;

@@ -87,2 +88,3 @@ meta.message = "Request handled by readiness endpoint: NOT READY.";

}
response.setHeader("Cache-Control", "no-cache");
response.statusCode = 200;

@@ -115,2 +117,3 @@ meta.message = "Request handled by readiness endpoint: READY.";

catch (error) {
response.setHeader("Cache-Control", "no-cache");
response.statusCode = 503;

@@ -142,2 +145,3 @@ meta.message =

: 500;
response.setHeader("Cache-Control", "no-cache");
response.writeHead(statusCode);

@@ -150,2 +154,3 @@ response.end();

}
response.setHeader("Cache-Control", "no-cache");
response.statusCode = 404;

@@ -152,0 +157,0 @@ meta.message = "No rules matched requested URL.";

2

package.json

@@ -55,3 +55,3 @@ {

"types": "./dist/index.d.ts",
"version": "3.1.0-alpha.10"
"version": "3.1.0-alpha.11"
}

@@ -282,2 +282,3 @@ import { createHash } from "crypto";

if (this._closed || this._closing) {
response.setHeader("Cache-Control", "no-cache");
response.statusCode = 503;

@@ -289,2 +290,3 @@ meta.message = "Request handled by readiness endpoint: NOT READY.";

response.setHeader("Cache-Control", "no-cache");
response.statusCode = 200;

@@ -324,2 +326,3 @@ meta.message = "Request handled by readiness endpoint: READY.";

} catch (error) {
response.setHeader("Cache-Control", "no-cache");
response.statusCode = 503;

@@ -355,2 +358,3 @@ meta.message =

response.setHeader("Cache-Control", "no-cache");
response.writeHead(statusCode);

@@ -366,2 +370,3 @@ response.end();

response.setHeader("Cache-Control", "no-cache");
response.statusCode = 404;

@@ -368,0 +373,0 @@ meta.message = "No rules matched requested URL.";

Sorry, the diff of this file is not supported yet

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