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

Fix exception when sending message with EventID attached #72

Merged
merged 3 commits into from
Oct 11, 2023
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM gradle:7.6-jdk11 AS build
COPY ./ .
RUN gradle --no-daemon clean dockerPrepare

FROM ghcr.io/th2-net/th2-conn-sailfish:4.0.0-dev
FROM ghcr.io/th2-net/th2-conn-sailfish:4.0.1-dev
ARG project_name
WORKDIR /home
COPY --from=build /home/gradle/${project_name}/build/docker .
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generic connects (4.0.0)
# Generic connects (4.0.2)

This project contains extensions for the base component "[Connect](https://github.com/th2-net/th2-conn)", which is responsible for
supporting communication with the target system by using common protocols.
Expand All @@ -24,6 +24,12 @@ You can find the description for the available service types and their configura

## Release notes

### 4.0.2

#### Fixed:

+ Error when sending a message with EventID attached via transport protocol

### 4.0.1

+ Updated `sailfish-core` version from `3.3.54` to `3.3.93`
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sf_service_name = unknown-service
release_version = 4.0.1
release_version = 4.0.2
Loading