Database Rider Versions Save

Database testing made easy!

1.42.0

1 month ago

Release notes

  • Extract base class MapDataSet from JSONDataSet, to simplify integration with other test frameworks #569
  • DataSetConfig should allow to configure DataSetProvider instance #567
  • Add SnakeYAML 2.x compatibility #579
  • keeping table export ordering indicated in "includeTables" #581

Heroes

@beskow @xak2000 @tomlux

1.41.1

2 months ago

Release notes

  • Fix rider-junit5 jakarta classifier #565

Make sure to declare rider-core and rider-junit5 with jakarta classifier:

<dependency>
    <groupId>com.github.database-rider</groupId>
    <artifactId>rider-junit5</artifactId>
    <version>1.41.1</version>
    <scope>test</scope>
    <exclusions>
        <exclusion>
            <groupId>com.github.database-rider</groupId>
            <artifactId>rider-core</artifactId>
        </exclusion>
    </exclusions>
    <classifier>jakarta</classifier>
</dependency>
<dependency>
    <groupId>com.github.database-rider</groupId>
    <artifactId>rider-core</artifactId>
    <version>1.41.1</version>
    <scope>test</scope>
    <classifier>jakarta</classifier>
</dependency>

Heroes

@jowko

1.41.0

8 months ago

Release notes

  • Add jakarta classifier for rider-junit5 module #565

1.40.0

8 months ago

Release notes

  • Updated the version for tuprolog from 0.20.2 to 0.20.9. #564
  • Make rider-core compatible with jakarta persistence #561

Now both rider-core and rider-cdi have the jakarta maven classifier

Heroes

@abigailCortis @HongHanh9527

1.39.0

10 months ago

Release notes

  • Dataset provider is lost during merge #559

Heroes

@mdiachuk

1.38.1

10 months ago

Release notes

  • Support quarkus 3.x in rider-cdi (#496)

To use rider-cdi with quarkus 3 or any Jakarta application, enable the jakarta classifier in rider-cdi:

  <dependency>
      <groupId>com.github.database-rider</groupId>
      <artifactId>rider-cdi</artifactId>
      <version>1.38.1</version>
      <scope>test</scope>
      <classifier>jakarta</classifier>
      <exclusions>
        <exclusion>
          <artifactId>stax-api</artifactId>
          <groupId>stax</groupId>
        </exclusion>
      </exclusions>
    </dependency>

Heroes

@DeMol-EE @mkwapisz @matjazs

1.37.1

1 year ago

Release notes

Heroes

@vladimirfx

1.37.0

1 year ago

Release Notes

  • It's not possible to use dbunit.yaml (instead of yml) #548
  • Execute statement with default options #549
  • Add support for skipping specific timescaleDB schemas during cleanup #553

Heroes

tiagomistral, haoadoreorange, dfitisoff-k

1.36.0

1 year ago

Release Notes

  • Require JDK 8 as minimal java version (#541)
  • Prolog-like expected data set assertion (#363)
  • Inconsistent logging across framework (#519)

Heroes

jowko and coiouhkc

1.35.1

1 year ago

Release Notes

  • Support xlsx dataset (#525)
  • Correct mysql-connector dependency to scope test (#528)
  • Only run release job in master (#529)
  • Add @BeforeAll hook and documentation note to SpringBootDBUnitTest (#513)

Heroes

@opengl-8080 @bergerst @niels1voo