Skip to content

Commit 319812a

Browse files
committed
update dependencies
1 parent 844d118 commit 319812a

File tree

18 files changed

+34
-32
lines changed

18 files changed

+34
-32
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,15 @@ GRPC clients can access such services without separate "gateway" binaries and ID
4949
**Non-intrusive**. [MessageStreams](https://github.com/jauntsdn/rsocket-jvm/blob/1.5.1/rsocket-reactor/src/main/java/com/jauntsdn/rsocket/MessageStreams.java) API & [RSocket-JVM](https://github.com/jauntsdn/rsocket-jvm/blob/1.5.1/rsocket-reactor/src/main/java/com/jauntsdn/rsocket/RSocket.java) runtime are clearly split so from end-user perspective there is
5050
only set of streaming & non-streaming interactions on buffers/messages:
5151

52+
**traditional streaming**
5253
```groovy
5354
void requestResponse(Message message, StreamObserver<Message> responseObserver);
5455
void requestStream(Message message, StreamObserver<Message> responseObserver);
5556
StreamObserver<Message> requestChannel(StreamObserver<Message> responseObserver);
5657
void fireAndForget(Message message, StreamObserver<Message> responseObserver);
5758
```
5859

60+
**reactive streams**
5961
```groovy
6062
Publisher<Message> requestResponse(Message message);
6163
Publisher<Message> requestStream(Message message);

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ googleJavaFormatPluginVersion=0.9
77
gitPluginVersion=0.13.0
88
versionsPluginVersion=0.45.0
99

10-
nettyBomVersion=4.1.99.Final
10+
nettyBomVersion=4.1.100.Final
1111
grpcStubVersion=1.58.0
1212
reactorBomVersion=2022.0.11
1313
rxjavaVersion=3.1.7

rsocket-bom/gradle.lockfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
io.netty:netty-bom:4.1.99.Final=classpath
4+
io.netty:netty-bom:4.1.100.Final=classpath
55
io.projectreactor:reactor-bom:2022.0.11=classpath
66
empty=

rsocket-futures/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ com.google.errorprone:javac-shaded:9+181-r4173-1=googleJavaFormat1.6
77
com.google.googlejavaformat:google-java-format:1.6=googleJavaFormat1.6
88
com.google.guava:guava:22.0=googleJavaFormat1.6
99
com.google.j2objc:j2objc-annotations:1.1=googleJavaFormat1.6
10-
io.netty:netty-buffer:4.1.99.Final=compileClasspath,runtimeClasspath
11-
io.netty:netty-common:4.1.99.Final=compileClasspath,runtimeClasspath
10+
io.netty:netty-buffer:4.1.100.Final=compileClasspath,runtimeClasspath
11+
io.netty:netty-common:4.1.100.Final=compileClasspath,runtimeClasspath
1212
org.codehaus.mojo:animal-sniffer-annotations:1.14=googleJavaFormat1.6
1313
empty=annotationProcessor

rsocket-grpc/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ com.google.googlejavaformat:google-java-format:1.6=googleJavaFormat1.6
88
com.google.guava:guava:22.0=googleJavaFormat1.6
99
com.google.j2objc:j2objc-annotations:1.1=googleJavaFormat1.6
1010
io.grpc:grpc-stub:1.58.0=compileClasspath,runtimeClasspath
11-
io.netty:netty-buffer:4.1.99.Final=compileClasspath,runtimeClasspath
12-
io.netty:netty-common:4.1.99.Final=compileClasspath,runtimeClasspath
11+
io.netty:netty-buffer:4.1.100.Final=compileClasspath,runtimeClasspath
12+
io.netty:netty-common:4.1.100.Final=compileClasspath,runtimeClasspath
1313
org.codehaus.mojo:animal-sniffer-annotations:1.14=googleJavaFormat1.6
1414
empty=annotationProcessor

rsocket-helidon/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ io.helidon.common:helidon-common-mapper:2.5.6=compileClasspath,runtimeClasspath
1111
io.helidon.common:helidon-common-reactive:2.5.6=compileClasspath,runtimeClasspath
1212
io.helidon.common:helidon-common-service-loader:2.5.6=compileClasspath,runtimeClasspath
1313
io.helidon.common:helidon-common:2.5.6=compileClasspath,runtimeClasspath
14-
io.netty:netty-buffer:4.1.99.Final=compileClasspath,runtimeClasspath
15-
io.netty:netty-common:4.1.99.Final=compileClasspath,runtimeClasspath
14+
io.netty:netty-buffer:4.1.100.Final=compileClasspath,runtimeClasspath
15+
io.netty:netty-common:4.1.100.Final=compileClasspath,runtimeClasspath
1616
jakarta.annotation:jakarta.annotation-api:1.3.5=compileClasspath,runtimeClasspath
1717
org.codehaus.mojo:animal-sniffer-annotations:1.14=googleJavaFormat1.6
1818
empty=annotationProcessor

rsocket-messages/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ com.google.errorprone:javac-shaded:9+181-r4173-1=googleJavaFormat1.6
77
com.google.googlejavaformat:google-java-format:1.6=googleJavaFormat1.6
88
com.google.guava:guava:22.0=googleJavaFormat1.6
99
com.google.j2objc:j2objc-annotations:1.1=googleJavaFormat1.6
10-
io.netty:netty-buffer:4.1.99.Final=compileClasspath,runtimeClasspath
11-
io.netty:netty-common:4.1.99.Final=compileClasspath,runtimeClasspath
10+
io.netty:netty-buffer:4.1.100.Final=compileClasspath,runtimeClasspath
11+
io.netty:netty-common:4.1.100.Final=compileClasspath,runtimeClasspath
1212
org.codehaus.mojo:animal-sniffer-annotations:1.14=googleJavaFormat1.6
1313
empty=annotationProcessor

rsocket-mutiny/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ com.google.errorprone:javac-shaded:9+181-r4173-1=googleJavaFormat1.6
77
com.google.googlejavaformat:google-java-format:1.6=googleJavaFormat1.6
88
com.google.guava:guava:22.0=googleJavaFormat1.6
99
com.google.j2objc:j2objc-annotations:1.1=googleJavaFormat1.6
10-
io.netty:netty-buffer:4.1.99.Final=compileClasspath,runtimeClasspath
11-
io.netty:netty-common:4.1.99.Final=compileClasspath,runtimeClasspath
10+
io.netty:netty-buffer:4.1.100.Final=compileClasspath,runtimeClasspath
11+
io.netty:netty-common:4.1.100.Final=compileClasspath,runtimeClasspath
1212
io.smallrye.common:smallrye-common-annotation:2.1.2=compileClasspath,runtimeClasspath
1313
io.smallrye.reactive:mutiny:2.5.1=compileClasspath,runtimeClasspath
1414
org.codehaus.mojo:animal-sniffer-annotations:1.14=googleJavaFormat1.6

rsocket-reactor/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ com.google.errorprone:javac-shaded:9+181-r4173-1=googleJavaFormat1.6
77
com.google.googlejavaformat:google-java-format:1.6=googleJavaFormat1.6
88
com.google.guava:guava:22.0=googleJavaFormat1.6
99
com.google.j2objc:j2objc-annotations:1.1=googleJavaFormat1.6
10-
io.netty:netty-buffer:4.1.99.Final=compileClasspath,runtimeClasspath
11-
io.netty:netty-common:4.1.99.Final=compileClasspath,runtimeClasspath
10+
io.netty:netty-buffer:4.1.100.Final=compileClasspath,runtimeClasspath
11+
io.netty:netty-common:4.1.100.Final=compileClasspath,runtimeClasspath
1212
io.projectreactor:reactor-core:3.5.10=compileClasspath,runtimeClasspath
1313
org.codehaus.mojo:animal-sniffer-annotations:1.14=googleJavaFormat1.6
1414
org.reactivestreams:reactive-streams:1.0.4=compileClasspath,runtimeClasspath

rsocket-rpc-futures/gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ com.google.errorprone:javac-shaded:9+181-r4173-1=googleJavaFormat1.6
77
com.google.googlejavaformat:google-java-format:1.6=googleJavaFormat1.6
88
com.google.guava:guava:22.0=googleJavaFormat1.6
99
com.google.j2objc:j2objc-annotations:1.1=googleJavaFormat1.6
10-
io.netty:netty-buffer:4.1.99.Final=compileClasspath,runtimeClasspath
11-
io.netty:netty-common:4.1.99.Final=compileClasspath,runtimeClasspath
10+
io.netty:netty-buffer:4.1.100.Final=compileClasspath,runtimeClasspath
11+
io.netty:netty-common:4.1.100.Final=compileClasspath,runtimeClasspath
1212
org.codehaus.mojo:animal-sniffer-annotations:1.14=googleJavaFormat1.6
1313
empty=annotationProcessor

0 commit comments

Comments
 (0)