Skip to content

Commit

Permalink
version update, dependencies update, README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Smelov committed Jul 4, 2024
1 parent 492c387 commit 5710005
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,15 @@ dependencies {

## Release notes

### 5.14.0-dev

+ Separate connections for publisher and consumer
+ Updated cradle `5.4.1-dev`
+ Updated kubernetes-client: `6.13.1`

### 5.13.1-dev

+ Provided ability to set either of raw body of several dody data to `Event` builder
+ Provided ability to set either of raw body of several body data to `Event` builder
+ Updated th2 gradle plugin `0.0.8`

### 5.13.0-dev
Expand Down
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ ext {
protobufVersion = '3.25.3'
serviceGeneratorVersion = '3.6.1'

cradleVersion = '5.3.0-dev'
junitVersion = '5.10.2'
cradleVersion = '5.4.1-dev'
junitVersion = '5.10.3'

jmhVersion = '1.37'
autoValueVersion = '1.10.4'
Expand Down Expand Up @@ -128,7 +128,7 @@ dependencies {
implementation "com.fasterxml.jackson.module:jackson-module-kotlin"
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor'

implementation "com.fasterxml.uuid:java-uuid-generator:5.0.0"
implementation "com.fasterxml.uuid:java-uuid-generator:5.1.0"

implementation 'org.apache.logging.log4j:log4j-slf4j2-impl'
implementation 'org.apache.logging.log4j:log4j-core'
Expand All @@ -151,18 +151,18 @@ dependencies {
'Note: kotlin:1.9 is transitive dependency since 4.12.0')
}

implementation("io.fabric8:kubernetes-client:6.12.1") {
implementation("io.fabric8:kubernetes-client:6.13.1") {
exclude group: 'com.fasterxml.jackson.dataformat', module: 'jackson-dataformat-yaml'
}

implementation "io.github.microutils:kotlin-logging:3.0.5"

testImplementation 'javax.annotation:javax.annotation-api:1.3.2'
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:5.2.1"
testImplementation "org.mockito.kotlin:mockito-kotlin:5.3.1"
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit5'
testImplementation "org.testcontainers:testcontainers:1.19.6"
testImplementation "org.testcontainers:rabbitmq:1.19.6"
testImplementation "org.testcontainers:testcontainers:1.19.8"
testImplementation "org.testcontainers:rabbitmq:1.19.8"
testImplementation("org.junit-pioneer:junit-pioneer:2.2.0") {
because("system property tests")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
release_version=5.13.1
release_version=5.14.0
kotlin_version=1.8.22
description='th2 common library (Java)'
vcs_url=https://github.com/th2-net/th2-common-j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.testcontainers.utility.DockerImageName
import java.time.Duration

object ContainerConstants {
@JvmField val RABBITMQ_IMAGE_NAME: DockerImageName = DockerImageName.parse("rabbitmq:3.13.0-management-alpine")
@JvmField val RABBITMQ_IMAGE_NAME: DockerImageName = DockerImageName.parse("rabbitmq:3.13.4-management-alpine")
const val ROUTING_KEY = "routingKey"
const val QUEUE_NAME = "queue"
const val EXCHANGE = "test-exchange"
Expand Down

0 comments on commit 5710005

Please sign in to comment.