diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b2aeb7a..d8815145 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.10.0](https://github.com/driskell/log-courier/compare/v2.9.1...v2.10.0) (2023-03-20) + + +### Features + +* As of 2.10.0 SHA1 signed certificates will be no longer supported, but can be temporarily enabled by setting the GODEBUG environment variable to x509sha1=1 ([d7659a3](https://github.com/driskell/log-courier/commit/d7659a35899abd303f4f00c9d949b43f2ba4a874)) +* Implement support for /**/ matching in file paths, and report IO errors on first scan ([95daa0d](https://github.com/driskell/log-courier/commit/95daa0d137a87cee060b25b0440d0d0190a7a28d)), closes [#327](https://github.com/driskell/log-courier/issues/327) [#285](https://github.com/driskell/log-courier/issues/285) +* Implement TCP streaming receiver ([b3a3720](https://github.com/driskell/log-courier/commit/b3a37204249c48d96a2dc09750b930a0c0804b86)) +* Improved failover of connections when using SRV records ([05fcd48](https://github.com/driskell/log-courier/commit/05fcd4892e20121b9ba2f9a43c8f624fa565d8df)) +* Improved log output for transports to display more meaningful connection details in some instances ([1a14888](https://github.com/driskell/log-courier/commit/1a14888a9482a2704a2540d45d8b634d1b96c718)) +* lc-admin file list is now sorted to prevent display jumps on highly active instances ([17e9014](https://github.com/driskell/log-courier/commit/17e9014052f8637ef8ca6889264581ef15649907)), closes [#396](https://github.com/driskell/log-courier/issues/396) +* Sort receivers and transports within lc-admin ([74775cc](https://github.com/driskell/log-courier/commit/74775cc189a80ef58b047adb5dcafe2a07f1d268)) +* SRV record servers now expand after lookup as if the looked up hosts were listed servers, enabling failover and load balancing support ([3a2fecf](https://github.com/driskell/log-courier/commit/3a2fecfc6803f08f8c75e3a16e9545c28037b749)), closes [#354](https://github.com/driskell/log-courier/issues/354) + + +### Bug Fixes + +* Fix :127.0.0.1:1234 not working as specified in documentation for admin connect string ([ef11492](https://github.com/driskell/log-courier/commit/ef11492d42f6e2ba482dea1b5f59cad733406e9c)), closes [#395](https://github.com/driskell/log-courier/issues/395) +* Fix es-https transport reporting ssl ca required when it was ([1741ba7](https://github.com/driskell/log-courier/commit/1741ba730369d9647bea9eaa6d49685d3318712c)) +* Fix for cache of ES transport clients that can result in too many open files ([bf45f4e](https://github.com/driskell/log-courier/commit/bf45f4e0379c3ab7940d208ab12a8a926744b5d2)) +* Fix loadbalance not balancing effectively when under pressure and queueing more payloads than it should on single endpoints ([54aef03](https://github.com/driskell/log-courier/commit/54aef03ef4d18e5fa04f1fd82f94e13631eaeebc)) +* Fix logstash-input-courier not shutting down with Logstash pipeline ([ea7a63c](https://github.com/driskell/log-courier/commit/ea7a63cc94a11152e9bf1d0f20656ed23bfad88c)), closes [#397](https://github.com/driskell/log-courier/issues/397) +* Fix rare crash due to concurrent encoding activity in transport by preventing encoding making writes to the event ([ab6e5f7](https://github.com/driskell/log-courier/commit/ab6e5f7b9ac5ff1afd3d6d8e712a62fbce5f1b36)) +* Fix tls not working correctly for es-https, imporve tls config management, fix verify peers, make cert/key required for carver receiver ([c840355](https://github.com/driskell/log-courier/commit/c840355e8f314822dbf630d9b912d1abc9415c4a)) + ## [2.9.1](https://github.com/driskell/log-courier/compare/v2.9.0...v2.9.1) (2022-10-15) diff --git a/lc-lib/core/version.go b/lc-lib/core/version.go index 37e3d271..763c7e2a 100644 --- a/lc-lib/core/version.go +++ b/lc-lib/core/version.go @@ -18,6 +18,6 @@ package core // LogCourierVersion is the library version number const LogCourierMajorVersion uint32 = 2 -const LogCourierMinorVersion uint32 = 9 -const LogCourierPatchVersion uint32 = 1 -const LogCourierVersion string = "2.9.1" +const LogCourierMinorVersion uint32 = 10 +const LogCourierPatchVersion uint32 = 0 +const LogCourierVersion string = "2.10.0" diff --git a/package.json b/package.json index 896082ba..ca902aac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "log-courier", - "version": "2.9.1", + "version": "2.10.0", "description": "", "repository": { "type": "git", diff --git a/ruby/log-courier/lib/log-courier/version.rb b/ruby/log-courier/lib/log-courier/version.rb index 470f3e4b..e4feb847 100644 --- a/ruby/log-courier/lib/log-courier/version.rb +++ b/ruby/log-courier/lib/log-courier/version.rb @@ -1,7 +1,7 @@ # Version of LogCourier module LogCourier MAJOR_VERSION = 2 - MINOR_VERSION = 9 - PATCH_VERSION = 1 - VERSION = '2.9.1'.freeze + MINOR_VERSION = 10 + PATCH_VERSION = 0 + VERSION = '2.10.0'.freeze end diff --git a/ruby/log-courier/log-courier.gemspec b/ruby/log-courier/log-courier.gemspec index f96860c0..c9254b95 100644 --- a/ruby/log-courier/log-courier.gemspec +++ b/ruby/log-courier/log-courier.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |gem| gem.name = 'log-courier' - gem.version = '2.9.1' + gem.version = '2.10.0' gem.description = 'Log Courier library' gem.summary = 'Ruby implementation of the Courier protocol' gem.homepage = 'https://github.com/driskell/log-courier' diff --git a/ruby/logstash-input-courier/logstash-input-courier.gemspec b/ruby/logstash-input-courier/logstash-input-courier.gemspec index 204e37e5..a2c95dad 100644 --- a/ruby/logstash-input-courier/logstash-input-courier.gemspec +++ b/ruby/logstash-input-courier/logstash-input-courier.gemspec @@ -1,7 +1,7 @@ # Add platform conditions around java-only dependencies so GitHub dependency chart that is MRI only (I think) still works Gem::Specification.new do |gem| gem.name = 'logstash-input-courier' - gem.version = '2.9.1' + gem.version = '2.10.0' gem.description = 'Courier Input Logstash Plugin' gem.summary = 'Receive events from Log Courier and Logstash using the Courier protocol' gem.homepage = 'https://github.com/driskell/log-courier' @@ -16,7 +16,7 @@ Gem::Specification.new do |gem| gem.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'input' } - gem.add_runtime_dependency 'log-courier', '= 2.9.1' + gem.add_runtime_dependency 'log-courier', '= 2.10.0' gem.add_runtime_dependency 'logstash-codec-plain' if RUBY_PLATFORM == 'java' gem.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99' if RUBY_PLATFORM == 'java' end diff --git a/ruby/logstash-output-courier/logstash-output-courier.gemspec b/ruby/logstash-output-courier/logstash-output-courier.gemspec index 2aaf4fa0..b0591666 100644 --- a/ruby/logstash-output-courier/logstash-output-courier.gemspec +++ b/ruby/logstash-output-courier/logstash-output-courier.gemspec @@ -1,7 +1,7 @@ # Add platform conditions around java-only dependencies so GitHub dependency chart that is MRI only (I think) still works Gem::Specification.new do |gem| gem.name = 'logstash-output-courier' - gem.version = '2.9.1' + gem.version = '2.10.0' gem.description = 'Courier Output Logstash Plugin' gem.summary = 'Transmit events from one Logstash instance to another using the Courier protocol' gem.homepage = 'https://github.com/driskell/log-courier' @@ -16,7 +16,7 @@ Gem::Specification.new do |gem| gem.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'output' } - gem.add_runtime_dependency 'log-courier', '= 2.9.1' + gem.add_runtime_dependency 'log-courier', '= 2.10.0' gem.add_runtime_dependency 'logstash-codec-plain' if RUBY_PLATFORM == 'java' gem.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99' if RUBY_PLATFORM == 'java' end