Skip to content

Commit

Permalink
Updated CHANGELOG, prepared POM for 2.2.14. Fixed minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Fernandez Duque authored and Jose Fernandez Duque committed Dec 4, 2022
1 parent fc0fcd2 commit 0378d0a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 2.2.14

* Added support for clickhouse DB

* Bump commons-text from 1.9 to 1.10.0

* Bump postgresql from 42.3.3 to 42.3.8

* Bump commons-configuration2 from 2.7 to 2.8.0

* Bump jsch from 0.1.53 to 0.1.54

* Bump soa-model-core from 1.6.0 to 1.6.4

* Bump log4j-api from 2.16.0 to 2.17.1

* Bump log4j-core from 2.14.1 to 2.17.1

* Bump commons-text from 1.9 to 1.10.0

## 2.2.13

* Created a new formatter capable of transforming the feature files into a html document. This is for auto-generating the documentation that will be published in GitHub pages (https://veepee-oss.github.io/gingerspec/index.html)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.privaliatech</groupId>
<artifactId>gingerspec</artifactId>
<version>2.2.13</version>
<version>2.2.14</version>

<name>Privalia GingerSpec framework</name>
<description>Acceptance Test library. General purpose automation framework.</description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/privalia/qa/utils/SqlUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@


/**
* Generic operations on SQL relational databases. Currently supports mysql/postgres
* Generic operations on SQL relational databases. Currently supports mysql/postgres/clickhouse
* @author Jose Fernandez
*/
public class SqlUtils {
Expand Down Expand Up @@ -85,7 +85,7 @@ public SqlUtils() {
*
* @param host URL of remote host
* @param port Database port
* @param dataBaseType Database type (currently MYSQL/POSTGRESQL)
* @param dataBaseType Database type (currently MYSQL/POSTGRESQL/CLICKHOUSE)
* @param dataBaseName Name of the remote database
* @param security True if secure connection
* @param user Database user
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/features/sqlDatabaseSteps.feature
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Feature: Steps for testing relational databases

Steps related to working with SQL relational databases (currently supports postgresql and mysql). GingerSpec automatically
Steps related to working with SQL relational databases (currently supports postgresql, mysql and clickhouse). GingerSpec automatically
detects if a database connection was left open at the end of each scenario and automatically tries to close it, so is not
necessary to use the step "Then I close database connection" at the end.

Expand Down

0 comments on commit 0378d0a

Please sign in to comment.