Skip to content

Commit a2dc44c

Browse files
committed
bump version on http_client mixin
1 parent 1dc5512 commit a2dc44c

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 5.0.0
2+
- Breaking: bump dependency in breaking version of logstash-mixin-http_client
3+
14
## 4.3.3
25
- Docs: Add plugin description.
36

docs/index.asciidoc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ This plugin supports the following configuration options plus the <<plugins-{typ
6464
| <<plugins-{type}s-{plugin}-retry_non_idempotent>> |<<boolean,boolean>>|No
6565
| <<plugins-{type}s-{plugin}-retryable_codes>> |<<number,number>>|No
6666
| <<plugins-{type}s-{plugin}-socket_timeout>> |<<number,number>>|No
67-
| <<plugins-{type}s-{plugin}-ssl_certificate_validation>> |<<boolean,boolean>>|No
6867
| <<plugins-{type}s-{plugin}-truststore>> |a valid filesystem path|No
6968
| <<plugins-{type}s-{plugin}-truststore_password>> |<<password,password>>|No
7069
| <<plugins-{type}s-{plugin}-truststore_type>> |<<string,string>>|No
@@ -318,15 +317,6 @@ If encountered as response codes this plugin will retry these requests
318317

319318
Timeout (in seconds) to wait for data on the socket. Default is `10s`
320319

321-
[id="plugins-{type}s-{plugin}-ssl_certificate_validation"]
322-
===== `ssl_certificate_validation`
323-
324-
* Value type is <<boolean,boolean>>
325-
* Default value is `true`
326-
327-
Set this to false to disable SSL/TLS certificate validation
328-
Note: setting this to false is generally considered insecure!
329-
330320
[id="plugins-{type}s-{plugin}-truststore"]
331321
===== `truststore`
332322

logstash-output-http.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-output-http'
3-
s.version = '4.3.3'
3+
s.version = '5.0.0'
44
s.licenses = ['Apache License (2.0)']
55
s.summary = "This output lets you `PUT` or `POST` events to a generic HTTP(S) endpoint"
66
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|
2020

2121
# Gem dependencies
2222
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
23-
s.add_runtime_dependency "logstash-mixin-http_client", ">= 5.1.0", "< 6.0.0"
23+
s.add_runtime_dependency "logstash-mixin-http_client", ">= 6.0.0", "< 7.0.0"
2424

2525
s.add_development_dependency 'logstash-devutils'
2626
s.add_development_dependency 'sinatra'

0 commit comments

Comments
 (0)