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

@azure/core-xml

Package Overview
Dependencies
Maintainers
2
Versions
249
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/core-xml - npm Package Compare versions

Comparing version 1.2.0-alpha.20220120.2 to 1.2.0-alpha.20220125.3

1

CHANGELOG.md

@@ -7,2 +7,3 @@ # Release History

- Fix root version node handling difference with fxp v3. [#20035](https://github.com/Azure/azure-sdk-for-js/pull/20035)
- Upgrade to `fast-xml-parser` to v4 [PR# 19898](https://github.com/Azure/azure-sdk-for-js/pull/19898)

@@ -9,0 +10,0 @@

@@ -50,2 +50,7 @@ // Copyright (c) Microsoft Corporation.

const parsedXml = parser.parse(unescapeHTML(str));
// Remove the <?xml version="..." ?> node.
// This is a change in behavior on fxp v4. Issue #424
if (parsedXml["?xml"]) {
delete parsedXml["?xml"];
}
if (!opts.includeRoot) {

@@ -52,0 +57,0 @@ for (const key of Object.keys(parsedXml)) {

@@ -64,2 +64,7 @@ 'use strict';

const parsedXml = parser.parse(unescapeHTML(str));
// Remove the <?xml version="..." ?> node.
// This is a change in behavior on fxp v4. Issue #424
if (parsedXml["?xml"]) {
delete parsedXml["?xml"];
}
if (!opts.includeRoot) {

@@ -66,0 +71,0 @@ for (const key of Object.keys(parsedXml)) {

2

package.json
{
"name": "@azure/core-xml",
"version": "1.2.0-alpha.20220120.2",
"version": "1.2.0-alpha.20220125.3",
"description": "Core library for interacting with XML payloads",

@@ -5,0 +5,0 @@ "sdk-type": "client",

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