diff --git a/README.md b/README.md index ece97ae..b4d0ca3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# th2-read-db 0.9.1 +# th2-read-db 0.10.0 The read-db is a component for extracting data from databases using JDBC technology. If database has JDBC driver the read can work with the database @@ -339,6 +339,16 @@ spec: ## Changes +### 0.10.0 + ++ updated th2 gradle plugin: `0.0.6` ++ updated: + + bom: `4.6.1` + + common: `5.11.0-dev` + + grpc-common: `4.5.0-dev` + + common-utils:`2.2.3-dev` + + lw-data-provider-utils:`0.0.2-dev` + ### 0.9.1 + fixed the pull continuation failure when column with oracle DATE type is used for update query. @@ -354,7 +364,6 @@ spec: + common:`5.10.0-dev` + grpc-common:`4.4.0-dev` + common-utils:`2.2.2-dev` - + common-utils:`2.2.2-dev` ### 0.8.0 diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 70d97b6..4dc078e 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -40,6 +40,5 @@ dependencies { } application { - applicationName = "service" mainClass.set("com.exactpro.th2.read.db.bootstrap.Main") } diff --git a/app/gradle.properties b/app/gradle.properties index dc88f59..05e3704 100644 --- a/app/gradle.properties +++ b/app/gradle.properties @@ -1,3 +1,3 @@ kotlin.code.style=official -release_version=0.9.1 +release_version=0.10.0 description=read-db component for extracting data from databases using JDBC technology \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 9dca229..b2e4cab 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,6 +8,10 @@ plugins { alias(libs.plugins.th2.component) apply false } +dependencyCheck { + suppressionFile = "suppressions.xml" +} + allprojects { group = "com.exactpro.th2" version = project.findProperty("release_version") as String diff --git a/core/gradle.properties b/core/gradle.properties index f807824..49cadb2 100644 --- a/core/gradle.properties +++ b/core/gradle.properties @@ -1,3 +1,3 @@ kotlin.code.style=official -release_version=0.9.1 +release_version=0.10.0 description=core part of read db to create an application with required JDBC drivers in the classpath \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a4006de..a354244 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,7 +2,7 @@ kotlin = "1.8.22" kotlinx-coroutines = "1.7.3" auto-service = "1.1.1" -th2-plugin = "0.0.4" +th2-plugin = "0.0.6" [libraries] kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" } @@ -13,10 +13,10 @@ mysql-connector-j = { group = "com.mysql", name = "mysql-connector-j", version = ojdbc11 = { group = "com.oracle.database.jdbc", name = "ojdbc11", version = "23.3.0.23.09" } mssql-jdbc = { group = "com.microsoft.sqlserver", name = "mssql-jdbc", version = "12.4.0.jre11" } -th2-common-utils = { group = "com.exactpro.th2", name = "common-utils", version = "2.2.2-dev" } -th2-common = { group = "com.exactpro.th2", name = "common", version = "5.10.0-dev" } -th2-grpc-common = { group = "com.exactpro.th2", name = "grpc-common", version = "4.4.0-dev" } -th2-lw-data-provider-utils = { group = "com.exactpro.th2", name = "lw-data-provider-utils", version = "0.0.1-dev" } +th2-common-utils = { group = "com.exactpro.th2", name = "common-utils", version = "2.2.3-dev" } +th2-common = { group = "com.exactpro.th2", name = "common", version = "5.11.0-dev" } +th2-grpc-common = { group = "com.exactpro.th2", name = "grpc-common", version = "4.5.0-dev" } +th2-lw-data-provider-utils = { group = "com.exactpro.th2", name = "lw-data-provider-utils", version = "0.0.2-dev" } th2-junit-jupiter-integration = { group = "com.exactpro.th2", name = "junit-jupiter-integration", version = "0.0.1" } auto-service-annotations = { group = "com.google.auto.service", name = "auto-service-annotations", version.ref = "auto-service" } diff --git a/grpc/README.md b/grpc/README.md index 7410add..89bd48b 100644 --- a/grpc/README.md +++ b/grpc/README.md @@ -9,6 +9,9 @@ You can: # Release notes: +## 0.0.9 ++ updated grpc-common: `4.5.0-dev` + ## 0.0.8 + added `Load` method diff --git a/grpc/gradle.properties b/grpc/gradle.properties index 0a28711..19632d4 100644 --- a/grpc/gradle.properties +++ b/grpc/gradle.properties @@ -1,3 +1,3 @@ kotlin.code.style=official -release_version=0.0.8 +release_version=0.0.9 description=gRPC API for executing requests in read-db application \ No newline at end of file diff --git a/grpc/package_info.json b/grpc/package_info.json index 45be044..26f0e91 100644 --- a/grpc/package_info.json +++ b/grpc/package_info.json @@ -1,4 +1,4 @@ { "package_name": "th2_grpc_read_db", - "package_version": "0.0.8" + "package_version": "0.0.9" } diff --git a/grpc/requirements.txt b/grpc/requirements.txt index 4d82b86..f84898b 100644 --- a/grpc/requirements.txt +++ b/grpc/requirements.txt @@ -13,5 +13,5 @@ # limitations under the License. grpcio-tools==1.56.0 -th2-grpc-common==4.3.0.dev0 +th2-grpc-common==4.5.0rc1 mypy-protobuf==3.4 \ No newline at end of file diff --git a/grpc/setup.py b/grpc/setup.py index e7c6cec..3a83a06 100644 --- a/grpc/setup.py +++ b/grpc/setup.py @@ -121,7 +121,7 @@ def make_packages(root_dir): python_requires='>=3.7', install_requires=[ 'grpcio-tools==1.56.0', - 'th2-grpc-common==4.3.0.dev0', + 'th2-grpc-common==4.5.0rc1', 'mypy-protobuf==3.4' ], packages=packages, diff --git a/oracle/gradle.properties b/oracle/gradle.properties index 29fd01d..98eca5a 100644 --- a/oracle/gradle.properties +++ b/oracle/gradle.properties @@ -1,3 +1,3 @@ kotlin.code.style=official -release_version=0.0.1 +release_version=0.0.2 description=oracle extension part of read db to create an application \ No newline at end of file diff --git a/suppressions.xml b/suppressions.xml new file mode 100644 index 0000000..0c032ab --- /dev/null +++ b/suppressions.xml @@ -0,0 +1,10 @@ + + + + + + + ^pkg:maven/com\.exactpro\.th2/grpc-.*@.*$ + cpe:/a:grpc:grpc + + \ No newline at end of file