Packages
brod
2.3.1
4.5.7
4.5.6
4.5.5
4.5.4
4.5.3
4.5.2
4.5.1
4.5.0
4.4.7
4.4.6
4.4.5
4.4.4
4.4.3
4.4.2
4.4.1
4.4.0
4.3.3
4.3.2
4.3.1
4.3.0
4.2.0
4.1.1
4.1.0
4.0.0
3.19.1
3.19.0
3.18.0
3.17.1
3.17.0
3.16.5
3.16.4
3.16.3
3.16.2
3.16.1
3.16.0
3.15.6
3.15.5
3.15.4
3.15.3
3.15.1
3.15.0
3.14.0
3.13.0
3.12.0
3.11.0
3.10.0
3.9.5
3.9.3
3.9.2
3.9.1
3.9.0
3.8.1
3.8.0
3.7.11
3.7.10
3.7.9
3.7.8
3.7.7
3.7.6
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.6.2
3.6.1
3.6.0
3.5.2
3.5.1
3.5.0
3.4.0
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.3.0
3.2.0
3.0.0
2.5.0
2.4.1
2.4.0
2.3.7
2.3.6
2.3.5
2.3.4
2.3.3
2.3.1
2.2.16
2.2.15
2.2.14
2.2.12
2.2.11
2.2.10
2.2.9
2.2.8
2.2.7
2.2.6
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.12
2.1.11
2.1.10
2.1.8
2.1.7
2.1.4
2.1.2
2.0.0
Apache Kafka Erlang client library
Current section
113 Versions
Jump to
Current section
113 Versions
Compare versions
18
files changed
+126
additions
-43
deletions
| @@ -1,11 +1,11 @@ | |
| 1 1 | PROJECT = brod |
| 2 2 | PROJECT_DESCRIPTION = Kafka client library in Erlang |
| 3 | - PROJECT_VERSION = 2.2.16 |
| 3 | + PROJECT_VERSION = 2.3.1 |
| 4 4 | |
| 5 5 | DEPS = supervisor3 kafka_protocol |
| 6 6 | |
| 7 7 | dep_supervisor3_commit = 1.1.5 |
| 8 | - dep_kafka_protocol_commit = 0.7.8 |
| 8 | + dep_kafka_protocol_commit = 0.9.1 |
| 9 9 | |
| 10 10 | TEST_DEPS = meck proper |
| @@ -23,7 +23,6 @@ Why "brod"? [http://en.wikipedia.org/wiki/Max_Brod](http://en.wikipedia.org/wiki | |
| 23 23 | * lz4 compression & decompression |
| 24 24 | * new 0.10 on-wire message format |
| 25 25 | * new 0.10.1.0 create/delete topic api |
| 26 | - * SASL authentication |
| 27 26 | |
| 28 27 | # Building and testing |
| @@ -17,6 +17,7 @@ COPY docker-entrypoint.sh /docker-entrypoint.sh | |
| 17 17 | COPY server.properties /etc/kafka/server.properties |
| 18 18 | COPY server.jks /etc/kafka/server.jks |
| 19 19 | COPY truststore.jks /etc/kafka/truststore.jks |
| 20 | + COPY jaas.conf /etc/kafka/jaas.conf |
| 20 21 | |
| 21 22 | ENTRYPOINT ["/docker-entrypoint.sh"] |
| @@ -11,8 +11,10 @@ services: | |
| 11 11 | ports: |
| 12 12 | - "9092:9092" |
| 13 13 | - "9192:9192" |
| 14 | + - "9292:9292" |
| 14 15 | environment: |
| 15 16 | BROKER_ID: 0 |
| 16 17 | PLAINTEXT_PORT: 9092 |
| 17 18 | SSL_PORT: 9192 |
| 19 | + SASL_SSL_PORT: 9292 |
| @@ -11,19 +11,22 @@ services: | |
| 11 11 | ports: |
| 12 12 | - "9092:9092" |
| 13 13 | - "9192:9192" |
| 14 | + - "9292:9292" |
| 14 15 | environment: |
| 15 16 | BROKER_ID: 0 |
| 16 17 | PLAINTEXT_PORT: 9092 |
| 17 18 | SSL_PORT: 9192 |
| 19 | + SASL_SSL_PORT: 9292 |
| 18 20 | kafka_2: |
| 19 21 | image: docker_kafka |
| 20 22 | container_name: kafka_2 |
| 21 23 | ports: |
| 22 24 | - "9093:9093" |
| 23 25 | - "9193:9193" |
| 26 | + - "9293:9293" |
| 24 27 | environment: |
| 25 28 | BROKER_ID: 1 |
| 26 29 | PLAINTEXT_PORT: 9093 |
| 27 30 | SSL_PORT: 9193 |
| 28 | - |
| 31 | + SASL_SSL_PORT: 9293 |
Loading more files…