From a73b5d804a3604dfdd30e2a2e412ce1a6fcb0d92 Mon Sep 17 00:00:00 2001 From: Daijiro Fukuda Date: Mon, 8 Sep 2025 17:31:01 +0900 Subject: [PATCH] Revert "gemspec: fix io-event and io-stream version to avoid unstable behavior on Windows (#5042)" This reverts commit 420e166c41e824594cc14b8a6c154da0c4fc5f54. 85740ac878d6dc408c47ade4e2d389ccfe2dc88a should resolve the fundamental issue. Signed-off-by: Daijiro Fukuda --- fluentd.gemspec | 7 ------- 1 file changed, 7 deletions(-) diff --git a/fluentd.gemspec b/fluentd.gemspec index 6d5334813b..0cd54497d2 100644 --- a/fluentd.gemspec +++ b/fluentd.gemspec @@ -42,13 +42,6 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency("uri", '~> 1.0') gem.add_runtime_dependency("async-http", "~> 0.86") - # It appears io-event >= 1.11.0 are unstable on Windows (confirmed on 1.12.1 or lower). - # See https://github.com/fluent/fluentd/issues/5041. - gem.add_runtime_dependency("io-event", "< 1.11.0") - # io-stream >= 0.8 needs io-event >= 1.12.0, so we need to fix io-stream version as well (confirmed on 0.10.0 or lower). - # See https://github.com/socketry/io-stream/issues/8. - gem.add_runtime_dependency("io-stream", "< 0.8.0") - # gems that aren't default gems as of Ruby 3.4 gem.add_runtime_dependency("base64", ["~> 0.2"]) gem.add_runtime_dependency("csv", ["~> 3.2"])