Skip to content

Commit 7a6c9dc

Browse files
committed
v1.4.0
1 parent 62732b6 commit 7a6c9dc

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 1.4.0
4+
* Add `RequestAck` to enable at-least-once message transferring
5+
* Add `Async` option to update sending message in asynchronous way
6+
* Deprecate `AsyncConnect` (Use `Async` instead)
7+
38
## 1.3.0
49
* Add `SubSecondPrecision` option to handle Fluentd v0.14 (and v1) sub-second EventTime (default: false)
510
* Add `WriteTimeout` option

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ f := fluent.New(fluent.Config{FluentPort: 80, FluentHost: "example.com"})
6464
Sets the timeout for Write call of logger.Post.
6565
Since the default is zero value, Write will not time out.
6666

67+
### Async
68+
69+
Enable asynchronous I/O (connect and write) for sending events to Fluentd.
70+
The default is false.
71+
6772
### RequestAck
6873

6974
Sets whether to request acknowledgment from Fluentd to increase the reliability

fluent/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package fluent
22

3-
const Version = "1.3.0"
3+
const Version = "1.4.0"

0 commit comments

Comments
 (0)