|
3 | 3 |
|
4 | 4 | This section summarizes the changes in the following releases:
|
5 | 5 |
|
| 6 | +* <<logstash-8-17-2,Logstash 8.17.2>> |
6 | 7 | * <<logstash-8-17-1,Logstash 8.17.1>>
|
7 | 8 | * <<logstash-8-17-0,Logstash 8.17.0>>
|
| 9 | +* <<logstash-8-16-4,Logstash 8.16.4>> |
8 | 10 | * <<logstash-8-16-3,Logstash 8.16.3>>
|
9 | 11 | * <<logstash-8-16-2,Logstash 8.16.2>>
|
10 | 12 | * <<logstash-8-16-1,Logstash 8.16.1>>
|
@@ -75,6 +77,68 @@ This section summarizes the changes in the following releases:
|
75 | 77 | * <<logstash-8-0-0-alpha2,Logstash 8.0.0-alpha2>>
|
76 | 78 | * <<logstash-8-0-0-alpha1,Logstash 8.0.0-alpha1>>
|
77 | 79 |
|
| 80 | +[[logstash-8-17-2]] |
| 81 | +=== Logstash 8.17.2 Release Notes |
| 82 | + |
| 83 | +[[notable-8-17-2]] |
| 84 | +==== Notable issues fixed |
| 85 | + |
| 86 | +* The plugin manager's `update` command now correctly updates only _minor_ versions of plugins by default to avoid breaking changes. |
| 87 | +If you wish to also include breaking changes, you must specify `--level=major` https://github.com/elastic/logstash/pull/16974[#16974] |
| 88 | +* The plugin manager no longer has issues installing plugins with embedded jars or depending on snakeyaml https://github.com/elastic/logstash/pull/16924[#16924] |
| 89 | +* The plugin manager now correctly supports authenticated proxies by transmitting username and password from proxy environment URI https://github.com/elastic/logstash/pull/16958[#16958] |
| 90 | +* The logstash-keystore now correctly accepts spaces in values when added via stdin https://github.com/elastic/logstash/pull/17041[#17041] |
| 91 | +* The buffered-tokenizer, which is used by many plugins to split streams of bytes by a delimiter, now properly resumes at the next delimiter after encountering a buffer-full condition https://github.com/elastic/logstash/pull/17022[#17022] |
| 92 | + |
| 93 | + |
| 94 | +[[dependencies-8-17-2]] |
| 95 | +==== Updates to dependencies |
| 96 | + |
| 97 | +* Update JDK to 21.0.6+7 https://github.com/elastic/logstash/pull/16989[#16989] |
| 98 | + |
| 99 | +[[plugins-8-17-2]] |
| 100 | +==== Plugins |
| 101 | + |
| 102 | +*Elastic_integration Filter - 8.17.1* |
| 103 | + |
| 104 | +* Provides a guidance in logs when plugin version mismatches with connected Elasticsearch `major.minor` version https://github.com/elastic/logstash-filter-elastic_integration/pull/255[#255] |
| 105 | +* Embeds Ingest Node components from Elasticsearch 8.17 |
| 106 | +* Compatible with Logstash 8.15+ |
| 107 | + |
| 108 | +*Elasticsearch Filter - 3.17.0* |
| 109 | + |
| 110 | +* Added support for custom headers https://github.com/logstash-plugins/logstash-filter-elasticsearch/pull/190[#190] |
| 111 | + |
| 112 | +*Beats Input - 6.9.2* |
| 113 | + |
| 114 | +* Name netty threads according to their purpose and the plugin id https://github.com/logstash-plugins/logstash-input-beats/pull/511[#511] |
| 115 | + |
| 116 | +*Elasticsearch Input - 4.21.1* |
| 117 | + |
| 118 | +* Fix: prevent plugin crash when hits contain illegal structure https://github.com/logstash-plugins/logstash-input-elasticsearch/pull/183[#183] |
| 119 | +* When a hit cannot be converted to an event, the input now emits an event tagged with `_elasticsearch_input_failure` with an `[event][original]` containing a JSON-encoded string representation of the entire hit. |
| 120 | + |
| 121 | +* Add support for custom headers https://github.com/logstash-plugins/logstash-input-elasticsearch/pull/217[#217] |
| 122 | + |
| 123 | +*Http Input - 3.10.1* |
| 124 | + |
| 125 | +* Properly naming netty threads https://github.com/logstash-plugins/logstash-input-http/pull/191[#191] |
| 126 | + |
| 127 | +* Add improved proactive rate-limiting, rejecting new requests when queue has been actively blocking for more than 10 seconds https://github.com/logstash-plugins/logstash-input-http/pull/179[#179] |
| 128 | + |
| 129 | +*Tcp Input - 6.4.5* |
| 130 | + |
| 131 | +* Name netty threads with plugin id and their purpose https://github.com/logstash-plugins/logstash-input-tcp/pull/229[#229] |
| 132 | + |
| 133 | +*Snmp Integration - 4.0.6* |
| 134 | + |
| 135 | +* [DOC] Fix typo in snmptrap migration section https://github.com/logstash-plugins/logstash-integration-snmp/pull/74[#74] |
| 136 | + |
| 137 | +*Elasticsearch Output - 11.22.12* |
| 138 | + |
| 139 | +* Properly handle http code 413 (Payload Too Large) https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1199[#1199] |
| 140 | +* Remove irrelevant log warning about elastic stack version https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1202[#1202] |
| 141 | + |
78 | 142 |
|
79 | 143 | [[logstash-8-17-1]]
|
80 | 144 | === Logstash 8.17.1 Release Notes
|
@@ -212,6 +276,67 @@ Other `json_lines` codec issues can be mitigated by:
|
212 | 276 |
|
213 | 277 | * Adds new mixin configuration option `with_obsolete` to mark `ssl` options as obsolete https://github.com/logstash-plugins/logstash-mixin-http_client/pull/46[#46]
|
214 | 278 |
|
| 279 | +[[logstash-8-16-4]] |
| 280 | +=== Logstash 8.16.4 Release Notes |
| 281 | + |
| 282 | +[[notable-8-16-4]] |
| 283 | +==== Notable issues fixed |
| 284 | + |
| 285 | +* The plugin manager's `update` command now correctly updates only _minor_ versions of plugins by default to avoid breaking changes. |
| 286 | +If you wish to also include breaking changes, you must specify `--level=major` https://github.com/elastic/logstash/pull/16975[#16975] |
| 287 | +* The plugin manager no longer has issues installing plugins with embedded jars or depending on snakeyaml https://github.com/elastic/logstash/pull/16925[#16925] |
| 288 | +* The plugin manager now correctly supports authenticated proxies by transmitting username and password from proxy environment URI https://github.com/elastic/logstash/pull/16957[#16957] |
| 289 | +* The buffered-tokenizer, which is used by many plugins to split streams of bytes by a delimiter, now properly resumes at the next delimiter after encountering a buffer-full condition https://github.com/elastic/logstash/pull/17021[#17021] |
| 290 | + |
| 291 | +[[dependencies-8-16-4]] |
| 292 | +==== Updates to dependencies |
| 293 | + |
| 294 | +* Update JDK to 21.0.6+7 https://github.com/elastic/logstash/pull/16990[#16990] |
| 295 | + |
| 296 | +[[plugins-8-16-4]] |
| 297 | +==== Plugins |
| 298 | + |
| 299 | +*Elastic_integration Filter - 8.16.1* |
| 300 | + |
| 301 | +* Provides a guidance in logs when plugin version mismatches with connected Elasticsearch `major.minor` version https://github.com/elastic/logstash-filter-elastic_integration/pull/253[#253] |
| 302 | +* Embeds Ingest Node components from Elasticsearch 8.16 |
| 303 | +* Compatible with Logstash 8.15+ |
| 304 | + |
| 305 | +*Elasticsearch Filter - 3.17.0* |
| 306 | + |
| 307 | +* Added support for custom headers https://github.com/logstash-plugins/logstash-filter-elasticsearch/pull/190[#190] |
| 308 | + |
| 309 | +*Beats Input - 6.9.2* |
| 310 | + |
| 311 | +* Name netty threads according to their purpose and the plugin id https://github.com/logstash-plugins/logstash-input-beats/pull/511[#511] |
| 312 | + |
| 313 | +*Elasticsearch Input - 4.21.1* |
| 314 | + |
| 315 | +* Fix: prevent plugin crash when hits contain illegal structure https://github.com/logstash-plugins/logstash-input-elasticsearch/pull/183[#183] |
| 316 | +* When a hit cannot be converted to an event, the input now emits an event tagged with `_elasticsearch_input_failure` with an `[event][original]` containing a JSON-encoded string representation of the entire hit. |
| 317 | + |
| 318 | +* Add support for custom headers https://github.com/logstash-plugins/logstash-input-elasticsearch/pull/217[#217] |
| 319 | + |
| 320 | +*Http Input - 3.10.1* |
| 321 | + |
| 322 | +* Properly naming netty threads https://github.com/logstash-plugins/logstash-input-http/pull/191[#191] |
| 323 | + |
| 324 | +* Add improved proactive rate-limiting, rejecting new requests when queue has been actively blocking for more than 10 seconds https://github.com/logstash-plugins/logstash-input-http/pull/179[#179] |
| 325 | + |
| 326 | +*Tcp Input - 6.4.5* |
| 327 | + |
| 328 | +* Name netty threads with plugin id and their purpose https://github.com/logstash-plugins/logstash-input-tcp/pull/229[#229] |
| 329 | + |
| 330 | +*Snmp Integration - 4.0.6* |
| 331 | + |
| 332 | +* [DOC] Fix typo in snmptrap migration section https://github.com/logstash-plugins/logstash-integration-snmp/pull/74[#74] |
| 333 | + |
| 334 | +*Elasticsearch Output - 11.22.12* |
| 335 | + |
| 336 | +* Properly handle http code 413 (Payload Too Large) https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1199[#1199] |
| 337 | +* Remove irrelevant log warning about elastic stack version https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1202[#1202] |
| 338 | + |
| 339 | + |
215 | 340 | [[logstash-8-16-3]]
|
216 | 341 | === Logstash 8.16.3 Release Notes
|
217 | 342 |
|
|
0 commit comments