Skip to content

Commit 328aedb

Browse files
committed
Merge branch 'release/0.9.90'
2 parents eb07b63 + 4c916c7 commit 328aedb

File tree

406 files changed

+7995
-15499
lines changed

Some content is hidden

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

406 files changed

+7995
-15499
lines changed

CHANGELOG.md

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

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

5-
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.88...HEAD)
5+
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.89...HEAD)
6+
7+
**Implemented enhancements:**
8+
9+
- Support `extract-headers` kafka message transform [\#1175](https://github.com/aklivity/zilla/issues/1175)
10+
- Simplify `sse` support in AsyncAPI specs [\#1151](https://github.com/aklivity/zilla/issues/1151)
11+
12+
**Fixed bugs:**
13+
14+
- Support topic pattern wildcards in `mqtt-kafka` clients [\#1178](https://github.com/aklivity/zilla/issues/1178)
15+
- Connecting to Aiven Kafka over TLS Throws an `java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty` Error [\#1115](https://github.com/aklivity/zilla/issues/1115)
16+
17+
## [0.9.89](https://github.com/aklivity/zilla/tree/0.9.89) (2024-07-22)
18+
19+
[Full Changelog](https://github.com/aklivity/zilla/compare/0.9.88...0.9.89)
620

721
**Implemented enhancements:**
822

@@ -18,6 +32,16 @@
1832

1933
- custom metadata populated by grpc-server missing [\#1155](https://github.com/aklivity/zilla/issues/1155)
2034
- Avro validation returns 204 and produces blank message [\#1143](https://github.com/aklivity/zilla/issues/1143)
35+
- Fix WS large message bug [\#725](https://github.com/aklivity/zilla/pull/725) ([bmaidics](https://github.com/bmaidics))
36+
37+
**Merged pull requests:**
38+
39+
- Kafka debug log fix [\#1163](https://github.com/aklivity/zilla/pull/1163) ([ankitk-me](https://github.com/ankitk-me))
40+
- grpc: mutable byte arrays to non-static instance fields [\#1160](https://github.com/aklivity/zilla/pull/1160) ([ankitk-me](https://github.com/ankitk-me))
41+
- Avro validation bug fix [\#1157](https://github.com/aklivity/zilla/pull/1157) ([ankitk-me](https://github.com/ankitk-me))
42+
- custom metadata populated by grpc-server missing fix [\#1156](https://github.com/aklivity/zilla/pull/1156) ([ankitk-me](https://github.com/ankitk-me))
43+
- Support karapace-schema-registry, schema-registry and apicurio-registry catalogs [\#1134](https://github.com/aklivity/zilla/pull/1134) ([jfallows](https://github.com/jfallows))
44+
- grpc custom metadata passthrough implementation [\#1097](https://github.com/aklivity/zilla/pull/1097) ([ankitk-me](https://github.com/ankitk-me))
2145

2246
## [0.9.88](https://github.com/aklivity/zilla/tree/0.9.88) (2024-07-15)
2347

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.89</version>
11+
<version>0.9.90</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

build/flyweight-maven-plugin/src/main/java/io/aklivity/zilla/build/maven/plugins/flyweight/internal/generate/UnionFlyweightGenerator.java

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
import java.util.HashMap;
4040
import java.util.HashSet;
4141
import java.util.Map;
42+
import java.util.Objects;
4243
import java.util.Set;
4344
import java.util.function.BiConsumer;
4445
import java.util.function.Consumer;
@@ -957,7 +958,7 @@ private void addParentMember(
957958
AstByteOrder byteOrder)
958959
{
959960
Consumer<CodeBlock.Builder> defaultPriorField = priorFieldIfDefaulted == null ? null : this::defaultPriorField;
960-
memberConstant.addParentMember(name);
961+
memberConstant.addParentMember(name, typeName, defaultValue);
961962
memberMutator.addParentMember(name, type, typeName, unsignedType, unsignedTypeName,
962963
usedAsSize, byteOrder, priorFieldIfDefaulted, defaultPriorField);
963964
buildMethod.addParentMember(name);
@@ -1016,12 +1017,22 @@ private MemberConstantGenerator(
10161017
}
10171018

10181019
public MemberConstantGenerator addParentMember(
1019-
String name)
1020+
String name,
1021+
TypeName typeName,
1022+
Object defaultValue)
10201023
{
10211024
builder.addField(
10221025
FieldSpec.builder(int.class, index(name), PRIVATE, STATIC, FINAL)
10231026
.initializer(Integer.toString(nextIndex++))
10241027
.build());
1028+
1029+
if (typeName.isPrimitive() && defaultValue != null)
1030+
{
1031+
builder.addField(
1032+
FieldSpec.builder(typeName, defaultName(name), PUBLIC, STATIC, FINAL)
1033+
.initializer(Objects.toString(defaultValue))
1034+
.build());
1035+
}
10251036
return this;
10261037
}
10271038

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.89</version>
11+
<version>0.9.90</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.89</version>
11+
<version>0.9.90</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

cloud/docker-image/src/main/docker/alpine.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN apk add --no-cache wget
2727
RUN ./zpmw install --debug --exclude-remote-repositories
2828
RUN ./zpmw clean --keep-image
2929

30-
FROM alpine:3.20.1
30+
FROM alpine:3.20.2
3131

3232
ENV ZILLA_VERSION ${project.version}
3333

cloud/helm-chart/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.89</version>
11+
<version>0.9.90</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

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.89</version>
11+
<version>0.9.90</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.89</version>
11+
<version>0.9.90</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.89</version>
11+
<version>0.9.90</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

0 commit comments

Comments
 (0)