Skip to content

Releases: database-rider/database-rider

v1.44.0

25 Jul 18:41

Choose a tag to compare

Release notes

Heroes

@Micky002 @vaa25

v1.43.0

21 Jul 17:07

Choose a tag to compare

Release notes

  • Feature request: wildcard/regex support for skipCleaningFor in @dataset #597
  • Add dataset value attribute and provider attribute duplication use log #599
  • use java.util.Base64 instead of javax.xml.bind.DatatypeConverter for encoding Base64 #591
  • shouldExportJSONDataSetWithEscapedQuotes(ExportDataSetIt.java:176) for windows environment #582

Heroes

@tomlux @netmikey @coiouhkc @diqksrk

v1.42.0

18 Mar 21:59

Choose a tag to compare

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

v1.41.1

15 Feb 20:04

Choose a tag to compare

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

v1.41.0

09 Sep 20:40

Choose a tag to compare

Release notes

  • Add jakarta classifier for rider-junit5 module #565

v1.40.0

02 Sep 10:21

Choose a tag to compare

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

v1.39.0

09 Jul 20:22

Choose a tag to compare

Release notes

  • Dataset provider is lost during merge #559

Heroes

@mdiachuk

v1.38.1

25 Jun 19:41

Choose a tag to compare

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

v1.37.1

07 May 08:30

Choose a tag to compare

Release notes

  • It's not possible to use dbunit.yaml (instead of yml) #548

Heroes

@vladimirfx

v1.37.0

03 May 18:51

Choose a tag to compare

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