Skip to content

Commit da61954

Browse files
committed
chore(release): 2.10.0
1 parent c6dfd93 commit da61954

File tree

7 files changed

+37
-12
lines changed

7 files changed

+37
-12
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
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.
44

5+
## [2.10.0](https://github.com/driskell/log-courier/compare/v2.9.1...v2.10.0) (2023-03-20)
6+
7+
8+
### Features
9+
10+
* 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))
11+
* 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)
12+
* Implement TCP streaming receiver ([b3a3720](https://github.com/driskell/log-courier/commit/b3a37204249c48d96a2dc09750b930a0c0804b86))
13+
* Improved failover of connections when using SRV records ([05fcd48](https://github.com/driskell/log-courier/commit/05fcd4892e20121b9ba2f9a43c8f624fa565d8df))
14+
* Improved log output for transports to display more meaningful connection details in some instances ([1a14888](https://github.com/driskell/log-courier/commit/1a14888a9482a2704a2540d45d8b634d1b96c718))
15+
* 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)
16+
* Sort receivers and transports within lc-admin ([74775cc](https://github.com/driskell/log-courier/commit/74775cc189a80ef58b047adb5dcafe2a07f1d268))
17+
* 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)
18+
19+
20+
### Bug Fixes
21+
22+
* 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)
23+
* Fix es-https transport reporting ssl ca required when it was ([1741ba7](https://github.com/driskell/log-courier/commit/1741ba730369d9647bea9eaa6d49685d3318712c))
24+
* Fix for cache of ES transport clients that can result in too many open files ([bf45f4e](https://github.com/driskell/log-courier/commit/bf45f4e0379c3ab7940d208ab12a8a926744b5d2))
25+
* 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))
26+
* 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)
27+
* 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))
28+
* 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))
29+
530
## [2.9.1](https://github.com/driskell/log-courier/compare/v2.9.0...v2.9.1) (2022-10-15)
631

732

lc-lib/core/version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ package core
1818

1919
// LogCourierVersion is the library version number
2020
const LogCourierMajorVersion uint32 = 2
21-
const LogCourierMinorVersion uint32 = 9
22-
const LogCourierPatchVersion uint32 = 1
23-
const LogCourierVersion string = "2.9.1"
21+
const LogCourierMinorVersion uint32 = 10
22+
const LogCourierPatchVersion uint32 = 0
23+
const LogCourierVersion string = "2.10.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "log-courier",
3-
"version": "2.9.1",
3+
"version": "2.10.0",
44
"description": "",
55
"repository": {
66
"type": "git",
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Version of LogCourier
22
module LogCourier
33
MAJOR_VERSION = 2
4-
MINOR_VERSION = 9
5-
PATCH_VERSION = 1
6-
VERSION = '2.9.1'.freeze
4+
MINOR_VERSION = 10
5+
PATCH_VERSION = 0
6+
VERSION = '2.10.0'.freeze
77
end

ruby/log-courier/log-courier.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |gem|
22
gem.name = 'log-courier'
3-
gem.version = '2.9.1'
3+
gem.version = '2.10.0'
44
gem.description = 'Log Courier library'
55
gem.summary = 'Ruby implementation of the Courier protocol'
66
gem.homepage = 'https://github.com/driskell/log-courier'

ruby/logstash-input-courier/logstash-input-courier.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Add platform conditions around java-only dependencies so GitHub dependency chart that is MRI only (I think) still works
22
Gem::Specification.new do |gem|
33
gem.name = 'logstash-input-courier'
4-
gem.version = '2.9.1'
4+
gem.version = '2.10.0'
55
gem.description = 'Courier Input Logstash Plugin'
66
gem.summary = 'Receive events from Log Courier and Logstash using the Courier protocol'
77
gem.homepage = 'https://github.com/driskell/log-courier'
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
1616

1717
gem.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'input' }
1818

19-
gem.add_runtime_dependency 'log-courier', '= 2.9.1'
19+
gem.add_runtime_dependency 'log-courier', '= 2.10.0'
2020
gem.add_runtime_dependency 'logstash-codec-plain' if RUBY_PLATFORM == 'java'
2121
gem.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99' if RUBY_PLATFORM == 'java'
2222
end

ruby/logstash-output-courier/logstash-output-courier.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Add platform conditions around java-only dependencies so GitHub dependency chart that is MRI only (I think) still works
22
Gem::Specification.new do |gem|
33
gem.name = 'logstash-output-courier'
4-
gem.version = '2.9.1'
4+
gem.version = '2.10.0'
55
gem.description = 'Courier Output Logstash Plugin'
66
gem.summary = 'Transmit events from one Logstash instance to another using the Courier protocol'
77
gem.homepage = 'https://github.com/driskell/log-courier'
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
1616

1717
gem.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'output' }
1818

19-
gem.add_runtime_dependency 'log-courier', '= 2.9.1'
19+
gem.add_runtime_dependency 'log-courier', '= 2.10.0'
2020
gem.add_runtime_dependency 'logstash-codec-plain' if RUBY_PLATFORM == 'java'
2121
gem.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99' if RUBY_PLATFORM == 'java'
2222
end

0 commit comments

Comments
 (0)