Skip to content

Commit 515fd8e

Browse files
committed
chore(release): 2.12.0
1 parent 25ec0cf commit 515fd8e

File tree

7 files changed

+22
-10
lines changed

7 files changed

+22
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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.12.0](https://github.com/driskell/log-courier/compare/v2.11.0...v2.12.0) (2025-02-18)
6+
7+
8+
### Features
9+
10+
* Allow immediate retry of failed files on reload ([25ec0cf](https://github.com/driskell/log-courier/commit/25ec0cfe2d476d68778a4d97a72f8b62a745ff8b))
11+
12+
13+
### Bug Fixes
14+
15+
* Prevent permanent failures in harvester such as max line bytes exceeded from causing errors every prospector scan loop ([3f3ea20](https://github.com/driskell/log-courier/commit/3f3ea209ea9456247cc5c37c1e9584db4ecdcec3))
16+
517
## [2.11.0](https://github.com/driskell/log-courier/compare/v2.10.0...v2.11.0) (2024-07-30)
618

719

lc-lib/core/version.go

Lines changed: 2 additions & 2 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 = 11
21+
const LogCourierMinorVersion uint32 = 12
2222
const LogCourierPatchVersion uint32 = 0
23-
const LogCourierVersion string = "2.11.0"
23+
const LogCourierVersion string = "2.12.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.11.0",
3+
"version": "2.12.0",
44
"description": "",
55
"repository": {
66
"type": "git",
Lines changed: 2 additions & 2 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 = 11
4+
MINOR_VERSION = 12
55
PATCH_VERSION = 0
6-
VERSION = '2.11.0'.freeze
6+
VERSION = '2.12.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.11.0'
3+
gem.version = '2.12.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.11.0'
4+
gem.version = '2.12.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.11.0'
19+
gem.add_runtime_dependency 'log-courier', '= 2.12.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.11.0'
4+
gem.version = '2.12.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.11.0'
19+
gem.add_runtime_dependency 'log-courier', '= 2.12.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)