Skip to content

Releases: codecentric/gatling-jdbc

2.1.0

01 Mar 13:46
Compare
Choose a tag to compare

This new minor version allows you to configure the ConnectionPool ScalikeJDBC uses internally.
When creating the protocol, the new method connectionPoolSettings() is given to pass it one. E.g.:

   jdbc
      .url("jdbc:h2:mem:test;DB_CLOSE_ON_EXIT=FALSE")
      .username("sa")
      .password("sa")
      .driver("org.h2.Driver")
      .connectionPoolSettings(ConnectionPoolSettings(maxSize = 20))
      .build

Also, some bugfix versions of dependencies were updated.

Based on Gatling 3.0.3.
Tested against H2, Postgres and MySQL.
Compiled with Scala 2.12.8

2.0.1

01 Feb 09:22
Compare
Choose a tag to compare

This release changed the artifact name of Gatling JDBC from gatling-jdbc to jdbc-gatling in order to avoid name clashes with the gatling-jdbc module from Gatling itself (see #8). Apart from this it only contains version updates. Since all packages names and interfaces stayed the same it is a bugfix update although it changes the artifact name.

Based on Gatling 3.0.3.
Tested against H2, Postgres and MySQL.

2.0.0

22 Nov 17:38
Compare
Choose a tag to compare

This release contains the adaptions to be compatible with the Gatling 3.0.x releases. Adjusted the internal CheckBuilder API. Since the adjusted CheckBuilder require some new implicit conversions that might not be present if the wildcard import of Predef was not used this is a major release.
Next to those changes this release contains some test improvements. Especially, MySQL and Postgres are now executed in the pipeline.

Based on Gatling 3.0.1.
Tested against H2, Postgres and MySQL.

1.1.0

09 Nov 12:26
Compare
Choose a tag to compare

This release contains an improvement regarding checks. Next to the simple checks, Gatling JDBC now provides two types of CheckBuilders, that implement the API provided by Gatling. With those, one can perform checks and additionally save the data in the session.
The two different types allow to check a single result or multiple ones.

Based on Gatling 2.3.1

1.0.1

24 Jul 16:13
Compare
Choose a tag to compare

This version includes an important bug-fix that allows the requests to actually execute in parallel. Every executed SQL command is now wrapped in a Future using the global execution context.

Many thanks to @hina1234 for noticing and reporting.

Based on Gatling 2.3.1

1.0.0

19 May 15:33
Compare
Choose a tag to compare

The first release of Gatling-JDBC! It is compatible with Gatling 2.3.1, Scala 2.12 and is tested against H2, PostgreSQL and MySQL. The currently supported actions are:

  • Create table
  • Drop table
  • Select
  • Insert
  • Delete
    Additionally, simple checks on selects are possible.

Based on Gatling 2.3.1