From 6e0f817b78fdd2a7d19b3a7fc33130dfd8ed2852 Mon Sep 17 00:00:00 2001 From: Rob White Date: Wed, 11 Dec 2024 09:45:36 +0000 Subject: [PATCH] Remove upper dependency version limit on activesupport With the release of Rails 8.0.0.1 the dependency update I made as part of https://github.com/ruby-amqp/hutch/pull/402 is too strict and the gem gets downgraded to version 0.23.1. It might be better to remove the upper ceiling on `activesupport` so this doesn't become a recurring blocker for future rails releases --- hutch.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hutch.gemspec b/hutch.gemspec index 32bf891..4ff9de3 100644 --- a/hutch.gemspec +++ b/hutch.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |gem| end gem.add_runtime_dependency 'carrot-top', '~> 0.0.7' gem.add_runtime_dependency 'multi_json', '~> 1.15' - gem.add_runtime_dependency 'activesupport', '>= 4.2', '<= 8' + gem.add_runtime_dependency 'activesupport', '>= 4.2' gem.name = 'hutch' gem.summary = 'Opinionated asynchronous inter-service communication using RabbitMQ'