logstash-codec-avro 3.4.0-java → 3.4.1-java

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: 6efff24db98db6b6bf7bdbd677b0d95ed3a17baf454e7f7dfc1fa1e250643021
4
- data.tar.gz: 2db283db2f02ae5c71b711f073dcf3bafcb3e58e9ee89b291c40af24b83f69a6
3
+ metadata.gz: 58f5ee3b7dd49fc9d5ea8a85c8b91cd042e67027a6b80440b48f3c943f149397
4
+ data.tar.gz: f0321dffe64cc44165dd5ccfc95fb4d8b7cbcff561aa8f1a048f7c79f53881ba
5
5
  SHA512:
6
- metadata.gz: 2e7dfc41f0ca4172e24d69d37dd73c5467efb2ae872cfb23b95e08d43c2caf9db9de47b5489a9c3d08c3c97a31c6f128e1d8d82cfbf1b4ab09a2dc144f5f57da
7
- data.tar.gz: 3d7752ac2c947d2456908ff14df389cad64ea30a13ea4d6e38fb84e4fdc41bef7cee8f7d88a8e3c7fb3e4270df62ea27f5b3778cf9d080109119c6002049be40
6
+ metadata.gz: 9af8121f74ead4621f3979b638125c209e6790248d81681fdeb060f886d0f84e79cbb560c6c009d1cc21c5e94120e484830dd26186d93a5726c08e2187ab744f
7
+ data.tar.gz: 13e6a4db21017088f70f062d054625547b728a633788fdd5478f13a81746e9f9f23840cc73140fa8b82617f827c9a746b586b5fca669db300a08ef0209b4b06d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.4.1
2
+ - Fixes `(Errno::ENOENT) No such file or directory` error [#43](https://github.com/logstash-plugins/logstash-codec-avro/pull/43)
3
+
1
4
  ## 3.4.0
2
5
  - Add `encoding` option to select the encoding of Avro payload, could be `binary` or `base64` [#39](https://github.com/logstash-plugins/logstash-codec-avro/pull/39)
3
6
 
data/docs/index.asciidoc CHANGED
@@ -81,8 +81,8 @@ output {
81
81
  [cols="<,<,<",options="header",]
82
82
  |=======================================================================
83
83
  |Setting |Input type|Required
84
- | <<plugins-{type}s-{plugin}-encoding>> | <<string,string>>, one of `["binary", "base64"]`|No
85
84
  | <<plugins-{type}s-{plugin}-ecs_compatibility>> | <<string,string>>|No
85
+ | <<plugins-{type}s-{plugin}-encoding>> | <<string,string>>, one of `["binary", "base64"]`|No
86
86
  | <<plugins-{type}s-{plugin}-schema_uri>> |<<string,string>>|Yes
87
87
  | <<plugins-{type}s-{plugin}-tag_on_failure>> |<<boolean,boolean>>|No
88
88
  | <<plugins-{type}s-{plugin}-target>> |<<string,string>>|No
@@ -85,7 +85,7 @@ class LogStash::Codecs::Avro < LogStash::Codecs::Base
85
85
  config :target, :validate => :field_reference
86
86
 
87
87
  def open_and_read(uri_string)
88
- open(uri_string).read
88
+ URI.open(uri_string, &:read)
89
89
  end
90
90
 
91
91
  public
@@ -1,14 +1,14 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-codec-avro'
4
- s.version = '3.4.0'
4
+ s.version = '3.4.1'
5
5
  s.platform = 'java'
6
6
  s.licenses = ['Apache-2.0']
7
7
  s.summary = "Reads serialized Avro records as Logstash events"
8
8
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
9
9
  s.authors = ["Elastic"]
10
10
  s.email = 'info@elastic.co'
11
- s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
11
+ s.homepage = "https://www.elastic.co/logstash"
12
12
  s.require_paths = ["lib"]
13
13
 
14
14
  # Files
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-codec-avro
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.4.1
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-28 00:00:00.000000000 Z
11
+ date: 2023-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -133,7 +133,7 @@ files:
133
133
  - lib/logstash/codecs/avro.rb
134
134
  - logstash-codec-avro.gemspec
135
135
  - spec/codecs/avro_spec.rb
136
- homepage: http://www.elastic.co/guide/en/logstash/current/index.html
136
+ homepage: https://www.elastic.co/logstash
137
137
  licenses:
138
138
  - Apache-2.0
139
139
  metadata:
@@ -154,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
154
  - !ruby/object:Gem::Version
155
155
  version: '0'
156
156
  requirements: []
157
- rubygems_version: 3.1.6
157
+ rubygems_version: 3.2.33
158
158
  signing_key:
159
159
  specification_version: 4
160
160
  summary: Reads serialized Avro records as Logstash events