Current section

113 Versions

Jump to

Compare versions

6 files changed
+44 additions
-22 deletions
  @@ -1,14 +1,14 @@
1 1 KAFKA_VERSION ?= 1.1
2 2 PROJECT = brod
3 3 PROJECT_DESCRIPTION = Kafka client library in Erlang
4 - PROJECT_VERSION = 3.6.0
4 + PROJECT_VERSION = 3.6.1
5 5
6 6 DEPS = supervisor3 kafka_protocol
7 7
8 8 ERLC_OPTS = -Werror +warn_unused_vars +warn_shadow_vars +warn_unused_import +warn_obsolete_guard +debug_info -Dbuild_brod_cli
9 9
10 10 dep_supervisor3_commit = 1.1.7
11 - dep_kafka_protocol_commit = 2.1.1
11 + dep_kafka_protocol_commit = 2.1.2
12 12 dep_kafka_protocol = git https://github.com/klarna/kafka_protocol.git $(dep_kafka_protocol_commit)
13 13
14 14 EDOC_OPTS = preprocess, {macros, [{build_brod_cli, true}]}
  @@ -181,8 +181,8 @@ The `Value` arg in these APIs can be:
181 181 When `Value` is a batch, the `Key` argument is only used as partitioner input.
182 182 All messages are unified into a batch format of below spec:
183 183 `[#{key => K, value => V, ts => T, headers => [{_, _}]}]`.
184 - `ts` field is dropped for kafka prior to version `0.10`
185 - `headers` field is dropped for kafka prior to version `0.11`
184 + `ts` field is dropped for kafka prior to version `0.10` (produce API version 0, magic version 0)
185 + `headers` field is dropped for kafka prior to version `0.11` (produce API version 0-2, magic version 0-1)
186 186
187 187 ## Synchronized Produce API
  @@ -1,9 +1,9 @@
1 1 {<<"name">>,<<"brod">>}.
2 - {<<"version">>,<<"3.6.0">>}.
2 + {<<"version">>,<<"3.6.1">>}.
3 3 {<<"requirements">>,
4 4 #{<<"kafka_protocol">> =>
5 5 #{<<"app">> => <<"kafka_protocol">>,<<"optional">> => false,
6 - <<"requirement">> => <<"2.1.1">>},
6 + <<"requirement">> => <<"2.1.2">>},
7 7 <<"supervisor3">> =>
8 8 #{<<"app">> => <<"supervisor3">>,<<"optional">> => false,
9 9 <<"requirement">> => <<"1.1.7">>}}}.
  @@ -1,5 +1,5 @@
1 1 {deps, [ {supervisor3, "1.1.7"}
2 - , {kafka_protocol, "2.1.1"}
2 + , {kafka_protocol, "2.1.2"}
3 3 ]}.
4 4 {edoc_opts, [{preprocess, true}, {macros, [{build_brod_cli, true}]}]}.
5 5 {erl_opts, [warn_unused_vars,warn_shadow_vars,warn_unused_import,warn_obsolete_guard,debug_info]}.
  @@ -1,6 +1,6 @@
1 1 {application,brod,
2 2 [{description,"Apache Kafka Erlang client library"},
3 - {vsn,"3.6.0"},
3 + {vsn,"3.6.1"},
4 4 {registered,[]},
5 5 {applications,[kernel,stdlib,kafka_protocol,supervisor3]},
6 6 {env,[]},
Loading more files…