activeadmin 2.4.0 → 2.14.0
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.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +422 -31
- data/CONTRIBUTING.md +44 -65
- data/README.md +6 -6
- data/app/assets/javascripts/active_admin/base.js +521 -0
- data/app/assets/stylesheets/active_admin/_base.scss +53 -37
- data/app/assets/stylesheets/active_admin/_forms.scss +1 -11
- data/app/assets/stylesheets/active_admin/_header.scss +40 -8
- data/app/assets/stylesheets/active_admin/_mixins.scss +1 -1
- data/{vendor → app}/assets/stylesheets/active_admin/_normalize.scss +25 -123
- data/app/assets/stylesheets/active_admin/{print.scss → _print.scss} +2 -2
- data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
- data/app/assets/stylesheets/active_admin/components/_date_picker.scss +1 -2
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +0 -1
- data/app/assets/stylesheets/active_admin/components/_tables.scss +1 -2
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -8
- data/app/assets/stylesheets/active_admin/mixins/_variables.scss +17 -0
- data/app/assets/stylesheets/active_admin/structure/_footer.scss +6 -1
- data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +1 -1
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -1
- data/app/javascript/active_admin/base.js +28 -0
- data/app/{assets/javascripts/active_admin/lib/batch_actions.es6 → javascript/active_admin/initializers/batch-actions.js} +4 -2
- data/app/javascript/active_admin/initializers/checkbox-toggler.js +3 -0
- data/app/javascript/active_admin/initializers/dropdown-menu.js +9 -0
- data/app/javascript/active_admin/initializers/filters.js +10 -0
- data/app/{assets/javascripts/active_admin/lib/has_many.es6 → javascript/active_admin/initializers/has-many.js} +4 -1
- data/app/javascript/active_admin/initializers/per-page.js +13 -0
- data/app/javascript/active_admin/initializers/table-checkbox-toggler.js +3 -0
- data/app/{assets/javascripts/active_admin/lib/checkbox-toggler.es6 → javascript/active_admin/lib/checkbox-toggler.js} +5 -5
- data/app/{assets/javascripts/active_admin/lib/dropdown-menu.es6 → javascript/active_admin/lib/dropdown-menu.js} +3 -10
- data/app/javascript/active_admin/lib/filters.js +39 -0
- data/app/{assets/javascripts/active_admin/lib/modal_dialog.es6 → javascript/active_admin/lib/modal-dialog.js} +10 -8
- data/app/javascript/active_admin/lib/per-page.js +38 -0
- data/app/{assets/javascripts/active_admin/lib/table-checkbox-toggler.es6 → javascript/active_admin/lib/table-checkbox-toggler.js} +5 -3
- data/app/javascript/active_admin/lib/utils.js +40 -0
- data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
- data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
- data/app/views/active_admin/devise/shared/_links.erb +1 -1
- data/app/views/active_admin/page/index.html.arb +1 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -0
- data/app/views/active_admin/resource/index.html.arb +1 -0
- data/app/views/active_admin/resource/new.html.arb +1 -0
- data/app/views/active_admin/resource/show.html.arb +1 -0
- data/app/views/layouts/active_admin.html.arb +1 -0
- data/app/views/layouts/active_admin_logged_out.html.erb +18 -7
- data/config/locales/ar.yml +6 -6
- data/config/locales/az.yml +138 -0
- data/config/locales/en-CA.yml +3 -3
- data/config/locales/en-GB.yml +3 -3
- data/config/locales/en.yml +3 -3
- data/config/locales/es-MX.yml +2 -1
- data/config/locales/es.yml +5 -5
- data/config/locales/fr.yml +7 -7
- data/config/locales/it.yml +18 -0
- data/config/locales/ja.yml +3 -3
- data/config/locales/ko.yml +1 -1
- data/config/locales/lv.yml +2 -2
- data/config/locales/nl.yml +1 -1
- data/config/locales/ro.yml +3 -2
- data/config/locales/vi.yml +40 -12
- data/config/locales/zh-CN.yml +36 -17
- data/lib/active_admin/abstract_view_factory.rb +1 -0
- data/lib/active_admin/application.rb +20 -20
- data/lib/active_admin/application_settings.rb +4 -3
- data/lib/active_admin/asset_registration.rb +4 -3
- data/lib/active_admin/authorization_adapter.rb +6 -3
- data/lib/active_admin/base_controller/authorization.rb +15 -13
- data/lib/active_admin/base_controller/menu.rb +1 -0
- data/lib/active_admin/base_controller.rb +6 -5
- data/lib/active_admin/batch_actions/controller.rb +4 -3
- data/lib/active_admin/batch_actions/resource_extension.rb +10 -8
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +4 -3
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +7 -6
- data/lib/active_admin/batch_actions/views/selection_cells.rb +4 -3
- data/lib/active_admin/batch_actions.rb +1 -0
- data/lib/active_admin/callbacks.rb +1 -0
- data/lib/active_admin/cancan_adapter.rb +2 -1
- data/lib/active_admin/collection_decorator.rb +32 -0
- data/lib/active_admin/component.rb +1 -0
- data/lib/active_admin/controller_action.rb +1 -0
- data/lib/active_admin/csv_builder.rb +12 -21
- data/lib/active_admin/dependency.rb +12 -15
- data/lib/active_admin/deprecation.rb +1 -0
- data/lib/active_admin/devise.rb +16 -5
- data/lib/active_admin/dsl.rb +2 -1
- data/lib/active_admin/dynamic_setting.rb +1 -0
- data/lib/active_admin/dynamic_settings_node.rb +3 -2
- data/lib/active_admin/engine.rb +13 -9
- data/lib/active_admin/error.rb +1 -2
- data/lib/active_admin/filters/active.rb +2 -1
- data/lib/active_admin/filters/active_filter.rb +7 -7
- data/lib/active_admin/filters/active_sidebar.rb +4 -30
- data/lib/active_admin/filters/dsl.rb +1 -0
- data/lib/active_admin/filters/forms.rb +7 -6
- data/lib/active_admin/filters/formtastic_addons.rb +2 -6
- data/lib/active_admin/filters/resource_extension.rb +6 -5
- data/lib/active_admin/filters.rb +8 -7
- data/lib/active_admin/form_builder.rb +25 -20
- data/lib/active_admin/generators/boilerplate.rb +2 -1
- data/lib/active_admin/helpers/collection.rb +2 -0
- data/lib/active_admin/helpers/i18n.rb +1 -0
- data/lib/active_admin/helpers/optional_display.rb +3 -2
- data/lib/active_admin/helpers/routes/url_helpers.rb +1 -0
- data/lib/active_admin/helpers/scope_chain.rb +1 -0
- data/lib/active_admin/inputs/datepicker_input.rb +2 -1
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +5 -4
- data/lib/active_admin/inputs/filters/base.rb +2 -1
- data/lib/active_admin/inputs/filters/boolean_input.rb +2 -1
- data/lib/active_admin/inputs/filters/check_boxes_input.rb +2 -1
- data/lib/active_admin/inputs/filters/date_picker_input.rb +1 -0
- data/lib/active_admin/inputs/filters/date_range_input.rb +16 -12
- data/lib/active_admin/inputs/filters/numeric_input.rb +1 -0
- data/lib/active_admin/inputs/filters/select_input.rb +3 -2
- data/lib/active_admin/inputs/filters/string_input.rb +1 -0
- data/lib/active_admin/inputs/filters/text_input.rb +1 -0
- data/lib/active_admin/inputs.rb +1 -0
- data/lib/active_admin/localizers/resource_localizer.rb +4 -3
- data/lib/active_admin/localizers.rb +2 -1
- data/lib/active_admin/menu.rb +7 -3
- data/lib/active_admin/menu_collection.rb +1 -0
- data/lib/active_admin/menu_item.rb +8 -7
- data/lib/active_admin/namespace.rb +15 -14
- data/lib/active_admin/namespace_settings.rb +9 -5
- data/lib/active_admin/order_clause.rb +2 -1
- data/lib/active_admin/orm/active_record/comments/comment.rb +4 -3
- data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/resource_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +21 -20
- data/lib/active_admin/orm/active_record/comments/views.rb +3 -2
- data/lib/active_admin/orm/active_record/comments.rb +28 -27
- data/lib/active_admin/orm/active_record.rb +2 -1
- data/lib/active_admin/orm/mongoid.rb +1 -0
- data/lib/active_admin/page.rb +2 -1
- data/lib/active_admin/page_controller.rb +1 -0
- data/lib/active_admin/page_dsl.rb +1 -0
- data/lib/active_admin/page_presenter.rb +1 -0
- data/lib/active_admin/pundit_adapter.rb +57 -15
- data/lib/active_admin/resource/action_items.rb +6 -5
- data/lib/active_admin/resource/attributes.rb +2 -1
- data/lib/active_admin/resource/belongs_to.rb +3 -2
- data/lib/active_admin/resource/controllers.rb +2 -1
- data/lib/active_admin/resource/includes.rb +1 -0
- data/lib/active_admin/resource/menu.rb +5 -4
- data/lib/active_admin/resource/model.rb +1 -0
- data/lib/active_admin/resource/naming.rb +6 -5
- data/lib/active_admin/resource/ordering.rb +1 -0
- data/lib/active_admin/resource/page_presenters.rb +1 -0
- data/lib/active_admin/resource/pagination.rb +1 -0
- data/lib/active_admin/resource/routes.rb +6 -7
- data/lib/active_admin/resource/scope_to.rb +8 -7
- data/lib/active_admin/resource/scopes.rb +1 -0
- data/lib/active_admin/resource/sidebars.rb +2 -1
- data/lib/active_admin/resource.rb +21 -20
- data/lib/active_admin/resource_collection.rb +1 -0
- data/lib/active_admin/resource_controller/action_builder.rb +1 -0
- data/lib/active_admin/resource_controller/data_access.rb +31 -5
- data/lib/active_admin/resource_controller/decorators.rb +7 -28
- data/lib/active_admin/resource_controller/polymorphic_routes.rb +4 -2
- data/lib/active_admin/resource_controller/resource_class_methods.rb +1 -0
- data/lib/active_admin/resource_controller/scoping.rb +1 -0
- data/lib/active_admin/resource_controller/sidebars.rb +1 -0
- data/lib/active_admin/resource_controller/streaming.rb +9 -7
- data/lib/active_admin/resource_controller.rb +13 -11
- data/lib/active_admin/resource_dsl.rb +11 -25
- data/lib/active_admin/router.rb +1 -0
- data/lib/active_admin/scope.rb +7 -6
- data/lib/active_admin/settings_node.rb +1 -0
- data/lib/active_admin/sidebar_section.rb +1 -0
- data/lib/active_admin/version.rb +2 -1
- data/lib/active_admin/view_factory.rb +18 -17
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +1 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -1
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +4 -3
- data/lib/active_admin/view_helpers/display_helper.rb +15 -7
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +2 -1
- data/lib/active_admin/view_helpers/fields_for.rb +3 -2
- data/lib/active_admin/view_helpers/flash_helper.rb +1 -0
- data/lib/active_admin/view_helpers/form_helper.rb +1 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +1 -0
- data/lib/active_admin/view_helpers/scope_name_helper.rb +1 -0
- data/lib/active_admin/view_helpers/sidebar_helper.rb +1 -0
- data/lib/active_admin/view_helpers/title_helper.rb +1 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -0
- data/lib/active_admin/view_helpers.rb +2 -1
- data/lib/active_admin/views/action_items.rb +1 -0
- data/lib/active_admin/views/components/active_admin_form.rb +7 -6
- data/lib/active_admin/views/components/active_filters_sidebar_content.rb +59 -0
- data/lib/active_admin/views/components/attributes_table.rb +6 -5
- data/lib/active_admin/views/components/blank_slate.rb +2 -1
- data/lib/active_admin/views/components/columns.rb +1 -0
- data/lib/active_admin/views/components/dropdown_menu.rb +7 -9
- data/lib/active_admin/views/components/index_list.rb +4 -3
- data/lib/active_admin/views/components/menu.rb +2 -1
- data/lib/active_admin/views/components/menu_item.rb +5 -4
- data/lib/active_admin/views/components/paginated_collection.rb +20 -18
- data/lib/active_admin/views/components/panel.rb +2 -1
- data/lib/active_admin/views/components/scopes.rb +8 -5
- data/lib/active_admin/views/components/sidebar.rb +1 -0
- data/lib/active_admin/views/components/sidebar_section.rb +1 -0
- data/lib/active_admin/views/components/site_title.rb +2 -1
- data/lib/active_admin/views/components/status_tag.rb +12 -11
- data/lib/active_admin/views/components/table_for.rb +19 -17
- data/lib/active_admin/views/components/tabs.rb +4 -3
- data/lib/active_admin/views/components/unsupported_browser.rb +1 -0
- data/lib/active_admin/views/footer.rb +3 -1
- data/lib/active_admin/views/header.rb +3 -2
- data/lib/active_admin/views/index_as_block.rb +1 -0
- data/lib/active_admin/views/index_as_blog.rb +2 -1
- data/lib/active_admin/views/index_as_grid.rb +2 -1
- data/lib/active_admin/views/index_as_table.rb +17 -16
- data/lib/active_admin/views/pages/base.rb +22 -14
- data/lib/active_admin/views/pages/form.rb +1 -0
- data/lib/active_admin/views/pages/index.rb +16 -13
- data/lib/active_admin/views/pages/layout.rb +1 -0
- data/lib/active_admin/views/pages/page.rb +1 -0
- data/lib/active_admin/views/pages/show.rb +1 -0
- data/lib/active_admin/views/tabbed_navigation.rb +3 -2
- data/lib/active_admin/views/title_bar.rb +2 -1
- data/lib/active_admin/views.rb +2 -1
- data/lib/active_admin.rb +63 -64
- data/lib/activeadmin.rb +2 -1
- data/lib/generators/active_admin/assets/assets_generator.rb +3 -2
- data/lib/generators/active_admin/assets/templates/active_admin.scss +2 -2
- data/lib/generators/active_admin/devise/devise_generator.rb +6 -5
- data/lib/generators/active_admin/install/install_generator.rb +15 -8
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +26 -2
- data/lib/generators/active_admin/install/templates/dashboard.rb +1 -0
- data/lib/generators/active_admin/page/page_generator.rb +2 -1
- data/lib/generators/active_admin/page/templates/page.rb +1 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +4 -3
- data/lib/generators/active_admin/webpacker/plugins/jquery.js +7 -0
- data/lib/generators/active_admin/webpacker/templates/active_admin.js +5 -0
- data/lib/generators/active_admin/webpacker/templates/active_admin.scss +17 -0
- data/lib/generators/active_admin/webpacker/templates/print.scss +2 -0
- data/lib/generators/active_admin/webpacker/webpacker_generator.rb +27 -0
- data/lib/ransack_ext.rb +9 -8
- metadata +56 -132
- data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
- data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
- data/app/assets/images/active_admin/orderable.png +0 -0
- data/app/assets/javascripts/active_admin/base.es6 +0 -23
- data/app/assets/javascripts/active_admin/initializers/filters.es6 +0 -45
- data/app/assets/javascripts/active_admin/lib/active_admin.es6 +0 -41
- data/app/assets/javascripts/active_admin/lib/per_page.es6 +0 -47
- data/docs/.gitignore +0 -1
- data/docs/0-installation.md +0 -118
- data/docs/1-general-configuration.md +0 -204
- data/docs/10-custom-pages.md +0 -150
- data/docs/11-decorators.md +0 -59
- data/docs/12-arbre-components.md +0 -214
- data/docs/13-authorization-adapter.md +0 -285
- data/docs/14-gotchas.md +0 -138
- data/docs/2-resource-customization.md +0 -466
- data/docs/3-index-pages/custom-index.md +0 -35
- data/docs/3-index-pages/index-as-block.md +0 -19
- data/docs/3-index-pages/index-as-blog.md +0 -69
- data/docs/3-index-pages/index-as-grid.md +0 -27
- data/docs/3-index-pages/index-as-table.md +0 -234
- data/docs/3-index-pages.md +0 -328
- data/docs/4-csv-format.md +0 -74
- data/docs/5-forms.md +0 -232
- data/docs/6-show-pages.md +0 -81
- data/docs/7-sidebars.md +0 -75
- data/docs/8-custom-actions.md +0 -177
- data/docs/9-batch-actions.md +0 -237
- data/docs/CNAME +0 -1
- data/docs/Gemfile +0 -3
- data/docs/Gemfile.lock +0 -248
- data/docs/README.md +0 -24
- data/docs/_config.yml +0 -4
- data/docs/_includes/footer.html +0 -8
- data/docs/_includes/google-analytics.html +0 -16
- data/docs/_includes/head.html +0 -7
- data/docs/_includes/toc.html +0 -98
- data/docs/_includes/top-menu.html +0 -17
- data/docs/_layouts/default.html +0 -21
- data/docs/documentation.md +0 -60
- data/docs/images/activeadmin.png +0 -0
- data/docs/images/code-header.png +0 -0
- data/docs/images/divider.png +0 -0
- data/docs/images/features.png +0 -0
- data/docs/images/tidelift.svg +0 -14
- data/docs/index.html +0 -226
- data/docs/stylesheets/main.css +0 -1205
- /data/app/{assets/javascripts/active_admin/ext/jquery-ui.es6 → javascript/active_admin/ext/jquery-ui.js} +0 -0
- /data/app/{assets/javascripts/active_admin/ext/jquery.es6 → javascript/active_admin/ext/jquery.js} +0 -0
- /data/app/{assets/javascripts/active_admin/initializers/datepicker.es6 → javascript/active_admin/initializers/datepicker.js} +0 -0
- /data/app/{assets/javascripts/active_admin/initializers/tabs.es6 → javascript/active_admin/initializers/tabs.js} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e192ee32c6a28d748f4fe6a3c82aba50933295ca915ccb3b5d4f283749dd8ae4
|
4
|
+
data.tar.gz: b3440f204e78159fbff127db9085c81d921a23aacc11828dc1a95c54e1291096
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b757b6e53f0385ac472b370b92e9cfff96ad10a04551322c27d3fde495b4f5a8f43d6c54ff19d6d32ca7d39db631759c3d8a76a491ad27d7ba38490ecdbce7ab
|
7
|
+
data.tar.gz: 03a6f3c614b350d6fafc130c1aebf31f0ba854ef06304bac52800cce61ce7dc26a674f07f2ead5032e89740e9f7e016bb1619f91e1e08e944f923ce5c76301c2
|
data/CHANGELOG.md
CHANGED
@@ -2,13 +2,269 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 2.14.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.13.1..v2.14.0)
|
6
|
+
|
7
|
+
### Enhancements
|
8
|
+
|
9
|
+
* Add csp_meta_tag to layout. [#7986] by [@javierjulio]
|
10
|
+
* Update config.register_javascript with options support. [#7002] by [@lanzhiheng]
|
11
|
+
* Use `csrf_meta_tags` in place of singular version. [#7985] by [@javierjulio]
|
12
|
+
* Allow different new and edit rules in authorization adapters. [#6535] by [@timwis]
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
* Fix form layout for hints and checkboxes. [#7772] by [@JewelSam]
|
17
|
+
* Update filters disabled error to include specific action. [#6195] by [@javawizard]
|
18
|
+
* Fix Comments controller destroy declaration. [#6482] by [@bliof]
|
19
|
+
* Stop pagination elements from overflowing outside of panel container. [#7599] by [@ray-curran]
|
20
|
+
|
21
|
+
### Translation Improvements
|
22
|
+
|
23
|
+
* Update vi locale with more translations. [#7984] by [@rs-phunt]
|
24
|
+
* Update zh-CN locale with multiple corrections. [#7944] by [@hfl]
|
25
|
+
* Fix typo in Vietnamese locale for filter text. [#7920] by [@tvziet]
|
26
|
+
* Improve French translation. [#7653] by [@cprodhomme]
|
27
|
+
|
28
|
+
### Documentation
|
29
|
+
|
30
|
+
* Add more documentation about PORO decorator requirements. [#7556] by [@sanfrecce-osaka]
|
31
|
+
* Add Load Paths docs to the active_admin.rb template. [#7541] by [@gabo-cs]
|
32
|
+
|
33
|
+
### Performance
|
34
|
+
|
35
|
+
* Removes docs from exported gem. [#7013] by [@brunoarueira]
|
36
|
+
|
37
|
+
## 2.13.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.13.0..v2.13.1)
|
38
|
+
|
39
|
+
### Bug Fixes
|
40
|
+
|
41
|
+
* Honor load paths order when loading admin files. [#7488] by [@tf]
|
42
|
+
* Fix passing expected hash payload argument. [#7487] by [@ispyropoulos]
|
43
|
+
|
44
|
+
## 2.13.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.12.0..v2.13.0)
|
45
|
+
|
46
|
+
### Documentation
|
47
|
+
|
48
|
+
* Update validation errors documentation to account for deprecated `ActiveModel::Errors#keys`. [#7475] by [@amit]
|
49
|
+
|
50
|
+
### Dependency Changes
|
51
|
+
|
52
|
+
* Drop rails 6.0 support. [#7476] by [@deivid-rodriguez]
|
53
|
+
|
54
|
+
### Performance
|
55
|
+
|
56
|
+
* Fix pundit performance. [#7479] by [@deivid-rodriguez]
|
57
|
+
|
58
|
+
## 2.12.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.2..v2.12.0)
|
59
|
+
|
60
|
+
### Enhancements
|
61
|
+
|
62
|
+
* Add Ransack 3 compatibility. [#7453] by [@tagliala]
|
63
|
+
|
64
|
+
### Bug Fixes
|
65
|
+
|
66
|
+
* Fix pundit namespace detection. [#7144] by [@vlad-psh]
|
67
|
+
|
68
|
+
### Documentation
|
69
|
+
|
70
|
+
* Don't mention webpacker as the default asset generator in Rails. [#7377] by [@jaynetics]
|
71
|
+
|
72
|
+
### Performance
|
73
|
+
|
74
|
+
* Avoid duplicate work when downloading CSV. [#7336] by [@deivid-rodriguez]
|
75
|
+
|
76
|
+
## 2.11.2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.1..v2.11.2)
|
77
|
+
|
78
|
+
### Bug Fixes
|
79
|
+
|
80
|
+
* Fix disappearing BOM option for `CSVBuilder`. [#7170] by [@Karoid]
|
81
|
+
|
82
|
+
## 2.11.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.0..v2.11.1)
|
83
|
+
|
84
|
+
### Enhancements
|
85
|
+
|
86
|
+
* Add turbolinks support to has many js. [#7384] by [@amiel]
|
87
|
+
|
88
|
+
### Documentation
|
89
|
+
|
90
|
+
* Remove `insert_tag` from Form-Partial docs. [#7394] by [@TonyArra]
|
91
|
+
|
92
|
+
## 2.11.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.1..v2.11.0)
|
93
|
+
|
94
|
+
### Enhancements
|
95
|
+
|
96
|
+
* Add Rails 7 Support. [#7235] by [@tagliala]
|
97
|
+
|
98
|
+
### Bug Fixes
|
99
|
+
|
100
|
+
* Fix form SCSS variables no longer being defined in the outermost scope, so no longer being accessible. [#7341] by [@gigorok]
|
101
|
+
|
102
|
+
## 2.10.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.0..v2.10.1)
|
103
|
+
|
104
|
+
### Enhancements
|
105
|
+
|
106
|
+
* Apply `box-sizing: border-box` globally. [#7349] by [@deivid-rodriguez]
|
107
|
+
* Vendor normalize 8.0.1. [#7350] by [@deivid-rodriguez]
|
108
|
+
* Remove deprecation warning using controller filters inside initializer. [#7340] by [@mgrunberg]
|
109
|
+
|
110
|
+
### Bug Fixes
|
111
|
+
|
112
|
+
* Fix frozen string error when downloading CSV and streaming disabled. [#7332] by [@deivid-rodriguez]
|
113
|
+
|
114
|
+
## 2.10.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.9.0..v2.10.0)
|
115
|
+
|
116
|
+
### Enhancements
|
117
|
+
|
118
|
+
* Load favicon from Webpacker assets when use_webpacker is set to true. [#6954] by [@Fs00]
|
119
|
+
* Don't apply sorting to collection until after scoping. [#7205] by [@agrobbin]
|
120
|
+
* Resolve dart sass deprecation warning for division. [#7095] by [@tordans]
|
121
|
+
* Use `instrument` from the Notifications API instead of low level `publish`. [#7262] by [@sprql]
|
122
|
+
* Avoid mutating string literals. [#6936] by [@tomgilligan]
|
123
|
+
* Include print styles in main stylesheet. [#6922] by [@deivid-rodriguez]
|
124
|
+
* Use `POST` for OmniAuth links. [#6916] by [@deivid-rodriguez]
|
125
|
+
* Scope new record instantiation by authorization scope. [#6884] by [@ngouy]
|
126
|
+
* Make `permit_params` and `belongs_to` order independent. [#6906] by [@deivid-rodriguez]
|
127
|
+
* Use collection length instead of running COUNTs for limited collections. [#5660] by [@MmKolodziej]
|
128
|
+
|
129
|
+
### Bug Fixes
|
130
|
+
|
131
|
+
* Show ransackable_scopes filters in search results. [#7127] by [@vlad-psh]
|
132
|
+
|
133
|
+
### Translation Improvements
|
134
|
+
|
135
|
+
* Fix Dutch translation for password reset button. [#7181] by [@mvz]
|
136
|
+
* Add few key to RO pagination.entry. [#6915] by [@lubosch]
|
137
|
+
* Change misleading Korean translation. [#6873] by [@1000ship]
|
138
|
+
|
139
|
+
### Documentation
|
140
|
+
|
141
|
+
* Replace deprecated update_attributes! with update!. [#6959] by [@sergey-alekseev]
|
142
|
+
* Clarify docs on user setup. [#6872] by [@javawizard]
|
143
|
+
|
144
|
+
### Dependency Changes
|
145
|
+
|
146
|
+
* Drop rails 5.2 support. [#7293] by [@deivid-rodriguez]
|
147
|
+
* Drop support for Ruby 2.5. [#7236] by [@alejandroperea]
|
148
|
+
|
149
|
+
## 2.9.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.1..v2.9.0)
|
150
|
+
|
151
|
+
### Enhancements
|
152
|
+
|
153
|
+
* Support for Rails 6.1. [#6548] by [@deivid-rodriguez]
|
154
|
+
* Add ability to override "Remove" button text on has_many forms. [#6523] by [@littleforest]
|
155
|
+
* Drop git in gemspec. [#6462] by [@utkarsh2102]
|
156
|
+
|
157
|
+
### Bug Fixes
|
158
|
+
|
159
|
+
* Pick up upstream fixes in devise templates. [#6536] by [@munen]
|
160
|
+
|
161
|
+
### Documentation
|
162
|
+
|
163
|
+
* Fix `has_many` syntax in forms documentation. [#6583] by [@krzcho]
|
164
|
+
* Add example of using `default_main_content` in show pages. [#6487] by [@sjieg]
|
165
|
+
|
166
|
+
### Dependency Changes
|
167
|
+
|
168
|
+
* Remove sassc and sprockets runtime dependencies. [#6584] by [@deivid-rodriguez]
|
169
|
+
|
170
|
+
## 2.8.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.0..v2.8.1)
|
171
|
+
|
172
|
+
### Bug Fixes
|
173
|
+
|
174
|
+
* Fix `permitted_param` generation for `belongs_to` when `:param` is used. [#6460] by [@deivid-rodriguez]
|
175
|
+
* Fix streaming CSV export. [#6451] by [@deivid-rodriguez]
|
176
|
+
* Fix input string filter no rendering dropdown input when its column name ends with a ransack predicate. [#6422] by [@Fivell]
|
177
|
+
|
178
|
+
## 2.8.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.7.0..v2.8.0)
|
179
|
+
|
180
|
+
### Enhancements
|
181
|
+
|
182
|
+
* Allow using PORO decorators. [#6249] by [@brunvez]
|
183
|
+
* Make sure `ActiveAdmin.routes` provides routes in a consistent order. [#6124] by [@jiikko]
|
184
|
+
* Use proper closing tags for HTML in ModalDialog component. [#6221] by [@javierjulio]
|
185
|
+
|
186
|
+
### Bug Fixes
|
187
|
+
|
188
|
+
* Fix comment layout so regardless of size, each is aligned and spaced evenly. [#6393] by [@Ivanov-Anton]
|
189
|
+
|
190
|
+
### Translation Improvements
|
191
|
+
|
192
|
+
* Fix several Arabic translations. [#6368] by [@mshalaby]
|
193
|
+
* Add missing `scope/all` italian translation. [#6341] by [@fuzziness]
|
194
|
+
* Improve Japanese translation. [#6315] by [@rn0rno]
|
195
|
+
* Fix es and es-MX sign_in and sign_up translation. [#6210] by [@roramirez]
|
196
|
+
|
197
|
+
### Documentation
|
198
|
+
|
199
|
+
* Fix filter_columns_for_large_association and filter_method_for_large_association examples. [#6232] by [@ndbroadbent]
|
200
|
+
|
201
|
+
### Dependency Changes
|
202
|
+
|
203
|
+
* Allow formtastic 4. [#6318] by [@deivid-rodriguez]
|
204
|
+
* Drop Ruby 2.4 support. [#6198] by [@deivid-rodriguez]
|
205
|
+
|
206
|
+
## 2.7.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.1..v2.7.0)
|
207
|
+
|
208
|
+
### Enhancements
|
209
|
+
|
210
|
+
* Extend menu to allow for nested submenus. [#5994] by [@taralbass]
|
211
|
+
* Add Webpacker compatibility with opt-in config switch and installation generator. [#5855] by [@sgara]
|
212
|
+
|
213
|
+
### Bug Fixes
|
214
|
+
|
215
|
+
* Fix scopes renderer when resource has only optional scopes and their conditions are false. [#6149] by [@Looooong]
|
216
|
+
* Fix some missing wrapper markup in "logged out" layout. [#6086] by [@irmela]
|
217
|
+
* Fix some typos in Vietnamese translation. [#6099] by [@giapnhdev]
|
218
|
+
|
219
|
+
## 2.6.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.0..v2.6.1)
|
220
|
+
|
221
|
+
### Bug Fixes
|
222
|
+
|
223
|
+
* Fix some ruby 2.7 warnings about keyword args. [#6000] by [@vcsjones]
|
224
|
+
* Missing `create_another` translation in Vietnamese. [#6002] by [@imcvampire]
|
225
|
+
* Using "destroy" for user facing message is too robotic, prefer "delete". [#6047] by [@vfonic]
|
226
|
+
* Typo in confirmation message for comment deletion. [#6047] by [@vfonic]
|
227
|
+
|
228
|
+
## 2.6.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.5.0..v2.6.0)
|
229
|
+
|
230
|
+
### Enhancements
|
231
|
+
|
232
|
+
* Display multiple flash messages in separate elements. [#5929] by [@mirelon]
|
233
|
+
* Make delete confirmation messages in French & Spanish gender-neutral. [#5946] by [@cprodhomme]
|
234
|
+
|
235
|
+
### Bug Fixes
|
236
|
+
|
237
|
+
* Export ModalDialog component to re-enable client side usage. [#5956] by [@sgara]
|
238
|
+
* Use default ActionView options instead of default Formtastic options for DateRangeInput [#5957] by [@mirelon]
|
239
|
+
* Fix i18n key in docs example to translate scopes. [#5943] by [@adler99]
|
240
|
+
|
241
|
+
## 2.5.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.4.0..v2.5.0)
|
242
|
+
|
243
|
+
### Enhancements
|
244
|
+
|
245
|
+
* Azerbaijani translation. [#5078] by [@orkhan]
|
246
|
+
|
247
|
+
### Bug Fixes
|
248
|
+
|
249
|
+
* Convert namespace to sym to prevent duplicate namespaces such as :foo and 'foo'. [#5931] by [@westonganger]
|
250
|
+
* Use filter label when condition has a predicate. [#5886] by [@ko-lem]
|
251
|
+
* Fix error when routing with array containing symbol. [#5870] by [@jwesorick]
|
252
|
+
* Fix error when there is a model named `Tag` and `meta_tags` have been configured. [#5895] by [@micred], [@FabioRos] and [@deivid-rodriguez]
|
253
|
+
* Allow specifying custom `input_html` for `DateRangeInput`. [#5867] by [@mirelon]
|
254
|
+
* Adjust `#main_content` right margin to take into account possible custom values of `$sidebar-width` and `$section-padding`. [#5887] by [@guigs]
|
255
|
+
* Improved polymorphic routes generation to avoid problems when multiple `belongs_to` are defined. [#5938] by [@leio10]
|
256
|
+
|
257
|
+
### Dependency Changes
|
258
|
+
|
259
|
+
* Support for Rails 5.0 and Rails 5.1 has been dropped. [#5877] by [@deivid-rodriguez]
|
260
|
+
|
5
261
|
## 2.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.3.1..v2.4.0)
|
6
262
|
|
7
263
|
### Enhancements
|
8
264
|
|
9
265
|
* Make optimization to not use expensive COUNT queries also work for decorated actions. [#5811] by [@irmela]
|
10
|
-
* Render a text filter instead of a select for large associations (opt-in) [#5548] by [@DanielHeath]
|
11
|
-
* Improve German translations [#5874] by [@juril33t]
|
266
|
+
* Render a text filter instead of a select for large associations (opt-in). [#5548] by [@DanielHeath]
|
267
|
+
* Improve German translations. [#5874] by [@juril33t]
|
12
268
|
|
13
269
|
## 2.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.3.0..v2.3.1)
|
14
270
|
|
@@ -20,8 +276,6 @@
|
|
20
276
|
|
21
277
|
### Enhancements
|
22
278
|
|
23
|
-
#### Minor
|
24
|
-
|
25
279
|
* Bump minimum ransack requirement to make sure everyone gets a version that works ok with all supported versions of Rails. [#5831] by [@deivid-rodriguez]
|
26
280
|
|
27
281
|
### Bug Fixes
|
@@ -36,14 +290,12 @@
|
|
36
290
|
|
37
291
|
### Enhancements
|
38
292
|
|
39
|
-
#### Minor
|
40
|
-
|
41
293
|
* 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]
|
42
294
|
* Add Macedonian locale. [#5710] by [@violeta-p]
|
43
295
|
|
44
296
|
### Bug Fixes
|
45
297
|
|
46
|
-
* Fix pundit policy retrieving for static pages when the pundit namespace is
|
298
|
+
* Fix pundit policy retrieving for static pages when the pundit namespace is `:active_admin`. [#5777] by [@kwent]
|
47
299
|
* Fix show page title not being properly escaped if title's content included HTML. [#5802] by [@deivid-rodriguez]
|
48
300
|
* Revert [21b6138f] from [#5740] since it actually caused the performance in development to regress. [#5801] by [@deivid-rodriguez]
|
49
301
|
|
@@ -55,7 +307,7 @@
|
|
55
307
|
* Crash when rendering comments from a custom controller block. [#5758] by [@deivid-rodriguez]
|
56
308
|
* 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]
|
57
309
|
|
58
|
-
###
|
310
|
+
### Dependency Changes
|
59
311
|
|
60
312
|
* Support for ruby 2.3 has been removed. [#5751] by [@deivid-rodriguez]
|
61
313
|
|
@@ -67,8 +319,6 @@ _No changes_.
|
|
67
319
|
|
68
320
|
### Enhancements
|
69
321
|
|
70
|
-
#### Minor
|
71
|
-
|
72
322
|
* Require arbre `~> 1.2, >= 1.2.1`. [#5726] by [@ionut998], and [#5738] by [@deivid-rodriguez]
|
73
323
|
|
74
324
|
## 2.0.0.rc1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.3..v2.0.0.rc1)
|
@@ -84,9 +334,6 @@ _No changes_.
|
|
84
334
|
```
|
85
335
|
|
86
336
|
* Consider authorization when displaying comments in show page. [#5555] by [@amiuhle]
|
87
|
-
|
88
|
-
#### Minor
|
89
|
-
|
90
337
|
* Add better support for rendering lists. [#5370] by [@dkniffin]
|
91
338
|
* 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]
|
92
339
|
|
@@ -103,7 +350,7 @@ _No changes_.
|
|
103
350
|
* Sidebar title internationalization. [#5417] by [@WaKeMaTTa]
|
104
351
|
* `filter` labels not allowing a `Proc` to be passed. [#5418] by [@WaKeMaTTa]
|
105
352
|
|
106
|
-
###
|
353
|
+
### Dependency Changes
|
107
354
|
|
108
355
|
* Rails 4.2 support has been dropped. [#5104] by [@javierjulio] and [@deivid-rodriguez]
|
109
356
|
* Dependency on coffee-rails has been removed. [#5081] by [@javierjulio]
|
@@ -139,8 +386,6 @@ _No changes_.
|
|
139
386
|
|
140
387
|
### Enhancements
|
141
388
|
|
142
|
-
#### Minor
|
143
|
-
|
144
389
|
* Add missing I18n for comments. [#5458], [#5461] by [@mauriciopasquier]
|
145
390
|
* Fix batch_actions.delete_confirmation translation in zh-CN.yml. [#5453] by [@ShallmentMo]
|
146
391
|
* Add some missing italian translations. [#5433] by [@stefsava]
|
@@ -178,8 +423,6 @@ _No changes_.
|
|
178
423
|
|
179
424
|
### Enhancements
|
180
425
|
|
181
|
-
#### Major
|
182
|
-
|
183
426
|
* Rails 5.2 support [#5343] by [@varyonic], [#5399], [#5401] by [@zorab47]
|
184
427
|
|
185
428
|
## 1.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.0..v1.2.1)
|
@@ -192,8 +435,6 @@ _No changes_.
|
|
192
435
|
|
193
436
|
### Enhancements
|
194
437
|
|
195
|
-
#### Minor
|
196
|
-
|
197
438
|
* Do not display pagination info when there are no comments. [#5119] by [@alex-bogomolov]
|
198
439
|
* Revert generated config files to pluralized. [#5120] by [@varyonic], [#5137] by [@deivid-rodriguez]
|
199
440
|
* Warn when action definition overwrites controller method. [#5167] by [@aarek]
|
@@ -224,7 +465,7 @@ _No changes_.
|
|
224
465
|
* Fixed [#5043]. Do not crash in sidebar rendering when a default scope is not specified. [#5044] by [@Fivell]
|
225
466
|
* Fixed [#3894]. Make tab's component work with non-ascii titles. [#5046] by [@Fivell]
|
226
467
|
|
227
|
-
###
|
468
|
+
### Dependency Changes
|
228
469
|
|
229
470
|
* Ruby 2.1 support has been dropped. [#5003] by [@deivid-rodriguez]
|
230
471
|
* Replaced `sass-rails` with `sass` dependency. [#5037] by [@javierjulio]
|
@@ -262,8 +503,6 @@ _No changes_.
|
|
262
503
|
|
263
504
|
### Enhancements
|
264
505
|
|
265
|
-
#### Minor
|
266
|
-
|
267
506
|
* Support proc as an input_html option value when declaring filters. [#5029] by [@Fivell]
|
268
507
|
* Base localization support, better associations handling for active filters sidebar. [#4951] by [@Fivell]
|
269
508
|
* Allow AA scopes to return paginated collections. [#4996] by [@Fivell]
|
@@ -287,16 +526,11 @@ _No changes_.
|
|
287
526
|
|
288
527
|
### Enhancements
|
289
528
|
|
290
|
-
#### Major
|
291
|
-
|
292
529
|
* Migration from Metasearch to Ransack. [#1979] by [@seanlinsley]
|
293
530
|
* Rails 4 support. [#2326] by many people :heart:
|
294
531
|
* Rails 4.2 support. [#3731] by [@gonzedge] and [@timoschilling]
|
295
532
|
* Rails 5 support. [#4254] by [@seanlinsley]
|
296
533
|
* Rails 5.1 support. [#4882] by [@varyonic]
|
297
|
-
|
298
|
-
#### Minor
|
299
|
-
|
300
534
|
* "Create another" checkbox for the new resource page. [#4477] by [@bolshakov]
|
301
535
|
* Page supports belongs_to. [#4759] by [@Fivell] and [@zorab47]
|
302
536
|
* Support for custom sorting strategies. [#4768] by [@Fivell]
|
@@ -427,6 +661,7 @@ Please check [0-6-stable] for previous changes.
|
|
427
661
|
[#5052]: https://github.com/activeadmin/activeadmin/pull/5052
|
428
662
|
[#5060]: https://github.com/activeadmin/activeadmin/pull/5060
|
429
663
|
[#5069]: https://github.com/activeadmin/activeadmin/pull/5069
|
664
|
+
[#5078]: https://github.com/activeadmin/activeadmin/pull/5078
|
430
665
|
[#5081]: https://github.com/activeadmin/activeadmin/pull/5081
|
431
666
|
[#5088]: https://github.com/activeadmin/activeadmin/pull/5088
|
432
667
|
[#5093]: https://github.com/activeadmin/activeadmin/pull/5093
|
@@ -486,15 +721,17 @@ Please check [0-6-stable] for previous changes.
|
|
486
721
|
[#5504]: https://github.com/activeadmin/activeadmin/pull/5504
|
487
722
|
[#5517]: https://github.com/activeadmin/activeadmin/pull/5517
|
488
723
|
[#5537]: https://github.com/activeadmin/activeadmin/pull/5537
|
724
|
+
[#5548]: https://github.com/activeadmin/activeadmin/pull/5548
|
489
725
|
[#5555]: https://github.com/activeadmin/activeadmin/pull/5555
|
490
726
|
[#5583]: https://github.com/activeadmin/activeadmin/pull/5583
|
727
|
+
[#5590]: https://github.com/activeadmin/activeadmin/pull/5590
|
491
728
|
[#5608]: https://github.com/activeadmin/activeadmin/pull/5608
|
492
729
|
[#5611]: https://github.com/activeadmin/activeadmin/pull/5611
|
493
730
|
[#5627]: https://github.com/activeadmin/activeadmin/pull/5627
|
494
731
|
[#5631]: https://github.com/activeadmin/activeadmin/pull/5631
|
495
732
|
[#5632]: https://github.com/activeadmin/activeadmin/pull/5632
|
496
733
|
[#5650]: https://github.com/activeadmin/activeadmin/pull/5650
|
497
|
-
[#
|
734
|
+
[#5660]: https://github.com/activeadmin/activeadmin/pull/5660
|
498
735
|
[#5662]: https://github.com/activeadmin/activeadmin/pull/5662
|
499
736
|
[#5710]: https://github.com/activeadmin/activeadmin/pull/5710
|
500
737
|
[#5726]: https://github.com/activeadmin/activeadmin/pull/5726
|
@@ -512,25 +749,126 @@ Please check [0-6-stable] for previous changes.
|
|
512
749
|
[#5822]: https://github.com/activeadmin/activeadmin/pull/5822
|
513
750
|
[#5826]: https://github.com/activeadmin/activeadmin/pull/5826
|
514
751
|
[#5831]: https://github.com/activeadmin/activeadmin/pull/5831
|
515
|
-
[#5548]: https://github.com/activeadmin/activeadmin/pull/5548
|
516
752
|
[#5842]: https://github.com/activeadmin/activeadmin/pull/5842
|
517
753
|
[#5854]: https://github.com/activeadmin/activeadmin/pull/5854
|
754
|
+
[#5855]: https://github.com/activeadmin/activeadmin/pull/5855
|
755
|
+
[#5867]: https://github.com/activeadmin/activeadmin/pull/5867
|
756
|
+
[#5870]: https://github.com/activeadmin/activeadmin/pull/5870
|
518
757
|
[#5874]: https://github.com/activeadmin/activeadmin/pull/5874
|
519
|
-
|
758
|
+
[#5877]: https://github.com/activeadmin/activeadmin/pull/5877
|
759
|
+
[#5886]: https://github.com/activeadmin/activeadmin/pull/5886
|
760
|
+
[#5887]: https://github.com/activeadmin/activeadmin/pull/5887
|
761
|
+
[#5894]: https://github.com/activeadmin/activeadmin/pull/5894
|
762
|
+
[#5895]: https://github.com/activeadmin/activeadmin/pull/5895
|
763
|
+
[#5929]: https://github.com/activeadmin/activeadmin/pull/5929
|
764
|
+
[#5931]: https://github.com/activeadmin/activeadmin/pull/5931
|
765
|
+
[#5938]: https://github.com/activeadmin/activeadmin/pull/5938
|
766
|
+
[#5943]: https://github.com/activeadmin/activeadmin/pull/5943
|
767
|
+
[#5946]: https://github.com/activeadmin/activeadmin/pull/5946
|
768
|
+
[#5956]: https://github.com/activeadmin/activeadmin/pull/5956
|
769
|
+
[#5957]: https://github.com/activeadmin/activeadmin/pull/5957
|
770
|
+
[#5994]: https://github.com/activeadmin/activeadmin/pull/5994
|
771
|
+
[#6000]: https://github.com/activeadmin/activeadmin/pull/6000
|
772
|
+
[#6002]: https://github.com/activeadmin/activeadmin/pull/6002
|
773
|
+
[#6047]: https://github.com/activeadmin/activeadmin/pull/6047
|
774
|
+
[#6086]: https://github.com/activeadmin/activeadmin/pull/6086
|
775
|
+
[#6099]: https://github.com/activeadmin/activeadmin/pull/6099
|
776
|
+
[#6124]: https://github.com/activeadmin/activeadmin/pull/6124
|
777
|
+
[#6149]: https://github.com/activeadmin/activeadmin/pull/6149
|
778
|
+
[#6195]: https://github.com/activeadmin/activeadmin/pull/6195
|
779
|
+
[#6198]: https://github.com/activeadmin/activeadmin/pull/6198
|
780
|
+
[#6210]: https://github.com/activeadmin/activeadmin/pull/6210
|
781
|
+
[#6221]: https://github.com/activeadmin/activeadmin/pull/6221
|
782
|
+
[#6232]: https://github.com/activeadmin/activeadmin/pull/6232
|
783
|
+
[#6249]: https://github.com/activeadmin/activeadmin/pull/6249
|
784
|
+
[#6315]: https://github.com/activeadmin/activeadmin/pull/6315
|
785
|
+
[#6318]: https://github.com/activeadmin/activeadmin/pull/6318
|
786
|
+
[#6341]: https://github.com/activeadmin/activeadmin/pull/6341
|
787
|
+
[#6368]: https://github.com/activeadmin/activeadmin/pull/6368
|
788
|
+
[#6393]: https://github.com/activeadmin/activeadmin/pull/6393
|
789
|
+
[#6422]: https://github.com/activeadmin/activeadmin/pull/6422
|
790
|
+
[#6451]: https://github.com/activeadmin/activeadmin/pull/6451
|
791
|
+
[#6460]: https://github.com/activeadmin/activeadmin/pull/6460
|
792
|
+
[#6462]: https://github.com/activeadmin/activeadmin/pull/6462
|
793
|
+
[#6482]: https://github.com/activeadmin/activeadmin/pull/6482
|
794
|
+
[#6487]: https://github.com/activeadmin/activeadmin/pull/6487
|
795
|
+
[#6523]: https://github.com/activeadmin/activeadmin/pull/6523
|
796
|
+
[#6535]: https://github.com/activeadmin/activeadmin/pull/6535
|
797
|
+
[#6536]: https://github.com/activeadmin/activeadmin/pull/6536
|
798
|
+
[#6548]: https://github.com/activeadmin/activeadmin/pull/6548
|
799
|
+
[#6583]: https://github.com/activeadmin/activeadmin/pull/6583
|
800
|
+
[#6584]: https://github.com/activeadmin/activeadmin/pull/6584
|
801
|
+
[#6872]: https://github.com/activeadmin/activeadmin/pull/6872
|
802
|
+
[#6873]: https://github.com/activeadmin/activeadmin/pull/6873
|
803
|
+
[#6884]: https://github.com/activeadmin/activeadmin/pull/6884
|
804
|
+
[#6906]: https://github.com/activeadmin/activeadmin/pull/6906
|
805
|
+
[#6915]: https://github.com/activeadmin/activeadmin/pull/6915
|
806
|
+
[#6916]: https://github.com/activeadmin/activeadmin/pull/6916
|
807
|
+
[#6922]: https://github.com/activeadmin/activeadmin/pull/6922
|
808
|
+
[#6936]: https://github.com/activeadmin/activeadmin/pull/6936
|
809
|
+
[#6954]: https://github.com/activeadmin/activeadmin/pull/6954
|
810
|
+
[#6959]: https://github.com/activeadmin/activeadmin/pull/6959
|
811
|
+
[#7002]: https://github.com/activeadmin/activeadmin/pull/7002
|
812
|
+
[#7013]: https://github.com/activeadmin/activeadmin/pull/7013
|
813
|
+
[#7095]: https://github.com/activeadmin/activeadmin/pull/7095
|
814
|
+
[#7127]: https://github.com/activeadmin/activeadmin/pull/7127
|
815
|
+
[#7144]: https://github.com/activeadmin/activeadmin/pull/7144
|
816
|
+
[#7170]: https://github.com/activeadmin/activeadmin/pull/7170
|
817
|
+
[#7181]: https://github.com/activeadmin/activeadmin/pull/7181
|
818
|
+
[#7205]: https://github.com/activeadmin/activeadmin/pull/7205
|
819
|
+
[#7235]: https://github.com/activeadmin/activeadmin/pull/7235
|
820
|
+
[#7236]: https://github.com/activeadmin/activeadmin/pull/7236
|
821
|
+
[#7262]: https://github.com/activeadmin/activeadmin/pull/7262
|
822
|
+
[#7293]: https://github.com/activeadmin/activeadmin/pull/7293
|
823
|
+
[#7332]: https://github.com/activeadmin/activeadmin/pull/7332
|
824
|
+
[#7336]: https://github.com/activeadmin/activeadmin/pull/7336
|
825
|
+
[#7340]: https://github.com/activeadmin/activeadmin/pull/7340
|
826
|
+
[#7341]: https://github.com/activeadmin/activeadmin/pull/7341
|
827
|
+
[#7349]: https://github.com/activeadmin/activeadmin/pull/7349
|
828
|
+
[#7350]: https://github.com/activeadmin/activeadmin/pull/7350
|
829
|
+
[#7377]: https://github.com/activeadmin/activeadmin/pull/7377
|
830
|
+
[#7384]: https://github.com/activeadmin/activeadmin/pull/7384
|
831
|
+
[#7394]: https://github.com/activeadmin/activeadmin/pull/7394
|
832
|
+
[#7453]: https://github.com/activeadmin/activeadmin/pull/7453
|
833
|
+
[#7475]: https://github.com/activeadmin/activeadmin/pull/7475
|
834
|
+
[#7476]: https://github.com/activeadmin/activeadmin/pull/7476
|
835
|
+
[#7479]: https://github.com/activeadmin/activeadmin/pull/7479
|
836
|
+
[#7487]: https://github.com/activeadmin/activeadmin/pull/7487
|
837
|
+
[#7488]: https://github.com/activeadmin/activeadmin/pull/7488
|
838
|
+
[#7541]: https://github.com/activeadmin/activeadmin/pull/7541
|
839
|
+
[#7556]: https://github.com/activeadmin/activeadmin/pull/7556
|
840
|
+
[#7599]: https://github.com/activeadmin/activeadmin/pull/7599
|
841
|
+
[#7653]: https://github.com/activeadmin/activeadmin/pull/7653
|
842
|
+
[#7772]: https://github.com/activeadmin/activeadmin/pull/7772
|
843
|
+
[#7920]: https://github.com/activeadmin/activeadmin/pull/7920
|
844
|
+
[#7944]: https://github.com/activeadmin/activeadmin/pull/7944
|
845
|
+
[#7984]: https://github.com/activeadmin/activeadmin/pull/7984
|
846
|
+
[#7985]: https://github.com/activeadmin/activeadmin/pull/7985
|
847
|
+
[#7986]: https://github.com/activeadmin/activeadmin/pull/7986
|
848
|
+
|
849
|
+
[@1000ship]: https://github.com/1000ship
|
520
850
|
[@5t111111]: https://github.com/5t111111
|
521
851
|
[@aarek]: https://github.com/aarek
|
852
|
+
[@adler99]: https://github.com/adler99
|
853
|
+
[@agrobbin]: https://github.com/agrobbin
|
522
854
|
[@ajw725]: https://github.com/ajw725
|
855
|
+
[@alejandroperea]: https://github.com/alejandroperea
|
523
856
|
[@alex-bogomolov]: https://github.com/alex-bogomolov
|
524
857
|
[@amiel]: https://github.com/amiel
|
858
|
+
[@amit]: https://github.com/amit
|
525
859
|
[@amiuhle]: https://github.com/amiuhle
|
526
860
|
[@andreslemik]: https://github.com/andreslemik
|
527
861
|
[@bartoszkopinski]: https://github.com/bartoszkopinski
|
862
|
+
[@bliof]: https://github.com/bliof
|
528
863
|
[@blocknotes]: https://github.com/blocknotes
|
529
864
|
[@bolshakov]: https://github.com/bolshakov
|
865
|
+
[@brunoarueira]: https://github.com/brunoarueira
|
866
|
+
[@brunvez]: https://github.com/brunvez
|
530
867
|
[@buren]: https://github.com/buren
|
531
868
|
[@chancancode]: https://github.com/chancancode
|
532
869
|
[@chrp]: https://github.com/chrp
|
533
870
|
[@chumakoff]: https://github.com/chumakoff
|
871
|
+
[@cprodhomme]: https://github.com/cprodhomme
|
534
872
|
[@craigmcnamara]: https://github.com/craigmcnamara
|
535
873
|
[@DanielHeath]: https://github.com/DanielHeath
|
536
874
|
[@deivid-rodriguez]: https://github.com/deivid-rodriguez
|
@@ -541,52 +879,105 @@ Please check [0-6-stable] for previous changes.
|
|
541
879
|
[@drn]: https://github.com/drn
|
542
880
|
[@eikes]: https://github.com/eikes
|
543
881
|
[@f1sherman]: https://github.com/f1sherman
|
882
|
+
[@FabioRos]: https://github.com/FabioRos
|
544
883
|
[@faucct]: https://github.com/faucct
|
545
884
|
[@Fivell]: https://github.com/Fivell
|
885
|
+
[@Fs00]: https://github.com/Fs00
|
886
|
+
[@fuzziness]: https://github.com/fuzziness
|
887
|
+
[@gabo-cs]: https://github.com/gabo-cs
|
888
|
+
[@giapnhdev]: https://github.com/giapnhdev
|
889
|
+
[@gigorok]: https://github.com/gigorok
|
546
890
|
[@glebtv]: https://github.com/glebtv
|
547
891
|
[@gonzedge]: https://github.com/gonzedge
|
892
|
+
[@guigs]: https://github.com/guigs
|
548
893
|
[@HappyKadaver]: https://github.com/HappyKadaver
|
894
|
+
[@hfl]: https://github.com/hfl
|
895
|
+
[@imcvampire]: https://github.com/imcvampire
|
549
896
|
[@innparusu95]: https://github.com/innparusu95
|
550
897
|
[@ionut998]: https://github.com/ionut998
|
551
898
|
[@irmela]: https://github.com/irmela
|
899
|
+
[@ispyropoulos]: https://github.com/ispyropoulos
|
900
|
+
[@Ivanov-Anton]: https://github.com/Ivanov-Anton
|
552
901
|
[@jasl]: https://github.com/jasl
|
902
|
+
[@javawizard]: https://github.com/javawizard
|
553
903
|
[@javierjulio]: https://github.com/javierjulio
|
554
904
|
[@jawa]: https://github.com/jawa
|
905
|
+
[@jaynetics]: https://github.com/jaynetics
|
906
|
+
[@JewelSam]: https://github.com/JewelSam
|
555
907
|
[@JiiHu]: https://github.com/JiiHu
|
908
|
+
[@jiikko]: https://github.com/jiikko
|
556
909
|
[@johnnyshields]: https://github.com/johnnyshields
|
557
910
|
[@jscheid]: https://github.com/jscheid
|
558
911
|
[@juril33t]: https://github.com/juril33t
|
912
|
+
[@jwesorick]: https://github.com/jwesorick
|
913
|
+
[@Karoid]: https://github.com/Karoid
|
559
914
|
[@kjeldahl]: https://github.com/kjeldahl
|
915
|
+
[@ko-lem]: https://github.com/ko-lem
|
560
916
|
[@kobeumut]: https://github.com/kobeumut
|
561
917
|
[@Kris-LIBIS]: https://github.com/Kris-LIBIS
|
918
|
+
[@krzcho]: https://github.com/krzcho
|
562
919
|
[@kwent]: https://github.com/kwent
|
920
|
+
[@lanzhiheng]: https://github.com/lanzhiheng
|
563
921
|
[@leio10]: https://github.com/leio10
|
922
|
+
[@littleforest]: https://github.com/littleforest
|
923
|
+
[@Looooong]: https://github.com/Looooong
|
924
|
+
[@lubosch]: https://github.com/lubosch
|
564
925
|
[@markstory]: https://github.com/markstory
|
565
926
|
[@mauriciopasquier]: https://github.com/mauriciopasquier
|
566
927
|
[@mconiglio]: https://github.com/mconiglio
|
928
|
+
[@mgrunberg]: https://github.com/mgrunberg
|
929
|
+
[@micred]: https://github.com/micred
|
930
|
+
[@mirelon]: https://github.com/mirelon
|
931
|
+
[@MmKolodziej]: https://github.com/MmKolodziej
|
932
|
+
[@mshalaby]: https://github.com/mshalaby
|
933
|
+
[@munen]: https://github.com/munen
|
934
|
+
[@mvz]: https://github.com/mvz
|
567
935
|
[@ndbroadbent]: https://github.com/ndbroadbent
|
936
|
+
[@ngouy]: https://github.com/ngouy
|
568
937
|
[@Nguyenanh]: https://github.com/Nguyenanh
|
938
|
+
[@orkhan]: https://github.com/orkhan
|
569
939
|
[@panasyuk]: https://github.com/panasyuk
|
570
940
|
[@PChambino]: https://github.com/PChambino
|
571
941
|
[@potatosalad]: https://github.com/potatosalad
|
572
942
|
[@pranas]: https://github.com/pranas
|
943
|
+
[@ray-curran]: https://github.com/ray-curran
|
573
944
|
[@renotocn]: https://github.com/renotocn
|
945
|
+
[@rn0rno]: https://github.com/rn0rno
|
574
946
|
[@RobinvanderVliet]: https://github.com/RobinvanderVliet
|
575
947
|
[@rogerkk]: https://github.com/rogerkk
|
948
|
+
[@roramirez]: https://github.com/roramirez
|
949
|
+
[@rs-phunt]: https://github.com/rs-phunt
|
950
|
+
[@sanfrecce-osaka]: https://github.com/sanfrecce-osaka
|
576
951
|
[@seanlinsley]: https://github.com/seanlinsley
|
952
|
+
[@sergey-alekseev]: https://github.com/sergey-alekseev
|
577
953
|
[@sgara]: https://github.com/sgara
|
578
954
|
[@ShallmentMo]: https://github.com/ShallmentMo
|
579
955
|
[@shekibobo]: https://github.com/shekibobo
|
580
956
|
[@shouya]: https://github.com/shouya
|
957
|
+
[@sjieg]: https://github.com/sjieg
|
958
|
+
[@sprql]: https://github.com/sprql
|
581
959
|
[@stefsava]: https://github.com/stefsava
|
582
960
|
[@stereoscott]: https://github.com/stereoscott
|
961
|
+
[@tagliala]: https://github.com/tagliala
|
962
|
+
[@taralbass]: https://github.com/taralbass
|
963
|
+
[@tf]: https://github.com/tf
|
583
964
|
[@tiagotex]: https://github.com/tiagotex
|
584
965
|
[@timoschilling]: https://github.com/timoschilling
|
585
966
|
[@TimPetricola]: https://github.com/TimPetricola
|
967
|
+
[@timwis]: https://github.com/timwis
|
968
|
+
[@tomgilligan]: https://github.com/tomgilligan
|
969
|
+
[@TonyArra]: https://github.com/TonyArra
|
970
|
+
[@tordans]: https://github.com/tordans
|
971
|
+
[@tvziet]: https://github.com/tvziet
|
972
|
+
[@utkarsh2102]: https://github.com/utkarsh2102
|
586
973
|
[@varyonic]: https://github.com/varyonic
|
974
|
+
[@vcsjones]: https://github.com/vcsjones
|
975
|
+
[@vfonic]: https://github.com/vfonic
|
587
976
|
[@violeta-p]: https://github.com/violeta-p
|
977
|
+
[@vlad-psh]: https://github.com/vlad-psh
|
588
978
|
[@WaKeMaTTa]: https://github.com/WaKeMaTTa
|
589
979
|
[@wasifhossain]: https://github.com/wasifhossain
|
980
|
+
[@westonganger]: https://github.com/westonganger
|
590
981
|
[@Wowu]: https://github.com/Wowu
|
591
982
|
[@wspurgin]: https://github.com/wspurgin
|
592
983
|
[@zorab47]: https://github.com/zorab47
|