Skip to content

Commit 3ef15c0

Browse files
committed
Merge branch 'release/0.9.141'
2 parents 14fb6cb + 823fbb3 commit 3ef15c0

148 files changed

Lines changed: 436 additions & 222 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased](https://github.com/aklivity/zilla/tree/HEAD)
44

5-
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.139...HEAD)
5+
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.140...HEAD)
6+
7+
**Merged pull requests:**
8+
9+
- support dynamic guarded route [\#1478](https://github.com/aklivity/zilla/pull/1478) ([ankitk-me](https://github.com/ankitk-me))
10+
11+
## [0.9.140](https://github.com/aklivity/zilla/tree/0.9.140) (2025-05-19)
12+
13+
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.139...0.9.140)
614

715
**Implemented enhancements:**
816

build/flyweight-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>build</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>zilla</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

cloud/docker-image/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>cloud</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

cloud/helm-chart/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>cloud</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

@@ -51,13 +51,14 @@
5151
<plugin>
5252
<groupId>io.kokuwa.maven</groupId>
5353
<artifactId>helm-maven-plugin</artifactId>
54-
<version>6.10.0</version>
54+
<version>6.17.0</version>
5555
<extensions>true</extensions>
5656
<configuration>
5757
<chartDirectory>src/main/helm</chartDirectory>
5858
<chartVersion>${project.version}</chartVersion>
5959
<appVersion>${project.version}</appVersion>
6060
<skipUpload>true</skipUpload>
61+
<skipPushLogin>true</skipPushLogin>
6162
<uploadRepoStable>
6263
<name>github</name>
6364
<url>ghcr.io/aklivity/charts</url>

cloud/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>zilla</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

conf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>zilla</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

incubator/binding-amqp.spec/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>incubator</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

incubator/binding-amqp/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.aklivity.zilla</groupId>
1010
<artifactId>incubator</artifactId>
11-
<version>0.9.140</version>
11+
<version>0.9.141</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

incubator/binding-amqp/src/main/java/io/aklivity/zilla/runtime/binding/amqp/internal/config/AmqpRouteConfig.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,23 @@
1515
*/
1616
package io.aklivity.zilla.runtime.binding.amqp.internal.config;
1717

18+
import static java.util.function.UnaryOperator.identity;
1819
import static java.util.stream.Collectors.toList;
1920

2021
import java.util.List;
21-
import java.util.function.LongPredicate;
22+
import java.util.function.UnaryOperator;
2223

2324
import io.aklivity.zilla.runtime.binding.amqp.config.AmqpConditionConfig;
2425
import io.aklivity.zilla.runtime.binding.amqp.internal.types.AmqpCapabilities;
2526
import io.aklivity.zilla.runtime.engine.config.RouteConfig;
27+
import io.aklivity.zilla.runtime.engine.util.function.LongObjectPredicate;
2628

2729
public final class AmqpRouteConfig
2830
{
2931
public final long id;
3032

3133
private final List<AmqpConditionMatcher> when;
32-
private final LongPredicate authorized;
34+
private final LongObjectPredicate<UnaryOperator<String>> authorized;
3335

3436
public AmqpRouteConfig(
3537
RouteConfig route)
@@ -45,7 +47,7 @@ public AmqpRouteConfig(
4547
boolean authorized(
4648
long authorization)
4749
{
48-
return authorized.test(authorization);
50+
return authorized.test(authorization, identity());
4951
}
5052

5153
boolean matches(

0 commit comments

Comments
 (0)