Skip to content

Commit

Permalink
chore: prepare for releasing 0.9.0 (#158)
Browse files Browse the repository at this point in the history
Signed-off-by: Keran Yang <[email protected]>
  • Loading branch information
KeranYang authored Nov 8, 2024
1 parent 8241fdf commit a2c51c2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
</dependency>
```

Expand All @@ -35,7 +35,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "io.numaproj.numaflow:numaflow-java:0.8.0"
compile "io.numaproj.numaflow:numaflow-java:0.9.0"
```

### Build
Expand Down Expand Up @@ -74,6 +74,8 @@ WARNING: Unknown channel option 'SO_KEEPALIVE' for channel '[id: 0x6e9c19c7]'
This is due to grpc-netty trying to set SO_KEEPALIVE when it
shouldn't (https://github.com/grpc/grpc-java/blob/47ddfa4f205d4672e035c37349dfd3036c74efb6/netty/src/main/java/io/grpc/netty/NettyClientTransport.java#L237)

It is suggested to use `amazoncorretto:11` as base for your docker image. We observed that without a base image, the java user-defined container can fail the Numaflow health check.

### API Documentation

Please, refer to
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dependency>
<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<packaging>jar</packaging>

<name>numaflow-java</name>
Expand Down
18 changes: 9 additions & 9 deletions src/main/java/io/numaproj/numaflow/info/ServerInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ public class ServerInfo {
// To update this value, please follow the instructions for MINIMUM_NUMAFLOW_VERSION in
// https://github.com/numaproj/numaflow-rs/blob/main/src/shared.rs
public static final Map<ContainerType, String> MINIMUM_NUMAFLOW_VERSION = Map.ofEntries(
entry(ContainerType.SOURCER, "1.3.1-z"),
entry(ContainerType.SOURCE_TRANSFORMER, "1.3.1-z"),
entry(ContainerType.SINKER, "1.3.1-z"),
entry(ContainerType.MAPPER, "1.3.1-z"),
entry(ContainerType.REDUCER, "1.3.1-z"),
entry(ContainerType.REDUCE_STREAMER, "1.3.1-z"),
entry(ContainerType.SESSION_REDUCER, "1.3.1-z"),
entry(ContainerType.SIDEINPUT, "1.3.1-z"),
entry(ContainerType.FBSINKER, "1.3.1-z")
entry(ContainerType.SOURCER, "1.4.0-z"),
entry(ContainerType.SOURCE_TRANSFORMER, "1.4.0-z"),
entry(ContainerType.SINKER, "1.4.0-z"),
entry(ContainerType.MAPPER, "1.4.0-z"),
entry(ContainerType.REDUCER, "1.4.0-z"),
entry(ContainerType.REDUCE_STREAMER, "1.4.0-z"),
entry(ContainerType.SESSION_REDUCER, "1.4.0-z"),
entry(ContainerType.SIDEINPUT, "1.4.0-z"),
entry(ContainerType.FBSINKER, "1.4.0-z")
);
@JsonProperty("protocol")
private Protocol protocol;
Expand Down

0 comments on commit a2c51c2

Please sign in to comment.