You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by GitBox <gi...@apache.org> on 2021/10/26 12:11:15 UTC

[GitHub] [maven-doxia] dependabot[bot] opened a new pull request #72: Bump xmlunit-core from 2.7.0 to 2.8.3

dependabot[bot] opened a new pull request #72:
URL: https://github.com/apache/maven-doxia/pull/72


   Bumps [xmlunit-core](https://github.com/xmlunit/xmlunit) from 2.7.0 to 2.8.3.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/xmlunit/xmlunit/releases">xmlunit-core's releases</a>.</em></p>
   <blockquote>
   <h2>XMLUnit for Java 2.8.3</h2>
   <ul>
   <li>
   <p>added a new <code>fullDescription</code> method to <code>Diff</code> that provides a string-representation of all differences - not just the first one like <code>toString</code> does.
   PR <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/235">#235</a> fixing <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/232">#232</a> by  <a href="https://github.com/Boiarshinov"><code>@​Boiarshinov</code></a></p>
   </li>
   <li>
   <p>made sure AssertJ's methods to override the assertion message like <code>withFailMessage</code> are honored.
   <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/225">#225</a></p>
   </li>
   <li>
   <p>adjusted unit tests so they pass when AssertJ 3.19.0 is used.
   PR <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/pull/212">#212</a> by <a href="https://github.com/mmathesius">mmathesius</a></p>
   </li>
   </ul>
   <h2>XMLUnit for Java 2.8.2</h2>
   <p>This release fixes a bug in the new AssertJ 3.x module.</p>
   <ul>
   <li><code>CompareAssert</code> inside the AssertJ3 module swapped the expected and
   actual parameters when creating the assertion error.
   <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/pull/210">#210</a> by  <a href="https://github.com/f-lopes"><code>@​f-lopes</code></a></li>
   </ul>
   <h2>XMLUnit for Java 2.8.1</h2>
   <p>The only real change when compared to XMLUnit for Java 2.8.0 is the introduction of a new <code>xmlunit-assertj3</code> module that requires AssertJ 3.18.1 or later in order to address a problem with running AssertJ tests in an OSGi environment.</p>
   <p>The original <code>xmlunit-assertj</code> module will still be supported.</p>
   <p>The full changelog of XMLUnit for Java 2.8.1</p>
   <ul>
   <li>
   <p>added a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or later.</p>
   <p>This module no longer uses AssertJ internal classes that are not exported to OSGi environments and thus fixes issue <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/203">#203</a>.</p>
   <p>The module (like AssertJ 3.x itself) requires Java 8 at runtime and is similar to xmlunit-assertj but is no drop-in replacement. It uses a different Java package from xmlunit-assertj and <code>CompareAssert</code> will no longer throw a JUnit 4.x <code>ComparisonException</code> but an opentest4j <code>AssertionFailedError</code> instead.</p>
   <p>The existing xmlunit-assertj module will still be supported in future releases but expect AssertJ 3.x specific changes to only get applied to xmlunit-assertj3.</p>
   <p>Many thanks to <a href="https://github.com/Zegveld"><code>@​Zegveld</code></a>, <a href="https://github.com/scordio"><code>@​scordio</code></a> and  <a href="https://github.com/joel-costigliola"><code>@​joel-costigliola</code></a>.</p>
   </li>
   </ul>
   <h2>XMLUnit for Java 2.8.0</h2>
   <p>This release now requires Java 7 for all modules and updates some dependencies - the changed JAXB dependency is a breaking change. It also fixes a few bugs.</p>
   <p>Details of changes:</p>
   <ul>
   <li>
   <p>changed optional JAXB dependency to use Jakarta XML Binding API
   PR <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/pull/186">#186</a> by <a href="https://github.com/endrejeges"><code>@​endrejeges</code></a></p>
   </li>
   <li>
   <p>bumped the bytebuddy dependency to 1.10.10 for the AssertJ module in the hope it would help with <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/188">#188</a></p>
   <ul>
   <li>and change its scope from provided to compile time, which should finally fix the issue.</li>
   </ul>
   </li>
   <li>
   <p>added a new <code>extractingText</code> method to <code>MultipleNodeAssert</code> to make it possible to write AssertJ assertions against the textual content of nodes more easily.</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/xmlunit/xmlunit/blob/main/RELEASE_NOTES.md">xmlunit-core's changelog</a>.</em></p>
   <blockquote>
   <h2>XMLUnit for Java 2.8.3 - /Released 2021-10-17/</h2>
   <ul>
   <li>
   <p>added a new <code>fullDescription</code> method to <code>Diff</code> that provides a
   string-representation of all differences - not just the first one
   like <code>toString</code> does.
   PR <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/235">#235</a> fixing
   <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/232">#232</a> by
   <a href="https://github.com/Boiarshinov"><code>@​Boiarshinov</code></a></p>
   </li>
   <li>
   <p>made sure AssertJ's methods to override the assertion message like
   <code>withFailMessage</code> are honored.
   <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/225">#225</a></p>
   </li>
   <li>
   <p>adjusted unit tests so they pass when AssertJ 3.19.0 is used.
   PR <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/pull/212">#212</a> by
   <a href="https://github.com/mmathesius">mmathesius</a></p>
   </li>
   </ul>
   <h2>XMLUnit for Java 2.8.2 - /Released 2020-12-21/</h2>
   <ul>
   <li><code>CompareAssert</code> inside the AssertJ3 module swapped the expected and
   actual parameters when creating the assertion error.
   <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/pull/210">#210</a> by
   <a href="https://github.com/f-lopes"><code>@​f-lopes</code></a></li>
   </ul>
   <h2>XMLUnit for Java 2.8.1 - /Released 2020-11-15/</h2>
   <ul>
   <li>
   <p>added a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or
   later.</p>
   <p>This module no longer uses AssertJ internal classes that are not
   exported to OSGi environments and thus fixes issue <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/203">#203</a>.</p>
   <p>The module (like AssertJ 3.x itself) requires Java 8 at runtime and
   is similar to xmlunit-assertj but is no drop-in replacement. It uses
   a different Java package from xmlunit-assertj and <code>CompareAssert</code>
   will no longer throw a JUnit 4.x <code>ComparisonException</code> but an
   opentest4j <code>AssertionFailedError</code> instead.</p>
   <p>The existing xmlunit-assertj module will still be supported in
   future releases but expect AssertJ 3.x specific changes to only get
   applied to xmlunit-assertj3.</p>
   <p>Many thanks to <a href="https://github.com/Zegveld"><code>@​Zegveld</code></a>,
   <a href="https://github.com/scordio"><code>@​scordio</code></a> and
   <a href="https://github.com/joel-costigliola"><code>@​joel-costigliola</code></a>.</p>
   </li>
   </ul>
   <h2>XMLUnit for Java 2.8.0 - /Released 2020-10-30/</h2>
   <ul>
   <li>changed optional JAXB dependency to use Jakarta XML Binding API
   PR <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/pull/186">#186</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/8475d71a3d9a0b5addb5cf5efbbf6a4c1128867e"><code>8475d71</code></a> release XMLUnit for Java 2.8.3</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/e6dcb38162251b694ce1d93cede3b70a98f10bb5"><code>e6dcb38</code></a> record <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/232">#232</a>/<a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/235">#235</a>, credit <a href="https://github.com/Boiarshinov"><code>@​Boiarshinov</code></a> and add since tags</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/b1156a803cdd36853cc392080980a31c22edfe43"><code>b1156a8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/235">#235</a> from Boiarshinov/issue-232_add_full_description_to_diff</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/ee8ef65366d2123a623db1348e3ae12e1978dbcc"><code>ee8ef65</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/234">#234</a> from Boiarshinov/fix_typos</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/6d2bf0da6f8be3dc6b343b1ef5bd2a17d3dbab14"><code>6d2bf0d</code></a> issue-232: Add method for getting full description from diff</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/a061199eef14b54a1e795e8d395e1396850cb65a"><code>a061199</code></a> Fix typos</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/926e09e888918a8044ce8a238a2affb07c78b2dc"><code>926e09e</code></a> skip runnning compat tests for assertj 2.x module on OpenJDK 17</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/bc9341e73c34f9113a008fc9af8f455e712c0a12"><code>bc9341e</code></a> assertj3's javadocs won't work with source 1.7</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/8bab49fb528e39f186edad26d12a8f5b876b259b"><code>8bab49f</code></a> unused imports</li>
   <li><a href="https://github.com/xmlunit/xmlunit/commit/223ccf8e2bbb82ca0e52e12ab3fd2bcecefb9249"><code>223ccf8</code></a> adopt <a href="https://github.com/krystiankaluzny"><code>@​krystiankaluzny</code></a>'s approach for <a href="https://github-redirect.dependabot.com/xmlunit/xmlunit/issues/225">#225</a></li>
   <li>Additional commits viewable in <a href="https://github.com/xmlunit/xmlunit/compare/v2.7.0...v2.8.3">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.xmlunit:xmlunit-core&package-manager=maven&previous-version=2.7.0&new-version=2.8.3)](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 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)
   
   
   </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-unsubscribe@maven.apache.org

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



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[GitHub] [maven-doxia] dependabot[bot] commented on pull request #72: Bump xmlunit-core from 2.7.0 to 2.8.3

Posted by GitBox <gi...@apache.org>.
dependabot[bot] commented on pull request #72:
URL: https://github.com/apache/maven-doxia/pull/72#issuecomment-982208509


   OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts on it.


-- 
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: issues-unsubscribe@maven.apache.org

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



[GitHub] [maven-doxia] slachiewicz closed pull request #72: Bump xmlunit-core from 2.7.0 to 2.8.3

Posted by GitBox <gi...@apache.org>.
slachiewicz closed pull request #72:
URL: https://github.com/apache/maven-doxia/pull/72


   


-- 
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-unsubscribe@maven.apache.org

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



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org