activeadmin-rails 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yaml +3 -0
- data/.github/workflows/daily.yaml +3 -0
- data/CHANGELOG.md +11 -0
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +0 -1
- data/features/step_definitions/web_steps.rb +1 -0
- data/gemfiles/rails_61.gemfile +2 -0
- data/gemfiles/rails_61_turbolinks.gemfile +2 -0
- data/gemfiles/rails_70.gemfile +2 -0
- data/gemfiles/rails_70_hotwire.gemfile +2 -0
- data/gemfiles/rails_71.gemfile +1 -0
- data/gemfiles/rails_72.gemfile +1 -0
- data/gemfiles/rails_80.gemfile +17 -0
- data/lib/active_admin/deprecation.rb +1 -1
- data/lib/active_admin/version.rb +1 -1
- data/spec/unit/batch_actions/resource_spec.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ad955d098046e0a908d6f53f22a2270935149a031c22e4f17110aae675fec2e
|
|
4
|
+
data.tar.gz: cfe0421fe309a57bc56570e752b0c932f08a837e70d9d047477f3e26b178c9dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 796317e632daaff7738a1fd4f63a2deeb9782709720d1c75ee9fe3bd57f67948e737eb89933a3e713229434f4b2f598e48726c54685634a9bbdf38676236ee45
|
|
7
|
+
data.tar.gz: 3bbe2316011379e3b5cede0121b0fb91af778145631d38faa6dad9282b1ebfc752b6e188a849c937bc19c6bf45aaeab5c2344ea231c9da0b289a9318612d8b99
|
data/.github/workflows/ci.yaml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.7.2 [☰](https://github.com/varyonic/activeadmin-rails/compare/v1.7.1...v1.7.2)
|
|
4
|
+
|
|
5
|
+
#### Minor
|
|
6
|
+
|
|
7
|
+
* Rails 8.0 support. [#54] by [@varyonic]
|
|
8
|
+
|
|
3
9
|
## 1.7.1 [☰](https://github.com/varyonic/activeadmin-rails/compare/v1.7.0...v1.7.1)
|
|
4
10
|
|
|
5
11
|
#### Minor
|
|
@@ -462,6 +468,11 @@ Please check [0-6-stable] for previous changes.
|
|
|
462
468
|
[#42]: https://github.com/varyonic/activeadmin-rails/pull/42
|
|
463
469
|
[#43]: https://github.com/varyonic/activeadmin-rails/pull/43
|
|
464
470
|
[#45]: https://github.com/varyonic/activeadmin-rails/pull/45
|
|
471
|
+
[#49]: https://github.com/varyonic/activeadmin-rails/pull/49
|
|
472
|
+
[#50]: https://github.com/varyonic/activeadmin-rails/pull/50
|
|
473
|
+
[#52]: https://github.com/varyonic/activeadmin-rails/pull/52
|
|
474
|
+
[#53]: https://github.com/varyonic/activeadmin-rails/pull/53
|
|
475
|
+
[#54]: https://github.com/varyonic/activeadmin-rails/pull/54
|
|
465
476
|
|
|
466
477
|
[@5t111111]: https://github.com/5t111111
|
|
467
478
|
[@aarek]: https://github.com/aarek
|
data/CONTRIBUTING.md
CHANGED
|
@@ -36,7 +36,7 @@ Make sure you're using a recent ruby and have the `bundler` gem installed.
|
|
|
36
36
|
Select the Gemfile for your preferred Rails version, preferably the latest:
|
|
37
37
|
|
|
38
38
|
```sh
|
|
39
|
-
export BUNDLE_GEMFILE=gemfiles/
|
|
39
|
+
export BUNDLE_GEMFILE=gemfiles/rails_80.gemfile
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
Now install the development dependencies:
|
data/Gemfile
CHANGED
data/gemfiles/rails_61.gemfile
CHANGED
|
@@ -7,8 +7,10 @@ gem "rails-i18n", "~> 6.0.x"
|
|
|
7
7
|
gem "sass-rails", ">= 6.0.x"
|
|
8
8
|
gem "sprockets", ">= 4.0.x"
|
|
9
9
|
gem "bootsnap"
|
|
10
|
+
gem "concurrent-ruby", "<= 1.3.4"
|
|
10
11
|
gem "devise", "~> 4.4"
|
|
11
12
|
gem "draper"
|
|
13
|
+
gem "sqlite3", "~> 1.4"
|
|
12
14
|
gem "activerecord-jdbcsqlite3-adapter", ">= 60.0.x", platform: :jruby
|
|
13
15
|
|
|
14
16
|
gemspec path: "../"
|
|
@@ -7,8 +7,10 @@ gem "rails-i18n", "~> 6.0.x"
|
|
|
7
7
|
gem "sass-rails", ">= 6.0.x"
|
|
8
8
|
gem "sprockets", ">= 4.0.x"
|
|
9
9
|
gem "bootsnap"
|
|
10
|
+
gem "concurrent-ruby", "<= 1.3.4"
|
|
10
11
|
gem "devise", "~> 4.4"
|
|
11
12
|
gem "draper"
|
|
13
|
+
gem "sqlite3", "~> 1.4"
|
|
12
14
|
gem "activerecord-jdbcsqlite3-adapter", ">= 60.0.x", platform: :jruby
|
|
13
15
|
|
|
14
16
|
gemspec path: "../"
|
data/gemfiles/rails_70.gemfile
CHANGED
|
@@ -7,8 +7,10 @@ gem "rails-i18n", ">= 6.0.x"
|
|
|
7
7
|
gem "sass-rails", ">= 6.0.x"
|
|
8
8
|
gem "sprockets", ">= 4.0.x"
|
|
9
9
|
gem "bootsnap"
|
|
10
|
+
gem "concurrent-ruby", "<= 1.3.4"
|
|
10
11
|
gem "devise", "~> 4.4"
|
|
11
12
|
gem "draper"
|
|
13
|
+
gem "sqlite3", "~> 1.4"
|
|
12
14
|
gem "activerecord-jdbcsqlite3-adapter", ">= 60.0.x", platform: :jruby
|
|
13
15
|
|
|
14
16
|
gemspec path: "../"
|
|
@@ -7,8 +7,10 @@ gem "rails-i18n", ">= 6.0.x"
|
|
|
7
7
|
gem "sass-rails", ">= 6.0.x"
|
|
8
8
|
gem "sprockets", ">= 4.0.x"
|
|
9
9
|
gem "bootsnap"
|
|
10
|
+
gem "concurrent-ruby", "<= 1.3.4"
|
|
10
11
|
gem "devise", "~> 4.9" # support for Hotwire + Turbo, default in Rails 7+
|
|
11
12
|
gem "draper"
|
|
13
|
+
gem "sqlite3", "~> 1.4"
|
|
12
14
|
gem "activerecord-jdbcsqlite3-adapter", ">= 60.0.x", platform: :jruby
|
|
13
15
|
|
|
14
16
|
gemspec path: "../"
|
data/gemfiles/rails_71.gemfile
CHANGED
data/gemfiles/rails_72.gemfile
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
eval_gemfile(File.expand_path(File.join('..', 'Gemfile'), __dir__))
|
|
4
|
+
|
|
5
|
+
gem 'rails', '~> 8.0.0'
|
|
6
|
+
gem 'rails-i18n'
|
|
7
|
+
gem 'inherited_resources', '>= 1.14.0'
|
|
8
|
+
gem 'formtastic', '>= 5.0.0'
|
|
9
|
+
gem 'ransack', '>= 4.1.0'
|
|
10
|
+
gem 'devise', '>= 4.9.3'
|
|
11
|
+
gem 'rack', '>= 2.2'
|
|
12
|
+
gem 'bootsnap'
|
|
13
|
+
gem 'draper'
|
|
14
|
+
gem 'sqlite3', '>= 2.x'
|
|
15
|
+
gem 'activerecord-jdbcsqlite3-adapter', '>= 70.0.x', platform: :jruby
|
|
16
|
+
|
|
17
|
+
gemspec path: '../'
|
data/lib/active_admin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activeadmin-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piers Chambers, Greg Bell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: arbo
|
|
@@ -475,6 +475,7 @@ files:
|
|
|
475
475
|
- gemfiles/rails_70_hotwire.gemfile
|
|
476
476
|
- gemfiles/rails_71.gemfile
|
|
477
477
|
- gemfiles/rails_72.gemfile
|
|
478
|
+
- gemfiles/rails_80.gemfile
|
|
478
479
|
- lib/active_admin.rb
|
|
479
480
|
- lib/active_admin/abstract_view_factory.rb
|
|
480
481
|
- lib/active_admin/application.rb
|
|
@@ -791,7 +792,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
791
792
|
- !ruby/object:Gem::Version
|
|
792
793
|
version: '0'
|
|
793
794
|
requirements: []
|
|
794
|
-
rubygems_version: 3.
|
|
795
|
+
rubygems_version: 3.4.19
|
|
795
796
|
signing_key:
|
|
796
797
|
specification_version: 4
|
|
797
798
|
summary: A rapid development framework for Ruby on Rails.
|