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 +4 -4
- data/CHANGELOG.md +3 -0
- data/docs/index.asciidoc +1 -1
- data/lib/logstash/codecs/avro.rb +1 -1
- data/logstash-codec-avro.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58f5ee3b7dd49fc9d5ea8a85c8b91cd042e67027a6b80440b48f3c943f149397
|
|
4
|
+
data.tar.gz: f0321dffe64cc44165dd5ccfc95fb4d8b7cbcff561aa8f1a048f7c79f53881ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/logstash/codecs/avro.rb
CHANGED
data/logstash-codec-avro.gemspec
CHANGED
|
@@ -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.
|
|
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 = "
|
|
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.
|
|
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:
|
|
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:
|
|
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.
|
|
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
|