logstash-filter-http 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5da94956185d0453f30766ff885a90eaa8f0e90954e5f1fc8e8c3654baccb01
4
- data.tar.gz: 217cdde8ce00bb9812531ac65edbe6cb0abcacbb07a8aeff8477f35b13904b3d
3
+ metadata.gz: 28f518ce33ec20eb2bc5c7a278b306a23e6395601de73fb15d047200e70cad6b
4
+ data.tar.gz: 8ba79804ade21d536250d2c8a27e3a29f013851d4489b7a5322140b4f10dd549
5
5
  SHA512:
6
- metadata.gz: feb63179da4d54e1d0b38091b8fd54ccd3a41ffc9d3617c807930523144c7410d389de665bc119cedecf7c97e7f189f75f7806a01791b3882d57303f9b5e6cc3
7
- data.tar.gz: 6dba46bc255f7a7205cadf94160eb0b31ab1d202592031dfd9f98b7f631f4d3afaac4470280a460024054d4f288680dc080028f0b78297d4d43d679e0d0b86bd
6
+ metadata.gz: ef3bdadac066c4935470023a38090051843e5a64e0e252b65889a7b23618164a63a91ab378481a214ae2803152539d8bc5c092774a881cdf8421ab9c82b92f92
7
+ data.tar.gz: cbff8c4e85e409dbfa7a7ffbf70d1a225db18c3f0eed4edfa54c302a7adb03a5e6171e9bdc3ec35e1d24c5429ca1a13dbceed2e9e35c8b446d07090223f065d0
@@ -1,28 +1,5 @@
1
- ## 0.5.4
1
+ ## 1.0.0
2
+ - Minor documentation fixes
2
3
 
3
- - update `gemspec` to work with logstash 5.5
4
-
5
- ## 0.5.3
6
- - freeze all instance variables
7
- - fix parallel processing by creating a `deep_clone` for each event
8
- - use `LogStash::Util.deep_clone` for object cloning
9
- - only dump body as json, if json is enabled in config (default)
10
- - delete empty target testcase, as catched by upper logstash `LogStash::ConfigurationError`
11
- - fix `sprintf` find and merge for more complex structures
12
-
13
- ## 0.5.2
14
- - Fix behavior, where a referenced field (`%{...}`) has `ruby` chars
15
- (i.e., consisting of `:`)
16
- - Field interpolation is done by assigning explicit values instead
17
- of converting the `sprintf` string back into a `hash`
18
-
19
- ## 0.5.0
20
- - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
21
- - Require devutils >= 0 to make `bundler` update the package
22
- - Use Event API for LS-5
23
- - Implicit `sprintf`, deprecating the setting
24
- - `target` is now required, dropping support to write into top-level in favor of only using new Event API
25
- - this follows other logstash-plugins like `logstash-filter-json`
26
- - if the response is empty, add the restfailure tags
27
- - Some logging moved before code
28
- - Testcases adapted to new behavior with error check
4
+ ## 0.1.0
5
+ - Beta version of HTTP filter plugin based on @lucashenning's [REST filter](https://github.com/lucashenning/logstash-filter-rest).
@@ -1,12 +1,12 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-filter-http'
3
- s.version = '0.1.0'
3
+ s.version = '1.0.0'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = 'This filter requests data from a RESTful Web Service.'
6
6
  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 logstash-filter-http. This gem is not a stand-alone program'
7
- s.authors = ['Lucas Henning', 'Gandalf Buscher']
8
- s.email = 'mail@hurb.de'
9
- s.homepage = 'https://github.com/lucashenning/logstash-filter-http/'
7
+ s.authors = ["Elastic"]
8
+ s.email = 'info@elastic.co'
9
+ s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
10
10
  s.require_paths = ['lib']
11
11
 
12
12
  # Files
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-http
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
- - Lucas Henning
8
- - Gandalf Buscher
7
+ - Elastic
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2018-12-12 00:00:00.000000000 Z
11
+ date: 2019-01-11 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  requirement: !ruby/object:Gem::Requirement
@@ -74,7 +73,7 @@ dependencies:
74
73
  description: This gem is a logstash plugin required to be installed on top of the
75
74
  Logstash core pipeline using $LS_HOME/bin/logstash-plugin install logstash-filter-http.
76
75
  This gem is not a stand-alone program
77
- email: mail@hurb.de
76
+ email: info@elastic.co
78
77
  executables: []
79
78
  extensions: []
80
79
  extra_rdoc_files: []
@@ -87,7 +86,7 @@ files:
87
86
  - lib/logstash/filters/http.rb
88
87
  - logstash-filter-http.gemspec
89
88
  - spec/filters/http_spec.rb
90
- homepage: https://github.com/lucashenning/logstash-filter-http/
89
+ homepage: http://www.elastic.co/guide/en/logstash/current/index.html
91
90
  licenses:
92
91
  - Apache License (2.0)
93
92
  metadata: