You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unit tests were failing due to a new requirement to include the `rackup`
gem. This commit includes the version of `rackup` prior to the Fiber based rework,
as that was causing test failures.
This commit also ensures that the request body is rewound before being read in tests.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
## 5.7.1
2
+
- Added new development `rackup` dependency to fix tests
3
+
1
4
## 5.7.0
2
5
- Added new `ssl_enabled` setting for enabling/disabling the SSL configurations [#144](https://github.com/logstash-plugins/logstash-output-http/pull/144)
Copy file name to clipboardExpand all lines: logstash-output-http.gemspec
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Gem::Specification.newdo |s|
2
2
s.name='logstash-output-http'
3
-
s.version='5.7.0'
3
+
s.version='5.7.1'
4
4
s.licenses=['Apache License (2.0)']
5
5
s.summary="Sends events to a generic HTTP or HTTPS endpoint"
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"
@@ -25,4 +25,7 @@ Gem::Specification.new do |s|
25
25
s.add_development_dependency'logstash-devutils'
26
26
s.add_development_dependency'sinatra'
27
27
s.add_development_dependency'webrick'
28
+
29
+
# Pin to avoid using new Fiber-based implementation that breaks tests here
0 commit comments