Update dependency xml-js to v1#122
Closed
renovate[bot] wants to merge 1 commit into
Closed
Conversation
Contributor
Author
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.9.7→1.6.11Release Notes
nashwaan/xml-js (xml-js)
v1.6.11Compare Source
v1.6.10Compare Source
v1.6.9Compare Source
v1.6.8Compare Source
v1.6.7Compare Source
v1.6.6Compare Source
v1.6.5Compare Source
v1.6.4: Faster internal processing for js2xml and json2xmlCompare Source
Optimization done in js2xml routine that improves its performance for converting js object or json text to xml text.
Thanks for the efforts #63 by @AirCrisp
v1.6.3Compare Source
v1.6.2Compare Source
v1.6.1Compare Source
v1.6.0: Additional Processing via Custom FunctionsCompare Source
This release adds a major feature that allows to pass in custom functions for additional processing.
Example to make all parsed element names in upper case:
v1.5.2Compare Source
v1.5.1: Support attributes indentation and few minor improvementsCompare Source
This release supports a new option
indentAttributesto indent attributes in the xml. See below example from this thread:Also, support for converting js object of
{a: 'hi'}rather than{a: {_text: 'hi'}}to<a>hi</a>.I previously didn't want to support this for the reasons outlined here.
I am allowing this behavior in this library as it can be safe to handle this scenario when transforming
js2xmlonly.xml2jsconversion from<a>hi</a>to{a: 'hi'}rather than{a: {_text: 'hi'}}is still not supported as this could be dangerous for the reasons explained here.v1.5.0Compare Source
v1.4.2Compare Source
v1.4.1Compare Source
v1.4.0: Better handling of basic xml entity codesCompare Source
This release addresses some issues on escaping entity codes (e.g
&) inxmldocument.The new implementation can cause a slight breaking change:
xmltojswill decode the 5 entity codes&<>"&#​39;into&<>"'. For example,&WILL be changed to&character (instead of keeping it&). Also,{sanitize: true}option is deprecated.jstoxmlwill cause 3 characters&<>(instead of 5 characters) if found in node text to be transformed into&<>. And will cause 1 character"(instead of 5 characters) if found in node attribute to be transformed into".For more discussion, see this issue.
v1.3.4Compare Source
v1.3.3Compare Source
v1.3.2: Support parsing of Processing InstructionsCompare Source
Parsing of processing instructions such as
<?go there?>and<?go to="there"?>are now supported. Note that for the second case, the parser by default will not generate attributes unless flag{instructionHasAttributes: true}is set. See discussion for more details.v1.3.1Compare Source
v1.3.0Compare Source
v1.2.2Compare Source
v1.2.1Compare Source
v1.2.0: AlwaysArray and Multiple Comments & CData in Compact ModeCompare Source
Setting
{compact: true, alwaysArray: true}when converting fromxmltojs/jsonwill always put sub-element (even if it is only one) into an array of objects. This can simplify the client code a little so that it can always expect the content of an element is an array rather than checking everytime whether it is an array or object.Also, multiple comments and multiple CDatas are now supported in compact mode.
v1.1.0: Support for DOCTYPE and no indentation for CDataCompare Source
DOCTYPEis now supported but in a simple way: its content will be a string and will not be parsed further (see discussion).{indentCdata: true}.v1.0.2: First Stable ReleaseCompare Source
First major and stable release.
v1.0.1Compare Source
v1.0.0Compare Source
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.