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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,12 @@
1
+
## 6.2.0
2
+
- Reviewed and deprecated SSL settings to comply with Logstash's naming convention [#53](https://github.com/logstash-plugins/logstash-output-tcp/pull/53)
3
+
- Deprecated `ssl_enable` in favor of `ssl_enabled`
4
+
- Deprecated `ssl_cert` in favor of `ssl_certificate`
5
+
- Deprecated `ssl_verify` in favor of `ssl_client_authentication` when mode is `server`
6
+
- Deprecated `ssl_verify` in favor of `ssl_verification_mode` when mode is `client`
7
+
- Added `ssl_cipher_suites` configuration
8
+
- Added SSL configuration validations
9
+
1
10
## 6.1.2
2
11
- Changed the client mode to write using the non-blocking method. [#52](https://github.com/logstash-plugins/logstash-output-tcp/pull/52)
Please note that the server does not validate the client certificate CN (Common Name) or SAN (Subject Alternative Name).
159
+
160
+
NOTE: This setting can be used only if <<plugins-{type}s-{plugin}-mode>> is `server` and <<plugins-{type}s-{plugin}-ssl_certificate_authorities>> is set.
161
+
162
+
110
163
[id="plugins-{type}s-{plugin}-ssl_enable"]
111
164
===== `ssl_enable`
165
+
deprecated[6.2.0, Replaced by <<plugins-{type}s-{plugin}-ssl_enabled>>]
166
+
167
+
* Value type is <<boolean,boolean>>
168
+
* Default value is `false`
169
+
170
+
Enable SSL (must be set for other `ssl_` options to take effect).
171
+
172
+
[id="plugins-{type}s-{plugin}-ssl_enabled"]
173
+
===== `ssl_enabled`
112
174
113
175
* Value type is <<boolean,boolean>>
114
176
* Default value is `false`
@@ -145,17 +207,32 @@ NOTE: If you configure the plugin to use `'TLSv1.1'` on any recent JVM, such as
145
207
the protocol is disabled by default and needs to be enabled manually by changing `jdk.tls.disabledAlgorithms` in
146
208
the *$JDK_HOME/conf/security/java.security* configuration file. That is, `TLSv1.1` needs to be removed from the list.
0 commit comments