Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TH2-1836] updated th2 gradle plugin 0.0.8 #27

Merged
merged 3 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# th2-read-db 0.10.0
# th2-read-db 0.11.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

Expand Down Expand Up @@ -339,6 +339,11 @@ spec:

## Changes

### 0.11.0

+ updated th2 gradle plugin `0.0.8`
+ updated common: `5.12.0-dev`

### 0.10.0

+ updated th2 gradle plugin: `0.0.6`
Expand Down
2 changes: 1 addition & 1 deletion app/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
release_version=0.10.0
release_version=0.11.0
description=read-db component for extracting data from databases using JDBC technology
2 changes: 1 addition & 1 deletion core/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
release_version=0.10.0
release_version=0.11.0
description=core part of read db to create an application with required JDBC drivers in the classpath
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
kotlin = "1.8.22"
kotlinx-coroutines = "1.7.3"
auto-service = "1.1.1"
th2-plugin = "0.0.6"
th2-plugin = "0.0.8"

[libraries]
kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
Expand All @@ -14,7 +14,7 @@ ojdbc11 = { group = "com.oracle.database.jdbc", name = "ojdbc11", version = "23.
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.3-dev" }
th2-common = { group = "com.exactpro.th2", name = "common", version = "5.11.0-dev" }
th2-common = { group = "com.exactpro.th2", name = "common", version = "5.12.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" }
Expand Down
5 changes: 4 additions & 1 deletion grpc/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gRPC for read-db (0.0.8)
# gRPC for read-db (0.0.10)

The read-db provides you with gRPC interface for interacting with database.
You can:
Expand All @@ -9,6 +9,9 @@ You can:

# Release notes:

## 0.0.10
+ updated th2 gradle plugin `0.0.8`

## 0.0.9
+ updated grpc-common: `4.5.0-dev`

Expand Down
2 changes: 1 addition & 1 deletion grpc/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
release_version=0.0.9
release_version=0.0.10
description=gRPC API for executing requests in read-db application
2 changes: 1 addition & 1 deletion grpc/package_info.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"package_name": "th2_grpc_read_db",
"package_version": "0.0.9"
"package_version": "0.0.10"
}
2 changes: 1 addition & 1 deletion oracle/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
release_version=0.0.2
release_version=0.0.3
description=oracle extension part of read db to create an application
Loading