dependabot[bot] opened a new pull request, #6:
URL: https://github.com/apache/olingo-odata4-js/pull/6

   Bumps [xmldom](https://github.com/xmldom/xmldom) from 0.1.19 to 0.6.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/xmldom/xmldom/releases";>xmldom's releases</a>.</em></p>
   <blockquote>
   <h2>0.6.0</h2>
   <h2><a 
href="https://github.com/xmldom/xmldom/compare/0.5.0...0.6.0";>0.6.0</a></h2>
   <h3>Fixes</h3>
   <ul>
   <li>Stop serializing empty namespace values like 
<code>xmlns:ds=&quot;&quot;</code> <a 
href="https://redirect.github.com/xmldom/xmldom/pull/168";><code>[#168](https://github.com/xmldom/xmldom/issues/168)</code></a><br
 />
   BREAKING CHANGE: If your code expected empty namespaces attributes to be 
serialized.<br />
   Thank you <a href="https://github.com/pdecat";><code>@​pdecat</code></a> and 
<a 
href="https://github.com/FranckDepoortere";><code>@​FranckDepoortere</code></a></li>
   <li>Escape <code>&lt;</code> to <code>&amp;lt;</code> when serializing 
attribute values <a 
href="https://redirect.github.com/xmldom/xmldom/issues/198";><code>[#198](https://github.com/xmldom/xmldom/issues/198)</code></a>
 / <a 
href="https://redirect.github.com/xmldom/xmldom/pull/199";><code>[#199](https://github.com/xmldom/xmldom/issues/199)</code></a></li>
   </ul>
   <h2>0.5.0</h2>
   <h3>Fixes</h3>
   <ul>
   <li>Avoid misinterpretation of malicious XML input - <a 
href="https://github.com/xmldom/xmldom/security/advisories/GHSA-h6q6-9hqw-rwfv";><code>GHSA-h6q6-9hqw-rwfv</code></a>
 (CVE-2021-21366)
   <ul>
   <li>
   <p>Improve error reporting; throw on duplicate attribute
   BREAKING CHANGE: It is currently not clear how to consistently deal with 
duplicate attributes, so it's also safer for our users to fail when detecting 
them.
   It's possible to configure the <code>DOMParser.errorHandler</code> before 
parsing, to handle those errors differently.</p>
   <p>To accomplish this and also be able to verify it in tests I needed to</p>
   <ul>
   <li>create a new <code>Error</code> type <code>ParseError</code> and export 
it</li>
   <li>Throw <code>ParseError</code> from <code>errorHandler.fatalError</code> 
and prevent those from being caught in <code>XMLReader</code>.</li>
   <li>export <code>DOMHandler</code> constructor as 
<code>__DOMHandler</code></li>
   </ul>
   </li>
   <li>
   <p>Preserve quotes in DOCTYPE declaration
   Since the only purpose of parsing the DOCTYPE is to be able to restore it 
when serializing, we decided that it would be best to leave the parsed 
<code>publicId</code> and <code>systemId</code> as is, including any quotes.
   BREAKING CHANGE: If somebody relies on the actual unquoted values of those 
ids, they will need to take care of either single or double quotes and the 
right escaping.
   (Without this change this would not have been possible because the SAX 
parser already dropped the information about the quotes that have been used in 
the source.)</p>
   <p><a 
href="https://www.w3.org/TR/2006/REC-xml11-20060816/#dtd";>https://www.w3.org/TR/2006/REC-xml11-20060816/#dtd</a>
   <a 
href="https://www.w3.org/TR/2006/REC-xml11-20060816/#IDAX1KS";>https://www.w3.org/TR/2006/REC-xml11-20060816/#IDAX1KS</a>
 (External Entity Declaration)</p>
   </li>
   </ul>
   </li>
   <li>Fix breaking preprocessors' directives when parsing attributes <a 
href="https://redirect.github.com/xmldom/xmldom/pull/171";><code>[#171](https://github.com/xmldom/xmldom/issues/171)</code></a></li>
   <li>fix(dom): Escape <code>]]&amp;gt;</code> when serializing CharData <a 
href="https://redirect.github.com/xmldom/xmldom/pull/181";><code>[#181](https://github.com/xmldom/xmldom/issues/181)</code></a></li>
   <li>Switch to (only) MIT license (drop problematic LGPL license option) <a 
href="https://redirect.github.com/xmldom/xmldom/pull/178";><code>[#178](https://github.com/xmldom/xmldom/issues/178)</code></a></li>
   <li>Export DOMException; remove custom assertions; etc.  <a 
href="https://redirect.github.com/xmldom/xmldom/pull/174";><code>[#174](https://github.com/xmldom/xmldom/issues/174)</code></a></li>
   </ul>
   <h3>Docs</h3>
   <ul>
   <li>Update MDN links in <code>readme.md</code> <a 
href="https://redirect.github.com/xmldom/xmldom/pull/188";><code>[#188](https://github.com/xmldom/xmldom/issues/188)</code></a></li>
   </ul>
   <h2>0.4.0</h2>
   <h3>Fixes</h3>
   <ul>
   <li><strong>BREAKING</strong> Restore <code>&amp;nbsp;</code> behavior from 
v0.1.27 <a 
href="https://redirect.github.com/xmldom/xmldom/pull/67";><code>[#67](https://github.com/xmldom/xmldom/issues/67)</code></a></li>
   <li><strong>BREAKING</strong> Typecheck source param before parsing <a 
href="https://redirect.github.com/xmldom/xmldom/pull/113";><code>[#113](https://github.com/xmldom/xmldom/issues/113)</code></a></li>
   <li>Include documents in package files list <a 
href="https://redirect.github.com/xmldom/xmldom/pull/156";><code>[#156](https://github.com/xmldom/xmldom/issues/156)</code></a></li>
   <li>Preserve doctype with sysid <a 
href="https://redirect.github.com/xmldom/xmldom/pull/144";><code>[#144](https://github.com/xmldom/xmldom/issues/144)</code></a></li>
   <li>Remove ES6 syntax from getElementsByClassName <a 
href="https://redirect.github.com/xmldom/xmldom/pull/91";><code>[#91](https://github.com/xmldom/xmldom/issues/91)</code></a></li>
   <li>Revert &quot;Add lowercase of åäö in entityMap&quot; due to duplicate 
entries <a 
href="https://redirect.github.com/xmldom/xmldom/pull/84";><code>[#84](https://github.com/xmldom/xmldom/issues/84)</code></a></li>
   <li>fix: Convert all line separators to LF <a 
href="https://redirect.github.com/xmldom/xmldom/pull/66";><code>[#66](https://github.com/xmldom/xmldom/issues/66)</code></a></li>
   </ul>
   <h3>Docs</h3>
   <ul>
   <li>Update CHANGELOG.md through version 0.3.0 <a 
href="https://redirect.github.com/xmldom/xmldom/pull/63";><code>[#63](https://github.com/xmldom/xmldom/issues/63)</code></a></li>
   <li>Update badges <a 
href="https://redirect.github.com/xmldom/xmldom/pull/78";><code>[#78](https://github.com/xmldom/xmldom/issues/78)</code></a></li>
   <li>Add .editorconfig file <a 
href="https://redirect.github.com/xmldom/xmldom/pull/104";><code>[#104](https://github.com/xmldom/xmldom/issues/104)</code></a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/xmldom/xmldom/blob/master/CHANGELOG.md";>xmldom's 
changelog</a>.</em></p>
   <blockquote>
   <h2>0.6.0</h2>
   <p><a 
href="https://github.com/xmldom/xmldom/compare/0.5.0...0.6.0";>Commits</a></p>
   <h3>Fixes</h3>
   <ul>
   <li>Stop serializing empty namespace values like 
<code>xmlns:ds=&quot;&quot;</code> <a 
href="https://redirect.github.com/xmldom/xmldom/pull/168";><code>[#168](https://github.com/xmldom/xmldom/issues/168)</code></a><br
 />
   BREAKING CHANGE: If your code expected empty namespaces attributes to be 
serialized.<br />
   Thank you, <a href="https://github.com/pdecat";><code>@​pdecat</code></a> and 
<a 
href="https://github.com/FranckDepoortere";><code>@​FranckDepoortere</code></a></li>
   <li>Escape <code>&lt;</code> to <code>&amp;lt;</code> when serializing 
attribute values <a 
href="https://redirect.github.com/xmldom/xmldom/issues/198";><code>[#198](https://github.com/xmldom/xmldom/issues/198)</code></a>
 / <a 
href="https://redirect.github.com/xmldom/xmldom/pull/199";><code>[#199](https://github.com/xmldom/xmldom/issues/199)</code></a></li>
   </ul>
   <h2>0.5.0</h2>
   <p><a 
href="https://github.com/xmldom/xmldom/compare/0.4.0...0.5.0";>Commits</a></p>
   <h3>Fixes</h3>
   <ul>
   <li>
   <p>Avoid misinterpretation of malicious XML input - <a 
href="https://github.com/xmldom/xmldom/security/advisories/GHSA-h6q6-9hqw-rwfv";><code>GHSA-h6q6-9hqw-rwfv</code></a>
 (CVE-2021-21366)</p>
   <ul>
   <li>
   <p>Improve error reporting; throw on duplicate attribute<br />
   BREAKING CHANGE: It is currently not clear how to consistently deal with 
duplicate attributes, so it's also safer for our users to fail when detecting 
them.
   It's possible to configure the <code>DOMParser.errorHandler</code> before 
parsing, to handle those errors differently.</p>
   <p>To accomplish this and also be able to verify it in tests I needed to</p>
   <ul>
   <li>create a new <code>Error</code> type <code>ParseError</code> and export 
it</li>
   <li>Throw <code>ParseError</code> from <code>errorHandler.fatalError</code> 
and prevent those from being caught in <code>XMLReader</code>.</li>
   <li>export <code>DOMHandler</code> constructor as 
<code>__DOMHandler</code></li>
   </ul>
   </li>
   <li>
   <p>Preserve quotes in DOCTYPE declaration
   Since the only purpose of parsing the DOCTYPE is to be able to restore it 
when serializing, we decided that it would be best to leave the parsed 
<code>publicId</code> and <code>systemId</code> as is, including any quotes.
   BREAKING CHANGE: If somebody relies on the actual unquoted values of those 
ids, they will need to take care of either single or double quotes and the 
right escaping.
   (Without this change this would not have been possible because the SAX 
parser already dropped the information about the quotes that have been used in 
the source.)</p>
   <p><a 
href="https://www.w3.org/TR/2006/REC-xml11-20060816/#dtd";>https://www.w3.org/TR/2006/REC-xml11-20060816/#dtd</a>
   <a 
href="https://www.w3.org/TR/2006/REC-xml11-20060816/#IDAX1KS";>https://www.w3.org/TR/2006/REC-xml11-20060816/#IDAX1KS</a>
 (External Entity Declaration)</p>
   </li>
   </ul>
   </li>
   <li>
   <p>Fix breaking preprocessors' directives when parsing attributes <a 
href="https://redirect.github.com/xmldom/xmldom/pull/171";><code>[#171](https://github.com/xmldom/xmldom/issues/171)</code></a></p>
   </li>
   <li>
   <p>fix(dom): Escape <code>]]&amp;gt;</code> when serializing CharData <a 
href="https://redirect.github.com/xmldom/xmldom/pull/181";><code>[#181](https://github.com/xmldom/xmldom/issues/181)</code></a></p>
   </li>
   <li>
   <p>Switch to (only) MIT license (drop problematic LGPL license option) <a 
href="https://redirect.github.com/xmldom/xmldom/pull/178";><code>[#178](https://github.com/xmldom/xmldom/issues/178)</code></a></p>
   </li>
   <li>
   <p>Export DOMException; remove custom assertions; etc.  <a 
href="https://redirect.github.com/xmldom/xmldom/pull/174";><code>[#174](https://github.com/xmldom/xmldom/issues/174)</code></a></p>
   </li>
   </ul>
   <h3>Docs</h3>
   <ul>
   <li>Update MDN links in <code>readme.md</code> <a 
href="https://redirect.github.com/xmldom/xmldom/pull/188";><code>[#188](https://github.com/xmldom/xmldom/issues/188)</code></a></li>
   </ul>
   <h2>0.4.0</h2>
   <p><a 
href="https://github.com/xmldom/xmldom/compare/0.3.0...0.4.0";>Commits</a></p>
   <h3>Fixes</h3>
   <ul>
   <li><strong>BREAKING</strong> Restore <code>&amp;nbsp;</code> behavior from 
v0.1.27 <a 
href="https://redirect.github.com/xmldom/xmldom/pull/67";><code>[#67](https://github.com/xmldom/xmldom/issues/67)</code></a></li>
   <li><strong>BREAKING</strong> Typecheck source param before parsing <a 
href="https://redirect.github.com/xmldom/xmldom/pull/113";><code>[#113](https://github.com/xmldom/xmldom/issues/113)</code></a></li>
   <li>Include documents in package files list <a 
href="https://redirect.github.com/xmldom/xmldom/pull/156";><code>[#156](https://github.com/xmldom/xmldom/issues/156)</code></a></li>
   <li>Preserve doctype with sysid <a 
href="https://redirect.github.com/xmldom/xmldom/pull/144";><code>[#144](https://github.com/xmldom/xmldom/issues/144)</code></a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/xmldom/xmldom/commits/0.6.0";>compare view</a></li>
   </ul>
   </details>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by <a 
href="https://www.npmjs.com/~karfau";>karfau</a>, a new releaser for xmldom 
since your current version.</p>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xmldom&package-manager=npm_and_yarn&previous-version=0.1.19&new-version=0.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/olingo-odata4-js/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@olingo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to