Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maven pom.xml(deps-dev): Bump xmlunit.version from 2.6.4 to 2.9.0 #131

Merged
merged 1 commit into from
Nov 2, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 14, 2022

Bumps xmlunit.version from 2.6.4 to 2.9.0.
Updates xmlunit-core from 2.6.4 to 2.9.0

Release notes

Sourced from xmlunit-core's releases.

XMLUnit for Java 2.9.0

The major change of XMLUnit for Java 2.9.0 is the addition of a new module xmlunit-jakarta-jaxb-impl that can be used in addition to xmlunit-core when you want to use the Jakarta XML Binding API in version 3. For details please see the user's guide.

The full list of changes of XMLUnit for Java 2.9.0 is:

  • added a new module xmlunit-jakarta-jaxb-impl that makes Input.fromJaxb use jakarta.xml.bind rather than javax.xml.bind. For more details see the User's Guide.

    This change is not fully backwards compatible. The JaxbBuilder class has become abstract and the withMarshaller method has changed its signature. For most cases the change will not be noticed and for almost all other cases it should be enough to re-compile your code against XMLUnit 2.9.x.

    Issue #227 and PR #247

  • added NodeFilters#satisfiesAll and satifiesAny methods to make it easier to combine multiple node filters. added to simplify the use case of #249

XMLUnit for Java 2.8.4 improves performance when comparing documents with many sibling elements.

Changelog:

  • improved comparison performance for documents with many siblings based on a suggestion by @​gerpres made in #236

XMLUnit for Java 2.8.3

  • added a new fullDescription method to Diff that provides a string-representation of all differences - not just the first one like toString does. PR #235 fixing #232 by @​Boiarshinov

  • made sure AssertJ's methods to override the assertion message like withFailMessage are honored. #225

  • adjusted unit tests so they pass when AssertJ 3.19.0 is used. PR #212 by mmathesius

XMLUnit for Java 2.8.2

This release fixes a bug in the new AssertJ 3.x module.

  • CompareAssert inside the AssertJ3 module swapped the expected and actual parameters when creating the assertion error. #210 by @​f-lopes

XMLUnit for Java 2.8.1

The only real change when compared to XMLUnit for Java 2.8.0 is the introduction of a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or later in order to address a problem with running AssertJ tests in an OSGi environment.

The original xmlunit-assertj module will still be supported.

The full changelog of XMLUnit for Java 2.8.1

  • added a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or later.

    This module no longer uses AssertJ internal classes that are not exported to OSGi environments and thus fixes issue #203.

    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 CompareAssert will no longer throw a JUnit 4.x ComparisonException but an opentest4j AssertionFailedError instead.

... (truncated)

Changelog

Sourced from xmlunit-core's changelog.

XMLUnit for Java 2.9.0 - /Released 2022-01-25/

  • added a new module xmlunit-jakarta-jaxb-impl that makes Input.fromJaxb use jakarta.xml.bind rather than javax.xml.bind. For more details see the User's Guide.

    This change is not fully backwards compatible. The JaxbBuilder class has become abstract and the withMarshaller method has changed its signature. For most cases the change will not be noticed and for almost all other cases it should be enough to re-compile your code against XMLUnit 2.9.x.

    Issue #227 and PR #247

  • added NodeFilters#satisfiesAll and satifiesAny methods to make it easier to combine multiple node filters. added to simplify the use case of #249

XMLUnit for Java 2.8.4 - /Released 2021-12-16/

  • improved comparison performance for documents with many siblings based on a suggestion by @​gerpres made in #236

XMLUnit for Java 2.8.3 - /Released 2021-10-17/

  • added a new fullDescription method to Diff that provides a string-representation of all differences - not just the first one like toString does. PR #235 fixing #232 by @​Boiarshinov

  • made sure AssertJ's methods to override the assertion message like withFailMessage are honored. #225

  • adjusted unit tests so they pass when AssertJ 3.19.0 is used. PR #212 by mmathesius

XMLUnit for Java 2.8.2 - /Released 2020-12-21/

  • CompareAssert inside the AssertJ3 module swapped the expected and actual parameters when creating the assertion error. #210 by @​f-lopes

... (truncated)

Commits
  • cc4242d XMLUnit 2.9.0
  • e8420e8 name profile properly
  • fc9d2cb Java9 and 10 seem to require the JAXB RI
  • 98444ee I should have known which parameter the shell script expects :-)
  • 7638c07 trigger Travis CI build
  • 4d9a854 NodeFilters.satisfyAll and .satisfyAny
  • eb7cc2c explicitly document the withFoo methods are not additive
  • 64e55a3 JAXB compatibility tests
  • 51ee34b Merge pull request #247 from xmlunit/jakarta-jaxb
  • 528ba4f document JAXB change
  • Additional commits viewable in compare view

Updates xmlunit-matchers from 2.6.4 to 2.9.0

Release notes

Sourced from xmlunit-matchers's releases.

XMLUnit for Java 2.9.0

The major change of XMLUnit for Java 2.9.0 is the addition of a new module xmlunit-jakarta-jaxb-impl that can be used in addition to xmlunit-core when you want to use the Jakarta XML Binding API in version 3. For details please see the user's guide.

The full list of changes of XMLUnit for Java 2.9.0 is:

  • added a new module xmlunit-jakarta-jaxb-impl that makes Input.fromJaxb use jakarta.xml.bind rather than javax.xml.bind. For more details see the User's Guide.

    This change is not fully backwards compatible. The JaxbBuilder class has become abstract and the withMarshaller method has changed its signature. For most cases the change will not be noticed and for almost all other cases it should be enough to re-compile your code against XMLUnit 2.9.x.

    Issue #227 and PR #247

  • added NodeFilters#satisfiesAll and satifiesAny methods to make it easier to combine multiple node filters. added to simplify the use case of #249

XMLUnit for Java 2.8.4 improves performance when comparing documents with many sibling elements.

Changelog:

  • improved comparison performance for documents with many siblings based on a suggestion by @​gerpres made in #236

XMLUnit for Java 2.8.3

  • added a new fullDescription method to Diff that provides a string-representation of all differences - not just the first one like toString does. PR #235 fixing #232 by @​Boiarshinov

  • made sure AssertJ's methods to override the assertion message like withFailMessage are honored. #225

  • adjusted unit tests so they pass when AssertJ 3.19.0 is used. PR #212 by mmathesius

XMLUnit for Java 2.8.2

This release fixes a bug in the new AssertJ 3.x module.

  • CompareAssert inside the AssertJ3 module swapped the expected and actual parameters when creating the assertion error. #210 by @​f-lopes

XMLUnit for Java 2.8.1

The only real change when compared to XMLUnit for Java 2.8.0 is the introduction of a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or later in order to address a problem with running AssertJ tests in an OSGi environment.

The original xmlunit-assertj module will still be supported.

The full changelog of XMLUnit for Java 2.8.1

  • added a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or later.

    This module no longer uses AssertJ internal classes that are not exported to OSGi environments and thus fixes issue #203.

    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 CompareAssert will no longer throw a JUnit 4.x ComparisonException but an opentest4j AssertionFailedError instead.

... (truncated)

Changelog

Sourced from xmlunit-matchers's changelog.

XMLUnit for Java 2.9.0 - /Released 2022-01-25/

  • added a new module xmlunit-jakarta-jaxb-impl that makes Input.fromJaxb use jakarta.xml.bind rather than javax.xml.bind. For more details see the User's Guide.

    This change is not fully backwards compatible. The JaxbBuilder class has become abstract and the withMarshaller method has changed its signature. For most cases the change will not be noticed and for almost all other cases it should be enough to re-compile your code against XMLUnit 2.9.x.

    Issue #227 and PR #247

  • added NodeFilters#satisfiesAll and satifiesAny methods to make it easier to combine multiple node filters. added to simplify the use case of #249

XMLUnit for Java 2.8.4 - /Released 2021-12-16/

  • improved comparison performance for documents with many siblings based on a suggestion by @​gerpres made in #236

XMLUnit for Java 2.8.3 - /Released 2021-10-17/

  • added a new fullDescription method to Diff that provides a string-representation of all differences - not just the first one like toString does. PR #235 fixing #232 by @​Boiarshinov

  • made sure AssertJ's methods to override the assertion message like withFailMessage are honored. #225

  • adjusted unit tests so they pass when AssertJ 3.19.0 is used. PR #212 by mmathesius

XMLUnit for Java 2.8.2 - /Released 2020-12-21/

  • CompareAssert inside the AssertJ3 module swapped the expected and actual parameters when creating the assertion error. #210 by @​f-lopes

... (truncated)

Commits
  • cc4242d XMLUnit 2.9.0
  • e8420e8 name profile properly
  • fc9d2cb Java9 and 10 seem to require the JAXB RI
  • 98444ee I should have known which parameter the shell script expects :-)
  • 7638c07 trigger Travis CI build
  • 4d9a854 NodeFilters.satisfyAll and .satisfyAny
  • eb7cc2c explicitly document the withFoo methods are not additive
  • 64e55a3 JAXB compatibility tests
  • 51ee34b Merge pull request #247 from xmlunit/jakarta-jaxb
  • 528ba4f document JAXB change
  • Additional commits viewable in compare view

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 commands and options

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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 14, 2022
@project-openubl-preview-bot
Copy link
Contributor

🚀 Container image Preview ✨

The creation of the container image might take aproximately 10 minutes. Once it is available you can pull it using:

docker pull ghcr.io/project-openubl/ublhub/ublhub:dependabot/maven/xmlunit.version-2.9.0
  • To watch the current status of the container image creation visit Workflow runs
  • To see the list of packages created by the boot visit Packages

@dependabot dependabot bot force-pushed the dependabot/maven/xmlunit.version-2.9.0 branch from 8adc04d to 482296f Compare November 2, 2022 09:08
@project-openubl-preview-bot
Copy link
Contributor

🚀 Container image Preview ✨

The creation of the container image might take aproximately 10 minutes. Once it is available you can pull it using:

docker pull ghcr.io/project-openubl/ublhub/ublhub:dependabot/maven/xmlunit.version-2.9.0
  • To watch the current status of the container image creation visit Workflow runs
  • To see the list of packages created by the boot visit Packages

Docker compose
version: "3"
services:
  postgresql:
    image: postgres:13.7
    ports:
      - 5432:5432
    environment:
      POSTGRES_DB: ublhub_db
      POSTGRES_USER: db_username
      POSTGRES_PASSWORD: db_password
    healthcheck:
      test: [ "CMD-SHELL", "pg_isready -U db_username -d ublhub_db" ]
      interval: 10s
      timeout: 5s
      retries: 5

  ublhub:
    image: quay.io/projectopenubl/ublhub:early-access
    ports:
      - 8180:8080
    environment:
      QUARKUS_HTTP_PORT: 8080
      QUARKUS_DATASOURCE_USERNAME: db_username
      QUARKUS_DATASOURCE_PASSWORD: db_password
      QUARKUS_DATASOURCE_JDBC_URL: jdbc:postgresql://postgresql:5432/ublhub_db
    healthcheck:
      test: [ "CMD", "curl", "-f", "http://localhost:8080/q/health" ]
      interval: 10s
      timeout: 5s
      retries: 5
    depends_on:
      postgresql:
        condition: service_healthy

@carlosthe19916
Copy link
Member

@dependabot recreate

@dependabot dependabot bot force-pushed the dependabot/maven/xmlunit.version-2.9.0 branch 2 times, most recently from 6a3d246 to 75e7fff Compare November 2, 2022 10:16
Bumps `xmlunit.version` from 2.6.4 to 2.9.0.

Updates `xmlunit-core` from 2.6.4 to 2.9.0
- [Release notes](https://github.com/xmlunit/xmlunit/releases)
- [Changelog](https://github.com/xmlunit/xmlunit/blob/main/RELEASE_NOTES.md)
- [Commits](xmlunit/xmlunit@v2.6.4...v2.9.0)

Updates `xmlunit-matchers` from 2.6.4 to 2.9.0
- [Release notes](https://github.com/xmlunit/xmlunit/releases)
- [Changelog](https://github.com/xmlunit/xmlunit/blob/main/RELEASE_NOTES.md)
- [Commits](xmlunit/xmlunit@v2.6.4...v2.9.0)

---
updated-dependencies:
- dependency-name: org.xmlunit:xmlunit-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.xmlunit:xmlunit-matchers
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/xmlunit.version-2.9.0 branch from 75e7fff to 751669e Compare November 2, 2022 10:17
@carlosthe19916
Copy link
Member

@dependabot merge

@dependabot dependabot bot merged commit 4bf557e into master Nov 2, 2022
@dependabot dependabot bot deleted the dependabot/maven/xmlunit.version-2.9.0 branch November 2, 2022 10:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants