Skip to content

Commit 28f0245

Browse files
authored
feat: Released v2.9.0 (#180)
Signed-off-by: Steve Hipwell <[email protected]>
1 parent 066d728 commit 28f0245

File tree

3 files changed

+30
-12
lines changed

3 files changed

+30
-12
lines changed

CHANGELOG.md

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
---
99

10-
<!-- ## [UNRELEASED]
11-
### Highlights
12-
### All Changes
13-
- Added
14-
- Updated
15-
- Changed
16-
- Fixed
17-
- Deprecated
18-
- Removed -->
10+
<!--
11+
## [UNRELEASED]
12+
13+
### Added - For new features.
14+
### Changed - For changes in existing functionality.
15+
### Deprecated - For soon-to-be removed features.
16+
### Removed - For now removed features.
17+
### Fixed - For any bug fixes.
18+
### Security - In case of vulnerabilities.
19+
-->
20+
21+
## [v2.9.0] - 2023-06-07
22+
23+
### Added
24+
25+
- Added `libcurl4` to the `glibc` image version.
26+
27+
### Changed
28+
29+
- Updated _Fluentd_ to [v1.16.1](https://github.com/fluent/fluentd/releases/tag/v1.16.1).
30+
- Updated [fluent-plugin-opensearch](https://rubygems.org/gems/fluent-plugin-opensearch) from `v1.0.10` to `v1.1.0`.
31+
- Updated [fluent-plugin-elasticsearch](https://rubygems.org/gems/fluent-plugin-elasticsearch) Gem from `5.2.5` to `5.3.0`.
32+
- Updated [libxml-ruby](https://github.com/xml4r/libxml-ruby) Gem from `v4.0.0` to `v4.1.1`.
33+
- Updated [oj](https://rubygems.org/gems/oj) from `v3.14.2` to `v3.15.0`.
34+
- Updated [fluent-plugin-kafka](https://github.com/fluent/fluent-plugin-kafka) from `0.18.1` to `0.19.0`.
35+
- Updated [Ruby](https://hub.docker.com/_/ruby) OCI image to `v3.2.2`.
1936

2037
## [v2.8.0] - 2023-03-29
2138

glibc.dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.2.1-slim-bullseye@sha256:e0be7ab1fa6b43159fff18191e365061b2dd180c81db2a4b080527e43d6e2528
1+
FROM ruby:3.2.2-slim-bullseye@sha256:506427360ecafed78530865257378ce4a287bd004315e5cafdd64690bcb56efe
22

33
RUN set -eux; \
44
apt-get update; \
@@ -7,7 +7,8 @@ RUN set -eux; \
77
tini \
88
libjemalloc2 \
99
libxml2 \
10-
libxslt1.1; \
10+
libxslt1.1 \
11+
libcurl4; \
1112
ln -s "/usr/lib/$(uname -m)-linux-gnu" /usr/lib/linux-gnu;
1213

1314
COPY Gemfile Gemfile.lock /fluentd/

musl.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.2.1-alpine@sha256:daf7bd93d799642f07ee73fe106098c338f1c15de796a6bcbfd74ef3d73df1a4
1+
FROM ruby:3.2.2-alpine@sha256:1df6125b0f90e087123698e1b2df1c6a544a40033a5a14bfa3ef7067863d3474
22

33
RUN set -eux; \
44
apk update; \

0 commit comments

Comments
 (0)