fluent-plugin-kafka 0.7.3 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3700ac3c6331871e2aedab749485af0a85da5036516a529d648dae8a7a6b9b15
4
- data.tar.gz: 3e228b9f8434435b19a46756a040a9103fff106ffcafbc3c2dfec186d6c3e619
3
+ metadata.gz: 5b7ae4796c748284d5a1efd2a62d0ecef957c0702f95e723580bc68ea1946dac
4
+ data.tar.gz: 1bb1d0a8f655cc9ccf17c4c7d9e83120cfa74dbfd53b819d8e2a5531eaf7b9b4
5
5
  SHA512:
6
- metadata.gz: 26f9ecd9b37070352a23f9e689bf2ad36a830934953e5def18cd4e1097fa3e38145f67bf9ab43a5e4b4d10aa410e07e0de0b143f6a30154c21e287176a599050
7
- data.tar.gz: fe61f987f8190529a2b7a3dfd40be7dfe97d30e44cb1274668b6f8a9216d9a0d43453bcf299ceeb5e9d45a7e10f46e1f3e2bd127b5644f812e3886d217034c53
6
+ metadata.gz: 3b2ce707bcb35fe3bb965adcf9af540f5e31f84777180e48796accd21c5afc913d578a7560b9ee464759347178b7fd9b00840a6b85fc705f907c3da6031ea710
7
+ data.tar.gz: 9f5ac4de5e89c6a7fc288acacd50a2aaa331bc77c9dca92b745a30383f864eb483a3ac41509adb00a3a39bd99742ad520d02a1e1adabd709aed1febf504af3d8
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ Release 0.7.4 - 2018/07/11
2
+
3
+ * out_kafka2: Need event_emitter helper for notification
4
+
1
5
  Release 0.7.3 - 2018/05/30
2
6
 
3
7
  * output: Use SSL endpoint when ssl_client_cert is true
data/README.md CHANGED
@@ -197,6 +197,10 @@ On Ubuntu, need development packages and snappy library.
197
197
 
198
198
  $ sudo apt-get install build-essential autoconf automake libtool libsnappy-dev
199
199
 
200
+ On CentOS 7 installation is also necessary.
201
+
202
+ $ sudo yum install gcc autoconf automake libtool snappy-devel
203
+
200
204
  #### Load balancing
201
205
 
202
206
  Messages will be assigned a partition at random as default by ruby-kafka, but messages with the same partition key will always be assigned to the same partition by setting `default_partition_key` in config file.
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
13
13
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
14
  gem.name = "fluent-plugin-kafka"
15
15
  gem.require_paths = ["lib"]
16
- gem.version = '0.7.3'
16
+ gem.version = '0.7.4'
17
17
  gem.required_ruby_version = ">= 2.1.0"
18
18
 
19
19
  gem.add_dependency "fluentd", [">= 0.10.58", "< 2"]
@@ -8,7 +8,7 @@ module Fluent::Plugin
8
8
  class Fluent::Kafka2Output < Output
9
9
  Fluent::Plugin.register_output('kafka2', self)
10
10
 
11
- helpers :inject, :formatter
11
+ helpers :inject, :formatter, :event_emitter
12
12
 
13
13
  config_param :brokers, :array, :value_type => :string, :default => ['localhost:9092'],
14
14
  :desc => <<-DESC
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3
4
+ version: 0.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hidemasa Togashi
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-05-31 00:00:00.000000000 Z
12
+ date: 2018-07-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fluentd