logstash-input-http_poller 5.5.0 → 5.6.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: f9bb6ac628c27b0cf39017e53059d0c95ed97943bca3484d09bf31e7bd533e3d
4
- data.tar.gz: be2e97a737e96ab65d098b62f2406676c53219133988516e2f0956bf20099e8e
3
+ metadata.gz: d3d161b8ee6f2170f109df31cd332fcd65d7603a0e38871a092d8360e4dd6828
4
+ data.tar.gz: bb5e20020ce59c81a48541ec89197b5fac5b39f33ab81dd7d1a8cb1d3fa0007f
5
5
  SHA512:
6
- metadata.gz: cf985f8d5afb0d7209be01db0205837bbe9282a72cbc0ba45f97f5e8bd707f64f2d334f8af5e99f97fc08de4f469ffbad1a502a737d82d71f0c4bc0c2b2f914d
7
- data.tar.gz: 3b7e745356b87ea2c06a6035aac006f6368996806154f0b4b7e7e299ba158d3427855844607b40abcb15d54c61a2ecd355bf628eea71f3a1406e73e7d2e0eced
6
+ metadata.gz: f9a598a4ded7a2922406a2862ab93a991bdac616bebf099bd7a7e47670f78b147d507be911f97bc66a3afb47ce9930e68d449c6d3f052e17890e6779ea3543ee
7
+ data.tar.gz: adeffbb5c09aa4bb08311da08b3c0342a30e42e230f89070ce14b201242ac40c6cd7b2abe6292300f0a251a847a21eb62f3ed3cb7e9fd5d2388d07b3e61d1007
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 5.6.0
2
+ - Added new `ssl_enabled` setting for enabling/disabling the SSL configurations [#146](https://github.com/logstash-plugins/logstash-input-http_poller/pull/146)
3
+
4
+ ## 5.5.1
5
+ - [DOC]Remove redundant table items [#142](https://github.com/logstash-plugins/logstash-input-http_poller/pull/142)
6
+
1
7
  ## 5.5.0
2
8
  - 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 [#141](https://github.com/logstash-plugins/logstash-input-http_poller/pull/141)
3
9
  - 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.
data/docs/index.asciidoc CHANGED
@@ -149,6 +149,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
149
149
  | <<plugins-{type}s-{plugin}-ssl_certificate>> |<<path,path>>|No
150
150
  | <<plugins-{type}s-{plugin}-ssl_certificate_authorities>> |list of <<path,path>>|No
151
151
  | <<plugins-{type}s-{plugin}-ssl_cipher_suites>> |list of <<string,string>>|No
152
+ | <<plugins-{type}s-{plugin}-ssl_enabled>> |<<boolean,boolean>>|No
152
153
  | <<plugins-{type}s-{plugin}-ssl_keystore_password>> |<<password,password>>|No
153
154
  | <<plugins-{type}s-{plugin}-ssl_keystore_path>> |<<path,path>>|No
154
155
  | <<plugins-{type}s-{plugin}-ssl_keystore_type>> |<<string,string>>|No
@@ -156,7 +157,6 @@ This plugin supports the following configuration options plus the <<plugins-{typ
156
157
  | <<plugins-{type}s-{plugin}-ssl_truststore_path>> |<<path,path>>|No
157
158
  | <<plugins-{type}s-{plugin}-ssl_truststore_type>> |<<string,string>>|No
158
159
  | <<plugins-{type}s-{plugin}-ssl_verification_mode>> |<<string,string>>, one of `["full", "none"]`|No
159
- | <<plugins-{type}s-{plugin}-ssl_verification_mode>> |<<string,string>>|No
160
160
  | <<plugins-{type}s-{plugin}-target>> |<<string,string>>|No
161
161
  | <<plugins-{type}s-{plugin}-truststore>> |a valid filesystem path|__Deprecated__
162
162
  | <<plugins-{type}s-{plugin}-truststore_password>> |<<password,password>>|__Deprecated__
@@ -456,6 +456,15 @@ The .cer or .pem CA files to validate the server's certificate.
456
456
  The list of cipher suites to use, listed by priorities.
457
457
  Supported cipher suites vary depending on the Java and protocol versions.
458
458
 
459
+ [id="plugins-{type}s-{plugin}-ssl_enabled"]
460
+ ===== `ssl_enabled`
461
+
462
+ * Value type is <<boolean,boolean>>
463
+ * Default value is `true`
464
+
465
+ Enable SSL/TLS secured communication. It must be `true` for other `ssl_` options
466
+ to take effect.
467
+
459
468
  [id="plugins-{type}s-{plugin}-ssl_key"]
460
469
  ===== `ssl_key`
461
470
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-http_poller'
3
- s.version = '5.5.0'
3
+ s.version = '5.6.0'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Decodes the output of an HTTP API into events"
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 gemname. This gem is not a stand-alone program"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  # Gem dependencies
21
21
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
22
22
  s.add_runtime_dependency 'logstash-codec-plain'
23
- s.add_runtime_dependency "logstash-mixin-http_client", ">= 7.3.0", "< 8.0.0"
23
+ s.add_runtime_dependency "logstash-mixin-http_client", ">= 7.4.0", "< 8.0.0"
24
24
  s.add_runtime_dependency 'logstash-mixin-scheduler', '~> 1.0'
25
25
  s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~>1.3'
26
26
  s.add_runtime_dependency 'logstash-mixin-event_support', '~> 1.0', '>= 1.0.1'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-http_poller
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.5.0
4
+ version: 5.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-09-01 00:00:00.000000000 Z
12
+ date: 2024-06-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: 7.3.0
53
+ version: 7.4.0
54
54
  - - "<"
55
55
  - !ruby/object:Gem::Version
56
56
  version: 8.0.0
@@ -61,7 +61,7 @@ dependencies:
61
61
  requirements:
62
62
  - - ">="
63
63
  - !ruby/object:Gem::Version
64
- version: 7.3.0
64
+ version: 7.4.0
65
65
  - - "<"
66
66
  - !ruby/object:Gem::Version
67
67
  version: 8.0.0