Skip to content

Commit d4a258b

Browse files
[RM-84412] updated sailfish to 3.3.241 (#221)
* updated gradle to 8.7 in Dockerfile
1 parent f7fb8a1 commit d4a258b

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

.github/workflows/build-dev-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
build-target: 'Sonatype'
1010
devRelease: true
1111
createTag: true
12+
strict-scanner: false
1213
secrets:
1314
sonatypeUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
1415
sonatypePassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}

.github/workflows/build-sanpshot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
uses: th2-net/.github/.github/workflows/compound-java-dev.yml@main
1515
with:
1616
build-target: 'Sonatype'
17+
strict-scanner: false
1718
secrets:
1819
sonatypeUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
1920
sonatypePassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gradle:7.6-jdk11 AS build
1+
FROM gradle:8.7-jdk11 AS build
22
ARG release_version
33
ARG bintray_user
44
ARG bintray_key

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# How it works (5.1.0)
1+
# How it works (5.2.0)
22

33
The th2 codec sailfish component is responsible for encoding and decoding the messages.
44
It operates two instances of encoder/decoder pairs, in which one is used for operational purposes and the other is used for general conversion.
@@ -237,6 +237,12 @@ The filtering can also be applied for pins with `subscribe` attribute.
237237

238238
## Release notes
239239

240+
### 5.2.0
241+
+ Updated:
242+
+ th2-gradle-plugin `0.1.1`
243+
+ common: `5.14.0-dev`
244+
+ sailfish: `3.3.241`
245+
240246
### 5.1.0
241247
+ Migrated to th2 gradle plugin: `0.0.6`
242248
+ Updated:

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ plugins {
44
id("java-library")
55
id("maven-publish")
66

7-
id "com.exactpro.th2.gradle.publish" version "0.0.6"
7+
id "com.exactpro.th2.gradle.publish" version "0.1.1"
88
}
99

1010
ext {
1111
genDir = file('src/gen')
12-
sailfishVersion = '3.3.202'
12+
sailfishVersion = '3.3.241'
1313
excludeSailfish = { rcd ->
1414
rcd.excludeModule("com.exactpro.sf", "sailfish-core")
1515
rcd.excludeModule("com.exactpro.sf", "sailfish-common")
@@ -88,7 +88,7 @@ configurations {
8888
}
8989

9090
dependencies {
91-
implementation('com.exactpro.th2:common:5.10.1-dev') {
91+
implementation('com.exactpro.th2:common:5.14.0-dev') {
9292
because('sending to direct queues')
9393
exclude group: 'com.exactpro.th2', module: 'task-utils'
9494
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
kotlin.code.style=official
1717
description='th2 codec-sailfish library'
1818
vcs_url=https://github.com/th2-net/th2-codec-sailfish
19-
release_version=5.1.0
19+
release_version=5.2.0

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616

1717
#Tue Apr 14 11:21:33 MSK 2020
18-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
18+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
1919
distributionBase=GRADLE_USER_HOME
2020
distributionPath=wrapper/dists
2121
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)