Skip to content
Closed
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
14 changes: 7 additions & 7 deletions fluentd.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ 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")
# # 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"])
Expand Down Expand Up @@ -78,7 +78,7 @@ Gem::Specification.new do |gem|
# timecop v0.9.9 supports `Process.clock_gettime`. It breaks some tests.
# (https://github.com/fluent/fluentd/pull/4521)
gem.add_development_dependency("timecop", ["< 0.9.9"])
gem.add_development_dependency("test-unit", ["~> 3.3"])
gem.add_development_dependency("test-unit", "= 3.6.8")
gem.add_development_dependency("test-unit-rr", ["~> 1.0"])
gem.add_development_dependency("oj", [">= 2.14", "< 4"])
gem.add_development_dependency("console", "~> 1.30")
Expand Down
Loading