Vector v0.28.2 release notes
Upgrading Vector
When upgrading, we recommend stepping through minor versions as
these can each contain breaking changes while Vector is pre-1.0.
These breaking changes are noted in their respective upgrade
guides.
This patch release contains a few fixes for regressions in 0.28.0 and 0.27.0.
Note: Please see the release notes for v0.28.0 for additional changes if upgrading from
v0.27.X. In particular, the upgrade guide for breaking changes.
Vector Changelog
5 bug fixes
- TCP-based sources like
socket,logstash, andfluentwould sometimes panic when back-pressure logic calculated a lower limit on the number of incoming connections than 2, which is intended to be the minimum limit.Thanks to zamazan4ik for contributing this change! - The
http_serversource again has the correct default acceptmethodofPOSTrather thanGET. - The
elasticsearchsink no longer panics whenbulk.indexis unspecified and the defaultmodeofbulkis used. Instead it defaults again tovector-%Y.%m.%d.Thanks to zamazan4ik for contributing this change! - The
syslogsource again correctly inserts the source IP of the connection that events come in on assource_iprather thansource_id.Thanks to zamazan4ik for contributing this change! - The
log_schema.timestamp_keycan again be set to""to suppress adding of a timestamp to events rather than panicking when starting.