logstash-filter-http 1.4.2 → 1.5.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: cb0e716ca8a625caa16cecf3884f92c979a2fab2b94ff6b868f7b5732da4bd13
4
- data.tar.gz: a17253287ebce2ad6bd663b60907dd3ec4c8d646cee9dd35901b8bd2d5fad1da
3
+ metadata.gz: 1eab107931f9800b2f79a338dcc58a5f6bf0f18703738de822ba663c1d3e882c
4
+ data.tar.gz: b59faea346ae0c7414b539d91d8d053254667cf01c700b1169b3eb6145d65768
5
5
  SHA512:
6
- metadata.gz: ac2c2e11232dbb7d3cc3cc43e3f43cbf2cefcdc71e3f2a7bcb9a421d97a85f96ef75dffa0f1faee97cfb666caae34f75fe87beb161d08fc45a39f7296bd1d9a8
7
- data.tar.gz: edc975f2862c3a94baa60b1204d0cc5c07c10629f516076c0380d1b8bdb559e6ca0d06d9df08b6191c931007f98db1cb17078aa0dffaeb1252f9e538406cbbc2
6
+ metadata.gz: e760ced473f745bdf0d50cabf3803a2abbb1ddd2e9203fa20021899636c289bad1cbb09c6b56b0b1626dae01af2530f62200c343836f6ef447de39e621694cb5
7
+ data.tar.gz: 4796a68ece2ffe8f977c7d985325eb30485457cac6e6d11e59dccf90c49fa6d107f9b3f3c5dddcb992b36297f13ed16c36405c953537f229c16b98f186acd6b6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 1.5.0
2
+ - Added standardized SSL settings and deprecates their non-standard counterparts. Deprecated settings will continue to work, and will provide pipeline maintainers with guidance toward using their standardized counterparts [#49](https://github.com/logstash-plugins/logstash-filter-http/pull/49)
3
+ - Added new `ssl_truststore_path`, `ssl_truststore_password`, and `ssl_truststore_type` settings for configuring SSL-trust using a PKCS-12 or JKS trust store, deprecating their `truststore`, `truststore_password`, and `truststore_type` counterparts.
4
+ - Added new `ssl_certificate_authorities` setting for configuring SSL-trust using a PEM-formatted list certificate authorities, deprecating its `cacert` counterpart.
5
+ - Added new `ssl_keystore_path`, `ssl_keystore_password`, and `ssl_keystore_type` settings for configuring SSL-identity using a PKCS-12 or JKS key store, deprecating their `keystore`, `keystore_password`, and `keystore_type` counterparts.
6
+ - Added new `ssl_certificate` and `ssl_key` settings for configuring SSL-identity using a PEM-formatted certificate/key pair, deprecating their `client_cert` and `client_key` counterparts.
7
+ - Added the `ssl_cipher_suites` option
8
+
9
+ ## 1.4.3
10
+ - DOC: add clarification on sending data as json [#48](https://github.com/logstash-plugins/logstash-filter-http/pull/48)
11
+
1
12
  ## 1.4.2
2
13
  - Fix: resolve content type when a content-type header contains an array [#46](https://github.com/logstash-plugins/logstash-filter-http/pull/46)
3
14
 
@@ -16,7 +16,7 @@ class LogStash::Filters::Http < LogStash::Filters::Base
16
16
 
17
17
  extend LogStash::PluginMixins::ValidatorSupport::FieldReferenceValidationAdapter
18
18
 
19
- include LogStash::PluginMixins::HttpClient
19
+ include LogStash::PluginMixins::HttpClient[:with_deprecated => true]
20
20
 
21
21
  config_name 'http'
22
22
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-filter-http'
3
- s.version = '1.4.2'
3
+ s.version = '1.5.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'
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
28
28
  # Gem dependencies
29
29
  s.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99'
30
30
  s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~>1.2'
31
- s.add_runtime_dependency "logstash-mixin-http_client", ">= 7.2.0", '< 9.0.0'
31
+ s.add_runtime_dependency "logstash-mixin-http_client", ">= 7.3.0", "< 8.0.0"
32
32
  s.add_runtime_dependency 'logstash-mixin-validator_support', '~> 1.0'
33
33
 
34
34
  s.add_development_dependency 'logstash-devutils'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-http
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-15 00:00:00.000000000 Z
11
+ date: 2023-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -49,10 +49,10 @@ dependencies:
49
49
  requirements:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 7.2.0
52
+ version: 7.3.0
53
53
  - - "<"
54
54
  - !ruby/object:Gem::Version
55
- version: 9.0.0
55
+ version: 8.0.0
56
56
  name: logstash-mixin-http_client
57
57
  prerelease: false
58
58
  type: :runtime
@@ -60,10 +60,10 @@ dependencies:
60
60
  requirements:
61
61
  - - ">="
62
62
  - !ruby/object:Gem::Version
63
- version: 7.2.0
63
+ version: 7.3.0
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
- version: 9.0.0
66
+ version: 8.0.0
67
67
  - !ruby/object:Gem::Dependency
68
68
  requirement: !ruby/object:Gem::Requirement
69
69
  requirements:
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  - !ruby/object:Gem::Version
130
130
  version: '0'
131
131
  requirements: []
132
- rubygems_version: 3.1.6
132
+ rubygems_version: 3.2.33
133
133
  signing_key:
134
134
  specification_version: 4
135
135
  summary: This filter requests data from a RESTful Web Service.