Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.17.0 #4480

Merged
merged 1 commit into from
Apr 30, 2024
Merged

v1.17.0 #4480

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
# v1.17

## Release v1.17.0 - 2024/04/30

### Enhancement

* in_http: Recognize CSP reports as JSON data
https://github.com/fluent/fluentd/pull/4282
* out_http: Add option to reuse connections
https://github.com/fluent/fluentd/pull/4330
* in_tail: Expand glob capability for square brackets and one character matcher
https://github.com/fluent/fluentd/pull/4401
* out_http: Support AWS Signature Version 4 authentication
https://github.com/fluent/fluentd/pull/4459

### Bug Fix

* Make sure `parser_json` and `parser_msgpack` return `Hash`.
Make `parser_json` and `parser_msgpack` accept only `Hash` or `Array` of `Hash`.
https://github.com/fluent/fluentd/pull/4474
* filter_parser: Add error event for multiple parsed results
https://github.com/fluent/fluentd/pull/4478

### Misc

* Raise minimum required ruby version
https://github.com/fluent/fluentd/pull/4288
* Require missing dependent gems as of Ruby 3.4-dev
https://github.com/fluent/fluentd/pull/4411
* Minor code refactoring
https://github.com/fluent/fluentd/pull/4294
https://github.com/fluent/fluentd/pull/4299
https://github.com/fluent/fluentd/pull/4302
https://github.com/fluent/fluentd/pull/4320
* CI fixes
https://github.com/fluent/fluentd/pull/4369
https://github.com/fluent/fluentd/pull/4433
https://github.com/fluent/fluentd/pull/4452
https://github.com/fluent/fluentd/pull/4477
* github: unify YAML file extension to .yml
https://github.com/fluent/fluentd/pull/4429

# v1.16

## Release v1.16.5 - 2024/03/27
Expand Down
2 changes: 1 addition & 1 deletion lib/fluent/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@

module Fluent

VERSION = '1.16.5'
VERSION = '1.17.0'

end
Loading