activeadmin 1.4.2 → 2.3.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +306 -144
- data/CONTRIBUTING.md +21 -16
- data/README.md +44 -11
- data/app/assets/javascripts/active_admin/base.es6 +23 -0
- data/app/assets/javascripts/active_admin/ext/jquery-ui.es6 +7 -0
- data/app/assets/javascripts/active_admin/ext/jquery.es6 +9 -0
- data/app/assets/javascripts/active_admin/initializers/datepicker.es6 +16 -0
- data/app/assets/javascripts/active_admin/initializers/filters.es6 +45 -0
- data/app/assets/javascripts/active_admin/initializers/tabs.es6 +6 -0
- data/app/assets/javascripts/active_admin/lib/active_admin.es6 +41 -0
- data/app/assets/javascripts/active_admin/lib/batch_actions.es6 +59 -0
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.es6 +49 -0
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.es6 +123 -0
- data/app/assets/javascripts/active_admin/lib/has_many.es6 +95 -0
- data/app/assets/javascripts/active_admin/lib/modal_dialog.es6 +61 -0
- data/app/assets/javascripts/active_admin/lib/per_page.es6 +47 -0
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.es6 +36 -0
- data/app/assets/stylesheets/active_admin/_forms.scss +2 -14
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +0 -5
- data/app/assets/stylesheets/active_admin/components/_tabs.scss +1 -1
- data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +1 -1
- data/app/views/active_admin/devise/confirmations/new.html.erb +1 -1
- data/app/views/active_admin/devise/passwords/edit.html.erb +1 -1
- data/app/views/active_admin/devise/passwords/new.html.erb +1 -1
- data/app/views/active_admin/devise/registrations/new.html.erb +1 -2
- data/app/views/active_admin/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/active_admin/devise/unlocks/new.html.erb +1 -1
- data/app/views/kaminari/active_admin_countless/_first_page.html.erb +11 -0
- data/app/views/kaminari/active_admin_countless/_gap.html.erb +8 -0
- data/app/views/kaminari/active_admin_countless/_next_page.html.erb +11 -0
- data/app/views/kaminari/active_admin_countless/_page.html.erb +12 -0
- data/app/views/kaminari/active_admin_countless/_paginator.html.erb +24 -0
- data/app/views/kaminari/active_admin_countless/_prev_page.html.erb +11 -0
- data/app/views/layouts/active_admin_logged_out.html.erb +1 -1
- data/config/locales/ar.yml +3 -2
- data/config/locales/bg.yml +1 -1
- data/config/locales/bs.yml +1 -0
- data/config/locales/ca.yml +1 -1
- data/config/locales/cs.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de-CH.yml +1 -0
- data/config/locales/de.yml +1 -0
- data/config/locales/el.yml +1 -0
- data/config/locales/en-CA.yml +1 -0
- data/config/locales/en-GB.yml +1 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +1 -0
- data/config/locales/es.yml +1 -0
- data/config/locales/fa.yml +1 -0
- data/config/locales/fi.yml +1 -0
- data/config/locales/fr.yml +2 -1
- data/config/locales/he.yml +1 -1
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +5 -0
- data/config/locales/id.yml +1 -0
- data/config/locales/it.yml +1 -0
- data/config/locales/ja.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt.yml +3 -2
- data/config/locales/lv.yml +1 -0
- data/config/locales/mk.yml +134 -0
- data/config/locales/nb.yml +1 -0
- data/config/locales/nl.yml +1 -0
- data/config/locales/pl.yml +1 -0
- data/config/locales/pt-BR.yml +1 -0
- data/config/locales/pt-PT.yml +1 -0
- data/config/locales/ro.yml +1 -0
- data/config/locales/ru.yml +1 -0
- data/config/locales/sk.yml +1 -0
- data/config/locales/sv-SE.yml +1 -0
- data/config/locales/tr.yml +1 -0
- data/config/locales/uk.yml +3 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +1 -0
- data/config/locales/zh-TW.yml +1 -0
- data/docs/0-installation.md +2 -2
- data/docs/12-arbre-components.md +13 -0
- data/docs/13-authorization-adapter.md +6 -6
- data/docs/2-resource-customization.md +1 -1
- data/docs/3-index-pages/index-as-table.md +7 -0
- data/docs/CNAME +1 -1
- data/docs/Gemfile +0 -1
- data/docs/Gemfile.lock +3 -4
- data/docs/_config.yml +2 -0
- data/docs/_includes/top-menu.html +2 -2
- data/docs/index.html +109 -8
- data/docs/stylesheets/main.css +29 -0
- data/lib/active_admin.rb +10 -4
- data/lib/active_admin/application.rb +11 -18
- data/lib/active_admin/application_settings.rb +3 -0
- data/lib/active_admin/asset_registration.rb +0 -8
- data/lib/active_admin/base_controller.rb +6 -6
- data/lib/active_admin/base_controller/authorization.rb +3 -4
- data/lib/active_admin/batch_actions/controller.rb +2 -2
- data/lib/active_admin/batch_actions/resource_extension.rb +9 -5
- data/lib/active_admin/callbacks.rb +1 -1
- data/lib/active_admin/controller_action.rb +2 -1
- data/lib/active_admin/csv_builder.rb +4 -3
- data/lib/active_admin/dependency.rb +3 -75
- data/lib/active_admin/dsl.rb +1 -8
- data/lib/active_admin/error.rb +4 -2
- data/lib/active_admin/filters/active_filter.rb +5 -4
- data/lib/active_admin/filters/active_sidebar.rb +5 -1
- data/lib/active_admin/filters/forms.rb +2 -2
- data/lib/active_admin/filters/formtastic_addons.rb +1 -1
- data/lib/active_admin/filters/resource_extension.rb +3 -3
- data/lib/active_admin/form_builder.rb +3 -3
- data/lib/active_admin/generators/boilerplate.rb +12 -4
- data/lib/active_admin/helpers/scope_chain.rb +1 -0
- data/lib/active_admin/inputs/datepicker_input.rb +1 -1
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +2 -2
- data/lib/active_admin/menu_item.rb +1 -1
- data/lib/active_admin/namespace.rb +2 -2
- data/lib/active_admin/namespace_settings.rb +7 -4
- data/lib/active_admin/orm/active_record/comments.rb +4 -4
- data/lib/active_admin/orm/active_record/comments/comment.rb +2 -2
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +10 -5
- data/lib/active_admin/page_dsl.rb +1 -1
- data/lib/active_admin/page_presenter.rb +2 -1
- data/lib/active_admin/pundit_adapter.rb +18 -5
- data/lib/active_admin/resource.rb +17 -3
- data/lib/active_admin/resource/action_items.rb +1 -1
- data/lib/active_admin/resource/attributes.rb +7 -4
- data/lib/active_admin/resource/belongs_to.rb +6 -1
- data/lib/active_admin/resource/menu.rb +3 -3
- data/lib/active_admin/resource/model.rb +15 -0
- data/lib/active_admin/resource/naming.rb +3 -3
- data/lib/active_admin/resource/routes.rb +20 -7
- data/lib/active_admin/resource/scopes.rb +3 -3
- data/lib/active_admin/resource/sidebars.rb +1 -1
- data/lib/active_admin/resource_collection.rb +2 -2
- data/lib/active_admin/resource_controller.rb +2 -0
- data/lib/active_admin/resource_controller/action_builder.rb +10 -0
- data/lib/active_admin/resource_controller/polymorphic_routes.rb +36 -0
- data/lib/active_admin/resource_controller/resource_class_methods.rb +2 -0
- data/lib/active_admin/resource_controller/scoping.rb +1 -1
- data/lib/active_admin/resource_dsl.rb +6 -4
- data/lib/active_admin/router.rb +3 -2
- data/lib/active_admin/scope.rb +11 -7
- data/lib/active_admin/settings_node.rb +1 -1
- data/lib/active_admin/sidebar_section.rb +3 -1
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_helpers.rb +1 -1
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +2 -2
- data/lib/active_admin/view_helpers/display_helper.rb +13 -4
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +1 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +3 -0
- data/lib/active_admin/views.rb +1 -1
- data/lib/active_admin/views/components/active_admin_form.rb +7 -1
- data/lib/active_admin/views/components/attributes_table.rb +3 -3
- data/lib/active_admin/views/components/paginated_collection.rb +2 -2
- data/lib/active_admin/views/components/sidebar_section.rb +0 -3
- data/lib/active_admin/views/components/status_tag.rb +6 -19
- data/lib/active_admin/views/components/table_for.rb +2 -2
- data/lib/active_admin/views/components/tabs.rb +11 -2
- data/lib/active_admin/views/footer.rb +1 -1
- data/lib/active_admin/views/index_as_table.rb +12 -4
- data/lib/active_admin/views/pages/base.rb +3 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +2 -2
- data/lib/generators/active_admin/assets/templates/active_admin.js +1 -0
- data/lib/generators/active_admin/install/install_generator.rb +6 -2
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +24 -2
- data/lib/generators/active_admin/install/templates/dashboard.rb +2 -3
- data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb.erb +1 -15
- data/lib/generators/active_admin/page/page_generator.rb +1 -1
- data/lib/generators/active_admin/resource/resource_generator.rb +1 -1
- data/lib/generators/active_admin/resource/templates/admin.rb.erb +40 -37
- data/lib/ransack_ext.rb +3 -3
- data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +80 -0
- data/vendor/assets/javascripts/jquery-ui/form.js +22 -0
- data/vendor/assets/javascripts/jquery-ui/labels.js +65 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +274 -283
- metadata +113 -100
- data/.circleci/config.yml +0 -467
- data/.github/ISSUE_TEMPLATE.md +0 -20
- data/.gitignore +0 -46
- data/.mdlrc +0 -1
- data/.rspec +0 -1
- data/.rspec_parallel +0 -2
- data/.rubocop.yml +0 -94
- data/.simplecov +0 -11
- data/.yardopts +0 -7
- data/Gemfile +0 -10
- data/Gemfile.common +0 -53
- data/Gemfile.lock +0 -431
- data/Rakefile +0 -23
- data/activeadmin.gemspec +0 -32
- data/app/assets/javascripts/active_admin/base.js.coffee +0 -13
- data/app/assets/javascripts/active_admin/ext/jquery-ui.js.coffee +0 -6
- data/app/assets/javascripts/active_admin/ext/jquery.js.coffee +0 -7
- data/app/assets/javascripts/active_admin/initializers/batch_actions.js.coffee +0 -11
- data/app/assets/javascripts/active_admin/initializers/datepicker.js.coffee +0 -14
- data/app/assets/javascripts/active_admin/initializers/filters.js.coffee +0 -26
- data/app/assets/javascripts/active_admin/initializers/tabs.js.coffee +0 -7
- data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +0 -42
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +0 -46
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +0 -104
- data/app/assets/javascripts/active_admin/lib/flash.js.coffee +0 -19
- data/app/assets/javascripts/active_admin/lib/has_many.js.coffee +0 -79
- data/app/assets/javascripts/active_admin/lib/modal_dialog.js.coffee +0 -45
- data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +0 -46
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +0 -22
- data/bin/install_chromedriver.sh +0 -17
- data/codecov.yml +0 -25
- data/config/i18n-tasks.yml +0 -26
- data/config/mdl_style.rb +0 -11
- data/cucumber.yml +0 -7
- data/gemfiles/rails_42.gemfile +0 -10
- data/gemfiles/rails_42.gemfile.lock +0 -410
- data/gemfiles/rails_50.gemfile +0 -10
- data/gemfiles/rails_50.gemfile.lock +0 -424
- data/gemfiles/rails_51.gemfile +0 -10
- data/gemfiles/rails_51.gemfile.lock +0 -423
- data/lib/active_admin/event.rb +0 -24
- data/lib/active_admin/helpers/output_safety_helper.rb +0 -35
- data/lib/active_admin/reloader.rb +0 -25
- data/lib/bug_report_templates/active_admin_master.rb +0 -111
- data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +0 -1
- data/tasks/application_generator.rb +0 -48
- data/tasks/docs.rake +0 -64
- data/tasks/gemfiles.rake +0 -8
- data/tasks/lint.rake +0 -110
- data/tasks/local.rake +0 -27
- data/tasks/test.rake +0 -43
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c8782460aa60e1293d44be5e3b998002e34794150cebf3c4effc6ba409149d8
|
4
|
+
data.tar.gz: b5834e4dc64f9043142376093ace0ddf0af7119f1a4dbba257ed344a4ac7079a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c55ad8c616ffee8776434ac4626351a4e789a9cb4d0771da2c548517d9854c5c3fa66f3e9b856831c625bc8f0f8c6afe85d3cf9f28101ec54467fce8d97b43cc
|
7
|
+
data.tar.gz: 336e001de67c48174e8611f20007dc2a762eac47f09a4d6b3ad4ee6deb090410d072c58d1e3f61e8fc4a4cf1615e4a633f8210abd93979dd07a2d55f2510d4ef
|
data/CHANGELOG.md
CHANGED
@@ -2,112 +2,219 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
-
##
|
5
|
+
## 2.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.2.0..v2.3.0)
|
6
|
+
|
7
|
+
### Enhancements
|
8
|
+
|
9
|
+
#### Minor
|
10
|
+
|
11
|
+
* Bump minimum ransack requirement to make sure everyone gets a version that works ok with all supported versions of Rails. [#5831] by [@deivid-rodriguez]
|
6
12
|
|
7
13
|
### Bug Fixes
|
8
14
|
|
9
|
-
* Fix `
|
15
|
+
* Fix CSVBuilder not respecting `ActiveAdmin.application.csv_options = { humanize_name: false }` setting. [#5800] by [@HappyKadaver]
|
16
|
+
* Fix crash when displaying current filters after filtering by a nested resource. [#5816] by [@deivid-rodriguez]
|
17
|
+
* Fix pagination when `pagination_total` is false to not show a "Last" link, since it's incorrect because we don't have the total pages information. [#5822] by [@deivid-rodriguez]
|
18
|
+
* Fix optional nested resources causing incorrect routes to be generated, when renamed resources (through `:as` option) are involved. [#5826] by [@ndbroadbent], [@Kris-LIBIS] and [@deivid-rodriguez]
|
19
|
+
* Fix double modal issue in applications using turbolinks 5. [#5842] by [@sgara]
|
20
|
+
|
21
|
+
## 2.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.1.0..v2.2.0)
|
10
22
|
|
11
|
-
|
23
|
+
### Enhancements
|
24
|
+
|
25
|
+
#### Minor
|
26
|
+
|
27
|
+
* The `status_tag` component now supports different labels for `false` and `nil` boolean cases through the locale. Both default to display "No" for backwards compatibility. [#5794] by [@javierjulio]
|
28
|
+
* Add Macedonian locale. [#5710] by [@violeta-p]
|
12
29
|
|
13
30
|
### Bug Fixes
|
14
31
|
|
15
|
-
* Fix
|
32
|
+
* Fix pundit policy retrieving for static pages when the pundit namespace is :active_admin. [#5777] by [@kwent]
|
33
|
+
* Fix show page title not being properly escaped if title's content included HTML. [#5802] by [@deivid-rodriguez]
|
34
|
+
* Revert [21b6138f] from [#5740] since it actually caused the performance in development to regress. [#5801] by [@deivid-rodriguez]
|
16
35
|
|
17
|
-
## 1.
|
36
|
+
## 2.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0..v2.1.0)
|
37
|
+
|
38
|
+
### Bug Fixes
|
39
|
+
|
40
|
+
* Ensure application gets reloaded only once. [#5740] by [@jscheid]
|
41
|
+
* Crash when rendering comments from a custom controller block. [#5758] by [@deivid-rodriguez]
|
42
|
+
* Switch `sass` dependency to `sassc-rails`, since `sass` is no longer supported and since it restores support for directly importing `css` files. [#5504] by [@deivid-rodriguez]
|
43
|
+
|
44
|
+
### Removals
|
45
|
+
|
46
|
+
* Support for ruby 2.3 has been removed. [#5751] by [@deivid-rodriguez]
|
47
|
+
|
48
|
+
## 2.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc2..v2.0.0)
|
49
|
+
|
50
|
+
_No changes_.
|
51
|
+
|
52
|
+
## 2.0.0.rc2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc1..v2.0.0.rc2)
|
53
|
+
|
54
|
+
### Enhancements
|
55
|
+
|
56
|
+
#### Minor
|
57
|
+
|
58
|
+
* Require arbre `~> 1.2, >= 1.2.1`. [#5726] by [@ionut998], and [#5738] by [@deivid-rodriguez]
|
59
|
+
|
60
|
+
## 2.0.0.rc1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.3..v2.0.0.rc1)
|
18
61
|
|
19
62
|
### Enhancements
|
20
63
|
|
64
|
+
* Add your own content to the site `<head>`, like analytics. [#5590] by [@buren]
|
65
|
+
|
66
|
+
```ruby
|
67
|
+
ActiveAdmin.setup do |config|
|
68
|
+
config.head = ''.html_safe
|
69
|
+
end
|
70
|
+
```
|
71
|
+
|
72
|
+
* Consider authorization when displaying comments in show page. [#5555] by [@amiuhle]
|
73
|
+
|
21
74
|
#### Minor
|
22
75
|
|
23
|
-
* Add
|
24
|
-
*
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
*
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
*
|
33
|
-
*
|
34
|
-
*
|
35
|
-
*
|
36
|
-
*
|
37
|
-
*
|
38
|
-
|
39
|
-
|
76
|
+
* Add better support for rendering lists. [#5370] by [@dkniffin]
|
77
|
+
* Undeprecate `config.register_stylesheet` and `config.register_javascript` for lack of better solution for including external assets. It might be reevaluated in the future. [#5662] by [@deivid-rodriguez]
|
78
|
+
|
79
|
+
### Security Fixes
|
80
|
+
|
81
|
+
* Prevent leaking hashed passwords via user CSV export and adds a config option for sensitive attributes. [#5486] by [@chrp]
|
82
|
+
|
83
|
+
### Bug Fixes
|
84
|
+
|
85
|
+
* Fix for paginated collections with `per_page: Array, pagination_total: false`. [#5627] by [@bartoszkopinski]
|
86
|
+
* Restrict ransack requirement to >= 2.1.1 to play nice with Rails 5.2.2. [#5632] by [@deivid-rodriguez]
|
87
|
+
* Bad interpolation variables on pagination keys in Lithuanian translation. [#5631] by [@deivid-rodriguez]
|
88
|
+
* Tabs are not correctly created when using non-transliteratable characters as title. [#5650] by [@panasyuk]
|
89
|
+
* Sidebar title internationalization. [#5417] by [@WaKeMaTTa]
|
90
|
+
* `filter` labels not allowing a `Proc` to be passed. [#5418] by [@WaKeMaTTa]
|
91
|
+
|
92
|
+
### Removals
|
93
|
+
|
94
|
+
* Rails 4.2 support has been dropped. [#5104] by [@javierjulio] and [@deivid-rodriguez]
|
95
|
+
* Dependency on coffee-rails has been removed. [#5081] by [@javierjulio]
|
96
|
+
If your application uses coffescript but was relying on ActiveAdmin to provide
|
97
|
+
the dependency, you need to add the `coffee-script` gem to your `Gemfile` to
|
98
|
+
restore it. If your only usage of coffescript was the
|
99
|
+
`active_admin.js.coffee` generated by ActiveAdmin's generator, you can also
|
100
|
+
convert that file to plain JS (`//= require active_admin/base` if you
|
101
|
+
didn't add any stuff to it).
|
102
|
+
* Devise 3 support has been dropped. [#5608] by [@deivid-rodriguez] and [@javierjulio]
|
103
|
+
* `action_item` without a name has been removed. [#5099] by [@javierjulio]
|
104
|
+
|
105
|
+
## 1.4.3 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.2..v1.4.3)
|
106
|
+
|
107
|
+
### Bug Fixes
|
108
|
+
|
109
|
+
* Fix `form` parameter to `batch_action` no longer accepting procs. [#5611] by [@buren] and [@deivid-rodriguez]
|
110
|
+
* Fix passing a proc to `scope_to`. [#5611] by [@deivid-rodriguez]
|
111
|
+
|
112
|
+
## 1.4.2 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.1..v1.4.2)
|
113
|
+
|
114
|
+
### Bug Fixes
|
115
|
+
|
116
|
+
* Fix `input_html` filter option evaluated only once. [#5376] by [@kjeldahl]
|
117
|
+
|
118
|
+
## 1.4.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.0..v1.4.1)
|
119
|
+
|
120
|
+
### Bug Fixes
|
121
|
+
|
122
|
+
* Fix menu item link with method delete. [#5583] by [@tiagotex]
|
123
|
+
|
124
|
+
## 1.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.1..v1.4.0)
|
125
|
+
|
126
|
+
### Enhancements
|
127
|
+
|
128
|
+
#### Minor
|
129
|
+
|
130
|
+
* Add missing I18n for comments. [#5458], [#5461] by [@mauriciopasquier]
|
131
|
+
* Fix batch_actions.delete_confirmation translation in zh-CN.yml. [#5453] by [@ShallmentMo]
|
132
|
+
* Add some missing italian translations. [#5433] by [@stefsava]
|
133
|
+
* Enhance some chinese translations. [#5413] by [@shouya]
|
134
|
+
* Add missing filter predicate translations to nb. [#5357] by [@rogerkk]
|
135
|
+
* Add missing norwegian comment translations. [#5375] by [@rogerkk]
|
136
|
+
* Add missing dutch translations. [#5368] by [@dennisvdvliet]
|
137
|
+
* Add missing german translations. [#5341] by [@eikes]
|
138
|
+
* Add missing spanish translation. [#5336] by [@mconiglio]
|
139
|
+
* Add from and to predicates for russian language. [#5330] by [@glebtv]
|
140
|
+
* Fix typo in finnish translation. [#5320] by [@JiiHu]
|
141
|
+
* Add missing turkish translations. [#5295] by [@kobeumut]
|
142
|
+
* Add missing chinese translations. [#5266] by [@jasl]
|
143
|
+
* Allow proc label in datepicker input. [#5408] by [@tiagotex]
|
144
|
+
* Add `group` attribute to scopes in order to show them in grouped. [#5359] by [@leio10]
|
145
|
+
* Add missing polish translations and improve existing ones. [#5537] by [@Wowu]
|
146
|
+
* Add `priority` option to `action_item`. [#5334] by [@andreslemik]
|
40
147
|
|
41
148
|
### Bug Fixes
|
42
149
|
|
43
|
-
* Fixed the string representation of the resolved `sort_key` when no explicit `sortable` attribute is passed. [#5464]
|
44
|
-
* Fixed docs on the column `sortable` attribute (which actually doesn't have to be explicitly specified when a block is passed to column). [#5464]
|
45
|
-
* Fixed `if:` scope option when a lambda is passed. [#5501]
|
46
|
-
* Comment validation adding redundant errors when resource is missing. [#5517]
|
47
|
-
* Fixed resource filtering by association when the resource has custom primary key. [#5446]
|
48
|
-
* Fixed "create anoter" checkbox styling. [#5324]
|
150
|
+
* Fixed the string representation of the resolved `sort_key` when no explicit `sortable` attribute is passed. [#5464] by [@chumakoff]
|
151
|
+
* Fixed docs on the column `sortable` attribute (which actually doesn't have to be explicitly specified when a block is passed to column). [#5464] by [@chumakoff]
|
152
|
+
* Fixed `if:` scope option when a lambda is passed. [#5501] by [@deivid-rodriguez]
|
153
|
+
* Comment validation adding redundant errors when resource is missing. [#5517] by [@deivid-rodriguez]
|
154
|
+
* Fixed resource filtering by association when the resource has custom primary key. [#5446] by [@wasifhossain]
|
155
|
+
* Fixed "create anoter" checkbox styling. [#5324] by [@faucct]
|
49
156
|
|
50
|
-
## 1.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.0
|
157
|
+
## 1.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.0..v1.3.1)
|
51
158
|
|
52
159
|
### Bug Fixes
|
53
160
|
|
54
|
-
* gemspec should have more permissive ransack dependency. [#5448]
|
161
|
+
* gemspec should have more permissive ransack dependency. [#5448] by [@varyonic]
|
55
162
|
|
56
|
-
## 1.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.1
|
163
|
+
## 1.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.1..v1.3.0)
|
57
164
|
|
58
165
|
### Enhancements
|
59
166
|
|
60
167
|
#### Major
|
61
168
|
|
62
|
-
* Rails 5.2 support [#5343]
|
169
|
+
* Rails 5.2 support [#5343] by [@varyonic], [#5399], [#5401] by [@zorab47]
|
63
170
|
|
64
|
-
## 1.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.0
|
171
|
+
## 1.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.0..v1.2.1)
|
65
172
|
|
66
173
|
### Bug Fixes
|
67
174
|
|
68
|
-
* Resolve issue with [#5275]
|
175
|
+
* Resolve issue with [#5275] preventing XSS in filters sidebar. [#5299] by [@faucct]
|
69
176
|
|
70
|
-
## 1.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.1.0
|
177
|
+
## 1.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.1.0..v1.2.0)
|
71
178
|
|
72
179
|
### Enhancements
|
73
180
|
|
74
181
|
#### Minor
|
75
182
|
|
76
|
-
* Do not display pagination info when there are no comments. [#5119]
|
77
|
-
* Revert generated config files to pluralized. [#5120]
|
78
|
-
* Warn when action definition overwrites controller method. [#5167]
|
79
|
-
* Better performance of comments show view. [#5208]
|
80
|
-
* Mitigate memory bloat [#4118]
|
81
|
-
* Fix issue applying custom decorations. [#5253]
|
82
|
-
* Brazilian locale updated. [#5125]
|
83
|
-
* Japanese locale updated. [#5143]
|
84
|
-
* Italian locale updated. [#5180]
|
85
|
-
* Swedish locale updated. [#5187]
|
86
|
-
* Vietnamese locale updated. [#5194]
|
87
|
-
* Esperanto locale added. [#5210]
|
183
|
+
* Do not display pagination info when there are no comments. [#5119] by [@alex-bogomolov]
|
184
|
+
* Revert generated config files to pluralized. [#5120] by [@varyonic], [#5137] by [@deivid-rodriguez]
|
185
|
+
* Warn when action definition overwrites controller method. [#5167] by [@aarek]
|
186
|
+
* Better performance of comments show view. [#5208] by [@dhyegofernando]
|
187
|
+
* Mitigate memory bloat [#4118] with CSV exports. [#5251] by [@f1sherman]
|
188
|
+
* Fix issue applying custom decorations. [#5253] by [@faucct]
|
189
|
+
* Brazilian locale updated. [#5125] by [@renotocn]
|
190
|
+
* Japanese locale updated. [#5143] by [@5t111111], [#5157] by [@innparusu95]
|
191
|
+
* Italian locale updated. [#5180] by [@blocknotes]
|
192
|
+
* Swedish locale updated. [#5187] by [@jawa]
|
193
|
+
* Vietnamese locale updated. [#5194] by [@Nguyenanh]
|
194
|
+
* Esperanto locale added. [#5210] by [@RobinvanderVliet]
|
88
195
|
|
89
196
|
### Bug Fixes
|
90
197
|
|
91
|
-
* Fix a couple of issues rendering filter labels. [#5223]
|
92
|
-
* Prevent NameError when filtering on a namespaced association. [#5240]
|
93
|
-
* Fix undefined method error in Ransack when building filters. [#5238]
|
94
|
-
* Fixed [#5198]
|
95
|
-
* Sanitize display_name. [#5284]
|
198
|
+
* Fix a couple of issues rendering filter labels. [#5223] by [@wspurgin]
|
199
|
+
* Prevent NameError when filtering on a namespaced association. [#5240] by [@DanielHeath]
|
200
|
+
* Fix undefined method error in Ransack when building filters. [#5238] by [@wspurgin]
|
201
|
+
* Fixed [#5198] Prevent XSS on sidebar's current filter rendering. [#5275] by [@deivid-rodriguez]
|
202
|
+
* Sanitize display_name. [#5284] by [@markstory]
|
96
203
|
|
97
|
-
## 1.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.0.0
|
204
|
+
## 1.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.0.0..v1.1.0)
|
98
205
|
|
99
206
|
### Bug Fixes
|
100
207
|
|
101
|
-
* Fixed [#5093]
|
102
|
-
* Fixed [#4173]
|
103
|
-
* Fixed [#5043]
|
104
|
-
* Fixed [#3894]
|
208
|
+
* Fixed [#5093] Handle table prefix & table suffix for `ActiveAdminComment` model
|
209
|
+
* Fixed [#4173] by including the default Kaminari templates. [#5069] by [@javierjulio]
|
210
|
+
* Fixed [#5043]. Do not crash in sidebar rendering when a default scope is not specified. [#5044] by [@Fivell]
|
211
|
+
* Fixed [#3894]. Make tab's component work with non-ascii titles. [#5046] by [@Fivell]
|
105
212
|
|
106
213
|
### Removals
|
107
214
|
|
108
|
-
* Ruby 2.1 support has been dropped. [#5003]
|
109
|
-
* Replaced `sass-rails` with `sass` dependency. [#5037]
|
110
|
-
* Removed `jquery-ui-rails` as a dependency. [#5052]
|
215
|
+
* Ruby 2.1 support has been dropped. [#5003] by [@deivid-rodriguez]
|
216
|
+
* Replaced `sass-rails` with `sass` dependency. [#5037] by [@javierjulio]
|
217
|
+
* Removed `jquery-ui-rails` as a dependency. [#5052] by [@javierjulio]
|
111
218
|
The specific jQuery UI assets used are now within the vendor directory. This
|
112
219
|
will be replaced by alternatives and dropped entirely in a major release.
|
113
220
|
Please remove any direct inclusions of `//= require jquery-ui`. This allows us
|
@@ -115,134 +222,136 @@
|
|
115
222
|
|
116
223
|
### Deprecations
|
117
224
|
|
118
|
-
* Deprecated `config.register_stylesheet` and `config.register_javascript`. Import your CSS and JS files in `active_admin.scss` or `active_admin.js`. [#5060]
|
119
|
-
* Deprecated `type` param from `status_tag` and related CSS classes [#4989]
|
120
|
-
|
225
|
+
* Deprecated `config.register_stylesheet` and `config.register_javascript`. Import your CSS and JS files in `active_admin.scss` or `active_admin.js`. [#5060] by [@javierjulio]
|
226
|
+
* Deprecated `type` param from `status_tag` and related CSS classes [#4989] by [@javierjulio]
|
227
|
+
The method signature has changed from:
|
121
228
|
|
122
|
-
|
123
|
-
|
124
|
-
|
229
|
+
```ruby
|
230
|
+
status_tag(status, :ok, class: 'completed', label: 'on')
|
231
|
+
```
|
125
232
|
|
126
|
-
|
233
|
+
to:
|
127
234
|
|
128
|
-
|
129
|
-
|
130
|
-
|
235
|
+
```ruby
|
236
|
+
status_tag(status, class: 'completed ok', label: 'on')
|
237
|
+
```
|
131
238
|
|
132
|
-
|
239
|
+
The following CSS classes have been deprecated and will be removed in the future:
|
133
240
|
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
241
|
+
```css
|
242
|
+
.status_tag {
|
243
|
+
&.ok, &.published, &.complete, &.completed, &.green { background: #8daa92; }
|
244
|
+
&.warn, &.warning, &.orange { background: #e29b20; }
|
245
|
+
&.error, &.errored, &.red { background: #d45f53; }
|
246
|
+
}
|
247
|
+
```
|
141
248
|
|
142
249
|
### Enhancements
|
143
250
|
|
144
251
|
#### Minor
|
145
252
|
|
146
|
-
* Support proc as an input_html option value when declaring filters. [#5029]
|
147
|
-
* Base localization support, better associations handling for active filters sidebar. [#4951]
|
148
|
-
* Allow AA scopes to return paginated collections. [#4996]
|
149
|
-
* Added `scopes_show_count` configuration to setup show_count attribute for scopes globally. [#4950]
|
150
|
-
* Allow custom panel title given with `attributes_table`. [#4940]
|
151
|
-
* Allow passing a class to `action_item` block. [#4997]
|
152
|
-
* Add pagination to the comments section. [#5088]
|
253
|
+
* Support proc as an input_html option value when declaring filters. [#5029] by [@Fivell]
|
254
|
+
* Base localization support, better associations handling for active filters sidebar. [#4951] by [@Fivell]
|
255
|
+
* Allow AA scopes to return paginated collections. [#4996] by [@Fivell]
|
256
|
+
* Added `scopes_show_count` configuration to setup show_count attribute for scopes globally. [#4950] by [@Fivell]
|
257
|
+
* Allow custom panel title given with `attributes_table`. [#4940] by [@ajw725]
|
258
|
+
* Allow passing a class to `action_item` block. [#4997] by [@Fivell]
|
259
|
+
* Add pagination to the comments section. [#5088] by [@alex-bogomolov]
|
153
260
|
|
154
|
-
## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3
|
261
|
+
## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3..v1.0.0)
|
155
262
|
|
156
263
|
### Breaking Changes
|
157
264
|
|
158
|
-
* Rename `allow_comments` to `comments` for more consistent naming. [#3695]
|
159
|
-
* JavaScript `window.AA` has been removed, use `window.ActiveAdmin`. [#3606]
|
160
|
-
* `f.form_buffers` has been removed. [#3486]
|
161
|
-
* Iconic has been removed. [#3553]
|
162
|
-
* `config.show_comments_in_menu` has been removed, see `config.comments_menu`. [#4187]
|
163
|
-
* Rails 3.2 & Ruby 1.9.3 support has been dropped. [#4848]
|
164
|
-
* Ruby 2.0.0 support has been dropped. [#4851]
|
165
|
-
* Rails 4.0 & 4.1 support has been dropped. [#4870]
|
265
|
+
* Rename `allow_comments` to `comments` for more consistent naming. [#3695] by [@pranas]
|
266
|
+
* JavaScript `window.AA` has been removed, use `window.ActiveAdmin`. [#3606] by [@timoschilling]
|
267
|
+
* `f.form_buffers` has been removed. [#3486] by [@varyonic]
|
268
|
+
* Iconic has been removed. [#3553] by [@timoschilling]
|
269
|
+
* `config.show_comments_in_menu` has been removed, see `config.comments_menu`. [#4187] by [@drn]
|
270
|
+
* Rails 3.2 & Ruby 1.9.3 support has been dropped. [#4848] by [@deivid-rodriguez]
|
271
|
+
* Ruby 2.0.0 support has been dropped. [#4851] by [@deivid-rodriguez]
|
272
|
+
* Rails 4.0 & 4.1 support has been dropped. [#4870] by [@deivid-rodriguez]
|
166
273
|
|
167
274
|
### Enhancements
|
168
275
|
|
169
276
|
#### Major
|
170
277
|
|
171
|
-
* Migration from Metasearch to Ransack. [#1979]
|
172
|
-
* Rails 4 support. [#2326]
|
173
|
-
* Rails 4.2 support. [#3731]
|
174
|
-
* Rails 5 support. [#4254]
|
175
|
-
* Rails 5.1 support. [#4882]
|
278
|
+
* Migration from Metasearch to Ransack. [#1979] by [@seanlinsley]
|
279
|
+
* Rails 4 support. [#2326] by many people :heart:
|
280
|
+
* Rails 4.2 support. [#3731] by [@gonzedge] and [@timoschilling]
|
281
|
+
* Rails 5 support. [#4254] by [@seanlinsley]
|
282
|
+
* Rails 5.1 support. [#4882] by [@varyonic]
|
176
283
|
|
177
284
|
#### Minor
|
178
285
|
|
179
|
-
* "Create another" checkbox for the new resource page. [#4477]
|
180
|
-
* Page supports belongs_to. [#4759]
|
181
|
-
* Support for custom sorting strategies. [#4768]
|
182
|
-
* Stream CSV downloads as they're generated. [#3038]
|
183
|
-
|
184
|
-
* Improved code reloading. [#3783]
|
185
|
-
* Do not auto link to inaccessible actions. [#3686]
|
186
|
-
* Allow to enable comments on per-resource basis. [#3695]
|
187
|
-
* Unify DSL for index `actions` and `actions dropdown: true`. [#3463]
|
188
|
-
* Add DSL method `includes` for `ActiveRecord::Relation#includes`. [#3464]
|
189
|
-
* BOM (byte order mark) configurable for CSV download. [#3519]
|
190
|
-
* Column block on table index is now sortable by default. [#3075]
|
191
|
-
* Allow Arbre to be used inside ActiveAdmin forms. [#3486]
|
192
|
-
* Make AA ORM-agnostic. [#2545]
|
193
|
-
* Add multi-record support to `attributes_table_for`. [#2544]
|
194
|
-
* Table CSS classes are now prefixed to prevent clashes. [#2532]
|
195
|
-
* Allow Inherited Resources shorthand for redirection. [#2001]
|
196
|
-
|
197
|
-
```ruby
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
end
|
286
|
+
* "Create another" checkbox for the new resource page. [#4477] by [@bolshakov]
|
287
|
+
* Page supports belongs_to. [#4759] by [@Fivell] and [@zorab47]
|
288
|
+
* Support for custom sorting strategies. [#4768] by [@Fivell]
|
289
|
+
* Stream CSV downloads as they're generated. [#3038] by [@craigmcnamara]
|
290
|
+
* Disable streaming in development for easier debugging. [#3535] by [@seanlinsley]
|
291
|
+
* Improved code reloading. [#3783] by [@chancancode]
|
292
|
+
* Do not auto link to inaccessible actions. [#3686] by [@pranas]
|
293
|
+
* Allow to enable comments on per-resource basis. [#3695] by [@pranas]
|
294
|
+
* Unify DSL for index `actions` and `actions dropdown: true`. [#3463] by [@timoschilling]
|
295
|
+
* Add DSL method `includes` for `ActiveRecord::Relation#includes`. [#3464] by [@timoschilling]
|
296
|
+
* BOM (byte order mark) configurable for CSV download. [#3519] by [@timoschilling]
|
297
|
+
* Column block on table index is now sortable by default. [#3075] by [@dmitry]
|
298
|
+
* Allow Arbre to be used inside ActiveAdmin forms. [#3486] by [@varyonic]
|
299
|
+
* Make AA ORM-agnostic. [#2545] by [@johnnyshields]
|
300
|
+
* Add multi-record support to `attributes_table_for`. [#2544] by [@zorab47]
|
301
|
+
* Table CSS classes are now prefixed to prevent clashes. [#2532] by [@TimPetricola]
|
302
|
+
* Allow Inherited Resources shorthand for redirection. [#2001] by [@seanlinsley]
|
303
|
+
|
304
|
+
```ruby
|
305
|
+
controller do
|
306
|
+
# Redirects to index page instead of rendering updated resource
|
307
|
+
def update
|
308
|
+
update!{ collection_path }
|
203
309
|
end
|
204
|
-
|
310
|
+
end
|
311
|
+
```
|
205
312
|
|
206
|
-
* Accept block for download links. [#2040]
|
313
|
+
* Accept block for download links. [#2040] by [@potatosalad]
|
207
314
|
|
208
|
-
```ruby
|
209
|
-
index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
|
210
|
-
```
|
315
|
+
```ruby
|
316
|
+
index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
|
317
|
+
```
|
211
318
|
|
212
|
-
* Comments menu can be customized via configuration passed to `config.comments_menu`. [#4187]
|
213
|
-
* Added `config.route_options` to namespace to customize routes. [#4731]
|
319
|
+
* Comments menu can be customized via configuration passed to `config.comments_menu`. [#4187] by [@drn]
|
320
|
+
* Added `config.route_options` to namespace to customize routes. [#4731] by [@stereoscott]
|
214
321
|
|
215
322
|
### Security Fixes
|
216
323
|
|
217
|
-
* Prevents access to formats that the user not permitted to see. [#4867]
|
218
|
-
* Prevents potential DOS attack via Ruby symbols. [#1926]
|
324
|
+
* Prevents access to formats that the user not permitted to see. [#4867] by [@Fivell] and [@timoschilling]
|
325
|
+
* Prevents potential DOS attack via Ruby symbols. [#1926] by [@seanlinsley]
|
219
326
|
* [this isn't an issue for those using Ruby >= 2.2](http://rubykaigi.org/2014/presentation/S-NarihiroNakamura)
|
220
327
|
|
221
328
|
### Bug Fixes
|
222
329
|
|
223
|
-
* Fixes filters for `has_many :through` relationships. [#2541]
|
224
|
-
* "New" action item now only shows up on the index page. bf659bc by [@seanlinsley]
|
225
|
-
* Fixes comment creation bug with aliased resources. 9a082486 by [@seanlinsley]
|
226
|
-
* Fixes the deletion of `:if` and `:unless` from filters. [#2523]
|
330
|
+
* Fixes filters for `has_many :through` relationships. [#2541] by [@shekibobo]
|
331
|
+
* "New" action item now only shows up on the index page. bf659bc by [@seanlinsley]
|
332
|
+
* Fixes comment creation bug with aliased resources. 9a082486 by [@seanlinsley]
|
333
|
+
* Fixes the deletion of `:if` and `:unless` from filters. [#2523] by [@PChambino]
|
227
334
|
|
228
335
|
### Deprecations
|
229
336
|
|
230
|
-
* `ActiveAdmin::Event` (`ActiveAdmin::EventDispatcher`). [#3435]
|
337
|
+
* `ActiveAdmin::Event` (`ActiveAdmin::EventDispatcher`). [#3435] by [@timoschilling]
|
231
338
|
`ActiveAdmin::Event` will be removed in a future version, ActiveAdmin switched
|
232
339
|
to use `ActiveSupport::Notifications`
|
233
340
|
NOTE: The blog parameters has changed:
|
234
341
|
|
235
|
-
```ruby
|
236
|
-
ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
|
237
|
-
|
238
|
-
end
|
342
|
+
```ruby
|
343
|
+
ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
|
344
|
+
# some code
|
345
|
+
end
|
346
|
+
|
347
|
+
ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"
|
348
|
+
```
|
239
349
|
|
240
|
-
|
241
|
-
```
|
350
|
+
* `action_item` without a name, to introduce a solution for removing action items (`remove_action_item(name)`). [#3091] by [@amiel]
|
242
351
|
|
243
352
|
## Previous Changes
|
244
353
|
|
245
|
-
Please check [0-6-stable]
|
354
|
+
Please check [0-6-stable] for previous changes.
|
246
355
|
|
247
356
|
[0-6-stable]: https://github.com/activeadmin/activeadmin/blob/0-6-stable/CHANGELOG.md
|
248
357
|
|
@@ -277,6 +386,9 @@ Please check [0-6-stable][] for previous changes.
|
|
277
386
|
[#5043]: https://github.com/activeadmin/activeadmin/issues/5043
|
278
387
|
[#5198]: https://github.com/activeadmin/activeadmin/issues/5198
|
279
388
|
|
389
|
+
[21b6138f]: https://github.com/activeadmin/activeadmin/pull/5740/commits/21b6138fdcf58cd54c3f1d3f60cb1127b174b40f
|
390
|
+
|
391
|
+
[#3091]: https://github.com/activeadmin/activeadmin/pull/3091
|
280
392
|
[#3435]: https://github.com/activeadmin/activeadmin/pull/3435
|
281
393
|
[#4477]: https://github.com/activeadmin/activeadmin/pull/4477
|
282
394
|
[#4731]: https://github.com/activeadmin/activeadmin/pull/4731
|
@@ -301,8 +413,11 @@ Please check [0-6-stable][] for previous changes.
|
|
301
413
|
[#5052]: https://github.com/activeadmin/activeadmin/pull/5052
|
302
414
|
[#5060]: https://github.com/activeadmin/activeadmin/pull/5060
|
303
415
|
[#5069]: https://github.com/activeadmin/activeadmin/pull/5069
|
416
|
+
[#5081]: https://github.com/activeadmin/activeadmin/pull/5081
|
304
417
|
[#5088]: https://github.com/activeadmin/activeadmin/pull/5088
|
305
418
|
[#5093]: https://github.com/activeadmin/activeadmin/pull/5093
|
419
|
+
[#5099]: https://github.com/activeadmin/activeadmin/pull/5099
|
420
|
+
[#5104]: https://github.com/activeadmin/activeadmin/pull/5104
|
306
421
|
[#5119]: https://github.com/activeadmin/activeadmin/pull/5119
|
307
422
|
[#5120]: https://github.com/activeadmin/activeadmin/pull/5120
|
308
423
|
[#5125]: https://github.com/activeadmin/activeadmin/pull/5125
|
@@ -336,12 +451,15 @@ Please check [0-6-stable][] for previous changes.
|
|
336
451
|
[#5357]: https://github.com/activeadmin/activeadmin/pull/5357
|
337
452
|
[#5359]: https://github.com/activeadmin/activeadmin/pull/5359
|
338
453
|
[#5368]: https://github.com/activeadmin/activeadmin/pull/5368
|
454
|
+
[#5370]: https://github.com/activeadmin/activeadmin/pull/5370
|
339
455
|
[#5375]: https://github.com/activeadmin/activeadmin/pull/5375
|
340
456
|
[#5376]: https://github.com/activeadmin/activeadmin/pull/5376
|
341
457
|
[#5399]: https://github.com/activeadmin/activeadmin/pull/5399
|
342
458
|
[#5401]: https://github.com/activeadmin/activeadmin/pull/5401
|
343
459
|
[#5408]: https://github.com/activeadmin/activeadmin/pull/5408
|
344
460
|
[#5413]: https://github.com/activeadmin/activeadmin/pull/5413
|
461
|
+
[#5417]: https://github.com/activeadmin/activeadmin/pull/5417
|
462
|
+
[#5418]: https://github.com/activeadmin/activeadmin/pull/5418
|
345
463
|
[#5433]: https://github.com/activeadmin/activeadmin/pull/5433
|
346
464
|
[#5446]: https://github.com/activeadmin/activeadmin/pull/5446
|
347
465
|
[#5448]: https://github.com/activeadmin/activeadmin/pull/5448
|
@@ -349,18 +467,48 @@ Please check [0-6-stable][] for previous changes.
|
|
349
467
|
[#5458]: https://github.com/activeadmin/activeadmin/pull/5458
|
350
468
|
[#5461]: https://github.com/activeadmin/activeadmin/pull/5461
|
351
469
|
[#5464]: https://github.com/activeadmin/activeadmin/pull/5464
|
470
|
+
[#5486]: https://github.com/activeadmin/activeadmin/pull/5486
|
352
471
|
[#5501]: https://github.com/activeadmin/activeadmin/pull/5501
|
472
|
+
[#5504]: https://github.com/activeadmin/activeadmin/pull/5504
|
353
473
|
[#5517]: https://github.com/activeadmin/activeadmin/pull/5517
|
354
474
|
[#5537]: https://github.com/activeadmin/activeadmin/pull/5537
|
475
|
+
[#5555]: https://github.com/activeadmin/activeadmin/pull/5555
|
355
476
|
[#5583]: https://github.com/activeadmin/activeadmin/pull/5583
|
477
|
+
[#5608]: https://github.com/activeadmin/activeadmin/pull/5608
|
478
|
+
[#5611]: https://github.com/activeadmin/activeadmin/pull/5611
|
479
|
+
[#5627]: https://github.com/activeadmin/activeadmin/pull/5627
|
480
|
+
[#5631]: https://github.com/activeadmin/activeadmin/pull/5631
|
481
|
+
[#5632]: https://github.com/activeadmin/activeadmin/pull/5632
|
482
|
+
[#5650]: https://github.com/activeadmin/activeadmin/pull/5650
|
483
|
+
[#5590]: https://github.com/activeadmin/activeadmin/pull/5590
|
484
|
+
[#5662]: https://github.com/activeadmin/activeadmin/pull/5662
|
485
|
+
[#5710]: https://github.com/activeadmin/activeadmin/pull/5710
|
486
|
+
[#5726]: https://github.com/activeadmin/activeadmin/pull/5726
|
487
|
+
[#5738]: https://github.com/activeadmin/activeadmin/pull/5738
|
488
|
+
[#5740]: https://github.com/activeadmin/activeadmin/pull/5740
|
489
|
+
[#5751]: https://github.com/activeadmin/activeadmin/pull/5751
|
490
|
+
[#5758]: https://github.com/activeadmin/activeadmin/pull/5758
|
491
|
+
[#5777]: https://github.com/activeadmin/activeadmin/pull/5777
|
492
|
+
[#5794]: https://github.com/activeadmin/activeadmin/pull/5794
|
493
|
+
[#5800]: https://github.com/activeadmin/activeadmin/pull/5800
|
494
|
+
[#5801]: https://github.com/activeadmin/activeadmin/pull/5801
|
495
|
+
[#5802]: https://github.com/activeadmin/activeadmin/pull/5802
|
496
|
+
[#5816]: https://github.com/activeadmin/activeadmin/pull/5816
|
497
|
+
[#5822]: https://github.com/activeadmin/activeadmin/pull/5822
|
498
|
+
[#5826]: https://github.com/activeadmin/activeadmin/pull/5826
|
499
|
+
[#5831]: https://github.com/activeadmin/activeadmin/pull/5831
|
500
|
+
[#5842]: https://github.com/activeadmin/activeadmin/pull/5842
|
356
501
|
|
357
502
|
[@5t111111]: https://github.com/5t111111
|
358
503
|
[@aarek]: https://github.com/aarek
|
359
504
|
[@ajw725]: https://github.com/ajw725
|
360
505
|
[@alex-bogomolov]: https://github.com/alex-bogomolov
|
506
|
+
[@amiel]: https://github.com/amiel
|
507
|
+
[@amiuhle]: https://github.com/amiuhle
|
361
508
|
[@andreslemik]: https://github.com/andreslemik
|
362
509
|
[@blocknotes]: https://github.com/blocknotes
|
363
510
|
[@bolshakov]: https://github.com/bolshakov
|
511
|
+
[@buren]: https://github.com/buren
|
364
512
|
[@chancancode]: https://github.com/chancancode
|
365
513
|
[@chumakoff]: https://github.com/chumakoff
|
366
514
|
[@craigmcnamara]: https://github.com/craigmcnamara
|
@@ -368,6 +516,7 @@ Please check [0-6-stable][] for previous changes.
|
|
368
516
|
[@deivid-rodriguez]: https://github.com/deivid-rodriguez
|
369
517
|
[@dennisvdvliet]: https://github.com/dennisvdvliet
|
370
518
|
[@dhyegofernando]: https://github.com/dhyegofernando
|
519
|
+
[@dkniffin]: https://github.com/dkniffin
|
371
520
|
[@dmitry]: https://github.com/dmitry
|
372
521
|
[@drn]: https://github.com/drn
|
373
522
|
[@eikes]: https://github.com/eikes
|
@@ -376,7 +525,9 @@ Please check [0-6-stable][] for previous changes.
|
|
376
525
|
[@Fivell]: https://github.com/Fivell
|
377
526
|
[@glebtv]: https://github.com/glebtv
|
378
527
|
[@gonzedge]: https://github.com/gonzedge
|
528
|
+
[@HappyKadaver]: https://github.com/HappyKadaver
|
379
529
|
[@innparusu95]: https://github.com/innparusu95
|
530
|
+
[@ionut998]: https://github.com/ionut998
|
380
531
|
[@jasl]: https://github.com/jasl
|
381
532
|
[@javierjulio]: https://github.com/javierjulio
|
382
533
|
[@jawa]: https://github.com/jawa
|
@@ -384,6 +535,7 @@ Please check [0-6-stable][] for previous changes.
|
|
384
535
|
[@johnnyshields]: https://github.com/johnnyshields
|
385
536
|
[@kjeldahl]: https://github.com/kjeldahl
|
386
537
|
[@kobeumut]: https://github.com/kobeumut
|
538
|
+
[@kwent]: https://github.com/kwent
|
387
539
|
[@leio10]: https://github.com/leio10
|
388
540
|
[@markstory]: https://github.com/markstory
|
389
541
|
[@mauriciopasquier]: https://github.com/mauriciopasquier
|
@@ -400,11 +552,21 @@ Please check [0-6-stable][] for previous changes.
|
|
400
552
|
[@shekibobo]: https://github.com/shekibobo
|
401
553
|
[@shouya]: https://github.com/shouya
|
402
554
|
[@stefsava]: https://github.com/stefsava
|
555
|
+
[@stereoscott]: https://github.com/stereoscott
|
403
556
|
[@tiagotex]: https://github.com/tiagotex
|
404
557
|
[@timoschilling]: https://github.com/timoschilling
|
405
558
|
[@TimPetricola]: https://github.com/TimPetricola
|
406
559
|
[@varyonic]: https://github.com/varyonic
|
407
560
|
[@wasifhossain]: https://github.com/wasifhossain
|
561
|
+
[@WaKeMaTTa]: https://github.com/WaKeMaTTa
|
408
562
|
[@Wowu]: https://github.com/Wowu
|
409
563
|
[@wspurgin]: https://github.com/wspurgin
|
410
564
|
[@zorab47]: https://github.com/zorab47
|
565
|
+
[@chrp]: https://github.com/chrp
|
566
|
+
[@bartoszkopinski]: https://github.com/bartoszkopinski
|
567
|
+
[@panasyuk]: https://github.com/panasyuk
|
568
|
+
[@jscheid]: https://github.com/jscheid
|
569
|
+
[@violeta-p]: https://github.com/violeta-p
|
570
|
+
[@ndbroadbent]: https://github.com/ndbroadbent
|
571
|
+
[@Kris-LIBIS]: https://github.com/Kris-LIBIS
|
572
|
+
[@sgara]: https://github.com/sgara
|