From 0378d0ac869d65a6d75dd294c4851b69df2b0b7a Mon Sep 17 00:00:00 2001 From: Jose Fernandez Duque Date: Sun, 4 Dec 2022 14:23:01 +0100 Subject: [PATCH] Updated CHANGELOG, prepared POM for 2.2.14. Fixed minor typos --- CHANGELOG.md | 20 +++++++++++++++++++ pom.xml | 2 +- .../java/com/privalia/qa/utils/SqlUtils.java | 4 ++-- .../features/sqlDatabaseSteps.feature | 2 +- 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e871cd..295cc9ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pom.xml b/pom.xml index 6359508f..c273bf0d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.github.privaliatech gingerspec - 2.2.13 + 2.2.14 Privalia GingerSpec framework Acceptance Test library. General purpose automation framework. diff --git a/src/main/java/com/privalia/qa/utils/SqlUtils.java b/src/main/java/com/privalia/qa/utils/SqlUtils.java index 332e1590..9a85d80f 100644 --- a/src/main/java/com/privalia/qa/utils/SqlUtils.java +++ b/src/main/java/com/privalia/qa/utils/SqlUtils.java @@ -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 { @@ -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 diff --git a/src/test/resources/features/sqlDatabaseSteps.feature b/src/test/resources/features/sqlDatabaseSteps.feature index 9b2f7cc1..36f59cc4 100644 --- a/src/test/resources/features/sqlDatabaseSteps.feature +++ b/src/test/resources/features/sqlDatabaseSteps.feature @@ -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.