activeadmin 1.0.0.pre1 → 2.9.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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +587 -939
- data/CODE_OF_CONDUCT.md +74 -0
- data/CONTRIBUTING.md +110 -59
- data/LICENSE +0 -5
- data/README.md +80 -61
- data/app/assets/javascripts/active_admin/base.js +517 -0
- data/app/assets/stylesheets/active_admin/_base.scss +31 -34
- data/app/assets/stylesheets/active_admin/_forms.scss +33 -35
- data/app/assets/stylesheets/active_admin/_header.scss +40 -8
- data/app/assets/stylesheets/active_admin/_mixins.scss +1 -1
- data/app/assets/stylesheets/active_admin/_normalize.scss +447 -0
- data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -5
- data/app/assets/stylesheets/active_admin/components/_buttons.scss +0 -5
- data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_scopes.scss +3 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +0 -4
- data/app/assets/stylesheets/active_admin/components/_tables.scss +5 -3
- data/app/assets/stylesheets/active_admin/components/_tabs.scss +1 -1
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -11
- data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +1 -1
- data/app/assets/stylesheets/active_admin/mixins/_sections.scss +0 -1
- data/app/assets/stylesheets/active_admin/mixins/_typography.scss +1 -1
- data/app/assets/stylesheets/active_admin/mixins/_variables.scss +9 -1
- data/app/assets/stylesheets/active_admin/print.scss +3 -4
- data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +1 -1
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -5
- data/app/javascript/active_admin/base.js +28 -0
- data/app/javascript/active_admin/ext/jquery-ui.js +7 -0
- data/app/javascript/active_admin/ext/jquery.js +9 -0
- data/app/javascript/active_admin/initializers/batch-actions.js +61 -0
- data/app/javascript/active_admin/initializers/checkbox-toggler.js +3 -0
- data/app/javascript/active_admin/initializers/datepicker.js +16 -0
- data/app/javascript/active_admin/initializers/dropdown-menu.js +9 -0
- data/app/javascript/active_admin/initializers/filters.js +10 -0
- data/app/javascript/active_admin/initializers/has-many.js +95 -0
- 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/javascript/active_admin/initializers/tabs.js +6 -0
- data/app/javascript/active_admin/lib/checkbox-toggler.js +49 -0
- data/app/javascript/active_admin/lib/dropdown-menu.js +116 -0
- data/app/javascript/active_admin/lib/filters.js +39 -0
- data/app/javascript/active_admin/lib/modal-dialog.js +63 -0
- data/app/javascript/active_admin/lib/per-page.js +38 -0
- data/app/javascript/active_admin/lib/table-checkbox-toggler.js +38 -0
- data/app/javascript/active_admin/lib/utils.js +40 -0
- data/app/views/active_admin/devise/confirmations/new.html.erb +2 -2
- 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/passwords/edit.html.erb +2 -2
- data/app/views/active_admin/devise/passwords/new.html.erb +2 -2
- data/app/views/active_admin/devise/registrations/new.html.erb +3 -4
- data/app/views/active_admin/devise/sessions/new.html.erb +2 -2
- data/app/views/active_admin/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/active_admin/devise/shared/_links.erb +12 -6
- data/app/views/active_admin/devise/unlocks/new.html.erb +2 -2
- data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
- data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_page.html.erb +12 -0
- data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
- data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
- 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 +21 -7
- data/config/locales/ar.yml +62 -47
- data/config/locales/az.yml +138 -0
- data/config/locales/bg.yml +1 -3
- data/config/locales/bs.yml +1 -2
- data/config/locales/ca.yml +2 -4
- data/config/locales/cs.yml +1 -2
- data/config/locales/da.yml +45 -14
- data/config/locales/de-CH.yml +4 -3
- data/config/locales/de.yml +46 -3
- data/config/locales/el.yml +3 -4
- data/config/locales/en-CA.yml +139 -0
- data/config/locales/en-GB.yml +46 -5
- data/config/locales/en.yml +44 -9
- data/config/locales/eo.yml +145 -0
- data/config/locales/es-MX.yml +9 -6
- data/config/locales/es.yml +63 -14
- data/config/locales/fa.yml +1 -2
- data/config/locales/fi.yml +2 -3
- data/config/locales/fr.yml +36 -8
- data/config/locales/he.yml +53 -7
- data/config/locales/hr.yml +1 -2
- data/config/locales/hu.yml +6 -3
- data/config/locales/id.yml +135 -0
- data/config/locales/it.yml +49 -4
- data/config/locales/ja.yml +31 -7
- data/config/locales/ko.yml +66 -36
- data/config/locales/lt.yml +27 -6
- data/config/locales/lv.yml +3 -4
- data/config/locales/mk.yml +134 -0
- data/config/locales/nb.yml +22 -8
- data/config/locales/nl.yml +26 -3
- data/config/locales/pl.yml +75 -5
- data/config/locales/pt-BR.yml +24 -2
- data/config/locales/pt-PT.yml +1 -2
- data/config/locales/ro.yml +1 -2
- data/config/locales/ru.yml +21 -4
- data/config/locales/sk.yml +168 -0
- data/config/locales/sv-SE.yml +50 -8
- data/config/locales/tr.yml +92 -45
- data/config/locales/uk.yml +30 -16
- data/config/locales/vi.yml +53 -12
- data/config/locales/zh-CN.yml +44 -7
- data/config/locales/zh-TW.yml +42 -3
- data/docs/.gitignore +1 -0
- data/docs/0-installation.md +68 -18
- data/docs/1-general-configuration.md +88 -4
- data/docs/10-custom-pages.md +56 -2
- data/docs/11-decorators.md +20 -5
- data/docs/12-arbre-components.md +75 -11
- data/docs/13-authorization-adapter.md +73 -36
- data/docs/14-gotchas.md +64 -18
- data/docs/2-resource-customization.md +91 -23
- data/docs/3-index-pages/custom-index.md +5 -1
- data/docs/3-index-pages/index-as-block.md +3 -5
- data/docs/3-index-pages/index-as-blog.md +4 -6
- data/docs/3-index-pages/index-as-grid.md +3 -5
- data/docs/3-index-pages/index-as-table.md +46 -9
- data/docs/3-index-pages.md +73 -10
- data/docs/4-csv-format.md +35 -0
- data/docs/5-forms.md +96 -18
- data/docs/6-show-pages.md +13 -25
- data/docs/7-sidebars.md +13 -1
- data/docs/8-custom-actions.md +18 -1
- data/docs/9-batch-actions.md +9 -5
- data/docs/CNAME +1 -0
- data/docs/Gemfile +3 -0
- data/docs/Gemfile.lock +259 -0
- data/docs/_config.yml +4 -0
- data/docs/_includes/footer.html +8 -0
- data/docs/_includes/google-analytics.html +16 -0
- data/docs/_includes/head.html +7 -0
- data/docs/_includes/toc.html +98 -0
- data/docs/_includes/top-menu.html +17 -0
- data/docs/_layouts/default.html +21 -0
- data/docs/documentation.md +60 -0
- 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 +14 -0
- data/docs/index.html +226 -0
- data/docs/stylesheets/main.css +1205 -0
- data/lib/active_admin/abstract_view_factory.rb +13 -51
- data/lib/active_admin/application.rb +105 -138
- data/lib/active_admin/application_settings.rb +42 -0
- data/lib/active_admin/authorization_adapter.rb +4 -7
- data/lib/active_admin/base_controller/authorization.rb +16 -21
- data/lib/active_admin/base_controller/menu.rb +10 -10
- data/lib/active_admin/base_controller.rb +15 -11
- data/lib/active_admin/batch_actions/controller.rb +6 -7
- data/lib/active_admin/batch_actions/resource_extension.rb +15 -15
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +4 -4
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +8 -7
- data/lib/active_admin/batch_actions/views/selection_cells.rb +7 -6
- data/lib/active_admin/batch_actions.rb +0 -1
- data/lib/active_admin/callbacks.rb +2 -2
- data/lib/active_admin/cancan_adapter.rb +1 -1
- data/lib/active_admin/collection_decorator.rb +31 -0
- data/lib/active_admin/controller_action.rb +2 -1
- data/lib/active_admin/csv_builder.rb +30 -20
- data/lib/active_admin/dependency.rb +36 -29
- data/lib/active_admin/deprecation.rb +0 -25
- data/lib/active_admin/devise.rb +9 -9
- data/lib/active_admin/dsl.rb +5 -18
- data/lib/active_admin/dynamic_setting.rb +38 -0
- data/lib/active_admin/dynamic_settings_node.rb +28 -0
- data/lib/active_admin/engine.rb +14 -7
- data/lib/active_admin/error.rb +6 -6
- data/lib/active_admin/filters/active.rb +29 -0
- data/lib/active_admin/filters/active_filter.rb +123 -0
- data/lib/active_admin/filters/active_sidebar.rb +54 -0
- data/lib/active_admin/filters/forms.rb +17 -10
- data/lib/active_admin/filters/formtastic_addons.rb +2 -7
- data/lib/active_admin/filters/resource_extension.rb +50 -14
- data/lib/active_admin/filters.rb +7 -5
- data/lib/active_admin/form_builder.rb +112 -67
- data/lib/active_admin/generators/boilerplate.rb +53 -0
- data/lib/active_admin/helpers/collection.rb +2 -0
- data/lib/active_admin/helpers/optional_display.rb +2 -2
- data/lib/active_admin/helpers/routes/url_helpers.rb +1 -1
- data/lib/active_admin/helpers/scope_chain.rb +1 -0
- data/lib/active_admin/inputs/datepicker_input.rb +13 -6
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +9 -9
- data/lib/active_admin/inputs/filters/base.rb +3 -1
- data/lib/active_admin/inputs/filters/boolean_input.rb +1 -1
- data/lib/active_admin/inputs/filters/check_boxes_input.rb +1 -1
- data/lib/active_admin/inputs/filters/date_picker_input.rb +13 -0
- data/lib/active_admin/inputs/filters/date_range_input.rb +25 -9
- data/lib/active_admin/inputs/filters/select_input.rb +8 -4
- data/lib/active_admin/inputs/filters/text_input.rb +25 -0
- data/lib/active_admin/inputs.rb +2 -0
- data/lib/active_admin/localizers/resource_localizer.rb +35 -0
- data/lib/active_admin/localizers.rb +11 -0
- data/lib/active_admin/menu.rb +13 -15
- data/lib/active_admin/menu_collection.rb +0 -2
- data/lib/active_admin/menu_item.rb +10 -38
- data/lib/active_admin/namespace.rb +51 -32
- data/lib/active_admin/namespace_settings.rb +126 -0
- data/lib/active_admin/order_clause.rb +30 -8
- data/lib/active_admin/orm/active_record/comments/comment.rb +6 -20
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +44 -21
- data/lib/active_admin/orm/active_record/comments/views.rb +2 -2
- data/lib/active_admin/orm/active_record/comments.rb +49 -29
- data/lib/active_admin/orm/active_record.rb +1 -1
- data/lib/active_admin/page.rb +24 -5
- data/lib/active_admin/page_controller.rb +2 -2
- data/lib/active_admin/page_dsl.rb +5 -1
- data/lib/active_admin/page_presenter.rb +2 -1
- data/lib/active_admin/pundit_adapter.rb +22 -9
- data/lib/active_admin/resource/action_items.rb +34 -12
- data/lib/active_admin/resource/attributes.rb +47 -0
- data/lib/active_admin/resource/belongs_to.rb +17 -4
- data/lib/active_admin/resource/controllers.rb +1 -1
- data/lib/active_admin/resource/menu.rb +9 -6
- data/lib/active_admin/resource/model.rb +15 -0
- data/lib/active_admin/resource/naming.rb +5 -5
- data/lib/active_admin/resource/ordering.rb +11 -0
- data/lib/active_admin/resource/page_presenters.rb +1 -1
- data/lib/active_admin/resource/pagination.rb +4 -0
- data/lib/active_admin/resource/routes.rb +56 -26
- data/lib/active_admin/resource/scope_to.rb +7 -7
- data/lib/active_admin/resource/scopes.rb +5 -3
- data/lib/active_admin/resource/sidebars.rb +2 -2
- data/lib/active_admin/resource.rb +80 -22
- data/lib/active_admin/resource_collection.rb +5 -3
- data/lib/active_admin/resource_controller/action_builder.rb +10 -0
- data/lib/active_admin/resource_controller/data_access.rb +56 -43
- data/lib/active_admin/resource_controller/decorators.rb +9 -31
- data/lib/active_admin/resource_controller/polymorphic_routes.rb +37 -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_controller/streaming.rb +12 -5
- data/lib/active_admin/resource_controller.rb +26 -10
- data/lib/active_admin/resource_dsl.rb +67 -21
- data/lib/active_admin/router.rb +90 -82
- data/lib/active_admin/scope.rb +21 -14
- data/lib/active_admin/settings_node.rb +19 -0
- data/lib/active_admin/sidebar_section.rb +6 -12
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_factory.rb +17 -18
- data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -2
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +5 -5
- data/lib/active_admin/view_helpers/display_helper.rb +51 -9
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +14 -1
- data/lib/active_admin/view_helpers/fields_for.rb +4 -4
- data/lib/active_admin/view_helpers/form_helper.rb +2 -2
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +11 -4
- data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
- data/lib/active_admin/view_helpers.rb +2 -2
- data/lib/active_admin/views/action_items.rb +1 -1
- data/lib/active_admin/views/components/active_admin_form.rb +45 -13
- data/lib/active_admin/views/components/attributes_table.rb +11 -29
- data/lib/active_admin/views/components/blank_slate.rb +1 -1
- data/lib/active_admin/views/components/columns.rb +12 -7
- data/lib/active_admin/views/components/dropdown_menu.rb +11 -13
- data/lib/active_admin/views/components/index_list.rb +6 -5
- data/lib/active_admin/views/components/menu.rb +32 -0
- data/lib/active_admin/views/components/menu_item.rb +58 -0
- data/lib/active_admin/views/components/paginated_collection.rb +52 -33
- data/lib/active_admin/views/components/panel.rb +2 -4
- data/lib/active_admin/views/components/scopes.rb +20 -12
- data/lib/active_admin/views/components/sidebar.rb +13 -0
- data/lib/active_admin/views/components/sidebar_section.rb +6 -1
- data/lib/active_admin/views/components/site_title.rb +6 -7
- data/lib/active_admin/views/components/status_tag.rb +19 -23
- data/lib/active_admin/views/components/table_for.rb +31 -57
- data/lib/active_admin/views/components/tabs.rb +17 -5
- data/lib/active_admin/views/footer.rb +15 -4
- data/lib/active_admin/views/header.rb +3 -16
- data/lib/active_admin/views/index_as_blog.rb +3 -4
- data/lib/active_admin/views/index_as_grid.rb +28 -28
- data/lib/active_admin/views/index_as_table.rb +76 -28
- data/lib/active_admin/views/pages/base.rb +45 -58
- data/lib/active_admin/views/pages/form.rb +5 -2
- data/lib/active_admin/views/pages/index.rb +15 -13
- data/lib/active_admin/views/pages/layout.rb +1 -1
- data/lib/active_admin/views/pages/show.rb +9 -3
- data/lib/active_admin/views/tabbed_navigation.rb +4 -59
- data/lib/active_admin/views/title_bar.rb +6 -6
- data/lib/active_admin/views.rb +1 -1
- data/lib/active_admin.rb +69 -67
- data/lib/activeadmin.rb +1 -1
- data/lib/generators/active_admin/assets/assets_generator.rb +3 -3
- data/lib/generators/active_admin/assets/templates/active_admin.js +1 -0
- data/lib/generators/active_admin/assets/templates/{active_admin.css.scss → active_admin.scss} +3 -3
- data/lib/generators/active_admin/devise/devise_generator.rb +17 -26
- data/lib/generators/active_admin/install/install_generator.rb +18 -8
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +107 -5
- data/lib/generators/active_admin/install/templates/{admin_user.rb.erb → admin_users.rb.erb} +1 -3
- data/lib/generators/active_admin/install/templates/dashboard.rb +2 -3
- data/lib/generators/active_admin/install/templates/migrations/{create_active_admin_comments.rb → create_active_admin_comments.rb.erb} +2 -5
- data/lib/generators/active_admin/page/page_generator.rb +1 -1
- data/lib/generators/active_admin/page/templates/page.rb +1 -1
- data/lib/generators/active_admin/resource/resource_generator.rb +8 -2
- data/lib/generators/active_admin/resource/templates/admin.rb.erb +46 -0
- 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 +26 -0
- data/lib/ransack_ext.rb +11 -3
- data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
- data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
- data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
- 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/ie.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/labels.js +65 -0
- data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
- data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
- data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +291 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
- metadata +182 -553
- data/.gitignore +0 -49
- data/.hound.yml +0 -11
- data/.travis.yml +0 -42
- data/.yardopts +0 -8
- data/Gemfile +0 -54
- data/Guardfile +0 -8
- data/Rakefile +0 -33
- data/activeadmin.gemspec +0 -28
- data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
- 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/application.js.coffee +0 -32
- data/app/assets/javascripts/active_admin/base.js.coffee +0 -14
- 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/lib/batch_actions.js.coffee +0 -39
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +0 -36
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +0 -101
- 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 -37
- data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +0 -27
- data/app/assets/javascripts/active_admin/lib/popover.js.coffee +0 -68
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +0 -24
- data/app/assets/stylesheets/active_admin/components/_popovers.scss +0 -122
- data/app/assets/stylesheets/active_admin/mixins/_icons.scss +0 -20
- data/app/assets/stylesheets/active_admin/mixins/_reset.scss +0 -165
- data/cucumber.yml +0 -3
- data/features/action_item.feature +0 -73
- data/features/authorization.feature +0 -64
- data/features/authorization_cancan.feature +0 -52
- data/features/authorization_pundit.feature +0 -37
- data/features/belongs_to.feature +0 -66
- data/features/breadcrumb.feature +0 -75
- data/features/comments/commenting.feature +0 -171
- data/features/comments/viewing_index.feature +0 -19
- data/features/dashboard.feature +0 -16
- data/features/decorators.feature +0 -41
- data/features/development_reloading.feature +0 -30
- data/features/edit_page.feature +0 -117
- data/features/favicon.feature +0 -20
- data/features/first_boot.feature +0 -16
- data/features/global_navigation.feature +0 -29
- data/features/i18n.feature +0 -43
- data/features/index/batch_actions.feature +0 -164
- data/features/index/filters.feature +0 -161
- data/features/index/format_as_csv.feature +0 -203
- data/features/index/formats.feature +0 -66
- data/features/index/index_as_block.feature +0 -15
- data/features/index/index_as_blog.feature +0 -69
- data/features/index/index_as_grid.feature +0 -45
- data/features/index/index_as_table.feature +0 -291
- data/features/index/index_blank_slate.feature +0 -83
- data/features/index/index_parameters.feature +0 -75
- data/features/index/index_scope_to.feature +0 -56
- data/features/index/index_scopes.feature +0 -251
- data/features/index/page_title.feature +0 -41
- data/features/index/pagination.feature +0 -59
- data/features/index/switch_index_view.feature +0 -73
- data/features/menu.feature +0 -53
- data/features/new_page.feature +0 -109
- data/features/registering_assets.feature +0 -35
- data/features/registering_pages.feature +0 -148
- data/features/registering_resources.feature +0 -33
- data/features/renamed_resource.feature +0 -32
- data/features/root_to.feature +0 -17
- data/features/show/default_content.feature +0 -43
- data/features/show/page_title.feature +0 -58
- data/features/show/tabs.feature +0 -27
- data/features/sidebar_sections.feature +0 -210
- data/features/site_title.feature +0 -47
- data/features/specifying_actions.feature +0 -93
- data/features/step_definitions/action_item_steps.rb +0 -7
- data/features/step_definitions/action_link_steps.rb +0 -20
- data/features/step_definitions/additional_web_steps.rb +0 -81
- data/features/step_definitions/asset_steps.rb +0 -15
- data/features/step_definitions/attribute_steps.rb +0 -18
- data/features/step_definitions/batch_action_steps.rb +0 -72
- data/features/step_definitions/blog_steps.rb +0 -3
- data/features/step_definitions/breadcrumb_steps.rb +0 -3
- data/features/step_definitions/comment_steps.rb +0 -12
- data/features/step_definitions/configuration_steps.rb +0 -100
- data/features/step_definitions/dashboard_steps.rb +0 -15
- data/features/step_definitions/factory_steps.rb +0 -34
- data/features/step_definitions/filter_steps.rb +0 -39
- data/features/step_definitions/flash_steps.rb +0 -11
- data/features/step_definitions/format_steps.rb +0 -52
- data/features/step_definitions/i18n_steps.rb +0 -3
- data/features/step_definitions/index_scope_steps.rb +0 -21
- data/features/step_definitions/index_views_steps.rb +0 -3
- data/features/step_definitions/layout_steps.rb +0 -3
- data/features/step_definitions/member_link_steps.rb +0 -7
- data/features/step_definitions/menu_steps.rb +0 -11
- data/features/step_definitions/pagination_steps.rb +0 -7
- data/features/step_definitions/sidebar_steps.rb +0 -13
- data/features/step_definitions/site_title_steps.rb +0 -17
- data/features/step_definitions/symbol_leak_steps.rb +0 -3
- data/features/step_definitions/tab_steps.rb +0 -8
- data/features/step_definitions/table_steps.rb +0 -119
- data/features/step_definitions/user_steps.rb +0 -45
- data/features/step_definitions/web_steps.rb +0 -85
- data/features/sti_resource.feature +0 -65
- data/features/strong_parameters.feature +0 -73
- data/features/support/env.rb +0 -145
- data/features/support/paths.rb +0 -71
- data/features/support/selectors.rb +0 -45
- data/features/symbol_leak.feature +0 -35
- data/features/users/logging_in.feature +0 -34
- data/features/users/logging_out.feature +0 -13
- data/features/users/resetting_password.feature +0 -34
- data/lib/active_admin/batch_actions/views/batch_action_popover.rb +0 -28
- data/lib/active_admin/event.rb +0 -33
- data/lib/active_admin/helpers/settings.rb +0 -115
- data/lib/active_admin/iconic/icons.rb +0 -142
- data/lib/active_admin/iconic.rb +0 -53
- data/lib/active_admin/view_helpers/icon_helper.rb +0 -12
- data/lib/active_admin/views/components/action_list_popover.rb +0 -29
- data/lib/active_admin/views/components/popover.rb +0 -27
- data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +0 -1
- data/lib/generators/active_admin/resource/templates/admin.rb +0 -18
- data/script/local +0 -44
- data/script/travis_cache +0 -107
- data/script/use_rails +0 -53
- data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +0 -50
- data/spec/javascripts/coffeescripts/jquery.aa.flash.js.coffee +0 -25
- data/spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee +0 -82
- data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +0 -34
- data/spec/javascripts/fixtures/checkboxes.html +0 -9
- data/spec/javascripts/fixtures/flashes.html +0 -2
- data/spec/javascripts/fixtures/table_checkboxes.html +0 -17
- data/spec/javascripts/helpers/SpecHelper.js +0 -3
- data/spec/javascripts/support/jasmine.yml +0 -74
- data/spec/javascripts/support/jasmine_config.rb +0 -23
- data/spec/javascripts/support/jasmine_runner.rb +0 -32
- data/spec/rails_helper.rb +0 -154
- data/spec/requests/default_namespace_spec.rb +0 -61
- data/spec/requests/javascript_spec.rb +0 -20
- data/spec/requests/memory_spec.rb +0 -23
- data/spec/requests/stylesheets_spec.rb +0 -18
- data/spec/spec_helper.rb +0 -17
- data/spec/support/deferred_garbage_collection.rb +0 -19
- data/spec/support/detect_rails_version.rb +0 -34
- data/spec/support/integration_example_group.rb +0 -31
- data/spec/support/jslint.yml +0 -80
- data/spec/support/rails_template.rb +0 -138
- data/spec/support/rails_template_with_data.rb +0 -59
- data/spec/support/templates/admin/stores.rb +0 -9
- data/spec/support/templates/cucumber.rb +0 -24
- data/spec/support/templates/cucumber_with_reloading.rb +0 -5
- data/spec/support/templates/en.yml +0 -8
- data/spec/support/templates/policies/active_admin/comment_policy.rb +0 -9
- data/spec/support/templates/policies/active_admin/page_policy.rb +0 -18
- data/spec/support/templates/policies/admin_user_policy.rb +0 -11
- data/spec/support/templates/policies/application_policy.rb +0 -45
- data/spec/support/templates/policies/category_policy.rb +0 -7
- data/spec/support/templates/policies/post_policy.rb +0 -15
- data/spec/support/templates/policies/store_policy.rb +0 -11
- data/spec/support/templates/policies/user_policy.rb +0 -11
- data/spec/support/templates/post_decorator.rb +0 -11
- data/spec/unit/abstract_view_factory_spec.rb +0 -79
- data/spec/unit/action_builder_spec.rb +0 -132
- data/spec/unit/active_admin_spec.rb +0 -11
- data/spec/unit/application_spec.rb +0 -140
- data/spec/unit/asset_registration_spec.rb +0 -52
- data/spec/unit/authorization/authorization_adapter_spec.rb +0 -61
- data/spec/unit/authorization/controller_authorization_spec.rb +0 -39
- data/spec/unit/authorization/index_overriding_spec.rb +0 -22
- data/spec/unit/auto_link_spec.rb +0 -69
- data/spec/unit/batch_actions/resource_spec.rb +0 -92
- data/spec/unit/batch_actions/settings_spec.rb +0 -61
- data/spec/unit/belongs_to_spec.rb +0 -51
- data/spec/unit/cancan_adapter_spec.rb +0 -43
- data/spec/unit/comments_spec.rb +0 -166
- data/spec/unit/component_spec.rb +0 -18
- data/spec/unit/config_shared_examples.rb +0 -59
- data/spec/unit/controller_filters_spec.rb +0 -44
- data/spec/unit/csv_builder_spec.rb +0 -244
- data/spec/unit/dependency_spec.rb +0 -135
- data/spec/unit/devise_spec.rb +0 -96
- data/spec/unit/dsl_spec.rb +0 -122
- data/spec/unit/event_spec.rb +0 -47
- data/spec/unit/filters/filter_form_builder_spec.rb +0 -433
- data/spec/unit/filters/resource_spec.rb +0 -121
- data/spec/unit/form_builder_spec.rb +0 -752
- data/spec/unit/generators/install_spec.rb +0 -23
- data/spec/unit/helpers/collection_spec.rb +0 -65
- data/spec/unit/helpers/scope_chain_spec.rb +0 -36
- data/spec/unit/helpers/settings_spec.rb +0 -30
- data/spec/unit/i18n_spec.rb +0 -12
- data/spec/unit/menu_collection_spec.rb +0 -62
- data/spec/unit/menu_item_spec.rb +0 -143
- data/spec/unit/menu_spec.rb +0 -71
- data/spec/unit/namespace/authorization_spec.rb +0 -27
- data/spec/unit/namespace/register_page_spec.rb +0 -74
- data/spec/unit/namespace/register_resource_spec.rb +0 -161
- data/spec/unit/namespace_spec.rb +0 -103
- data/spec/unit/order_clause_spec.rb +0 -81
- data/spec/unit/page_controller_spec.rb +0 -5
- data/spec/unit/page_spec.rb +0 -78
- data/spec/unit/pretty_format_spec.rb +0 -63
- data/spec/unit/pundit_adapter_spec.rb +0 -98
- data/spec/unit/resource/action_items_spec.rb +0 -65
- data/spec/unit/resource/includes_spec.rb +0 -21
- data/spec/unit/resource/menu_spec.rb +0 -18
- data/spec/unit/resource/naming_spec.rb +0 -122
- data/spec/unit/resource/page_presenters_spec.rb +0 -44
- data/spec/unit/resource/pagination_spec.rb +0 -38
- data/spec/unit/resource/routes_spec.rb +0 -73
- data/spec/unit/resource/scopes_spec.rb +0 -50
- data/spec/unit/resource/sidebars_spec.rb +0 -43
- data/spec/unit/resource_collection_spec.rb +0 -158
- data/spec/unit/resource_controller/data_access_spec.rb +0 -140
- data/spec/unit/resource_controller/decorators_spec.rb +0 -83
- data/spec/unit/resource_controller/sidebars_spec.rb +0 -45
- data/spec/unit/resource_controller_spec.rb +0 -269
- data/spec/unit/resource_registration_spec.rb +0 -56
- data/spec/unit/resource_spec.rb +0 -278
- data/spec/unit/routing_spec.rb +0 -180
- data/spec/unit/scope_spec.rb +0 -190
- data/spec/unit/settings_spec.rb +0 -118
- data/spec/unit/view_factory_spec.rb +0 -21
- data/spec/unit/view_helpers/breadcrumbs_spec.rb +0 -217
- data/spec/unit/view_helpers/display_name_spec.rb +0 -69
- data/spec/unit/view_helpers/download_format_links_helper_spec.rb +0 -39
- data/spec/unit/view_helpers/fields_for_spec.rb +0 -50
- data/spec/unit/view_helpers/flash_helper_spec.rb +0 -25
- data/spec/unit/view_helpers/form_helper_spec.rb +0 -43
- data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +0 -139
- data/spec/unit/views/components/action_list_popover_spec.rb +0 -40
- data/spec/unit/views/components/attributes_table_spec.rb +0 -272
- data/spec/unit/views/components/batch_action_popover_spec.rb +0 -47
- data/spec/unit/views/components/blank_slate_spec.rb +0 -27
- data/spec/unit/views/components/columns_spec.rb +0 -172
- data/spec/unit/views/components/index_list_spec.rb +0 -35
- data/spec/unit/views/components/index_table_for_spec.rb +0 -46
- data/spec/unit/views/components/paginated_collection_spec.rb +0 -236
- data/spec/unit/views/components/panel_spec.rb +0 -62
- data/spec/unit/views/components/popover_spec.rb +0 -33
- data/spec/unit/views/components/sidebar_section_spec.rb +0 -47
- data/spec/unit/views/components/site_title_spec.rb +0 -78
- data/spec/unit/views/components/status_tag_spec.rb +0 -235
- data/spec/unit/views/components/table_for_spec.rb +0 -384
- data/spec/unit/views/components/tabs_spec.rb +0 -39
- data/spec/unit/views/components/unsupported_browser_spec.rb +0 -47
- data/spec/unit/views/pages/form_spec.rb +0 -42
- data/spec/unit/views/pages/index_spec.rb +0 -60
- data/spec/unit/views/pages/layout_spec.rb +0 -59
- data/spec/unit/views/pages/show_spec.rb +0 -33
- data/spec/unit/views/tabbed_navigation_spec.rb +0 -158
- data/tasks/docs.rake +0 -37
- data/tasks/parallel_tests.rake +0 -66
- data/tasks/test.rake +0 -83
- data/tasks/yard.rake +0 -9
data/CHANGELOG.md
CHANGED
|
@@ -1,1106 +1,754 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Unreleased
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
* JavaScript `window.AA` has been removed, use `window.ActiveAdmin` [#3606][] by [@timoschilling][]
|
|
7
|
-
* `f.form_buffers` has been removed [#3486][] by [@varyonic][]
|
|
5
|
+
## 2.9.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.1..v2.9.0)
|
|
8
6
|
|
|
9
7
|
### Enhancements
|
|
10
8
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
*
|
|
14
|
-
* Rails 4 support [#2326][] by many people <3
|
|
15
|
-
* Rails 4.2 support [#3731][] by [@gonzedge][] and [@timoschilling][]
|
|
16
|
-
|
|
17
|
-
#### Minor
|
|
18
|
-
|
|
19
|
-
* Do not auto link to inaccessible actions [#3686][] by [@pranas][]
|
|
20
|
-
* Allow to enable comments on per-resource basis [#3695][] by [@pranas][]
|
|
21
|
-
* Unify DSL for index `actions` and `actions dropdown: true` [#3463][] by [@timoschilling][]
|
|
22
|
-
* Add DSL method `includes` for `ActiveRecord::Relation#includes` [#3464][] by [@timoschilling][]
|
|
23
|
-
* BOM (byte order mark) configurable for CSV download [#3519][] by [@timoschilling][]
|
|
24
|
-
* Column block on table index is now sortable by default [#3075][] by [@dmitry][]
|
|
25
|
-
* Allow Arbre to be used inside ActiveAdmin forms [#3486][] by [@varyonic][]
|
|
26
|
-
* Make AA ORM-agnostic [#2545][] by [@johnnyshields][]
|
|
27
|
-
* Add multi-record support to `attributes_table_for` [#2544][] by [@zorab47][]
|
|
28
|
-
* Table CSS classes are now prefixed to prevent clashes [#2532][] by [@TimPetricola][]
|
|
29
|
-
* Allow Inherited Resources shorthand for redirection [#2001][] by [@seanlinsley][]
|
|
30
|
-
```ruby
|
|
31
|
-
controller do
|
|
32
|
-
# Redirects to index page instead of rendering updated resource
|
|
33
|
-
def update
|
|
34
|
-
update!{ collection_path }
|
|
35
|
-
end
|
|
36
|
-
end
|
|
37
|
-
```
|
|
9
|
+
* Support for Rails 6.1. [#6548] by [@deivid-rodriguez]
|
|
10
|
+
* Add ability to override "Remove" button text on has_many forms. [#6523] by [@littleforest]
|
|
11
|
+
* Drop git in gemspec. [#6462] by [@utkarsh2102]
|
|
38
12
|
|
|
39
|
-
|
|
40
|
-
```ruby
|
|
41
|
-
index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
|
|
42
|
-
```
|
|
13
|
+
### Bug Fixes
|
|
43
14
|
|
|
44
|
-
|
|
15
|
+
* Pick up upstream fixes in devise templates. [#6536] by [@munen]
|
|
16
|
+
|
|
17
|
+
### Documentation
|
|
45
18
|
|
|
46
|
-
*
|
|
19
|
+
* Fix `has_many` syntax in forms documentation. [#6583] by [@krzcho]
|
|
20
|
+
* Add example of using `default_main_content` in show pages. [#6487] by [@sjieg]
|
|
21
|
+
|
|
22
|
+
### Dependency Changes
|
|
23
|
+
|
|
24
|
+
* Remove sassc and sprockets runtime dependencies. [#6584] by [@deivid-rodriguez]
|
|
25
|
+
|
|
26
|
+
## 2.8.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.0..v2.8.1)
|
|
47
27
|
|
|
48
28
|
### Bug Fixes
|
|
49
29
|
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
* Fixes the deletion of `:if` and `:unless` from filters [#2523][] by [@PChambino][]
|
|
30
|
+
* Fix `permitted_param` generation for `belongs_to` when `:param` is used. [#6460] by [@deivid-rodriguez]
|
|
31
|
+
* Fix streaming CSV export. [#6451] by [@deivid-rodriguez]
|
|
32
|
+
* Fix input string filter no rendering dropdown input when its column name ends with a ransack predicate. [#6422] by [@Fivell]
|
|
54
33
|
|
|
55
|
-
##
|
|
34
|
+
## 2.8.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.7.0..v2.8.0)
|
|
56
35
|
|
|
57
|
-
|
|
58
|
-
* Blacklists Devise versions vulnerable to CVE-2013-0233 [#2744][] by [@jjarmoc][]
|
|
59
|
-
* Autoloads the Comments model so it respects user's Kaminari config 77c97d27 by [@seanlinsley][]
|
|
60
|
-
* Hides the blank slate link if user doesn't have permissions [#2588][] by [@seanlinsley][]
|
|
61
|
-
* Fixes incorrect breadcrumb on edit pages [#2601][] by [@shekibobo][]
|
|
62
|
-
* Resurrects `ResourceMismatchError` b1c28cdb by [@seanlinsley][]
|
|
63
|
-
* Keeps filter conditions from being deleted fa0edec4 by [@seanlinsley][]
|
|
64
|
-
* Translations by [@teoulas][], [@tricknotes][], [@givanse][], and [@pcreux][] :heart:
|
|
36
|
+
### Enhancements
|
|
65
37
|
|
|
66
|
-
|
|
38
|
+
* Allow using PORO decorators. [#6249] by [@brunvez]
|
|
39
|
+
* Make sure `ActiveAdmin.routes` provides routes in a consistent order. [#6124] by [@jiikko]
|
|
40
|
+
* Use proper closing tags for HTML in ModalDialog component. [#6221] by [@javierjulio]
|
|
67
41
|
|
|
68
|
-
|
|
42
|
+
### Bug Fixes
|
|
69
43
|
|
|
70
|
-
|
|
44
|
+
* Fix comment layout so regardless of size, each is aligned and spaced evenly. [#6393] by [@Ivanov-Anton]
|
|
71
45
|
|
|
72
|
-
###
|
|
46
|
+
### Translation Improvements
|
|
73
47
|
|
|
74
|
-
*
|
|
75
|
-
*
|
|
76
|
-
*
|
|
77
|
-
*
|
|
78
|
-
```ruby
|
|
79
|
-
# (assuming Foo HABTM Bars)
|
|
80
|
-
ActiveAdmin.register Foo do
|
|
81
|
-
filter :bars
|
|
82
|
-
end
|
|
83
|
-
```
|
|
48
|
+
* Fix several Arabic translations. [#6368] by [@mshalaby]
|
|
49
|
+
* Add missing `scope/all` italian translation. [#6341] by [@fuzziness]
|
|
50
|
+
* Improve Japanese translation. [#6315] by [@rn0rno]
|
|
51
|
+
* Fix es and es-MX sign_in and sign_up translation. [#6210] by [@roramirez]
|
|
84
52
|
|
|
85
|
-
|
|
86
|
-
* Select filters now respect custom MetaSerch search methods [#2420][] by [@seanlinsley][]
|
|
87
|
-
* The navbar now links to the current user's profile [#2395][] by [@seanlinsley][]
|
|
53
|
+
### Documentation
|
|
88
54
|
|
|
89
|
-
|
|
55
|
+
* Fix filter_columns_for_large_association and filter_method_for_large_association examples. [#6232] by [@ndbroadbent]
|
|
56
|
+
|
|
57
|
+
### Dependency Changes
|
|
90
58
|
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
* Fixes breadcrumb links for `belongs_to` resources [#2090][] by [@seanlinsley][]
|
|
96
|
-
* Fixes ID regression, again using `to_param` [#2175][] by [@cknoxrun][]
|
|
97
|
-
* Fixes `check_box_checked?` bug [#2186][] by [@seanlinsley][]; later updated in [#2221][] by [@dmfrancisco][]
|
|
98
|
-
* Ensures that assets can only be registered once [#2139][] by [@seanlinsley][]
|
|
99
|
-
* Makes breadcrumbs respect the decorator [#2315][] by [@amiel][]
|
|
100
|
-
* CSV download links now respect pagination [#2419][] by [@seanlinsley][]
|
|
101
|
-
* Panels no longer escape html-safe entities [#2403][] by [@zorab47][]
|
|
59
|
+
* Allow formtastic 4. [#6318] by [@deivid-rodriguez]
|
|
60
|
+
* Drop Ruby 2.4 support. [#6198] by [@deivid-rodriguez]
|
|
61
|
+
|
|
62
|
+
## 2.7.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.1..v2.7.0)
|
|
102
63
|
|
|
103
64
|
### Enhancements
|
|
104
65
|
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
* Adds [better_errors](https://github.com/charliesome/better_errors) gem for a better AA development experience [#2095][] by [@seanlinsley][]
|
|
108
|
-
* Scopes now support blocks for the `:default` option [#2084][] by [@macfanatic][]
|
|
109
|
-
* `:if` and `:unless` options added to `scope_to` [#2089][] by [@macfanatic][]
|
|
110
|
-
* Renames Comment to AdminComment [#2060][] by [@jbhannah][]; later replaced by [#2113][]
|
|
111
|
-
* Improves Comments UI and adds config settings [#2113][] by [@seanlinsley][]
|
|
112
|
-
```ruby
|
|
113
|
-
config.show_comments_in_menu = false # Defaults to true
|
|
114
|
-
config.comments_registration_name = 'AdminComment' # Defaults to 'Comment'
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
* `has_many` forms
|
|
118
|
-
* Adds 'has_many_delete' CSS class to `li` elements [#2054][] by [@shekibobo][]
|
|
119
|
-
* Adds `:heading` option to customize the heading displayed [#2068][] by [@coreyward][]
|
|
120
|
-
* Adds `:allow_destroy` option to add in a checkbox to the form to delete records [#2071][] by [@shekibobo][]
|
|
121
|
-
* Adds `:new_record` option to hide "new" button [#2134][] by [@developer88][]
|
|
122
|
-
* translations
|
|
123
|
-
* German (Switzerland), English (UK) locales added [#1916][] by [@psy-q][]
|
|
124
|
-
* Danish locale updated [#2154][] by [@jokklan][]
|
|
125
|
-
* Bulgarian locale updated [#2150][] by [@mitio][]
|
|
126
|
-
* Ukrainian locale added [#2258][] by [@valdemarua][]
|
|
127
|
-
* Mexican Spanish locale added [#2319][] by [@neoriddle][]
|
|
128
|
-
* Japanese locale updated [#2416][] by [@nappa][]
|
|
129
|
-
* move filter translation into `SearchMethodSelect` [#2231][] by [@seanlinsley][]
|
|
130
|
-
* fix plural translations for default `batch_action` [#2255][] by [@mindhalt][]
|
|
131
|
-
* In development, load each individual AA JS file [#2215][] by [@tank-bohr][]
|
|
132
|
-
* Removes Railtie, only using Rails Engine [#2162][] by [@jherdman][]
|
|
133
|
-
* Excludes associations from `display_name` helper [#2147][] by [@seanlinsley][]
|
|
134
|
-
* Prevents new AA::Application instances from using the same `namespace` hash [#2313][] by [@seanlinsley][]
|
|
135
|
-
* Moves hard-coded SASS colors into variables [#2454][] by [@ilyakatz][]
|
|
136
|
-
|
|
137
|
-
### Cleanup
|
|
138
|
-
|
|
139
|
-
* Cucumber step definitions refactor [#2015][] by [@seanlinsley][]
|
|
140
|
-
* Misc cleanup in [#2075][] and [#2107][] by [@seanlinsley][]
|
|
141
|
-
* Removes messy spacing from `AdminUser` generator file [#2058][] by [@lupinglade][]
|
|
142
|
-
* Fixes documentation formatting [#2083][] by [@amiel][]
|
|
143
|
-
* Deprecated settings & code removed [#2165][] by [@seanlinsley][]
|
|
144
|
-
|
|
145
|
-
## 0.6.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.5.1...v0.6.0)
|
|
66
|
+
* Extend menu to allow for nested submenus. [#5994] by [@taralbass]
|
|
67
|
+
* Add Webpacker compatibility with opt-in config switch and installation generator. [#5855] by [@sgara]
|
|
146
68
|
|
|
147
69
|
### Bug Fixes
|
|
148
70
|
|
|
149
|
-
* Fix
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
* Fixed routing bug for root namespace [#2043][] by [@seanlinsley][] and [@gregbell][]
|
|
71
|
+
* Fix scopes renderer when resource has only optional scopes and their conditions are false. [#6149] by [@Looooong]
|
|
72
|
+
* Fix some missing wrapper markup in "logged out" layout. [#6086] by [@irmela]
|
|
73
|
+
* Fix some typos in Vietnamese translation. [#6099] by [@giapnhdev]
|
|
153
74
|
|
|
154
|
-
|
|
75
|
+
## 2.6.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.0..v2.6.1)
|
|
155
76
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
*
|
|
159
|
-
*
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
* Allow options to be passed to the Abre element for rows in `attributes_table` [#1439][] by [@seanlinsley][]
|
|
165
|
-
* Gender neutral Spanish translations [#1973][] by [@laffinkippah][]
|
|
166
|
-
* Adds the ability to use `starts_with` and `ends_with` in string filters [#1962][] by [@rmw][]
|
|
167
|
-
* Adds support for translating resources when registered with `:as` [#2044][] by [@seanlinsley][]
|
|
168
|
-
* Scopes are no longer hidden when empty filter results [#1804][] by [@seanlinsley][]
|
|
169
|
-
* Dynamic scope names with procs [#2018][] by [@seanlinsley][]
|
|
170
|
-
* Filters now support the `:if` optional argument [#1801][] by [@seanlinsley][]
|
|
171
|
-
* Member & collection actions support multiple HTTP methods for the same action [#2000][] by [@rdsoze][]
|
|
172
|
-
|
|
173
|
-
### Features
|
|
174
|
-
|
|
175
|
-
* Authorization DSL including a default CanCan adapter [#1817][] by [@pcreux][] and [@gregbell][]
|
|
176
|
-
* New "actions" DSL for customizing actions on index listing [#1834][] by [@ejholmes][]
|
|
177
|
-
* Index title can now be set via a proc [#1861][] by [@jamesalmond][]
|
|
178
|
-
* Can now disable `download_links` per resource, index collection or globally throughout AA [#1908][] by [@TBAA][]
|
|
179
|
-
* Filters: add ability to search for blank/null fields with boolean search [#1893][] by [@whatcould][]
|
|
180
|
-
* New `navigation_menu` DSL for menu system [#1967][] by [@macfanatic][] and [@gregbell][]
|
|
181
|
-
* Support segmented control switch between different index styles [#1745][] by [@joshuacollins85][]
|
|
182
|
-
|
|
183
|
-
### Other
|
|
184
|
-
|
|
185
|
-
* Updated documentation for formtastic deprecated f.buttons [#1867][] by [@ericcumbee][]
|
|
186
|
-
* Copyright updated for 2013 [#1937][] by [@snapapps][]
|
|
187
|
-
|
|
188
|
-
### Contributors
|
|
189
|
-
|
|
190
|
-
327 Commits by 42 authors
|
|
191
|
-
|
|
192
|
-
* Adrien Kohlbecker
|
|
193
|
-
* Alexandr Prudnikov
|
|
194
|
-
* Andrew Pietsch
|
|
195
|
-
* Andrey A.I. Sitnik
|
|
196
|
-
* Andrey Rozhkovsky
|
|
197
|
-
* Anthony Zacharakis
|
|
198
|
-
* Bartlomiej Niemtur
|
|
199
|
-
* David DIDIER
|
|
200
|
-
* David Reese
|
|
201
|
-
* Sean Linsley
|
|
202
|
-
* Dirkjan Bussink
|
|
203
|
-
* Dominik Masur
|
|
204
|
-
* Eric Cumbee
|
|
205
|
-
* Eric J. Holmes
|
|
206
|
-
* Etienne Depaulis
|
|
207
|
-
* Gosha Arinich
|
|
208
|
-
* Greg Bell
|
|
209
|
-
* Ian Carroll
|
|
210
|
-
* James Almond
|
|
211
|
-
* Johnny Shields
|
|
212
|
-
* Joshua Collins
|
|
213
|
-
* Kieran Klaassen
|
|
214
|
-
* Luís Ramalho
|
|
215
|
-
* Matt Brewer
|
|
216
|
-
* Nathaniel Bibler
|
|
217
|
-
* Olek Janiszewski
|
|
218
|
-
* Philippe Creux
|
|
219
|
-
* Raison Dsouza
|
|
220
|
-
* Rebecca Miller-Webster
|
|
221
|
-
* Roman Sklenar
|
|
222
|
-
* Roman Sklenář
|
|
223
|
-
* Ryan Schlesinger
|
|
224
|
-
* Scott Meves
|
|
225
|
-
* Sergey Pchelincev
|
|
226
|
-
* Simon Menke
|
|
227
|
-
* Tiago Cardoso
|
|
228
|
-
* Travis Pew
|
|
229
|
-
* WU Jun
|
|
230
|
-
* laffinkippah
|
|
231
|
-
* ronen barzel
|
|
232
|
-
* тιηуηυмвєяѕ
|
|
233
|
-
|
|
234
|
-
## 0.5.1 [☰](https://github.com/activeadmin/activeadmin/compare/v0.5.0...v0.5.1)
|
|
77
|
+
### Bug Fixes
|
|
78
|
+
|
|
79
|
+
* Fix some ruby 2.7 warnings about keyword args. [#6000] by [@vcsjones]
|
|
80
|
+
* Missing `create_another` translation in Vietnamese. [#6002] by [@imcvampire]
|
|
81
|
+
* Using "destroy" for user facing message is too robotic, prefer "delete". [#6047] by [@vfonic]
|
|
82
|
+
* Typo in confirmation message for comment deletion. [#6047] by [@vfonic]
|
|
83
|
+
|
|
84
|
+
## 2.6.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.5.0..v2.6.0)
|
|
235
85
|
|
|
236
86
|
### Enhancements
|
|
237
87
|
|
|
238
|
-
*
|
|
239
|
-
|
|
240
|
-
ActiveAdmin.register Post do
|
|
241
|
-
csv options: { force_quotes: true } do
|
|
242
|
-
column :title
|
|
243
|
-
end
|
|
244
|
-
end
|
|
245
|
-
```
|
|
246
|
-
|
|
247
|
-
* Breadcrumb links can be customized by [@simonoff][]
|
|
248
|
-
```ruby
|
|
249
|
-
ActiveAdmin.register Post do
|
|
250
|
-
breadcrumb do
|
|
251
|
-
[
|
|
252
|
-
link_to("My account", account_path(current_user))
|
|
253
|
-
]
|
|
254
|
-
end
|
|
255
|
-
end
|
|
256
|
-
```
|
|
88
|
+
* Display multiple flash messages in separate elements. [#5929] by [@mirelon]
|
|
89
|
+
* Make delete confirmation messages in French & Spanish gender-neutral. [#5946] by [@cprodhomme]
|
|
257
90
|
|
|
258
|
-
|
|
259
|
-
```ruby
|
|
260
|
-
ActiveAdmin.register Post do
|
|
261
|
-
menu parent: proc { I18n.t("admin") }
|
|
262
|
-
end
|
|
263
|
-
```
|
|
91
|
+
### Bug Fixes
|
|
264
92
|
|
|
265
|
-
*
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
decorate_with PostDecorator
|
|
269
|
-
end
|
|
270
|
-
```
|
|
93
|
+
* Export ModalDialog component to re-enable client side usage. [#5956] by [@sgara]
|
|
94
|
+
* Use default ActionView options instead of default Formtastic options for DateRangeInput [#5957] by [@mirelon]
|
|
95
|
+
* Fix i18n key in docs example to translate scopes. [#5943] by [@adler99]
|
|
271
96
|
|
|
272
|
-
|
|
273
|
-
```ruby
|
|
274
|
-
ActiveAdmin.register Post do
|
|
275
|
-
remove_filter :author
|
|
276
|
-
end
|
|
277
|
-
```
|
|
97
|
+
## 2.5.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.4.0..v2.5.0)
|
|
278
98
|
|
|
279
|
-
|
|
280
|
-
application locales. [#1775][] by [@caifara][]
|
|
281
|
-
* Add "Powered by" to translations. [#1783][] by [@sunny][]
|
|
282
|
-
* Forms accept two level deeps has_many. [#1699][] by [@kerberoS][] and tests in [#1782][] by [@ptn][]
|
|
283
|
-
* Extract download_format_links into helper [#1752][] by [@randym][]
|
|
284
|
-
* Add support for semantic errors [#905][] by [@robdiciuccio][]
|
|
285
|
-
* Add support for boolean inputs [#1668][] by [@orendon][]
|
|
286
|
-
* Support subURI on logout [#1681][] by [@yawn][]
|
|
99
|
+
### Enhancements
|
|
287
100
|
|
|
288
|
-
|
|
289
|
-
* Apply before_filter to BaseController [#1683][] by [@yorch][]
|
|
290
|
-
* ... and much more.
|
|
101
|
+
* Azerbaijani translation. [#5078] by [@orkhan]
|
|
291
102
|
|
|
292
|
-
###
|
|
103
|
+
### Bug Fixes
|
|
293
104
|
|
|
294
|
-
|
|
105
|
+
* Convert namespace to sym to prevent duplicate namespaces such as :foo and 'foo'. [#5931] by [@westonganger]
|
|
106
|
+
* Use filter label when condition has a predicate. [#5886] by [@ko-lem]
|
|
107
|
+
* Fix error when routing with array containing symbol. [#5870] by [@jwesorick]
|
|
108
|
+
* Fix error when there is a model named `Tag` and `meta_tags` have been configured. [#5895] by [@micred], [@FabioRos] and [@deivid-rodriguez]
|
|
109
|
+
* Allow specifying custom `input_html` for `DateRangeInput`. [#5867] by [@mirelon]
|
|
110
|
+
* Adjust `#main_content` right margin to take into account possible custom values of `$sidebar-width` and `$section-padding`. [#5887] by [@guigs]
|
|
111
|
+
* Improved polymorphic routes generation to avoid problems when multiple `belongs_to` are defined. [#5938] by [@leio10]
|
|
295
112
|
|
|
296
|
-
|
|
113
|
+
### Dependency Changes
|
|
297
114
|
|
|
298
|
-
|
|
115
|
+
* Support for Rails 5.0 and Rails 5.1 has been dropped. [#5877] by [@deivid-rodriguez]
|
|
299
116
|
|
|
300
|
-
|
|
301
|
-
easily customize the views in Active Admin and per namespace. ([@gregbell][])
|
|
302
|
-
* All CSS is now encapsulated under the `body.active_admin` class. This may
|
|
303
|
-
change the precedence of styles that you created to override or use in
|
|
304
|
-
other areas of your application.
|
|
305
|
-
* Dashboards are now implemented as pages. For more details of how to configure
|
|
306
|
-
a page, checkout http://activeadmin.info/docs/9-custom-pages.html
|
|
307
|
-
* Root route can be set to any controller#action using `#root_to`.
|
|
308
|
-
* Batch Actions allows you to select entries on index page and perform
|
|
309
|
-
an action against them.
|
|
310
|
-
* CSV separators are configurable.
|
|
311
|
-
* Lot of bug fixes.
|
|
117
|
+
## 2.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.3.1..v2.4.0)
|
|
312
118
|
|
|
313
|
-
###
|
|
119
|
+
### Enhancements
|
|
314
120
|
|
|
315
|
-
*
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
`ActiveAdmin::Views::Header` component.
|
|
319
|
-
* ActiveAdmin::Menu and ActiveAdmin::MenuItem API has changed. If you were
|
|
320
|
-
creating custom menu items, the builder syntax has changed to. Menu#add now
|
|
321
|
-
accepts a MenuItem, instead of building the menu item for you.
|
|
322
|
-
* `ActiveAdmin::Dashboards.build` is deprecated in favour of generating a page
|
|
323
|
-
and using the new `config.root_to` option.
|
|
324
|
-
* Arbre is now a gem on its own.
|
|
121
|
+
* Make optimization to not use expensive COUNT queries also work for decorated actions. [#5811] by [@irmela]
|
|
122
|
+
* Render a text filter instead of a select for large associations (opt-in). [#5548] by [@DanielHeath]
|
|
123
|
+
* Improve German translations. [#5874] by [@juril33t]
|
|
325
124
|
|
|
326
|
-
|
|
125
|
+
## 2.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.3.0..v2.3.1)
|
|
327
126
|
|
|
328
|
-
|
|
127
|
+
### Bug Fixes
|
|
329
128
|
|
|
330
|
-
|
|
129
|
+
* Revert ransack version pinning because 2.3 has an outstanding bug that affects quite a lot of users. See [this ransack issue](https://github.com/activerecord-hackery/ransack/issues/1039) for more information. [#5854] by [@deivid-rodriguez]
|
|
331
130
|
|
|
332
|
-
|
|
131
|
+
## 2.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.2.0..v2.3.0)
|
|
333
132
|
|
|
334
|
-
|
|
335
|
-
* Use `inherited_resources` >= 1.3.1 (ensure flash messages work)
|
|
133
|
+
### Enhancements
|
|
336
134
|
|
|
337
|
-
|
|
135
|
+
* Bump minimum ransack requirement to make sure everyone gets a version that works ok with all supported versions of Rails. [#5831] by [@deivid-rodriguez]
|
|
338
136
|
|
|
339
137
|
### Bug Fixes
|
|
340
138
|
|
|
341
|
-
*
|
|
139
|
+
* Fix CSVBuilder not respecting `ActiveAdmin.application.csv_options = { humanize_name: false }` setting. [#5800] by [@HappyKadaver]
|
|
140
|
+
* Fix crash when displaying current filters after filtering by a nested resource. [#5816] by [@deivid-rodriguez]
|
|
141
|
+
* 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]
|
|
142
|
+
* 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]
|
|
143
|
+
* Fix double modal issue in applications using turbolinks 5. [#5842] by [@sgara]
|
|
342
144
|
|
|
343
|
-
##
|
|
145
|
+
## 2.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.1.0..v2.2.0)
|
|
344
146
|
|
|
345
147
|
### Enhancements
|
|
346
148
|
|
|
347
|
-
*
|
|
348
|
-
* [#
|
|
349
|
-
of the view ([@pcreux][])
|
|
350
|
-
* [#70][]: Form blocks are now rendered within the context of the view ([@gregbell][])
|
|
351
|
-
* [#70][]: Filter's collections are now eval'd in the context of the view ([@gregbell][])
|
|
352
|
-
* [#1032][]: The html body now includes a class for the namespace name ([@mattvague][])
|
|
353
|
-
* [#1013][]: Hide the count from one specific scope using `:show_count => false`
|
|
354
|
-
([@latortuga][])
|
|
355
|
-
* [#1023][]: Add localization support for comments ([@MoritzMoritz][])
|
|
149
|
+
* 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]
|
|
150
|
+
* Add Macedonian locale. [#5710] by [@violeta-p]
|
|
356
151
|
|
|
357
152
|
### Bug Fixes
|
|
358
153
|
|
|
359
|
-
*
|
|
360
|
-
*
|
|
361
|
-
|
|
362
|
-
* [#983][]: Fixed compatibility with pry-rails ([@pcreux][])
|
|
363
|
-
* [#409][]: Install generator handles custom class names for user ([@gregbell][])
|
|
154
|
+
* Fix pundit policy retrieving for static pages when the pundit namespace is `:active_admin`. [#5777] by [@kwent]
|
|
155
|
+
* Fix show page title not being properly escaped if title's content included HTML. [#5802] by [@deivid-rodriguez]
|
|
156
|
+
* Revert [21b6138f] from [#5740] since it actually caused the performance in development to regress. [#5801] by [@deivid-rodriguez]
|
|
364
157
|
|
|
365
|
-
|
|
158
|
+
## 2.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0..v2.1.0)
|
|
159
|
+
|
|
160
|
+
### Bug Fixes
|
|
366
161
|
|
|
367
|
-
|
|
162
|
+
* Ensure application gets reloaded only once. [#5740] by [@jscheid]
|
|
163
|
+
* Crash when rendering comments from a custom controller block. [#5758] by [@deivid-rodriguez]
|
|
164
|
+
* 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]
|
|
368
165
|
|
|
369
|
-
|
|
370
|
-
* Daniel Lepage
|
|
371
|
-
* Thibaut Barrère
|
|
372
|
-
* Drew Ulmer
|
|
373
|
-
* Juan Schwindt
|
|
374
|
-
* Moritz Behr
|
|
375
|
-
* Jeff Ancel
|
|
376
|
-
* Matt Vague
|
|
377
|
-
* Greg Bell
|
|
378
|
-
* Philippe Creux
|
|
166
|
+
### Dependency Changes
|
|
379
167
|
|
|
168
|
+
* Support for ruby 2.3 has been removed. [#5751] by [@deivid-rodriguez]
|
|
380
169
|
|
|
381
|
-
## 0.
|
|
170
|
+
## 2.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc2..v2.0.0)
|
|
171
|
+
|
|
172
|
+
_No changes_.
|
|
173
|
+
|
|
174
|
+
## 2.0.0.rc2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc1..v2.0.0.rc2)
|
|
382
175
|
|
|
383
176
|
### Enhancements
|
|
384
177
|
|
|
385
|
-
* [#
|
|
386
|
-
to a page ([@BoboFraggins][])
|
|
387
|
-
* Columns component now supports column spans, max and min widths ([@gregbell][])
|
|
388
|
-
* [#497][]: Custom pagination settings per resource ([@pcreux][])
|
|
389
|
-
* [#993][]: Login form now focuses on email ([@mattvague][])
|
|
390
|
-
* [#865][]: Add `:if` support to sidebar sections ([@BoboFraggins][])
|
|
391
|
-
* [#865][]: Added `:scope_count => false` to the index to hide scope counts
|
|
392
|
-
in generated scopes ([@BoboFraggins][])
|
|
178
|
+
* Require arbre `~> 1.2, >= 1.2.1`. [#5726] by [@ionut998], and [#5738] by [@deivid-rodriguez]
|
|
393
179
|
|
|
394
|
-
|
|
180
|
+
## 2.0.0.rc1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.3..v2.0.0.rc1)
|
|
181
|
+
|
|
182
|
+
### Enhancements
|
|
395
183
|
|
|
396
|
-
*
|
|
397
|
-
* [#960][]: Global nav works when scoped in rails routes ([@gregbell][])
|
|
398
|
-
* [#994][]: Fix index page check collection.limit(1).exists? causes exception when
|
|
399
|
-
ordering by virtual colum ([@latortuga][], [@gregbell][])
|
|
400
|
-
* [#971][]: Fix SQL when sorting tables with a column named "group" ([@ggilder][])
|
|
184
|
+
* Add your own content to the site `<head>`, like analytics. [#5590] by [@buren]
|
|
401
185
|
|
|
402
|
-
|
|
186
|
+
```ruby
|
|
187
|
+
ActiveAdmin.setup do |config|
|
|
188
|
+
config.head = ''.html_safe
|
|
189
|
+
end
|
|
190
|
+
```
|
|
403
191
|
|
|
404
|
-
*
|
|
192
|
+
* Consider authorization when displaying comments in show page. [#5555] by [@amiuhle]
|
|
193
|
+
* Add better support for rendering lists. [#5370] by [@dkniffin]
|
|
194
|
+
* 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]
|
|
405
195
|
|
|
406
|
-
###
|
|
196
|
+
### Security Fixes
|
|
407
197
|
|
|
408
|
-
|
|
198
|
+
* Prevent leaking hashed passwords via user CSV export and adds a config option for sensitive attributes. [#5486] by [@chrp]
|
|
409
199
|
|
|
410
|
-
|
|
411
|
-
* David Radcliffe
|
|
412
|
-
* Dinesh Majrekar
|
|
413
|
-
* Erik Michaels-Ober
|
|
414
|
-
* Fábio Maia
|
|
415
|
-
* Gabriel Gilder
|
|
416
|
-
* Greg Bell
|
|
417
|
-
* Kyle Macey
|
|
418
|
-
* Matt Vague
|
|
419
|
-
* Oldani Pablo
|
|
420
|
-
* Peter Fry
|
|
421
|
-
* Philippe Creux
|
|
422
|
-
* Søren Houen
|
|
200
|
+
### Bug Fixes
|
|
423
201
|
|
|
202
|
+
* Fix for paginated collections with `per_page: Array, pagination_total: false`. [#5627] by [@bartoszkopinski]
|
|
203
|
+
* Restrict ransack requirement to >= 2.1.1 to play nice with Rails 5.2.2. [#5632] by [@deivid-rodriguez]
|
|
204
|
+
* Bad interpolation variables on pagination keys in Lithuanian translation. [#5631] by [@deivid-rodriguez]
|
|
205
|
+
* Tabs are not correctly created when using non-transliteratable characters as title. [#5650] by [@panasyuk]
|
|
206
|
+
* Sidebar title internationalization. [#5417] by [@WaKeMaTTa]
|
|
207
|
+
* `filter` labels not allowing a `Proc` to be passed. [#5418] by [@WaKeMaTTa]
|
|
424
208
|
|
|
425
|
-
|
|
209
|
+
### Dependency Changes
|
|
426
210
|
|
|
427
|
-
|
|
211
|
+
* Rails 4.2 support has been dropped. [#5104] by [@javierjulio] and [@deivid-rodriguez]
|
|
212
|
+
* Dependency on coffee-rails has been removed. [#5081] by [@javierjulio]
|
|
213
|
+
If your application uses coffescript but was relying on ActiveAdmin to provide
|
|
214
|
+
the dependency, you need to add the `coffee-script` gem to your `Gemfile` to
|
|
215
|
+
restore it. If your only usage of coffescript was the
|
|
216
|
+
`active_admin.js.coffee` generated by ActiveAdmin's generator, you can also
|
|
217
|
+
convert that file to plain JS (`//= require active_admin/base` if you
|
|
218
|
+
didn't add any stuff to it).
|
|
219
|
+
* Devise 3 support has been dropped. [#5608] by [@deivid-rodriguez] and [@javierjulio]
|
|
220
|
+
* `action_item` without a name has been removed. [#5099] by [@javierjulio]
|
|
428
221
|
|
|
429
|
-
|
|
430
|
-
since we've changed both the CSS and JS files.
|
|
222
|
+
## 1.4.3 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.2..v1.4.3)
|
|
431
223
|
|
|
432
|
-
###
|
|
224
|
+
### Bug Fixes
|
|
433
225
|
|
|
434
|
-
*
|
|
435
|
-
|
|
436
|
-
to allow or disallow configuration within a specific namespace.
|
|
437
|
-
* Removed `Object#to_html` in favour of `to_s`. Any Arbre components
|
|
438
|
-
implementing a `to_html` method need to be updated to use `to_s` instead.
|
|
226
|
+
* Fix `form` parameter to `batch_action` no longer accepting procs. [#5611] by [@buren] and [@deivid-rodriguez]
|
|
227
|
+
* Fix passing a proc to `scope_to`. [#5611] by [@deivid-rodriguez]
|
|
439
228
|
|
|
440
|
-
|
|
229
|
+
## 1.4.2 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.1..v1.4.2)
|
|
441
230
|
|
|
442
|
-
|
|
443
|
-
* [#624][]: Set an image as the site title using `config.site_title_image` in the
|
|
444
|
-
Active Admin initializer. ([@mattvague][])
|
|
445
|
-
* [#758][]: Create a standalone page in Active Admin using
|
|
446
|
-
`ActiveAdmin.register_page` ([@pcreux][])
|
|
447
|
-
* [#723][]: Register stylesheets with a media type ([@macfanatic][])
|
|
231
|
+
### Bug Fixes
|
|
448
232
|
|
|
449
|
-
|
|
233
|
+
* Fix `input_html` filter option evaluated only once. [#5376] by [@kjeldahl]
|
|
450
234
|
|
|
451
|
-
|
|
452
|
-
These two additions allow you to use the `paginated_collection` component multiple
|
|
453
|
-
times on show screens. ([@samvincent][])
|
|
454
|
-
* [#527][]: Refactored all form helpers to use Formtastic 2([@ebeigarts][])
|
|
455
|
-
* [#551][]: Dashboards can now be conditionally displayed using `:if` ([@samvincent][])
|
|
456
|
-
* [#555][]: scopes now accept `:if`. They only get displayed if the proc returns true ([@macfanatic][])
|
|
457
|
-
* [#601][]: Breadcrumbs are internationalized ([@vairix-ssierra][])
|
|
458
|
-
* [#605][]: Validations on ActiveAdmin::Comment should work with
|
|
459
|
-
`accepts_nested_attributes_for` ([@DMajrekar ][])
|
|
460
|
-
* [#623][]: Index table can sort on any table using `:sort => 'table.column'` ([@ZequeZ][])
|
|
461
|
-
* [#638][]: Add `:label` option to `status_tag` component ([@fbuenemann][])
|
|
462
|
-
* [#644][]: Added proper I18n support to pagination ([@fbuenemann][])
|
|
463
|
-
* [#689][]: Scopes preserve title when provided as a string ([@macfanatic][])
|
|
464
|
-
* [#711][]: Styles update. Now sexier and more refined design. Redesigned Scopes. Split
|
|
465
|
-
css into smaller files. ([@mattvague][])
|
|
466
|
-
* [#741][]: Default media type of css is now "all" instead of "screen" ([@sftsang][])
|
|
467
|
-
* [#751][]: Pagination numbers work with a custom `[@per_page][]` ([@DMajrekar][])
|
|
468
|
-
* `default_actions` in an index table only display implemented actions ([@watson][])
|
|
235
|
+
## 1.4.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.0..v1.4.1)
|
|
469
236
|
|
|
470
237
|
### Bug Fixes
|
|
471
238
|
|
|
472
|
-
*
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
*
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
*
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
*
|
|
487
|
-
*
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
*
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
*
|
|
494
|
-
|
|
495
|
-
### Contributors
|
|
496
|
-
|
|
497
|
-
274 commits by 42 authors
|
|
498
|
-
|
|
499
|
-
* Greg Bell
|
|
500
|
-
* Philippe Creux
|
|
501
|
-
* Matt Vague
|
|
502
|
-
* Felix Bünemann
|
|
503
|
-
* Matthew Brewer
|
|
504
|
-
* Edgars Beigarts
|
|
505
|
-
* Mike Perham
|
|
506
|
-
* Sam Vincent
|
|
507
|
-
* Kieran Klaassen
|
|
508
|
-
* Jonathan Barket
|
|
509
|
-
* Ankur Sethi
|
|
510
|
-
* Dinesh Majrekar
|
|
511
|
-
* comboy
|
|
512
|
-
* Juan E. Pemberthy
|
|
513
|
-
* Leandro Moreira
|
|
514
|
-
* Manu
|
|
515
|
-
* Marc Riera
|
|
516
|
-
* Radan Skorić
|
|
517
|
-
* Rhys Powell
|
|
518
|
-
* Sebastian Sierra
|
|
519
|
-
* Sherman Tsang
|
|
520
|
-
* Szymon Przybył
|
|
521
|
-
* Thomas Watson Steen
|
|
522
|
-
* Tim Habermaas
|
|
523
|
-
* Yara Mayer
|
|
524
|
-
* Zequez
|
|
525
|
-
* asancio
|
|
526
|
-
* emmek
|
|
527
|
-
* Alexey Noskov
|
|
528
|
-
* igmizo
|
|
529
|
-
* Alli
|
|
530
|
-
* Bendik Lynghaug
|
|
531
|
-
* Douwe Homans
|
|
532
|
-
* Eric Koslow
|
|
533
|
-
* Eunsub Kim
|
|
534
|
-
* Garami Gábor
|
|
535
|
-
* George Anderson
|
|
536
|
-
* Henrik Hodne
|
|
537
|
-
* Ivan Storck
|
|
538
|
-
* Jeff Dickey
|
|
539
|
-
* John Ferlito
|
|
540
|
-
* Josef Šimánek
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
## 0.3.4 [☰](https://github.com/activeadmin/activeadmin/compare/v0.3.3...v0.3.4)
|
|
544
|
-
|
|
545
|
-
2 commits by 2 authors
|
|
239
|
+
* Fix menu item link with method delete. [#5583] by [@tiagotex]
|
|
240
|
+
|
|
241
|
+
## 1.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.1..v1.4.0)
|
|
242
|
+
|
|
243
|
+
### Enhancements
|
|
244
|
+
|
|
245
|
+
* Add missing I18n for comments. [#5458], [#5461] by [@mauriciopasquier]
|
|
246
|
+
* Fix batch_actions.delete_confirmation translation in zh-CN.yml. [#5453] by [@ShallmentMo]
|
|
247
|
+
* Add some missing italian translations. [#5433] by [@stefsava]
|
|
248
|
+
* Enhance some chinese translations. [#5413] by [@shouya]
|
|
249
|
+
* Add missing filter predicate translations to nb. [#5357] by [@rogerkk]
|
|
250
|
+
* Add missing norwegian comment translations. [#5375] by [@rogerkk]
|
|
251
|
+
* Add missing dutch translations. [#5368] by [@dennisvdvliet]
|
|
252
|
+
* Add missing german translations. [#5341] by [@eikes]
|
|
253
|
+
* Add missing spanish translation. [#5336] by [@mconiglio]
|
|
254
|
+
* Add from and to predicates for russian language. [#5330] by [@glebtv]
|
|
255
|
+
* Fix typo in finnish translation. [#5320] by [@JiiHu]
|
|
256
|
+
* Add missing turkish translations. [#5295] by [@kobeumut]
|
|
257
|
+
* Add missing chinese translations. [#5266] by [@jasl]
|
|
258
|
+
* Allow proc label in datepicker input. [#5408] by [@tiagotex]
|
|
259
|
+
* Add `group` attribute to scopes in order to show them in grouped. [#5359] by [@leio10]
|
|
260
|
+
* Add missing polish translations and improve existing ones. [#5537] by [@Wowu]
|
|
261
|
+
* Add `priority` option to `action_item`. [#5334] by [@andreslemik]
|
|
546
262
|
|
|
547
263
|
### Bug Fixes
|
|
548
264
|
|
|
549
|
-
*
|
|
550
|
-
*
|
|
551
|
-
|
|
552
|
-
|
|
265
|
+
* Fixed the string representation of the resolved `sort_key` when no explicit `sortable` attribute is passed. [#5464] by [@chumakoff]
|
|
266
|
+
* 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]
|
|
267
|
+
* Fixed `if:` scope option when a lambda is passed. [#5501] by [@deivid-rodriguez]
|
|
268
|
+
* Comment validation adding redundant errors when resource is missing. [#5517] by [@deivid-rodriguez]
|
|
269
|
+
* Fixed resource filtering by association when the resource has custom primary key. [#5446] by [@wasifhossain]
|
|
270
|
+
* Fixed "create anoter" checkbox styling. [#5324] by [@faucct]
|
|
553
271
|
|
|
554
|
-
|
|
272
|
+
## 1.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.0..v1.3.1)
|
|
555
273
|
|
|
556
|
-
|
|
557
|
-
* Greg Bell
|
|
274
|
+
### Bug Fixes
|
|
558
275
|
|
|
559
|
-
|
|
276
|
+
* gemspec should have more permissive ransack dependency. [#5448] by [@varyonic]
|
|
560
277
|
|
|
561
|
-
1
|
|
278
|
+
## 1.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.1..v1.3.0)
|
|
562
279
|
|
|
563
280
|
### Enhancements
|
|
564
281
|
|
|
565
|
-
*
|
|
566
|
-
major speed increase in development mode. Also helps with memory consumption
|
|
567
|
-
because we aren't reloading Active admin all the time.
|
|
282
|
+
* Rails 5.2 support [#5343] by [@varyonic], [#5399], [#5401] by [@zorab47]
|
|
568
283
|
|
|
569
|
-
|
|
284
|
+
## 1.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.0..v1.2.1)
|
|
570
285
|
|
|
571
|
-
|
|
286
|
+
### Bug Fixes
|
|
572
287
|
|
|
573
|
-
|
|
288
|
+
* Resolve issue with [#5275] preventing XSS in filters sidebar. [#5299] by [@faucct]
|
|
574
289
|
|
|
575
|
-
|
|
290
|
+
## 1.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.1.0..v1.2.0)
|
|
576
291
|
|
|
577
292
|
### Enhancements
|
|
578
293
|
|
|
579
|
-
*
|
|
580
|
-
|
|
581
|
-
*
|
|
582
|
-
*
|
|
583
|
-
*
|
|
294
|
+
* Do not display pagination info when there are no comments. [#5119] by [@alex-bogomolov]
|
|
295
|
+
* Revert generated config files to pluralized. [#5120] by [@varyonic], [#5137] by [@deivid-rodriguez]
|
|
296
|
+
* Warn when action definition overwrites controller method. [#5167] by [@aarek]
|
|
297
|
+
* Better performance of comments show view. [#5208] by [@dhyegofernando]
|
|
298
|
+
* Mitigate memory bloat [#4118] with CSV exports. [#5251] by [@f1sherman]
|
|
299
|
+
* Fix issue applying custom decorations. [#5253] by [@faucct]
|
|
300
|
+
* Brazilian locale updated. [#5125] by [@renotocn]
|
|
301
|
+
* Japanese locale updated. [#5143] by [@5t111111], [#5157] by [@innparusu95]
|
|
302
|
+
* Italian locale updated. [#5180] by [@blocknotes]
|
|
303
|
+
* Swedish locale updated. [#5187] by [@jawa]
|
|
304
|
+
* Vietnamese locale updated. [#5194] by [@Nguyenanh]
|
|
305
|
+
* Esperanto locale added. [#5210] by [@RobinvanderVliet]
|
|
584
306
|
|
|
585
307
|
### Bug Fixes
|
|
586
308
|
|
|
587
|
-
*
|
|
588
|
-
*
|
|
589
|
-
*
|
|
590
|
-
|
|
591
|
-
* [#
|
|
592
|
-
* [#505][]: Fix titlebar height when no breadcrumb ([@mattvague][])
|
|
593
|
-
* Fixed vertical align in dashboard
|
|
594
|
-
* Fixed i18n path's for multi-word model names
|
|
309
|
+
* Fix a couple of issues rendering filter labels. [#5223] by [@wspurgin]
|
|
310
|
+
* Prevent NameError when filtering on a namespaced association. [#5240] by [@DanielHeath]
|
|
311
|
+
* Fix undefined method error in Ransack when building filters. [#5238] by [@wspurgin]
|
|
312
|
+
* Fixed [#5198] Prevent XSS on sidebar's current filter rendering. [#5275] by [@deivid-rodriguez]
|
|
313
|
+
* Sanitize display_name. [#5284] by [@markstory]
|
|
595
314
|
|
|
596
|
-
|
|
315
|
+
## 1.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.0.0..v1.1.0)
|
|
597
316
|
|
|
598
|
-
|
|
317
|
+
### Bug Fixes
|
|
599
318
|
|
|
600
|
-
|
|
319
|
+
* Fixed [#5093] Handle table prefix & table suffix for `ActiveAdminComment` model
|
|
320
|
+
* Fixed [#4173] by including the default Kaminari templates. [#5069] by [@javierjulio]
|
|
321
|
+
* Fixed [#5043]. Do not crash in sidebar rendering when a default scope is not specified. [#5044] by [@Fivell]
|
|
322
|
+
* Fixed [#3894]. Make tab's component work with non-ascii titles. [#5046] by [@Fivell]
|
|
601
323
|
|
|
602
|
-
|
|
603
|
-
* Christian Hjalmarsson
|
|
604
|
-
* Edgars Beigarts
|
|
605
|
-
* Greg Bell
|
|
606
|
-
* Jan Dupal
|
|
607
|
-
* Joe Van
|
|
608
|
-
* Mark Roghelia
|
|
609
|
-
* Mathieu Martin
|
|
610
|
-
* Matt Vague
|
|
611
|
-
* Philippe Creux
|
|
612
|
-
* Ryunosuke SATO
|
|
613
|
-
* Sam Vincent
|
|
614
|
-
* Trace Wax
|
|
615
|
-
* Tsvetan Roustchev
|
|
616
|
-
* l4u
|
|
324
|
+
### Dependency Changes
|
|
617
325
|
|
|
618
|
-
|
|
326
|
+
* Ruby 2.1 support has been dropped. [#5003] by [@deivid-rodriguez]
|
|
327
|
+
* Replaced `sass-rails` with `sass` dependency. [#5037] by [@javierjulio]
|
|
328
|
+
* Removed `jquery-ui-rails` as a dependency. [#5052] by [@javierjulio]
|
|
329
|
+
The specific jQuery UI assets used are now within the vendor directory. This
|
|
330
|
+
will be replaced by alternatives and dropped entirely in a major release.
|
|
331
|
+
Please remove any direct inclusions of `//= require jquery-ui`. This allows us
|
|
332
|
+
to upgrade to jquery v3.
|
|
619
333
|
|
|
620
|
-
|
|
334
|
+
### Deprecations
|
|
621
335
|
|
|
622
|
-
|
|
336
|
+
* 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]
|
|
337
|
+
* Deprecated `type` param from `status_tag` and related CSS classes [#4989] by [@javierjulio]
|
|
338
|
+
The method signature has changed from:
|
|
623
339
|
|
|
624
|
-
|
|
340
|
+
```ruby
|
|
341
|
+
status_tag(status, :ok, class: 'completed', label: 'on')
|
|
342
|
+
```
|
|
625
343
|
|
|
626
|
-
|
|
344
|
+
to:
|
|
627
345
|
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
346
|
+
```ruby
|
|
347
|
+
status_tag(status, class: 'completed ok', label: 'on')
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
The following CSS classes have been deprecated and will be removed in the future:
|
|
351
|
+
|
|
352
|
+
```css
|
|
353
|
+
.status_tag {
|
|
354
|
+
&.ok, &.published, &.complete, &.completed, &.green { background: #8daa92; }
|
|
355
|
+
&.warn, &.warning, &.orange { background: #e29b20; }
|
|
356
|
+
&.error, &.errored, &.red { background: #d45f53; }
|
|
357
|
+
}
|
|
358
|
+
```
|
|
636
359
|
|
|
637
360
|
### Enhancements
|
|
638
361
|
|
|
639
|
-
*
|
|
640
|
-
*
|
|
641
|
-
*
|
|
642
|
-
*
|
|
643
|
-
*
|
|
644
|
-
*
|
|
645
|
-
*
|
|
646
|
-
* New datepicker styles ([@mattvague][])
|
|
647
|
-
* Set `[@page_title][]` in member action to render a custom title ([@gregbell][])
|
|
648
|
-
* [#248][]: Settable logout link options in initializer ([@gregbell][])
|
|
649
|
-
* Added a DependencyChecker that warns if dependencies aren't met ([@pcreux][])
|
|
362
|
+
* Support proc as an input_html option value when declaring filters. [#5029] by [@Fivell]
|
|
363
|
+
* Base localization support, better associations handling for active filters sidebar. [#4951] by [@Fivell]
|
|
364
|
+
* Allow AA scopes to return paginated collections. [#4996] by [@Fivell]
|
|
365
|
+
* Added `scopes_show_count` configuration to setup show_count attribute for scopes globally. [#4950] by [@Fivell]
|
|
366
|
+
* Allow custom panel title given with `attributes_table`. [#4940] by [@ajw725]
|
|
367
|
+
* Allow passing a class to `action_item` block. [#4997] by [@Fivell]
|
|
368
|
+
* Add pagination to the comments section. [#5088] by [@alex-bogomolov]
|
|
650
369
|
|
|
651
|
-
|
|
370
|
+
## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3..v1.0.0)
|
|
652
371
|
|
|
653
|
-
|
|
654
|
-
* [#122][]: Fix sortable columns on nested resources ([@knoopx][])
|
|
655
|
-
* Fix so that Dashboard Sections can appear in root namespace ([@knoopx][])
|
|
656
|
-
* [#131][]: Fixed `status_tag` with nil content ([@pcreux][])
|
|
657
|
-
* [#110][]: Fixed dropdown menu floats in Firefox ([@mattvague][])
|
|
658
|
-
* Use quoted table names ([@krug][])
|
|
659
|
-
* Fixed CSS float of `.paginated_collection_contents` bug in Firefox ([@mattvague][])
|
|
660
|
-
* Removed unwanted gradient in IE in attribute table headers ([@emzeq][])
|
|
661
|
-
* [#222][]: Added `Arbre::Context#length` for Rack servers ([@gregbell][])
|
|
662
|
-
* [#255][]: Fixed problem with dropdown menus in IE8 and IE9 ([@mattvague][])
|
|
663
|
-
* [#235][]: Default sort order should use primary_key ([@gregbell][])
|
|
664
|
-
* [#197][]: Fixed issues with #form params disappearing ([@rolfb][])
|
|
665
|
-
* [#186][]: Fixes for when `default_namespace = false` ([@gregbell][])
|
|
666
|
-
* [#135][]: Comments on STI classes redirect correctly ([@gregbell][])
|
|
667
|
-
* [#77][]: Fixed performance issue where ActiveRecord::Base.all was being called ([@pcreux][])
|
|
668
|
-
* [#332][]: Fixed Devise redirection when in false namespace ([@gregbell][])
|
|
669
|
-
* [#171][]: Fixed issue where class names would clash with HTML object names ([@gregbell][])
|
|
670
|
-
* [#381][]: Fixed issues with Devise < 1.2 ([@pcreux][])
|
|
671
|
-
* [#369][]: Added support for pluralized model names such as News ([@gregbell][])
|
|
672
|
-
* [#42][]: Default forms work with polymorphic associations ([@mattvague][])
|
|
673
|
-
|
|
674
|
-
### Dependencies
|
|
675
|
-
|
|
676
|
-
* Switched from will_paginate to Kaminari for pagination ([@mwindwer][])
|
|
677
|
-
* Removed dependency on InheritedViews ([@gregbell][])
|
|
678
|
-
* Removed Jeweler. Using Bundler and a gemspec ([@gregbell][])
|
|
679
|
-
|
|
680
|
-
### Contributors
|
|
681
|
-
|
|
682
|
-
* Armand du Plessis
|
|
683
|
-
* Aurelio Agundez
|
|
684
|
-
* Bruno Bonamin
|
|
685
|
-
* Chris Ostrowski
|
|
686
|
-
* Corey Woodcox
|
|
687
|
-
* DeLynn Berry
|
|
688
|
-
* Doug Puchalski
|
|
689
|
-
* Fabio Kreusch
|
|
690
|
-
* Greg Bell
|
|
691
|
-
* Ismael G Marin C
|
|
692
|
-
* Jackson Pires
|
|
693
|
-
* Jesper Hvirring Henriksen
|
|
694
|
-
* Josef Šimánek
|
|
695
|
-
* Jørgen Orehøj Erichsen
|
|
696
|
-
* Liborio Cannici
|
|
697
|
-
* Matt Vague
|
|
698
|
-
* Matthew Windwer
|
|
699
|
-
* Moritz Lawitschka
|
|
700
|
-
* Nathan Le Ray
|
|
701
|
-
* Nicolas Mosconi
|
|
702
|
-
* Philippe Creux
|
|
703
|
-
* Rolf Bjaanes
|
|
704
|
-
* Ryan D Johnson
|
|
705
|
-
* Ryan Krug
|
|
706
|
-
* Shay Frendt
|
|
707
|
-
* Steve Klabnik
|
|
708
|
-
* Tiago Rafael Godinho
|
|
709
|
-
* Toby Hede
|
|
710
|
-
* Vijay Dev
|
|
711
|
-
* Víctor Martínez
|
|
712
|
-
* doabit
|
|
713
|
-
* hoverlover
|
|
714
|
-
* nhurst
|
|
715
|
-
* whatthewhat
|
|
716
|
-
* Łukasz Anwajler
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
## 0.2.2 [☰](https://github.com/activeadmin/activeadmin/compare/v0.2.1...v0.2.2)
|
|
720
|
-
|
|
721
|
-
68 Commits by 13 Contributors
|
|
722
|
-
|
|
723
|
-
### Features & Enhancements
|
|
724
|
-
|
|
725
|
-
* Arbre includes self closing tags ([#100][])
|
|
726
|
-
* Controller class & action added to body as CSS classes ([#99][])
|
|
727
|
-
* HAML is not required by default ([#92][])
|
|
728
|
-
* Devise login now respects Devise.authentication_keys ([#69][])
|
|
729
|
-
* Active Admin no longer uses <tt>ActiveRecord::Base#search</tt> ([#28][])
|
|
730
|
-
* Resource's can now override the label in the menu ([#48][])
|
|
731
|
-
* Subdirectories are now loaded in the Active Admin load path
|
|
372
|
+
### Breaking Changes
|
|
732
373
|
|
|
733
|
-
|
|
374
|
+
* Rename `allow_comments` to `comments` for more consistent naming. [#3695] by [@pranas]
|
|
375
|
+
* JavaScript `window.AA` has been removed, use `window.ActiveAdmin`. [#3606] by [@timoschilling]
|
|
376
|
+
* `f.form_buffers` has been removed. [#3486] by [@varyonic]
|
|
377
|
+
* Iconic has been removed. [#3553] by [@timoschilling]
|
|
378
|
+
* `config.show_comments_in_menu` has been removed, see `config.comments_menu`. [#4187] by [@drn]
|
|
379
|
+
* Rails 3.2 & Ruby 1.9.3 support has been dropped. [#4848] by [@deivid-rodriguez]
|
|
380
|
+
* Ruby 2.0.0 support has been dropped. [#4851] by [@deivid-rodriguez]
|
|
381
|
+
* Rails 4.0 & 4.1 support has been dropped. [#4870] by [@deivid-rodriguez]
|
|
734
382
|
|
|
735
|
-
|
|
736
|
-
* Fixed table_for 'odd', 'even' row classes ([#96][])
|
|
737
|
-
* Fixed Devise installation if AdminUser already exists ([#95][])
|
|
738
|
-
* Fixed issues when ActiveAdmin.default_namespaces is false ([#32][])
|
|
739
|
-
* Added styles for missing HTML 5 inputs ([#31][])
|
|
740
|
-
* Fixed issue if adding empty Active Admin Comment ([#21][])
|
|
741
|
-
* Fixed layout issues in FF 4 ([#22][])
|
|
742
|
-
* Use Sass::Plugin.options[:css_location] instead of Rails.root ([#55][])
|
|
743
|
-
|
|
744
|
-
### Test Suite
|
|
745
|
-
|
|
746
|
-
* Update RSpec to latest & fix specs (Thanks Ben Marini & Jeremt Ruppel!) ([#100][])
|
|
747
|
-
* Added tests for STI models ([#52][])
|
|
748
|
-
|
|
749
|
-
### Contributors
|
|
750
|
-
|
|
751
|
-
* Ben Marini
|
|
752
|
-
* Bookis Smuin
|
|
753
|
-
* Caley Woods
|
|
754
|
-
* Doug Puchalski
|
|
755
|
-
* Federico Romero
|
|
756
|
-
* Greg Bell
|
|
757
|
-
* Ian MacLeod
|
|
758
|
-
* Jeremy Ruppel
|
|
759
|
-
* Jordan Sitkin
|
|
760
|
-
* Juha Suuraho
|
|
761
|
-
* Mathieu Martin
|
|
762
|
-
* Paul Annesley
|
|
763
|
-
* Philippe Creux
|
|
764
|
-
|
|
765
|
-
## 0.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v0.2.0...v0.2.1)
|
|
383
|
+
### Enhancements
|
|
766
384
|
|
|
767
|
-
|
|
768
|
-
*
|
|
385
|
+
* Migration from Metasearch to Ransack. [#1979] by [@seanlinsley]
|
|
386
|
+
* Rails 4 support. [#2326] by many people :heart:
|
|
387
|
+
* Rails 4.2 support. [#3731] by [@gonzedge] and [@timoschilling]
|
|
388
|
+
* Rails 5 support. [#4254] by [@seanlinsley]
|
|
389
|
+
* Rails 5.1 support. [#4882] by [@varyonic]
|
|
390
|
+
* "Create another" checkbox for the new resource page. [#4477] by [@bolshakov]
|
|
391
|
+
* Page supports belongs_to. [#4759] by [@Fivell] and [@zorab47]
|
|
392
|
+
* Support for custom sorting strategies. [#4768] by [@Fivell]
|
|
393
|
+
* Stream CSV downloads as they're generated. [#3038] by [@craigmcnamara]
|
|
394
|
+
* Disable streaming in development for easier debugging. [#3535] by [@seanlinsley]
|
|
395
|
+
* Improved code reloading. [#3783] by [@chancancode]
|
|
396
|
+
* Do not auto link to inaccessible actions. [#3686] by [@pranas]
|
|
397
|
+
* Allow to enable comments on per-resource basis. [#3695] by [@pranas]
|
|
398
|
+
* Unify DSL for index `actions` and `actions dropdown: true`. [#3463] by [@timoschilling]
|
|
399
|
+
* Add DSL method `includes` for `ActiveRecord::Relation#includes`. [#3464] by [@timoschilling]
|
|
400
|
+
* BOM (byte order mark) configurable for CSV download. [#3519] by [@timoschilling]
|
|
401
|
+
* Column block on table index is now sortable by default. [#3075] by [@dmitry]
|
|
402
|
+
* Allow Arbre to be used inside ActiveAdmin forms. [#3486] by [@varyonic]
|
|
403
|
+
* Make AA ORM-agnostic. [#2545] by [@johnnyshields]
|
|
404
|
+
* Add multi-record support to `attributes_table_for`. [#2544] by [@zorab47]
|
|
405
|
+
* Table CSS classes are now prefixed to prevent clashes. [#2532] by [@TimPetricola]
|
|
406
|
+
* Allow Inherited Resources shorthand for redirection. [#2001] by [@seanlinsley]
|
|
407
|
+
|
|
408
|
+
```ruby
|
|
409
|
+
controller do
|
|
410
|
+
# Redirects to index page instead of rendering updated resource
|
|
411
|
+
def update
|
|
412
|
+
update!{ collection_path }
|
|
413
|
+
end
|
|
414
|
+
end
|
|
415
|
+
```
|
|
769
416
|
|
|
770
|
-
|
|
417
|
+
* Accept block for download links. [#2040] by [@potatosalad]
|
|
771
418
|
|
|
772
|
-
|
|
773
|
-
|
|
419
|
+
```ruby
|
|
420
|
+
index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
|
|
421
|
+
```
|
|
774
422
|
|
|
775
|
-
|
|
423
|
+
* Comments menu can be customized via configuration passed to `config.comments_menu`. [#4187] by [@drn]
|
|
424
|
+
* Added `config.route_options` to namespace to customize routes. [#4731] by [@stereoscott]
|
|
776
425
|
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
*
|
|
780
|
-
*
|
|
426
|
+
### Security Fixes
|
|
427
|
+
|
|
428
|
+
* Prevents access to formats that the user not permitted to see. [#4867] by [@Fivell] and [@timoschilling]
|
|
429
|
+
* Prevents potential DOS attack via Ruby symbols. [#1926] by [@seanlinsley]
|
|
430
|
+
* [this isn't an issue for those using Ruby >= 2.2](http://rubykaigi.org/2014/presentation/S-NarihiroNakamura)
|
|
781
431
|
|
|
782
432
|
### Bug Fixes
|
|
783
433
|
|
|
784
|
-
*
|
|
434
|
+
* Fixes filters for `has_many :through` relationships. [#2541] by [@shekibobo]
|
|
435
|
+
* "New" action item now only shows up on the index page. bf659bc by [@seanlinsley]
|
|
436
|
+
* Fixes comment creation bug with aliased resources. 9a082486 by [@seanlinsley]
|
|
437
|
+
* Fixes the deletion of `:if` and `:unless` from filters. [#2523] by [@PChambino]
|
|
438
|
+
|
|
439
|
+
### Deprecations
|
|
785
440
|
|
|
786
|
-
|
|
441
|
+
* `ActiveAdmin::Event` (`ActiveAdmin::EventDispatcher`). [#3435] by [@timoschilling]
|
|
442
|
+
`ActiveAdmin::Event` will be removed in a future version, ActiveAdmin switched
|
|
443
|
+
to use `ActiveSupport::Notifications`
|
|
444
|
+
NOTE: The blog parameters has changed:
|
|
787
445
|
|
|
788
|
-
|
|
446
|
+
```ruby
|
|
447
|
+
ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
|
|
448
|
+
# some code
|
|
449
|
+
end
|
|
450
|
+
|
|
451
|
+
ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
* `action_item` without a name, to introduce a solution for removing action items (`remove_action_item(name)`). [#3091] by [@amiel]
|
|
455
|
+
|
|
456
|
+
## Previous Changes
|
|
457
|
+
|
|
458
|
+
Please check [0-6-stable] for previous changes.
|
|
459
|
+
|
|
460
|
+
[0-6-stable]: https://github.com/activeadmin/activeadmin/blob/0-6-stable/CHANGELOG.md
|
|
789
461
|
|
|
790
|
-
* Fixed issues running on Ruby 1.9.2
|
|
791
|
-
|
|
792
|
-
## 0.1.0
|
|
793
|
-
|
|
794
|
-
* Initial release
|
|
795
|
-
|
|
796
|
-
<!--- The following link definition list is generated by PimpMyChangelog --->
|
|
797
|
-
[#21]: https://github.com/activeadmin/activeadmin/issues/21
|
|
798
|
-
[#22]: https://github.com/activeadmin/activeadmin/issues/22
|
|
799
|
-
[#28]: https://github.com/activeadmin/activeadmin/issues/28
|
|
800
|
-
[#31]: https://github.com/activeadmin/activeadmin/issues/31
|
|
801
|
-
[#32]: https://github.com/activeadmin/activeadmin/issues/32
|
|
802
|
-
[#34]: https://github.com/activeadmin/activeadmin/issues/34
|
|
803
|
-
[#38]: https://github.com/activeadmin/activeadmin/issues/38
|
|
804
|
-
[#42]: https://github.com/activeadmin/activeadmin/issues/42
|
|
805
|
-
[#45]: https://github.com/activeadmin/activeadmin/issues/45
|
|
806
|
-
[#48]: https://github.com/activeadmin/activeadmin/issues/48
|
|
807
|
-
[#52]: https://github.com/activeadmin/activeadmin/issues/52
|
|
808
|
-
[#55]: https://github.com/activeadmin/activeadmin/issues/55
|
|
809
|
-
[#69]: https://github.com/activeadmin/activeadmin/issues/69
|
|
810
|
-
[#70]: https://github.com/activeadmin/activeadmin/issues/70
|
|
811
|
-
[#77]: https://github.com/activeadmin/activeadmin/issues/77
|
|
812
|
-
[#92]: https://github.com/activeadmin/activeadmin/issues/92
|
|
813
|
-
[#95]: https://github.com/activeadmin/activeadmin/issues/95
|
|
814
|
-
[#96]: https://github.com/activeadmin/activeadmin/issues/96
|
|
815
|
-
[#99]: https://github.com/activeadmin/activeadmin/issues/99
|
|
816
|
-
[#100]: https://github.com/activeadmin/activeadmin/issues/100
|
|
817
|
-
[#101]: https://github.com/activeadmin/activeadmin/issues/101
|
|
818
|
-
[#110]: https://github.com/activeadmin/activeadmin/issues/110
|
|
819
|
-
[#122]: https://github.com/activeadmin/activeadmin/issues/122
|
|
820
|
-
[#131]: https://github.com/activeadmin/activeadmin/issues/131
|
|
821
|
-
[#135]: https://github.com/activeadmin/activeadmin/issues/135
|
|
822
|
-
[#154]: https://github.com/activeadmin/activeadmin/issues/154
|
|
823
|
-
[#171]: https://github.com/activeadmin/activeadmin/issues/171
|
|
824
|
-
[#186]: https://github.com/activeadmin/activeadmin/issues/186
|
|
825
|
-
[#197]: https://github.com/activeadmin/activeadmin/issues/197
|
|
826
|
-
[#222]: https://github.com/activeadmin/activeadmin/issues/222
|
|
827
|
-
[#235]: https://github.com/activeadmin/activeadmin/issues/235
|
|
828
|
-
[#248]: https://github.com/activeadmin/activeadmin/issues/248
|
|
829
|
-
[#255]: https://github.com/activeadmin/activeadmin/issues/255
|
|
830
|
-
[#332]: https://github.com/activeadmin/activeadmin/issues/332
|
|
831
|
-
[#369]: https://github.com/activeadmin/activeadmin/issues/369
|
|
832
|
-
[#381]: https://github.com/activeadmin/activeadmin/issues/381
|
|
833
|
-
[#409]: https://github.com/activeadmin/activeadmin/issues/409
|
|
834
|
-
[#428]: https://github.com/activeadmin/activeadmin/issues/428
|
|
835
|
-
[#468]: https://github.com/activeadmin/activeadmin/issues/468
|
|
836
|
-
[#470]: https://github.com/activeadmin/activeadmin/issues/470
|
|
837
|
-
[#496]: https://github.com/activeadmin/activeadmin/issues/496
|
|
838
|
-
[#497]: https://github.com/activeadmin/activeadmin/issues/497
|
|
839
|
-
[#505]: https://github.com/activeadmin/activeadmin/issues/505
|
|
840
|
-
[#527]: https://github.com/activeadmin/activeadmin/issues/527
|
|
841
|
-
[#551]: https://github.com/activeadmin/activeadmin/issues/551
|
|
842
|
-
[#555]: https://github.com/activeadmin/activeadmin/issues/555
|
|
843
|
-
[#590]: https://github.com/activeadmin/activeadmin/issues/590
|
|
844
|
-
[#601]: https://github.com/activeadmin/activeadmin/issues/601
|
|
845
|
-
[#605]: https://github.com/activeadmin/activeadmin/issues/605
|
|
846
|
-
[#623]: https://github.com/activeadmin/activeadmin/issues/623
|
|
847
|
-
[#624]: https://github.com/activeadmin/activeadmin/issues/624
|
|
848
|
-
[#637]: https://github.com/activeadmin/activeadmin/issues/637
|
|
849
|
-
[#638]: https://github.com/activeadmin/activeadmin/issues/638
|
|
850
|
-
[#644]: https://github.com/activeadmin/activeadmin/issues/644
|
|
851
|
-
[#689]: https://github.com/activeadmin/activeadmin/issues/689
|
|
852
|
-
[#711]: https://github.com/activeadmin/activeadmin/issues/711
|
|
853
|
-
[#723]: https://github.com/activeadmin/activeadmin/issues/723
|
|
854
|
-
[#741]: https://github.com/activeadmin/activeadmin/issues/741
|
|
855
|
-
[#751]: https://github.com/activeadmin/activeadmin/issues/751
|
|
856
|
-
[#758]: https://github.com/activeadmin/activeadmin/issues/758
|
|
857
|
-
[#780]: https://github.com/activeadmin/activeadmin/issues/780
|
|
858
|
-
[#822]: https://github.com/activeadmin/activeadmin/issues/822
|
|
859
|
-
[#865]: https://github.com/activeadmin/activeadmin/issues/865
|
|
860
|
-
[#869]: https://github.com/activeadmin/activeadmin/issues/869
|
|
861
|
-
[#897]: https://github.com/activeadmin/activeadmin/issues/897
|
|
862
|
-
[#905]: https://github.com/activeadmin/activeadmin/issues/905
|
|
863
|
-
[#931]: https://github.com/activeadmin/activeadmin/issues/931
|
|
864
|
-
[#960]: https://github.com/activeadmin/activeadmin/issues/960
|
|
865
|
-
[#971]: https://github.com/activeadmin/activeadmin/issues/971
|
|
866
|
-
[#978]: https://github.com/activeadmin/activeadmin/issues/978
|
|
867
|
-
[#983]: https://github.com/activeadmin/activeadmin/issues/983
|
|
868
|
-
[#993]: https://github.com/activeadmin/activeadmin/issues/993
|
|
869
|
-
[#994]: https://github.com/activeadmin/activeadmin/issues/994
|
|
870
|
-
[#1013]: https://github.com/activeadmin/activeadmin/issues/1013
|
|
871
|
-
[#1016]: https://github.com/activeadmin/activeadmin/issues/1016
|
|
872
|
-
[#1023]: https://github.com/activeadmin/activeadmin/issues/1023
|
|
873
|
-
[#1032]: https://github.com/activeadmin/activeadmin/issues/1032
|
|
874
|
-
[#1033]: https://github.com/activeadmin/activeadmin/issues/1033
|
|
875
|
-
[#1041]: https://github.com/activeadmin/activeadmin/issues/1041
|
|
876
|
-
[#1063]: https://github.com/activeadmin/activeadmin/issues/1063
|
|
877
|
-
[#1117]: https://github.com/activeadmin/activeadmin/issues/1117
|
|
878
|
-
[#1439]: https://github.com/activeadmin/activeadmin/issues/1439
|
|
879
|
-
[#1609]: https://github.com/activeadmin/activeadmin/issues/1609
|
|
880
|
-
[#1626]: https://github.com/activeadmin/activeadmin/issues/1626
|
|
881
|
-
[#1647]: https://github.com/activeadmin/activeadmin/issues/1647
|
|
882
|
-
[#1664]: https://github.com/activeadmin/activeadmin/issues/1664
|
|
883
|
-
[#1668]: https://github.com/activeadmin/activeadmin/issues/1668
|
|
884
|
-
[#1681]: https://github.com/activeadmin/activeadmin/issues/1681
|
|
885
|
-
[#1683]: https://github.com/activeadmin/activeadmin/issues/1683
|
|
886
|
-
[#1699]: https://github.com/activeadmin/activeadmin/issues/1699
|
|
887
|
-
[#1745]: https://github.com/activeadmin/activeadmin/issues/1745
|
|
888
|
-
[#1752]: https://github.com/activeadmin/activeadmin/issues/1752
|
|
889
|
-
[#1775]: https://github.com/activeadmin/activeadmin/issues/1775
|
|
890
|
-
[#1782]: https://github.com/activeadmin/activeadmin/issues/1782
|
|
891
|
-
[#1783]: https://github.com/activeadmin/activeadmin/issues/1783
|
|
892
|
-
[#1788]: https://github.com/activeadmin/activeadmin/issues/1788
|
|
893
|
-
[#1801]: https://github.com/activeadmin/activeadmin/issues/1801
|
|
894
|
-
[#1804]: https://github.com/activeadmin/activeadmin/issues/1804
|
|
895
|
-
[#1805]: https://github.com/activeadmin/activeadmin/issues/1805
|
|
896
|
-
[#1817]: https://github.com/activeadmin/activeadmin/issues/1817
|
|
897
|
-
[#1834]: https://github.com/activeadmin/activeadmin/issues/1834
|
|
898
|
-
[#1861]: https://github.com/activeadmin/activeadmin/issues/1861
|
|
899
|
-
[#1867]: https://github.com/activeadmin/activeadmin/issues/1867
|
|
900
|
-
[#1871]: https://github.com/activeadmin/activeadmin/issues/1871
|
|
901
|
-
[#1873]: https://github.com/activeadmin/activeadmin/issues/1873
|
|
902
|
-
[#1893]: https://github.com/activeadmin/activeadmin/issues/1893
|
|
903
|
-
[#1896]: https://github.com/activeadmin/activeadmin/issues/1896
|
|
904
|
-
[#1908]: https://github.com/activeadmin/activeadmin/issues/1908
|
|
905
|
-
[#1913]: https://github.com/activeadmin/activeadmin/issues/1913
|
|
906
|
-
[#1916]: https://github.com/activeadmin/activeadmin/issues/1916
|
|
907
462
|
[#1926]: https://github.com/activeadmin/activeadmin/issues/1926
|
|
908
|
-
[#1928]: https://github.com/activeadmin/activeadmin/issues/1928
|
|
909
|
-
[#1929]: https://github.com/activeadmin/activeadmin/issues/1929
|
|
910
|
-
[#1933]: https://github.com/activeadmin/activeadmin/issues/1933
|
|
911
|
-
[#1937]: https://github.com/activeadmin/activeadmin/issues/1937
|
|
912
|
-
[#1940]: https://github.com/activeadmin/activeadmin/issues/1940
|
|
913
|
-
[#1947]: https://github.com/activeadmin/activeadmin/issues/1947
|
|
914
|
-
[#1952]: https://github.com/activeadmin/activeadmin/issues/1952
|
|
915
|
-
[#1960]: https://github.com/activeadmin/activeadmin/issues/1960
|
|
916
|
-
[#1961]: https://github.com/activeadmin/activeadmin/issues/1961
|
|
917
|
-
[#1962]: https://github.com/activeadmin/activeadmin/issues/1962
|
|
918
|
-
[#1966]: https://github.com/activeadmin/activeadmin/issues/1966
|
|
919
|
-
[#1967]: https://github.com/activeadmin/activeadmin/issues/1967
|
|
920
|
-
[#1973]: https://github.com/activeadmin/activeadmin/issues/1973
|
|
921
463
|
[#1979]: https://github.com/activeadmin/activeadmin/issues/1979
|
|
922
|
-
[#2000]: https://github.com/activeadmin/activeadmin/issues/2000
|
|
923
464
|
[#2001]: https://github.com/activeadmin/activeadmin/issues/2001
|
|
924
|
-
[#2015]: https://github.com/activeadmin/activeadmin/issues/2015
|
|
925
|
-
[#2018]: https://github.com/activeadmin/activeadmin/issues/2018
|
|
926
465
|
[#2040]: https://github.com/activeadmin/activeadmin/issues/2040
|
|
927
|
-
[#2043]: https://github.com/activeadmin/activeadmin/issues/2043
|
|
928
|
-
[#2044]: https://github.com/activeadmin/activeadmin/issues/2044
|
|
929
|
-
[#2046]: https://github.com/activeadmin/activeadmin/issues/2046
|
|
930
|
-
[#2054]: https://github.com/activeadmin/activeadmin/issues/2054
|
|
931
|
-
[#2058]: https://github.com/activeadmin/activeadmin/issues/2058
|
|
932
|
-
[#2060]: https://github.com/activeadmin/activeadmin/issues/2060
|
|
933
|
-
[#2062]: https://github.com/activeadmin/activeadmin/issues/2062
|
|
934
|
-
[#2068]: https://github.com/activeadmin/activeadmin/issues/2068
|
|
935
|
-
[#2071]: https://github.com/activeadmin/activeadmin/issues/2071
|
|
936
|
-
[#2072]: https://github.com/activeadmin/activeadmin/issues/2072
|
|
937
|
-
[#2075]: https://github.com/activeadmin/activeadmin/issues/2075
|
|
938
|
-
[#2083]: https://github.com/activeadmin/activeadmin/issues/2083
|
|
939
|
-
[#2084]: https://github.com/activeadmin/activeadmin/issues/2084
|
|
940
|
-
[#2085]: https://github.com/activeadmin/activeadmin/issues/2085
|
|
941
|
-
[#2087]: https://github.com/activeadmin/activeadmin/issues/2087
|
|
942
|
-
[#2088]: https://github.com/activeadmin/activeadmin/issues/2088
|
|
943
|
-
[#2089]: https://github.com/activeadmin/activeadmin/issues/2089
|
|
944
|
-
[#2090]: https://github.com/activeadmin/activeadmin/issues/2090
|
|
945
|
-
[#2095]: https://github.com/activeadmin/activeadmin/issues/2095
|
|
946
|
-
[#2096]: https://github.com/activeadmin/activeadmin/issues/2096
|
|
947
|
-
[#2099]: https://github.com/activeadmin/activeadmin/issues/2099
|
|
948
|
-
[#2107]: https://github.com/activeadmin/activeadmin/issues/2107
|
|
949
|
-
[#2113]: https://github.com/activeadmin/activeadmin/issues/2113
|
|
950
|
-
[#2125]: https://github.com/activeadmin/activeadmin/issues/2125
|
|
951
|
-
[#2134]: https://github.com/activeadmin/activeadmin/issues/2134
|
|
952
|
-
[#2139]: https://github.com/activeadmin/activeadmin/issues/2139
|
|
953
|
-
[#2147]: https://github.com/activeadmin/activeadmin/issues/2147
|
|
954
|
-
[#2150]: https://github.com/activeadmin/activeadmin/issues/2150
|
|
955
|
-
[#2154]: https://github.com/activeadmin/activeadmin/issues/2154
|
|
956
|
-
[#2162]: https://github.com/activeadmin/activeadmin/issues/2162
|
|
957
|
-
[#2165]: https://github.com/activeadmin/activeadmin/issues/2165
|
|
958
|
-
[#2175]: https://github.com/activeadmin/activeadmin/issues/2175
|
|
959
|
-
[#2186]: https://github.com/activeadmin/activeadmin/issues/2186
|
|
960
|
-
[#2215]: https://github.com/activeadmin/activeadmin/issues/2215
|
|
961
|
-
[#2221]: https://github.com/activeadmin/activeadmin/issues/2221
|
|
962
|
-
[#2228]: https://github.com/activeadmin/activeadmin/issues/2228
|
|
963
|
-
[#2231]: https://github.com/activeadmin/activeadmin/issues/2231
|
|
964
|
-
[#2255]: https://github.com/activeadmin/activeadmin/issues/2255
|
|
965
|
-
[#2258]: https://github.com/activeadmin/activeadmin/issues/2258
|
|
966
|
-
[#2313]: https://github.com/activeadmin/activeadmin/issues/2313
|
|
967
|
-
[#2315]: https://github.com/activeadmin/activeadmin/issues/2315
|
|
968
|
-
[#2319]: https://github.com/activeadmin/activeadmin/issues/2319
|
|
969
466
|
[#2326]: https://github.com/activeadmin/activeadmin/issues/2326
|
|
970
|
-
[#2333]: https://github.com/activeadmin/activeadmin/issues/2333
|
|
971
|
-
[#2348]: https://github.com/activeadmin/activeadmin/issues/2348
|
|
972
|
-
[#2395]: https://github.com/activeadmin/activeadmin/issues/2395
|
|
973
|
-
[#2403]: https://github.com/activeadmin/activeadmin/issues/2403
|
|
974
|
-
[#2416]: https://github.com/activeadmin/activeadmin/issues/2416
|
|
975
|
-
[#2419]: https://github.com/activeadmin/activeadmin/issues/2419
|
|
976
|
-
[#2420]: https://github.com/activeadmin/activeadmin/issues/2420
|
|
977
|
-
[#2454]: https://github.com/activeadmin/activeadmin/issues/2454
|
|
978
467
|
[#2523]: https://github.com/activeadmin/activeadmin/issues/2523
|
|
979
468
|
[#2532]: https://github.com/activeadmin/activeadmin/issues/2532
|
|
980
469
|
[#2541]: https://github.com/activeadmin/activeadmin/issues/2541
|
|
981
470
|
[#2544]: https://github.com/activeadmin/activeadmin/issues/2544
|
|
982
471
|
[#2545]: https://github.com/activeadmin/activeadmin/issues/2545
|
|
983
|
-
[#
|
|
984
|
-
[#2601]: https://github.com/activeadmin/activeadmin/issues/2601
|
|
985
|
-
[#2744]: https://github.com/activeadmin/activeadmin/issues/2744
|
|
986
|
-
[#2847]: https://github.com/activeadmin/activeadmin/issues/2847
|
|
472
|
+
[#3038]: https://github.com/activeadmin/activeadmin/issues/3038
|
|
987
473
|
[#3075]: https://github.com/activeadmin/activeadmin/issues/3075
|
|
988
474
|
[#3463]: https://github.com/activeadmin/activeadmin/issues/3463
|
|
989
475
|
[#3464]: https://github.com/activeadmin/activeadmin/issues/3464
|
|
990
476
|
[#3486]: https://github.com/activeadmin/activeadmin/issues/3486
|
|
991
477
|
[#3519]: https://github.com/activeadmin/activeadmin/issues/3519
|
|
478
|
+
[#3535]: https://github.com/activeadmin/activeadmin/issues/3535
|
|
479
|
+
[#3553]: https://github.com/activeadmin/activeadmin/issues/3553
|
|
992
480
|
[#3606]: https://github.com/activeadmin/activeadmin/issues/3606
|
|
993
481
|
[#3686]: https://github.com/activeadmin/activeadmin/issues/3686
|
|
994
482
|
[#3695]: https://github.com/activeadmin/activeadmin/issues/3695
|
|
995
483
|
[#3731]: https://github.com/activeadmin/activeadmin/issues/3731
|
|
996
|
-
[
|
|
997
|
-
[
|
|
998
|
-
[
|
|
999
|
-
[
|
|
1000
|
-
[
|
|
1001
|
-
[
|
|
1002
|
-
[
|
|
1003
|
-
[
|
|
1004
|
-
|
|
1005
|
-
[
|
|
1006
|
-
|
|
1007
|
-
[
|
|
484
|
+
[#3783]: https://github.com/activeadmin/activeadmin/issues/3783
|
|
485
|
+
[#3894]: https://github.com/activeadmin/activeadmin/issues/3894
|
|
486
|
+
[#4118]: https://github.com/activeadmin/activeadmin/issues/4118
|
|
487
|
+
[#4173]: https://github.com/activeadmin/activeadmin/issues/4173
|
|
488
|
+
[#4187]: https://github.com/activeadmin/activeadmin/issues/4187
|
|
489
|
+
[#4254]: https://github.com/activeadmin/activeadmin/issues/4254
|
|
490
|
+
[#5043]: https://github.com/activeadmin/activeadmin/issues/5043
|
|
491
|
+
[#5198]: https://github.com/activeadmin/activeadmin/issues/5198
|
|
492
|
+
|
|
493
|
+
[21b6138f]: https://github.com/activeadmin/activeadmin/pull/5740/commits/21b6138fdcf58cd54c3f1d3f60cb1127b174b40f
|
|
494
|
+
|
|
495
|
+
[#3091]: https://github.com/activeadmin/activeadmin/pull/3091
|
|
496
|
+
[#3435]: https://github.com/activeadmin/activeadmin/pull/3435
|
|
497
|
+
[#4477]: https://github.com/activeadmin/activeadmin/pull/4477
|
|
498
|
+
[#4731]: https://github.com/activeadmin/activeadmin/pull/4731
|
|
499
|
+
[#4759]: https://github.com/activeadmin/activeadmin/pull/4759
|
|
500
|
+
[#4768]: https://github.com/activeadmin/activeadmin/pull/4768
|
|
501
|
+
[#4848]: https://github.com/activeadmin/activeadmin/pull/4848
|
|
502
|
+
[#4851]: https://github.com/activeadmin/activeadmin/pull/4851
|
|
503
|
+
[#4867]: https://github.com/activeadmin/activeadmin/pull/4867
|
|
504
|
+
[#4870]: https://github.com/activeadmin/activeadmin/pull/4870
|
|
505
|
+
[#4882]: https://github.com/activeadmin/activeadmin/pull/4882
|
|
506
|
+
[#4940]: https://github.com/activeadmin/activeadmin/pull/4940
|
|
507
|
+
[#4950]: https://github.com/activeadmin/activeadmin/pull/4950
|
|
508
|
+
[#4951]: https://github.com/activeadmin/activeadmin/pull/4951
|
|
509
|
+
[#4989]: https://github.com/activeadmin/activeadmin/pull/4989
|
|
510
|
+
[#4996]: https://github.com/activeadmin/activeadmin/pull/4996
|
|
511
|
+
[#4997]: https://github.com/activeadmin/activeadmin/pull/4997
|
|
512
|
+
[#5003]: https://github.com/activeadmin/activeadmin/pull/5003
|
|
513
|
+
[#5029]: https://github.com/activeadmin/activeadmin/pull/5029
|
|
514
|
+
[#5037]: https://github.com/activeadmin/activeadmin/pull/5037
|
|
515
|
+
[#5044]: https://github.com/activeadmin/activeadmin/pull/5044
|
|
516
|
+
[#5046]: https://github.com/activeadmin/activeadmin/pull/5046
|
|
517
|
+
[#5052]: https://github.com/activeadmin/activeadmin/pull/5052
|
|
518
|
+
[#5060]: https://github.com/activeadmin/activeadmin/pull/5060
|
|
519
|
+
[#5069]: https://github.com/activeadmin/activeadmin/pull/5069
|
|
520
|
+
[#5078]: https://github.com/activeadmin/activeadmin/pull/5078
|
|
521
|
+
[#5081]: https://github.com/activeadmin/activeadmin/pull/5081
|
|
522
|
+
[#5088]: https://github.com/activeadmin/activeadmin/pull/5088
|
|
523
|
+
[#5093]: https://github.com/activeadmin/activeadmin/pull/5093
|
|
524
|
+
[#5099]: https://github.com/activeadmin/activeadmin/pull/5099
|
|
525
|
+
[#5104]: https://github.com/activeadmin/activeadmin/pull/5104
|
|
526
|
+
[#5119]: https://github.com/activeadmin/activeadmin/pull/5119
|
|
527
|
+
[#5120]: https://github.com/activeadmin/activeadmin/pull/5120
|
|
528
|
+
[#5125]: https://github.com/activeadmin/activeadmin/pull/5125
|
|
529
|
+
[#5137]: https://github.com/activeadmin/activeadmin/pull/5137
|
|
530
|
+
[#5143]: https://github.com/activeadmin/activeadmin/pull/5143
|
|
531
|
+
[#5157]: https://github.com/activeadmin/activeadmin/pull/5157
|
|
532
|
+
[#5167]: https://github.com/activeadmin/activeadmin/pull/5167
|
|
533
|
+
[#5180]: https://github.com/activeadmin/activeadmin/pull/5180
|
|
534
|
+
[#5187]: https://github.com/activeadmin/activeadmin/pull/5187
|
|
535
|
+
[#5194]: https://github.com/activeadmin/activeadmin/pull/5194
|
|
536
|
+
[#5208]: https://github.com/activeadmin/activeadmin/pull/5208
|
|
537
|
+
[#5210]: https://github.com/activeadmin/activeadmin/pull/5210
|
|
538
|
+
[#5223]: https://github.com/activeadmin/activeadmin/pull/5223
|
|
539
|
+
[#5238]: https://github.com/activeadmin/activeadmin/pull/5238
|
|
540
|
+
[#5240]: https://github.com/activeadmin/activeadmin/pull/5240
|
|
541
|
+
[#5251]: https://github.com/activeadmin/activeadmin/pull/5251
|
|
542
|
+
[#5253]: https://github.com/activeadmin/activeadmin/pull/5253
|
|
543
|
+
[#5266]: https://github.com/activeadmin/activeadmin/pull/5266
|
|
544
|
+
[#5272]: https://github.com/activeadmin/activeadmin/pull/5272
|
|
545
|
+
[#5275]: https://github.com/activeadmin/activeadmin/pull/5275
|
|
546
|
+
[#5284]: https://github.com/activeadmin/activeadmin/pull/5284
|
|
547
|
+
[#5295]: https://github.com/activeadmin/activeadmin/pull/5295
|
|
548
|
+
[#5299]: https://github.com/activeadmin/activeadmin/pull/5299
|
|
549
|
+
[#5320]: https://github.com/activeadmin/activeadmin/pull/5320
|
|
550
|
+
[#5324]: https://github.com/activeadmin/activeadmin/pull/5324
|
|
551
|
+
[#5330]: https://github.com/activeadmin/activeadmin/pull/5330
|
|
552
|
+
[#5334]: https://github.com/activeadmin/activeadmin/pull/5334
|
|
553
|
+
[#5336]: https://github.com/activeadmin/activeadmin/pull/5336
|
|
554
|
+
[#5341]: https://github.com/activeadmin/activeadmin/pull/5341
|
|
555
|
+
[#5343]: https://github.com/activeadmin/activeadmin/pull/5343
|
|
556
|
+
[#5357]: https://github.com/activeadmin/activeadmin/pull/5357
|
|
557
|
+
[#5359]: https://github.com/activeadmin/activeadmin/pull/5359
|
|
558
|
+
[#5368]: https://github.com/activeadmin/activeadmin/pull/5368
|
|
559
|
+
[#5370]: https://github.com/activeadmin/activeadmin/pull/5370
|
|
560
|
+
[#5375]: https://github.com/activeadmin/activeadmin/pull/5375
|
|
561
|
+
[#5376]: https://github.com/activeadmin/activeadmin/pull/5376
|
|
562
|
+
[#5399]: https://github.com/activeadmin/activeadmin/pull/5399
|
|
563
|
+
[#5401]: https://github.com/activeadmin/activeadmin/pull/5401
|
|
564
|
+
[#5408]: https://github.com/activeadmin/activeadmin/pull/5408
|
|
565
|
+
[#5413]: https://github.com/activeadmin/activeadmin/pull/5413
|
|
566
|
+
[#5417]: https://github.com/activeadmin/activeadmin/pull/5417
|
|
567
|
+
[#5418]: https://github.com/activeadmin/activeadmin/pull/5418
|
|
568
|
+
[#5433]: https://github.com/activeadmin/activeadmin/pull/5433
|
|
569
|
+
[#5446]: https://github.com/activeadmin/activeadmin/pull/5446
|
|
570
|
+
[#5448]: https://github.com/activeadmin/activeadmin/pull/5448
|
|
571
|
+
[#5453]: https://github.com/activeadmin/activeadmin/pull/5453
|
|
572
|
+
[#5458]: https://github.com/activeadmin/activeadmin/pull/5458
|
|
573
|
+
[#5461]: https://github.com/activeadmin/activeadmin/pull/5461
|
|
574
|
+
[#5464]: https://github.com/activeadmin/activeadmin/pull/5464
|
|
575
|
+
[#5486]: https://github.com/activeadmin/activeadmin/pull/5486
|
|
576
|
+
[#5501]: https://github.com/activeadmin/activeadmin/pull/5501
|
|
577
|
+
[#5504]: https://github.com/activeadmin/activeadmin/pull/5504
|
|
578
|
+
[#5517]: https://github.com/activeadmin/activeadmin/pull/5517
|
|
579
|
+
[#5537]: https://github.com/activeadmin/activeadmin/pull/5537
|
|
580
|
+
[#5548]: https://github.com/activeadmin/activeadmin/pull/5548
|
|
581
|
+
[#5555]: https://github.com/activeadmin/activeadmin/pull/5555
|
|
582
|
+
[#5583]: https://github.com/activeadmin/activeadmin/pull/5583
|
|
583
|
+
[#5590]: https://github.com/activeadmin/activeadmin/pull/5590
|
|
584
|
+
[#5608]: https://github.com/activeadmin/activeadmin/pull/5608
|
|
585
|
+
[#5611]: https://github.com/activeadmin/activeadmin/pull/5611
|
|
586
|
+
[#5627]: https://github.com/activeadmin/activeadmin/pull/5627
|
|
587
|
+
[#5631]: https://github.com/activeadmin/activeadmin/pull/5631
|
|
588
|
+
[#5632]: https://github.com/activeadmin/activeadmin/pull/5632
|
|
589
|
+
[#5650]: https://github.com/activeadmin/activeadmin/pull/5650
|
|
590
|
+
[#5662]: https://github.com/activeadmin/activeadmin/pull/5662
|
|
591
|
+
[#5710]: https://github.com/activeadmin/activeadmin/pull/5710
|
|
592
|
+
[#5726]: https://github.com/activeadmin/activeadmin/pull/5726
|
|
593
|
+
[#5738]: https://github.com/activeadmin/activeadmin/pull/5738
|
|
594
|
+
[#5740]: https://github.com/activeadmin/activeadmin/pull/5740
|
|
595
|
+
[#5751]: https://github.com/activeadmin/activeadmin/pull/5751
|
|
596
|
+
[#5758]: https://github.com/activeadmin/activeadmin/pull/5758
|
|
597
|
+
[#5777]: https://github.com/activeadmin/activeadmin/pull/5777
|
|
598
|
+
[#5794]: https://github.com/activeadmin/activeadmin/pull/5794
|
|
599
|
+
[#5800]: https://github.com/activeadmin/activeadmin/pull/5800
|
|
600
|
+
[#5801]: https://github.com/activeadmin/activeadmin/pull/5801
|
|
601
|
+
[#5802]: https://github.com/activeadmin/activeadmin/pull/5802
|
|
602
|
+
[#5811]: https://github.com/activeadmin/activeadmin/pull/5811
|
|
603
|
+
[#5816]: https://github.com/activeadmin/activeadmin/pull/5816
|
|
604
|
+
[#5822]: https://github.com/activeadmin/activeadmin/pull/5822
|
|
605
|
+
[#5826]: https://github.com/activeadmin/activeadmin/pull/5826
|
|
606
|
+
[#5831]: https://github.com/activeadmin/activeadmin/pull/5831
|
|
607
|
+
[#5842]: https://github.com/activeadmin/activeadmin/pull/5842
|
|
608
|
+
[#5854]: https://github.com/activeadmin/activeadmin/pull/5854
|
|
609
|
+
[#5855]: https://github.com/activeadmin/activeadmin/pull/5855
|
|
610
|
+
[#5867]: https://github.com/activeadmin/activeadmin/pull/5867
|
|
611
|
+
[#5870]: https://github.com/activeadmin/activeadmin/pull/5870
|
|
612
|
+
[#5874]: https://github.com/activeadmin/activeadmin/pull/5874
|
|
613
|
+
[#5877]: https://github.com/activeadmin/activeadmin/pull/5877
|
|
614
|
+
[#5886]: https://github.com/activeadmin/activeadmin/pull/5886
|
|
615
|
+
[#5887]: https://github.com/activeadmin/activeadmin/pull/5887
|
|
616
|
+
[#5894]: https://github.com/activeadmin/activeadmin/pull/5894
|
|
617
|
+
[#5895]: https://github.com/activeadmin/activeadmin/pull/5895
|
|
618
|
+
[#5929]: https://github.com/activeadmin/activeadmin/pull/5929
|
|
619
|
+
[#5931]: https://github.com/activeadmin/activeadmin/pull/5931
|
|
620
|
+
[#5938]: https://github.com/activeadmin/activeadmin/pull/5938
|
|
621
|
+
[#5943]: https://github.com/activeadmin/activeadmin/pull/5943
|
|
622
|
+
[#5946]: https://github.com/activeadmin/activeadmin/pull/5946
|
|
623
|
+
[#5956]: https://github.com/activeadmin/activeadmin/pull/5956
|
|
624
|
+
[#5957]: https://github.com/activeadmin/activeadmin/pull/5957
|
|
625
|
+
[#5994]: https://github.com/activeadmin/activeadmin/pull/5994
|
|
626
|
+
[#6000]: https://github.com/activeadmin/activeadmin/pull/6000
|
|
627
|
+
[#6002]: https://github.com/activeadmin/activeadmin/pull/6002
|
|
628
|
+
[#6047]: https://github.com/activeadmin/activeadmin/pull/6047
|
|
629
|
+
[#6086]: https://github.com/activeadmin/activeadmin/pull/6086
|
|
630
|
+
[#6099]: https://github.com/activeadmin/activeadmin/pull/6099
|
|
631
|
+
[#6124]: https://github.com/activeadmin/activeadmin/pull/6124
|
|
632
|
+
[#6149]: https://github.com/activeadmin/activeadmin/pull/6149
|
|
633
|
+
[#6198]: https://github.com/activeadmin/activeadmin/pull/6198
|
|
634
|
+
[#6210]: https://github.com/activeadmin/activeadmin/pull/6210
|
|
635
|
+
[#6221]: https://github.com/activeadmin/activeadmin/pull/6221
|
|
636
|
+
[#6232]: https://github.com/activeadmin/activeadmin/pull/6232
|
|
637
|
+
[#6249]: https://github.com/activeadmin/activeadmin/pull/6249
|
|
638
|
+
[#6315]: https://github.com/activeadmin/activeadmin/pull/6315
|
|
639
|
+
[#6318]: https://github.com/activeadmin/activeadmin/pull/6318
|
|
640
|
+
[#6341]: https://github.com/activeadmin/activeadmin/pull/6341
|
|
641
|
+
[#6368]: https://github.com/activeadmin/activeadmin/pull/6368
|
|
642
|
+
[#6393]: https://github.com/activeadmin/activeadmin/pull/6393
|
|
643
|
+
[#6422]: https://github.com/activeadmin/activeadmin/pull/6422
|
|
644
|
+
[#6451]: https://github.com/activeadmin/activeadmin/pull/6451
|
|
645
|
+
[#6460]: https://github.com/activeadmin/activeadmin/pull/6460
|
|
646
|
+
[#6462]: https://github.com/activeadmin/activeadmin/pull/6462
|
|
647
|
+
[#6487]: https://github.com/activeadmin/activeadmin/pull/6487
|
|
648
|
+
[#6523]: https://github.com/activeadmin/activeadmin/pull/6523
|
|
649
|
+
[#6536]: https://github.com/activeadmin/activeadmin/pull/6536
|
|
650
|
+
[#6548]: https://github.com/activeadmin/activeadmin/pull/6548
|
|
651
|
+
[#6583]: https://github.com/activeadmin/activeadmin/pull/6583
|
|
652
|
+
[#6584]: https://github.com/activeadmin/activeadmin/pull/6584
|
|
653
|
+
|
|
654
|
+
[@5t111111]: https://github.com/5t111111
|
|
655
|
+
[@aarek]: https://github.com/aarek
|
|
656
|
+
[@adler99]: https://github.com/adler99
|
|
657
|
+
[@ajw725]: https://github.com/ajw725
|
|
658
|
+
[@alex-bogomolov]: https://github.com/alex-bogomolov
|
|
1008
659
|
[@amiel]: https://github.com/amiel
|
|
1009
|
-
[@
|
|
1010
|
-
[@
|
|
1011
|
-
[@
|
|
1012
|
-
[@
|
|
1013
|
-
[@
|
|
1014
|
-
[@
|
|
1015
|
-
[@
|
|
1016
|
-
[@
|
|
1017
|
-
[@
|
|
1018
|
-
[@
|
|
1019
|
-
[@
|
|
660
|
+
[@amiuhle]: https://github.com/amiuhle
|
|
661
|
+
[@andreslemik]: https://github.com/andreslemik
|
|
662
|
+
[@bartoszkopinski]: https://github.com/bartoszkopinski
|
|
663
|
+
[@blocknotes]: https://github.com/blocknotes
|
|
664
|
+
[@bolshakov]: https://github.com/bolshakov
|
|
665
|
+
[@brunvez]: https://github.com/brunvez
|
|
666
|
+
[@buren]: https://github.com/buren
|
|
667
|
+
[@chancancode]: https://github.com/chancancode
|
|
668
|
+
[@chrp]: https://github.com/chrp
|
|
669
|
+
[@chumakoff]: https://github.com/chumakoff
|
|
670
|
+
[@cprodhomme]: https://github.com/cprodhomme
|
|
671
|
+
[@craigmcnamara]: https://github.com/craigmcnamara
|
|
672
|
+
[@DanielHeath]: https://github.com/DanielHeath
|
|
673
|
+
[@deivid-rodriguez]: https://github.com/deivid-rodriguez
|
|
674
|
+
[@dennisvdvliet]: https://github.com/dennisvdvliet
|
|
675
|
+
[@dhyegofernando]: https://github.com/dhyegofernando
|
|
676
|
+
[@dkniffin]: https://github.com/dkniffin
|
|
1020
677
|
[@dmitry]: https://github.com/dmitry
|
|
1021
|
-
[@
|
|
1022
|
-
[@
|
|
1023
|
-
[@
|
|
1024
|
-
[@
|
|
1025
|
-
[@
|
|
1026
|
-
[@
|
|
1027
|
-
[@
|
|
1028
|
-
[@
|
|
1029
|
-
[@
|
|
1030
|
-
[@george]: https://github.com/george
|
|
1031
|
-
[@ggilder]: https://github.com/ggilder
|
|
1032
|
-
[@givanse]: https://github.com/givanse
|
|
678
|
+
[@drn]: https://github.com/drn
|
|
679
|
+
[@eikes]: https://github.com/eikes
|
|
680
|
+
[@f1sherman]: https://github.com/f1sherman
|
|
681
|
+
[@FabioRos]: https://github.com/FabioRos
|
|
682
|
+
[@faucct]: https://github.com/faucct
|
|
683
|
+
[@Fivell]: https://github.com/Fivell
|
|
684
|
+
[@fuzziness]: https://github.com/fuzziness
|
|
685
|
+
[@giapnhdev]: https://github.com/giapnhdev
|
|
686
|
+
[@glebtv]: https://github.com/glebtv
|
|
1033
687
|
[@gonzedge]: https://github.com/gonzedge
|
|
1034
|
-
[@
|
|
1035
|
-
[@
|
|
1036
|
-
[@
|
|
1037
|
-
[@
|
|
1038
|
-
[@
|
|
1039
|
-
[@
|
|
1040
|
-
[@
|
|
1041
|
-
[@
|
|
1042
|
-
[@
|
|
1043
|
-
[@
|
|
1044
|
-
[@
|
|
688
|
+
[@guigs]: https://github.com/guigs
|
|
689
|
+
[@HappyKadaver]: https://github.com/HappyKadaver
|
|
690
|
+
[@imcvampire]: https://github.com/imcvampire
|
|
691
|
+
[@innparusu95]: https://github.com/innparusu95
|
|
692
|
+
[@ionut998]: https://github.com/ionut998
|
|
693
|
+
[@irmela]: https://github.com/irmela
|
|
694
|
+
[@Ivanov-Anton]: https://github.com/Ivanov-Anton
|
|
695
|
+
[@jasl]: https://github.com/jasl
|
|
696
|
+
[@javierjulio]: https://github.com/javierjulio
|
|
697
|
+
[@jawa]: https://github.com/jawa
|
|
698
|
+
[@JiiHu]: https://github.com/JiiHu
|
|
699
|
+
[@jiikko]: https://github.com/jiikko
|
|
1045
700
|
[@johnnyshields]: https://github.com/johnnyshields
|
|
1046
|
-
[@
|
|
1047
|
-
[@
|
|
1048
|
-
[@
|
|
1049
|
-
[@
|
|
1050
|
-
[@
|
|
1051
|
-
[@
|
|
1052
|
-
[@
|
|
1053
|
-
[@
|
|
1054
|
-
[@
|
|
1055
|
-
[@
|
|
1056
|
-
[@
|
|
1057
|
-
[@
|
|
1058
|
-
[@
|
|
1059
|
-
[@
|
|
1060
|
-
[@
|
|
1061
|
-
[@
|
|
1062
|
-
[@
|
|
1063
|
-
[@
|
|
1064
|
-
[@
|
|
1065
|
-
[@
|
|
1066
|
-
[@
|
|
1067
|
-
[@
|
|
1068
|
-
[@
|
|
701
|
+
[@jscheid]: https://github.com/jscheid
|
|
702
|
+
[@juril33t]: https://github.com/juril33t
|
|
703
|
+
[@jwesorick]: https://github.com/jwesorick
|
|
704
|
+
[@kjeldahl]: https://github.com/kjeldahl
|
|
705
|
+
[@ko-lem]: https://github.com/ko-lem
|
|
706
|
+
[@kobeumut]: https://github.com/kobeumut
|
|
707
|
+
[@Kris-LIBIS]: https://github.com/Kris-LIBIS
|
|
708
|
+
[@krzcho]: https://github.com/krzcho
|
|
709
|
+
[@kwent]: https://github.com/kwent
|
|
710
|
+
[@leio10]: https://github.com/leio10
|
|
711
|
+
[@littleforest]: https://github.com/littleforest
|
|
712
|
+
[@Looooong]: https://github.com/Looooong
|
|
713
|
+
[@markstory]: https://github.com/markstory
|
|
714
|
+
[@mauriciopasquier]: https://github.com/mauriciopasquier
|
|
715
|
+
[@mconiglio]: https://github.com/mconiglio
|
|
716
|
+
[@micred]: https://github.com/micred
|
|
717
|
+
[@mirelon]: https://github.com/mirelon
|
|
718
|
+
[@mshalaby]: https://github.com/mshalaby
|
|
719
|
+
[@munen]: https://github.com/munen
|
|
720
|
+
[@ndbroadbent]: https://github.com/ndbroadbent
|
|
721
|
+
[@Nguyenanh]: https://github.com/Nguyenanh
|
|
722
|
+
[@orkhan]: https://github.com/orkhan
|
|
723
|
+
[@panasyuk]: https://github.com/panasyuk
|
|
724
|
+
[@PChambino]: https://github.com/PChambino
|
|
1069
725
|
[@potatosalad]: https://github.com/potatosalad
|
|
1070
726
|
[@pranas]: https://github.com/pranas
|
|
1071
|
-
[@
|
|
1072
|
-
[@
|
|
1073
|
-
[@
|
|
1074
|
-
[@
|
|
1075
|
-
[@
|
|
1076
|
-
[@rmw]: https://github.com/rmw
|
|
1077
|
-
[@robdiciuccio]: https://github.com/robdiciuccio
|
|
1078
|
-
[@rolfb]: https://github.com/rolfb
|
|
1079
|
-
[@ronen]: https://github.com/ronen
|
|
1080
|
-
[@ryansch]: https://github.com/ryansch
|
|
1081
|
-
[@samvincent]: https://github.com/samvincent
|
|
727
|
+
[@renotocn]: https://github.com/renotocn
|
|
728
|
+
[@rn0rno]: https://github.com/rn0rno
|
|
729
|
+
[@RobinvanderVliet]: https://github.com/RobinvanderVliet
|
|
730
|
+
[@rogerkk]: https://github.com/rogerkk
|
|
731
|
+
[@roramirez]: https://github.com/roramirez
|
|
1082
732
|
[@seanlinsley]: https://github.com/seanlinsley
|
|
1083
|
-
[@
|
|
1084
|
-
[@
|
|
733
|
+
[@sgara]: https://github.com/sgara
|
|
734
|
+
[@ShallmentMo]: https://github.com/ShallmentMo
|
|
1085
735
|
[@shekibobo]: https://github.com/shekibobo
|
|
1086
|
-
[@
|
|
1087
|
-
[@
|
|
1088
|
-
[@
|
|
736
|
+
[@shouya]: https://github.com/shouya
|
|
737
|
+
[@sjieg]: https://github.com/sjieg
|
|
738
|
+
[@stefsava]: https://github.com/stefsava
|
|
1089
739
|
[@stereoscott]: https://github.com/stereoscott
|
|
1090
|
-
[@
|
|
1091
|
-
[@
|
|
1092
|
-
[@teoulas]: https://github.com/teoulas
|
|
740
|
+
[@taralbass]: https://github.com/taralbass
|
|
741
|
+
[@tiagotex]: https://github.com/tiagotex
|
|
1093
742
|
[@timoschilling]: https://github.com/timoschilling
|
|
1094
|
-
[@
|
|
1095
|
-
[@
|
|
1096
|
-
[@tricknotes]: https://github.com/tricknotes
|
|
1097
|
-
[@utkarshkukreti]: https://github.com/utkarshkukreti
|
|
1098
|
-
[@vairix]: https://github.com/vairix
|
|
1099
|
-
[@vairix-ssierra]: https://github.com/vairix-ssierra
|
|
1100
|
-
[@valdemarua]: https://github.com/valdemarua
|
|
743
|
+
[@TimPetricola]: https://github.com/TimPetricola
|
|
744
|
+
[@utkarsh2102]: https://github.com/utkarsh2102
|
|
1101
745
|
[@varyonic]: https://github.com/varyonic
|
|
1102
|
-
[@
|
|
1103
|
-
[@
|
|
1104
|
-
[@
|
|
1105
|
-
[@
|
|
746
|
+
[@vcsjones]: https://github.com/vcsjones
|
|
747
|
+
[@vfonic]: https://github.com/vfonic
|
|
748
|
+
[@violeta-p]: https://github.com/violeta-p
|
|
749
|
+
[@WaKeMaTTa]: https://github.com/WaKeMaTTa
|
|
750
|
+
[@wasifhossain]: https://github.com/wasifhossain
|
|
751
|
+
[@westonganger]: https://github.com/westonganger
|
|
752
|
+
[@Wowu]: https://github.com/Wowu
|
|
753
|
+
[@wspurgin]: https://github.com/wspurgin
|
|
1106
754
|
[@zorab47]: https://github.com/zorab47
|