From 94c4517d280f466e4093df4d7384be25d358adf5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Mar 2023 13:53:10 +0000 Subject: [PATCH] Update activerecord requirement from ~> 6.0 to >= 6, < 8 Updates the requirements on [activerecord](https://github.com/rails/rails) to permit the latest version. - [Release notes](https://github.com/rails/rails/releases) - [Changelog](https://github.com/rails/rails/blob/v7.0.4.3/activerecord/CHANGELOG.md) - [Commits](https://github.com/rails/rails/compare/v6.0.2.1...v7.0.4.3) --- updated-dependencies: - dependency-name: activerecord dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 33 +++++++++++++++------------------ hecks-app.gemspec | 2 +- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 42727a8..08e9e92 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,39 +2,36 @@ PATH remote: . specs: hecks-app (0.1.0) - activerecord (~> 6.0) + activerecord (>= 6, < 8) hecks-domain (= 0.1.0) GEM remote: https://rubygems.org/ specs: - activemodel (6.0.2.1) - activesupport (= 6.0.2.1) - activerecord (6.0.2.1) - activemodel (= 6.0.2.1) - activesupport (= 6.0.2.1) - activesupport (6.0.2.1) + activemodel (7.0.4.3) + activesupport (= 7.0.4.3) + activerecord (7.0.4.3) + activemodel (= 7.0.4.3) + activesupport (= 7.0.4.3) + activesupport (7.0.4.3) concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 0.7, < 2) - minitest (~> 5.1) - tzinfo (~> 1.1) - zeitwerk (~> 2.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) colorize (0.8.1) - concurrent-ruby (1.1.5) + concurrent-ruby (1.2.2) erubis (2.7.0) hecks-domain (0.1.0) colorize (~> 0.8) erubis (~> 2.7) thor (~> 0.20) - i18n (1.7.0) + i18n (1.12.0) concurrent-ruby (~> 1.0) lean_coffee (2) - minitest (5.13.0) + minitest (5.18.0) thor (0.20.3) - thread_safe (0.3.6) - tzinfo (1.2.5) - thread_safe (~> 0.1) - zeitwerk (2.2.2) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) PLATFORMS ruby diff --git a/hecks-app.gemspec b/hecks-app.gemspec index 29163c3..1fc26f1 100644 --- a/hecks-app.gemspec +++ b/hecks-app.gemspec @@ -9,6 +9,6 @@ Gem::Specification.new do |s| s.files = Dir['lib/**/*.rb', 'adapters/**/*.rb'] s.homepage = 'https://www.example.com' - s.add_dependency 'activerecord', '~> 6.0' + s.add_dependency 'activerecord', '>= 6', '< 8' s.add_dependency 'hecks-domain', '0.1.0' end