diff options
| author | mo khan <mo@mokhan.ca> | 2024-12-05 18:01:38 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2024-12-05 18:01:38 -0700 |
| commit | 41247b2685f8e01db14880147006f25465c4e95f (patch) | |
| tree | 8b953d308254dfe1e8e3a1f1969c817e45e19e1a | |
| parent | 73916d7ce9d77fb6611d552281e295478cd63173 (diff) | |
Allow using activemodel version 8+
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | Gemfile.lock | 14 | ||||
| -rw-r--r-- | scim-kit.gemspec | 2 |
3 files changed, 11 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bb1bf5f..e82ac40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Allow using activemodel version 8+ ## [0.7.2] - 2024-12-05 ### Fixed diff --git a/Gemfile.lock b/Gemfile.lock index fd58824..00d5cbc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: scim-kit (0.7.2) - activemodel (>= 6.1, < 8.0) + activemodel (>= 6.1) net-hippie (~> 1.0) parslet (~> 2.0) tilt (~> 2.0) @@ -11,15 +11,15 @@ PATH GEM remote: https://rubygems.org/ specs: - actionview (7.2.2) - activesupport (= 7.2.2) + actionview (8.0.0) + activesupport (= 8.0.0) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activemodel (7.2.2) - activesupport (= 7.2.2) - activesupport (7.2.2) + activemodel (8.0.0) + activesupport (= 8.0.0) + activesupport (8.0.0) base64 benchmark (>= 0.3) bigdecimal @@ -31,6 +31,7 @@ GEM minitest (>= 5.1) securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) ast (2.4.2) @@ -144,6 +145,7 @@ GEM unicode-display_width (3.1.2) unicode-emoji (~> 4.0, >= 4.0.4) unicode-emoji (4.0.4) + uri (1.0.2) webmock (3.24.0) addressable (>= 2.8.0) crack (>= 0.3.2) diff --git a/scim-kit.gemspec b/scim-kit.gemspec index a2ce082..dec252e 100644 --- a/scim-kit.gemspec +++ b/scim-kit.gemspec @@ -30,7 +30,7 @@ Gem::Specification.new do |spec| spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0') spec.metadata['yard.run'] = 'yri' - spec.add_dependency 'activemodel', '>= 6.1', '< 8.0' + spec.add_dependency 'activemodel', '>= 6.1' spec.add_dependency 'net-hippie', '~> 1.0' spec.add_dependency 'parslet', '~> 2.0' spec.add_dependency 'tilt', '~> 2.0' |
