Socket
Socket
Sign inDemoInstall

soap

Package Overview
Dependencies
Maintainers
3
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

soap - npm Package Compare versions

Comparing version 0.38.0 to 0.39.0

6

History.md

@@ -0,1 +1,7 @@

0.39.0 / 2021-06-01
===================
* [FIX] Fixed namespace resolution in case of complexType extension. (#1145)
* [FIX] Read length of buffer directly (#1147)
0.38.0 / 2021-05-14

@@ -2,0 +8,0 @@ ===================

2

lib/server.js

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

// in this case unzipping should also be done by the express middleware itself
if (req.body && Object.keys(req.body).length > 0) {
if (req.body && req.body.length > 0) {
return this._processRequestXml(req, res, req.body.toString());

@@ -218,0 +218,0 @@ }

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

var childNameSpace = baseQName.prefix === utils_1.TNS_PREFIX ? '' : baseQName.prefix;
childNsURI = child.xmlns[baseQName.prefix] || this.definitions.xmlns[baseQName.prefix];
childNsURI = child.xmlns[baseQName.prefix] || child.schemaXmlns[baseQName.prefix];
var foundBase = this.findSchemaType(baseQName.name, childNsURI);

@@ -994,0 +994,0 @@ if (foundBase) {

{
"name": "soap",
"version": "0.38.0",
"version": "0.39.0",
"description": "A minimal node SOAP client",

@@ -5,0 +5,0 @@ "engines": {

Sorry, the diff of this file is not supported yet

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