Skip to content

Commit ad08961

Browse files
yaauiejsvd
authored andcommitted
Release notes 7.3.0 (elastic#10993)
* Release notes for 7.2 (elastic#10863) * add release notes for 7.3.0 * Fix link formatting
1 parent 4587860 commit ad08961

File tree

1 file changed

+82
-1
lines changed

1 file changed

+82
-1
lines changed

docs/static/releasenotes.asciidoc

Lines changed: 82 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
This section summarizes the changes in the following releases:
55

6+
* <<logstash-7-3-0,Logstash 7.3.0>>
67
* <<logstash-7-2-1,Logstash 7.2.1>>
78
* <<logstash-7-2-0,Logstash 7.2.0>>
89
* <<logstash-7-1-1,Logstash 7.1.1>>
@@ -15,6 +16,87 @@ This section summarizes the changes in the following releases:
1516
* <<logstash-7-0-0-alpha2,Logstash 7.0.0-alpha2>>
1617
* <<logstash-7-0-0-alpha1,Logstash 7.0.0-alpha1>>
1718

19+
[[logstash-7-3-0]]
20+
=== Logstash 7.3.0 Release Notes
21+
22+
* Fixes a crash that could occur when an illegal field reference was used as part of a field key https://github.com/elastic/logstash/pull/10839[#10839]
23+
* Fixes a stall that could occur when using the Beta Pipeline-to-Pipeline feature by ensuring that a Pipeline Input will not shut down before its upstream pipeline https://github.com/elastic/logstash/pull/10872[#10872]
24+
* Fixes an issue during shutdown where the API could shut down before the pipelines have completed shutting down https://github.com/elastic/logstash/pull/10880[#10880]
25+
* Fixes an issue where the bundled plugins built on the Java Plugin API would fail to load on Java 11 https://github.com/elastic/logstash/pull/10951[#10951]
26+
* Fixes an issue where runaway matchers inside KV and Grok Filter Plugins could fail to respect configured timeouts https://github.com/elastic/logstash/pull/10978[#10978]
27+
* Enhanced `GET _node/stats/pipelines` API for Metricbeat monitoring https://github.com/elastic/logstash/pull/10576[#10576]
28+
* Enhanced `GET /` API to include `workers` and `batch_size` metadata https://github.com/elastic/logstash/pull/10853[#10853]
29+
* Added Plain codec for Java https://github.com/elastic/logstash/pull/10791[#10791]
30+
* Added JMS Input Plugin to the list of default plugins https://github.com/elastic/logstash/pull/10865[#10865]
31+
32+
==== Plugins
33+
34+
*Grok Filter*
35+
36+
* Changed timeout handling using the Timeout class, resolving an issue where Logstash would fail to enforce timeouts https://github.com/logstash-plugins/logstash-filter-grok/pull/147[#147]
37+
38+
*Http Filter*
39+
40+
*Jdbc_streaming Filter*
41+
42+
* Fixed formatting in documentation https://github.com/logstash-plugins/logstash-filter-jdbc_streaming/pull/17[#17] and https://github.com/logstash-plugins/logstash-filter-jdbc_streaming/pull/28[#28]
43+
44+
*Json Filter*
45+
46+
* Added better error handling, preventing some classes of malformed inputs from crashing the pipeline.
47+
48+
*Kv Filter*
49+
50+
* Changed timeout handling using the Timeout class, resolving an issue where Logstash would fail to enforce timeouts https://github.com/logstash-plugins/logstash-filter-kv/pull/84[#84]
51+
52+
* Fixed asciidoc formatting in docs
53+
54+
* Resolved potential race condition in pipeline shutdown where the timeout enforcer could be shut down while work was still in-flight, potentially leading to stuck pipelines.
55+
* Resolved potential race condition in pipeline shutdown where work could be submitted to the timeout enforcer after it had been shutdown, potentially leading to stuck pipelines.
56+
57+
*Memcached Filter*
58+
59+
* Fixed link formatting issues in doc https://github.com/logstash-plugins/logstash-filter-memcached/pull/16[#16]
60+
61+
*Mutate Filter*
62+
63+
*Useragent Filter*
64+
65+
* Added support for OS regular expressions that use backreferences https://github.com/logstash-plugins/logstash-filter-useragent/pull/59[#59]
66+
67+
*Azure_event_hubs Input*
68+
69+
* Added workaround to fix errors when using this plugin with Java 11 https://github.com/logstash-plugins/logstash-input-azure_event_hubs/pull/38[#38]
70+
71+
*Kafka Input*
72+
73+
* Added support for `sasl_jaas_config` setting to allow JAAS config per plugin, rather than per JVM https://github.com/logstash-plugins/logstash-input-kafka/pull/313[#313]
74+
75+
*Jms Input*
76+
77+
* The JMS Input is now a default plugin distributed with Logstash
78+
79+
*Snmp Input*
80+
81+
* Adding oid_path_length config option https://github.com/logstash-plugins/logstash-input-snmp/pull/59[#59]
82+
* Fixing bug with table support removing index value from OIDs https://github.com/logstash-plugins/logstash-input-snmp/issues/60[#60]
83+
84+
* Added information and other improvements to documentation https://github.com/logstash-plugins/logstash-input-snmp/pull/57[#57]
85+
86+
*Tcp Input*
87+
88+
* Skip empty lines while reading certificate files https://github.com/logstash-plugins/logstash-input-tcp/issues/144[#144]
89+
90+
*Twitter Input*
91+
92+
* Updated Twitter gem to v6.2.0, cleaned up obsolete monkey patches, fixed integration tests https://github.com/logstash-plugins/logstash-input-twitter/pull/63[#63]
93+
94+
*Elastic_app_search Output*
95+
96+
*Kafka Output*
97+
98+
* Added support for `sasl_jaas_config` setting to allow JAAS config per plugin, rather than per JVM https://github.com/logstash-plugins/logstash-output-kafka/pull/223[#223]
99+
18100
[[logstash-7-2-1]]
19101
=== Logstash 7.2.1 Release Notes
20102

@@ -38,7 +120,6 @@ This section summarizes the changes in the following releases:
38120
* Documentation: Add homebrew as installation option https://github.com/elastic/logstash/pull/10874[#10874]
39121
* Documentation: Running Logstash on Windows https://github.com/elastic/logstash/pull/10805[#10805]
40122

41-
42123
[[logstash-7-2-0]]
43124
=== Logstash 7.2.0 Release Notes
44125

0 commit comments

Comments
 (0)