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

@postman/wsdl-to-postman

Package Overview
Dependencies
Maintainers
0
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@postman/wsdl-to-postman - npm Package Compare versions

Comparing version 1.13.0 to 1.13.1

10

CHANGELOG.md

@@ -5,2 +5,8 @@ # WSDL to Postman Changelog

## [v1.13.1] - 2024-07-22
### Fixed
- Fixed TypeError occurring for files with non UTF-8 encoding while parsing.
## [v1.13.0] - 2024-07-10

@@ -122,4 +128,6 @@

[Unreleased]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.13.0...HEAD
[Unreleased]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.13.1...HEAD
[v1.13.1]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.13.0...v1.13.1
[v1.13.0]: https://github.com/postmanlabs/wsdl-to-postman/compare/v1.12.3...v1.13.0

@@ -126,0 +134,0 @@

@@ -76,3 +76,10 @@ const fastXMLParser = require('fast-xml-parser'),

}
return fastXMLParser.parse(fixComments(xmlDocumentContent), optionsForFastXMLParser);
try {
return fastXMLParser.parse(fixComments(xmlDocumentContent), optionsForFastXMLParser);
}
catch (_e) {
// ignore errors while parsing data
return '';
}
}

@@ -79,0 +86,0 @@

2

package.json
{
"name": "@postman/wsdl-to-postman",
"version": "1.13.0",
"version": "1.13.1",
"description": "Convert a given WSDL specification (1.1) to Postman Collection",

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

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