Skip to content

Commit b8b7eaa

Browse files
committed
Merge branch 'release/0.88'
2 parents f4c9b12 + acfa203 commit b8b7eaa

8 files changed

Lines changed: 64 additions & 319 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
java: [ 9, 11, 14 ]
16+
java: [ 11, 14 ]
1717

1818
steps:
1919
- name: Checkout GitHub sources

pom.xml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>org.reaktivity</groupId>
88
<artifactId>command-log</artifactId>
9-
<version>0.87</version>
9+
<version>0.88</version>
1010
<name>Reaktivity log Command</name>
1111
<description>Reaktivity log Command</description>
1212
<url>https://github.com/reaktivity/command-log.java</url>
@@ -50,14 +50,13 @@
5050
<checkstyle.config.location>src/conf/checkstyle/configuration.xml</checkstyle.config.location>
5151
<checkstyle.suppressions.location>src/conf/checkstyle/suppressions.xml</checkstyle.suppressions.location>
5252

53-
<reaktor.version>0.163</reaktor.version>
54-
<nukleus.plugin.version>0.85</nukleus.plugin.version>
55-
<nukleus.amqp.spec.version>0.60</nukleus.amqp.spec.version>
56-
<nukleus.mqtt.spec.version>0.61</nukleus.mqtt.spec.version>
57-
<nukleus.kafka.spec.version>0.171</nukleus.kafka.spec.version>
58-
<nukleus.http.spec.version>0.109</nukleus.http.spec.version>
59-
<nukleus.tls.spec.version>0.62</nukleus.tls.spec.version>
60-
<nukleus.proxy.spec.version>0.16</nukleus.proxy.spec.version>
53+
<reaktor.version>0.166</reaktor.version>
54+
<nukleus.plugin.version>0.86</nukleus.plugin.version>
55+
<nukleus.amqp.spec.version>0.61</nukleus.amqp.spec.version>
56+
<nukleus.mqtt.spec.version>0.62</nukleus.mqtt.spec.version>
57+
<nukleus.kafka.spec.version>0.172</nukleus.kafka.spec.version>
58+
<nukleus.http.spec.version>0.110</nukleus.http.spec.version>
59+
<nukleus.proxy.spec.version>0.17</nukleus.proxy.spec.version>
6160

6261
<jacoco.coverage.ratio>1.00</jacoco.coverage.ratio>
6362
<jacoco.missed.count>0</jacoco.missed.count>
@@ -70,12 +69,6 @@
7069
<version>${nukleus.proxy.spec.version}</version>
7170
<scope>provided</scope>
7271
</dependency>
73-
<dependency>
74-
<groupId>org.reaktivity</groupId>
75-
<artifactId>nukleus-tls.spec</artifactId>
76-
<version>${nukleus.tls.spec.version}</version>
77-
<scope>provided</scope>
78-
</dependency>
7972
<dependency>
8073
<groupId>org.reaktivity</groupId>
8174
<artifactId>nukleus-http.spec</artifactId>
@@ -119,7 +112,7 @@
119112
<artifactId>nukleus-maven-plugin</artifactId>
120113
<version>${nukleus.plugin.version}</version>
121114
<configuration>
122-
<scopeNames>core amqp::stream mqtt::stream kafka::stream http::stream tls::control proxy::stream</scopeNames>
115+
<scopeNames>core amqp::stream mqtt::stream kafka::stream http::stream proxy::stream</scopeNames>
123116
<packageName>org.reaktivity.command.log.internal.types</packageName>
124117
</configuration>
125118
<executions>

src/main/java/org/reaktivity/command/log/internal/LogCommand.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
import org.apache.commons.cli.HelpFormatter;
3232
import org.apache.commons.cli.Options;
3333
import org.reaktivity.command.log.internal.spy.RingBufferSpy.SpyPosition;
34-
import org.reaktivity.nukleus.Configuration;
3534
import org.reaktivity.reaktor.ReaktorConfiguration;
35+
import org.reaktivity.reaktor.nukleus.Configuration;
3636

3737
public final class LogCommand
3838
{
@@ -137,10 +137,6 @@ else if ("queues".equals(type))
137137
{
138138
command = new LogQueueDepthCommand(config, out, verbose, separator);
139139
}
140-
else if ("routes".equals(type))
141-
{
142-
command = new LogRoutesCommand(config, out, verbose);
143-
}
144140

145141
do
146142
{

src/main/java/org/reaktivity/command/log/internal/LogRoutesCommand.java

Lines changed: 0 additions & 58 deletions
This file was deleted.

src/main/java/org/reaktivity/command/log/internal/LoggableRoutes.java

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
 (0)