Skip to content

Commit

Permalink
[th2-1836] Updated th2 gradle plugin 0.0.8
Browse files Browse the repository at this point in the history
+ Updated common: `5.12.0-dev`
  • Loading branch information
Nikita-Smirnov-Exactpro committed May 30, 2024
1 parent 366d8dc commit 228f624
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 14 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Lightweight data provider (2.8.0)
# Lightweight data provider (2.10.0)

# Overview
This component serves as a data provider for [th2-data-services](https://github.com/th2-net/th2-data-services). It will connect to the cassandra database via [cradle api](https://github.com/th2-net/cradleapi) and expose the data stored in there as REST resources.
Expand Down Expand Up @@ -224,6 +224,12 @@ spec:
# Release notes:
## 2.10.0
+ Updated:
+ th2 gradle plugin `0.0.8`
+ common: `5.12.0-dev`

## 2.9.0
+ Migrated to th2 gradle plugin `0.0.6`
+ Added swagger library
Expand Down
2 changes: 1 addition & 1 deletion app/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kotlin.code.style=official
release_version=2.9.0
release_version=2.10.0
description='th2 Lightweight data provider component'
kapt.include.compile.classpath=false
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 Exactpro (Exactpro Systems Limited)
* Copyright 2023-2024 Exactpro (Exactpro Systems Limited)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -19,6 +19,7 @@ package com.exactpro.th2.lwdataprovider.entities.responses
import com.exactpro.cradle.BookId
import com.exactpro.cradle.Direction.FIRST
import com.exactpro.cradle.messages.StoredMessageId
import com.exactpro.th2.common.schema.message.impl.rabbitmq.transport.DecodeContext
import com.exactpro.th2.common.schema.message.impl.rabbitmq.transport.Direction
import com.exactpro.th2.common.schema.message.impl.rabbitmq.transport.EventId
import com.exactpro.th2.common.schema.message.impl.rabbitmq.transport.MessageId
Expand Down Expand Up @@ -86,7 +87,7 @@ class TestResponseMessage {
}.build().run {
val buf = Unpooled.buffer()
ParsedMessageCodec.encode(this, buf)
ParsedMessageCodec.decode(buf)
ParsedMessageCodec.decode(DecodeContext.create(), buf)
}
)
),
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[versions]
kotlin = "1.8.22"
th2-plugin = "0.0.6"
th2-plugin = "0.0.8"
strikt = "0.34.1"
javalin = "5.6.5"
openapi = "5.6.4"

[libraries]
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" }
cradle-cassandra = { group = "com.exactpro.th2", name = "cradle-cassandra", version = "5.3.0-dev" }
lz4 = { group = "net.jpountz.lz4", name = "lz4", version = "1.3.0" }
Expand Down
7 changes: 6 additions & 1 deletion grpc/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# gRPC for lw-data-provider (2.3.2)
# gRPC for lw-data-provider (2.3.3)

## Release notes:

### 2.3.3

#### Updates:
+ th2 gradle plugin `0.0.8`

### 2.3.2

#### Updated:
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=2.3.2
release_version=2.3.3
description='th2 Lightweight data provider gRPC'
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_lw_data_provider",
"package_version": "2.3.2"
"package_version": "2.3.3"
}
16 changes: 11 additions & 5 deletions utils/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
# utils for lw-data-provider (0.0.2)
# utils for lw-data-provider (0.0.3)

# Release notes:

# 0.0.2
## 0.0.3

## Updates:
### Updates:
+ th2 gradle plugin `0.0.8`
+ common: `5.12.0-dev`

## 0.0.2

### Updates:
+ bom: `4.6.1`
+ common: `5.11.0-dev`
+ grpc-lw-data-provider: `2.3.2-dev`

# 0.0.1
## 0.0.1

## Feature:
### Feature:
+ Added MessageSearcher class

0 comments on commit 228f624

Please sign in to comment.