Socket
Socket
Sign inDemoInstall

rjweb-server

Package Overview
Dependencies
75
Maintainers
1
Versions
369
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 9.2.2 to 9.2.3

6

CHANGELOG.md
# Changelog
## 9.2.3
- Make `<HttpRequestContext>.rawContext` protected instead of private
- Make `<HttpRequestContext>.abort` protected instead of private
- Make `<WsOpenContext>.abort` protected instead of private
## 9.2.2

@@ -4,0 +10,0 @@

2

lib/cjs/package.json
{
"name": "rjweb-server",
"version": "9.2.2",
"version": "9.2.3",
"description": "Easy and Robust Way to create a Web Server with Many Easy-to-use Features in NodeJS",

@@ -5,0 +5,0 @@ "main": "./lib/cjs/index.js",

{
"name": "rjweb-server",
"version": "9.2.2",
"version": "9.2.3",
"description": "Easy and Robust Way to create a Web Server with Many Easy-to-use Features in NodeJS",

@@ -5,0 +5,0 @@ "main": "./lib/cjs/index.js",

@@ -13,4 +13,4 @@ /// <reference types="node" />

export default class HttpRequestContext<Context extends Record<any, any> = {}> extends Base<Context> {
private rawContext;
private abort;
protected rawContext: HttpContext;
protected abort: AbortSignal;
constructor(context: InternalRequestContext, rawContext: HttpContext, abort: AbortSignal);

@@ -17,0 +17,0 @@ /**

@@ -9,3 +9,3 @@ /// <reference types="node" />

protected rawContext: WsContext;
private abort;
protected abort: AbortSignal;
constructor(context: InternalRequestContext, rawContext: WsContext, abort: AbortSignal, type?: Type);

@@ -12,0 +12,0 @@ /**

{
"name": "rjweb-server",
"version": "9.2.2",
"version": "9.2.3",
"description": "Easy and Robust Way to create a Web Server with Many Easy-to-use Features in NodeJS",

@@ -5,0 +5,0 @@ "main": "./lib/cjs/index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc