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.
Files changed (595) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +587 -939
  3. data/CODE_OF_CONDUCT.md +74 -0
  4. data/CONTRIBUTING.md +110 -59
  5. data/LICENSE +0 -5
  6. data/README.md +80 -61
  7. data/app/assets/javascripts/active_admin/base.js +517 -0
  8. data/app/assets/stylesheets/active_admin/_base.scss +31 -34
  9. data/app/assets/stylesheets/active_admin/_forms.scss +33 -35
  10. data/app/assets/stylesheets/active_admin/_header.scss +40 -8
  11. data/app/assets/stylesheets/active_admin/_mixins.scss +1 -1
  12. data/app/assets/stylesheets/active_admin/_normalize.scss +447 -0
  13. data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -5
  14. data/app/assets/stylesheets/active_admin/components/_buttons.scss +0 -5
  15. data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
  16. data/app/assets/stylesheets/active_admin/components/_pagination.scss +11 -0
  17. data/app/assets/stylesheets/active_admin/components/_scopes.scss +3 -0
  18. data/app/assets/stylesheets/active_admin/components/_status_tags.scss +0 -4
  19. data/app/assets/stylesheets/active_admin/components/_tables.scss +5 -3
  20. data/app/assets/stylesheets/active_admin/components/_tabs.scss +1 -1
  21. data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -11
  22. data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +1 -1
  23. data/app/assets/stylesheets/active_admin/mixins/_sections.scss +0 -1
  24. data/app/assets/stylesheets/active_admin/mixins/_typography.scss +1 -1
  25. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +9 -1
  26. data/app/assets/stylesheets/active_admin/print.scss +3 -4
  27. data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +1 -1
  28. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -5
  29. data/app/javascript/active_admin/base.js +28 -0
  30. data/app/javascript/active_admin/ext/jquery-ui.js +7 -0
  31. data/app/javascript/active_admin/ext/jquery.js +9 -0
  32. data/app/javascript/active_admin/initializers/batch-actions.js +61 -0
  33. data/app/javascript/active_admin/initializers/checkbox-toggler.js +3 -0
  34. data/app/javascript/active_admin/initializers/datepicker.js +16 -0
  35. data/app/javascript/active_admin/initializers/dropdown-menu.js +9 -0
  36. data/app/javascript/active_admin/initializers/filters.js +10 -0
  37. data/app/javascript/active_admin/initializers/has-many.js +95 -0
  38. data/app/javascript/active_admin/initializers/per-page.js +13 -0
  39. data/app/javascript/active_admin/initializers/table-checkbox-toggler.js +3 -0
  40. data/app/javascript/active_admin/initializers/tabs.js +6 -0
  41. data/app/javascript/active_admin/lib/checkbox-toggler.js +49 -0
  42. data/app/javascript/active_admin/lib/dropdown-menu.js +116 -0
  43. data/app/javascript/active_admin/lib/filters.js +39 -0
  44. data/app/javascript/active_admin/lib/modal-dialog.js +63 -0
  45. data/app/javascript/active_admin/lib/per-page.js +38 -0
  46. data/app/javascript/active_admin/lib/table-checkbox-toggler.js +38 -0
  47. data/app/javascript/active_admin/lib/utils.js +40 -0
  48. data/app/views/active_admin/devise/confirmations/new.html.erb +2 -2
  49. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
  50. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
  51. data/app/views/active_admin/devise/passwords/edit.html.erb +2 -2
  52. data/app/views/active_admin/devise/passwords/new.html.erb +2 -2
  53. data/app/views/active_admin/devise/registrations/new.html.erb +3 -4
  54. data/app/views/active_admin/devise/sessions/new.html.erb +2 -2
  55. data/app/views/active_admin/devise/shared/_error_messages.html.erb +15 -0
  56. data/app/views/active_admin/devise/shared/_links.erb +12 -6
  57. data/app/views/active_admin/devise/unlocks/new.html.erb +2 -2
  58. data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
  59. data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
  60. data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
  61. data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
  62. data/app/views/kaminari/active_admin/_page.html.erb +12 -0
  63. data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
  64. data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
  65. data/app/views/kaminari/active_admin_countless/_first_page.html.erb +11 -0
  66. data/app/views/kaminari/active_admin_countless/_gap.html.erb +8 -0
  67. data/app/views/kaminari/active_admin_countless/_next_page.html.erb +11 -0
  68. data/app/views/kaminari/active_admin_countless/_page.html.erb +12 -0
  69. data/app/views/kaminari/active_admin_countless/_paginator.html.erb +24 -0
  70. data/app/views/kaminari/active_admin_countless/_prev_page.html.erb +11 -0
  71. data/app/views/layouts/active_admin_logged_out.html.erb +21 -7
  72. data/config/locales/ar.yml +62 -47
  73. data/config/locales/az.yml +138 -0
  74. data/config/locales/bg.yml +1 -3
  75. data/config/locales/bs.yml +1 -2
  76. data/config/locales/ca.yml +2 -4
  77. data/config/locales/cs.yml +1 -2
  78. data/config/locales/da.yml +45 -14
  79. data/config/locales/de-CH.yml +4 -3
  80. data/config/locales/de.yml +46 -3
  81. data/config/locales/el.yml +3 -4
  82. data/config/locales/en-CA.yml +139 -0
  83. data/config/locales/en-GB.yml +46 -5
  84. data/config/locales/en.yml +44 -9
  85. data/config/locales/eo.yml +145 -0
  86. data/config/locales/es-MX.yml +9 -6
  87. data/config/locales/es.yml +63 -14
  88. data/config/locales/fa.yml +1 -2
  89. data/config/locales/fi.yml +2 -3
  90. data/config/locales/fr.yml +36 -8
  91. data/config/locales/he.yml +53 -7
  92. data/config/locales/hr.yml +1 -2
  93. data/config/locales/hu.yml +6 -3
  94. data/config/locales/id.yml +135 -0
  95. data/config/locales/it.yml +49 -4
  96. data/config/locales/ja.yml +31 -7
  97. data/config/locales/ko.yml +66 -36
  98. data/config/locales/lt.yml +27 -6
  99. data/config/locales/lv.yml +3 -4
  100. data/config/locales/mk.yml +134 -0
  101. data/config/locales/nb.yml +22 -8
  102. data/config/locales/nl.yml +26 -3
  103. data/config/locales/pl.yml +75 -5
  104. data/config/locales/pt-BR.yml +24 -2
  105. data/config/locales/pt-PT.yml +1 -2
  106. data/config/locales/ro.yml +1 -2
  107. data/config/locales/ru.yml +21 -4
  108. data/config/locales/sk.yml +168 -0
  109. data/config/locales/sv-SE.yml +50 -8
  110. data/config/locales/tr.yml +92 -45
  111. data/config/locales/uk.yml +30 -16
  112. data/config/locales/vi.yml +53 -12
  113. data/config/locales/zh-CN.yml +44 -7
  114. data/config/locales/zh-TW.yml +42 -3
  115. data/docs/.gitignore +1 -0
  116. data/docs/0-installation.md +68 -18
  117. data/docs/1-general-configuration.md +88 -4
  118. data/docs/10-custom-pages.md +56 -2
  119. data/docs/11-decorators.md +20 -5
  120. data/docs/12-arbre-components.md +75 -11
  121. data/docs/13-authorization-adapter.md +73 -36
  122. data/docs/14-gotchas.md +64 -18
  123. data/docs/2-resource-customization.md +91 -23
  124. data/docs/3-index-pages/custom-index.md +5 -1
  125. data/docs/3-index-pages/index-as-block.md +3 -5
  126. data/docs/3-index-pages/index-as-blog.md +4 -6
  127. data/docs/3-index-pages/index-as-grid.md +3 -5
  128. data/docs/3-index-pages/index-as-table.md +46 -9
  129. data/docs/3-index-pages.md +73 -10
  130. data/docs/4-csv-format.md +35 -0
  131. data/docs/5-forms.md +96 -18
  132. data/docs/6-show-pages.md +13 -25
  133. data/docs/7-sidebars.md +13 -1
  134. data/docs/8-custom-actions.md +18 -1
  135. data/docs/9-batch-actions.md +9 -5
  136. data/docs/CNAME +1 -0
  137. data/docs/Gemfile +3 -0
  138. data/docs/Gemfile.lock +259 -0
  139. data/docs/_config.yml +4 -0
  140. data/docs/_includes/footer.html +8 -0
  141. data/docs/_includes/google-analytics.html +16 -0
  142. data/docs/_includes/head.html +7 -0
  143. data/docs/_includes/toc.html +98 -0
  144. data/docs/_includes/top-menu.html +17 -0
  145. data/docs/_layouts/default.html +21 -0
  146. data/docs/documentation.md +60 -0
  147. data/docs/images/activeadmin.png +0 -0
  148. data/docs/images/code-header.png +0 -0
  149. data/docs/images/divider.png +0 -0
  150. data/docs/images/features.png +0 -0
  151. data/docs/images/tidelift.svg +14 -0
  152. data/docs/index.html +226 -0
  153. data/docs/stylesheets/main.css +1205 -0
  154. data/lib/active_admin/abstract_view_factory.rb +13 -51
  155. data/lib/active_admin/application.rb +105 -138
  156. data/lib/active_admin/application_settings.rb +42 -0
  157. data/lib/active_admin/authorization_adapter.rb +4 -7
  158. data/lib/active_admin/base_controller/authorization.rb +16 -21
  159. data/lib/active_admin/base_controller/menu.rb +10 -10
  160. data/lib/active_admin/base_controller.rb +15 -11
  161. data/lib/active_admin/batch_actions/controller.rb +6 -7
  162. data/lib/active_admin/batch_actions/resource_extension.rb +15 -15
  163. data/lib/active_admin/batch_actions/views/batch_action_form.rb +4 -4
  164. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +8 -7
  165. data/lib/active_admin/batch_actions/views/selection_cells.rb +7 -6
  166. data/lib/active_admin/batch_actions.rb +0 -1
  167. data/lib/active_admin/callbacks.rb +2 -2
  168. data/lib/active_admin/cancan_adapter.rb +1 -1
  169. data/lib/active_admin/collection_decorator.rb +31 -0
  170. data/lib/active_admin/controller_action.rb +2 -1
  171. data/lib/active_admin/csv_builder.rb +30 -20
  172. data/lib/active_admin/dependency.rb +36 -29
  173. data/lib/active_admin/deprecation.rb +0 -25
  174. data/lib/active_admin/devise.rb +9 -9
  175. data/lib/active_admin/dsl.rb +5 -18
  176. data/lib/active_admin/dynamic_setting.rb +38 -0
  177. data/lib/active_admin/dynamic_settings_node.rb +28 -0
  178. data/lib/active_admin/engine.rb +14 -7
  179. data/lib/active_admin/error.rb +6 -6
  180. data/lib/active_admin/filters/active.rb +29 -0
  181. data/lib/active_admin/filters/active_filter.rb +123 -0
  182. data/lib/active_admin/filters/active_sidebar.rb +54 -0
  183. data/lib/active_admin/filters/forms.rb +17 -10
  184. data/lib/active_admin/filters/formtastic_addons.rb +2 -7
  185. data/lib/active_admin/filters/resource_extension.rb +50 -14
  186. data/lib/active_admin/filters.rb +7 -5
  187. data/lib/active_admin/form_builder.rb +112 -67
  188. data/lib/active_admin/generators/boilerplate.rb +53 -0
  189. data/lib/active_admin/helpers/collection.rb +2 -0
  190. data/lib/active_admin/helpers/optional_display.rb +2 -2
  191. data/lib/active_admin/helpers/routes/url_helpers.rb +1 -1
  192. data/lib/active_admin/helpers/scope_chain.rb +1 -0
  193. data/lib/active_admin/inputs/datepicker_input.rb +13 -6
  194. data/lib/active_admin/inputs/filters/base/search_method_select.rb +9 -9
  195. data/lib/active_admin/inputs/filters/base.rb +3 -1
  196. data/lib/active_admin/inputs/filters/boolean_input.rb +1 -1
  197. data/lib/active_admin/inputs/filters/check_boxes_input.rb +1 -1
  198. data/lib/active_admin/inputs/filters/date_picker_input.rb +13 -0
  199. data/lib/active_admin/inputs/filters/date_range_input.rb +25 -9
  200. data/lib/active_admin/inputs/filters/select_input.rb +8 -4
  201. data/lib/active_admin/inputs/filters/text_input.rb +25 -0
  202. data/lib/active_admin/inputs.rb +2 -0
  203. data/lib/active_admin/localizers/resource_localizer.rb +35 -0
  204. data/lib/active_admin/localizers.rb +11 -0
  205. data/lib/active_admin/menu.rb +13 -15
  206. data/lib/active_admin/menu_collection.rb +0 -2
  207. data/lib/active_admin/menu_item.rb +10 -38
  208. data/lib/active_admin/namespace.rb +51 -32
  209. data/lib/active_admin/namespace_settings.rb +126 -0
  210. data/lib/active_admin/order_clause.rb +30 -8
  211. data/lib/active_admin/orm/active_record/comments/comment.rb +6 -20
  212. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +44 -21
  213. data/lib/active_admin/orm/active_record/comments/views.rb +2 -2
  214. data/lib/active_admin/orm/active_record/comments.rb +49 -29
  215. data/lib/active_admin/orm/active_record.rb +1 -1
  216. data/lib/active_admin/page.rb +24 -5
  217. data/lib/active_admin/page_controller.rb +2 -2
  218. data/lib/active_admin/page_dsl.rb +5 -1
  219. data/lib/active_admin/page_presenter.rb +2 -1
  220. data/lib/active_admin/pundit_adapter.rb +22 -9
  221. data/lib/active_admin/resource/action_items.rb +34 -12
  222. data/lib/active_admin/resource/attributes.rb +47 -0
  223. data/lib/active_admin/resource/belongs_to.rb +17 -4
  224. data/lib/active_admin/resource/controllers.rb +1 -1
  225. data/lib/active_admin/resource/menu.rb +9 -6
  226. data/lib/active_admin/resource/model.rb +15 -0
  227. data/lib/active_admin/resource/naming.rb +5 -5
  228. data/lib/active_admin/resource/ordering.rb +11 -0
  229. data/lib/active_admin/resource/page_presenters.rb +1 -1
  230. data/lib/active_admin/resource/pagination.rb +4 -0
  231. data/lib/active_admin/resource/routes.rb +56 -26
  232. data/lib/active_admin/resource/scope_to.rb +7 -7
  233. data/lib/active_admin/resource/scopes.rb +5 -3
  234. data/lib/active_admin/resource/sidebars.rb +2 -2
  235. data/lib/active_admin/resource.rb +80 -22
  236. data/lib/active_admin/resource_collection.rb +5 -3
  237. data/lib/active_admin/resource_controller/action_builder.rb +10 -0
  238. data/lib/active_admin/resource_controller/data_access.rb +56 -43
  239. data/lib/active_admin/resource_controller/decorators.rb +9 -31
  240. data/lib/active_admin/resource_controller/polymorphic_routes.rb +37 -0
  241. data/lib/active_admin/resource_controller/resource_class_methods.rb +2 -0
  242. data/lib/active_admin/resource_controller/scoping.rb +1 -1
  243. data/lib/active_admin/resource_controller/streaming.rb +12 -5
  244. data/lib/active_admin/resource_controller.rb +26 -10
  245. data/lib/active_admin/resource_dsl.rb +67 -21
  246. data/lib/active_admin/router.rb +90 -82
  247. data/lib/active_admin/scope.rb +21 -14
  248. data/lib/active_admin/settings_node.rb +19 -0
  249. data/lib/active_admin/sidebar_section.rb +6 -12
  250. data/lib/active_admin/version.rb +1 -1
  251. data/lib/active_admin/view_factory.rb +17 -18
  252. data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -2
  253. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +5 -5
  254. data/lib/active_admin/view_helpers/display_helper.rb +51 -9
  255. data/lib/active_admin/view_helpers/download_format_links_helper.rb +14 -1
  256. data/lib/active_admin/view_helpers/fields_for.rb +4 -4
  257. data/lib/active_admin/view_helpers/form_helper.rb +2 -2
  258. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +11 -4
  259. data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
  260. data/lib/active_admin/view_helpers.rb +2 -2
  261. data/lib/active_admin/views/action_items.rb +1 -1
  262. data/lib/active_admin/views/components/active_admin_form.rb +45 -13
  263. data/lib/active_admin/views/components/attributes_table.rb +11 -29
  264. data/lib/active_admin/views/components/blank_slate.rb +1 -1
  265. data/lib/active_admin/views/components/columns.rb +12 -7
  266. data/lib/active_admin/views/components/dropdown_menu.rb +11 -13
  267. data/lib/active_admin/views/components/index_list.rb +6 -5
  268. data/lib/active_admin/views/components/menu.rb +32 -0
  269. data/lib/active_admin/views/components/menu_item.rb +58 -0
  270. data/lib/active_admin/views/components/paginated_collection.rb +52 -33
  271. data/lib/active_admin/views/components/panel.rb +2 -4
  272. data/lib/active_admin/views/components/scopes.rb +20 -12
  273. data/lib/active_admin/views/components/sidebar.rb +13 -0
  274. data/lib/active_admin/views/components/sidebar_section.rb +6 -1
  275. data/lib/active_admin/views/components/site_title.rb +6 -7
  276. data/lib/active_admin/views/components/status_tag.rb +19 -23
  277. data/lib/active_admin/views/components/table_for.rb +31 -57
  278. data/lib/active_admin/views/components/tabs.rb +17 -5
  279. data/lib/active_admin/views/footer.rb +15 -4
  280. data/lib/active_admin/views/header.rb +3 -16
  281. data/lib/active_admin/views/index_as_blog.rb +3 -4
  282. data/lib/active_admin/views/index_as_grid.rb +28 -28
  283. data/lib/active_admin/views/index_as_table.rb +76 -28
  284. data/lib/active_admin/views/pages/base.rb +45 -58
  285. data/lib/active_admin/views/pages/form.rb +5 -2
  286. data/lib/active_admin/views/pages/index.rb +15 -13
  287. data/lib/active_admin/views/pages/layout.rb +1 -1
  288. data/lib/active_admin/views/pages/show.rb +9 -3
  289. data/lib/active_admin/views/tabbed_navigation.rb +4 -59
  290. data/lib/active_admin/views/title_bar.rb +6 -6
  291. data/lib/active_admin/views.rb +1 -1
  292. data/lib/active_admin.rb +69 -67
  293. data/lib/activeadmin.rb +1 -1
  294. data/lib/generators/active_admin/assets/assets_generator.rb +3 -3
  295. data/lib/generators/active_admin/assets/templates/active_admin.js +1 -0
  296. data/lib/generators/active_admin/assets/templates/{active_admin.css.scss → active_admin.scss} +3 -3
  297. data/lib/generators/active_admin/devise/devise_generator.rb +17 -26
  298. data/lib/generators/active_admin/install/install_generator.rb +18 -8
  299. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +107 -5
  300. data/lib/generators/active_admin/install/templates/{admin_user.rb.erb → admin_users.rb.erb} +1 -3
  301. data/lib/generators/active_admin/install/templates/dashboard.rb +2 -3
  302. data/lib/generators/active_admin/install/templates/migrations/{create_active_admin_comments.rb → create_active_admin_comments.rb.erb} +2 -5
  303. data/lib/generators/active_admin/page/page_generator.rb +1 -1
  304. data/lib/generators/active_admin/page/templates/page.rb +1 -1
  305. data/lib/generators/active_admin/resource/resource_generator.rb +8 -2
  306. data/lib/generators/active_admin/resource/templates/admin.rb.erb +46 -0
  307. data/lib/generators/active_admin/webpacker/plugins/jquery.js +7 -0
  308. data/lib/generators/active_admin/webpacker/templates/active_admin.js +5 -0
  309. data/lib/generators/active_admin/webpacker/templates/active_admin.scss +17 -0
  310. data/lib/generators/active_admin/webpacker/templates/print.scss +2 -0
  311. data/lib/generators/active_admin/webpacker/webpacker_generator.rb +26 -0
  312. data/lib/ransack_ext.rb +11 -3
  313. data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
  314. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
  315. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
  316. data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
  317. data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +80 -0
  318. data/vendor/assets/javascripts/jquery-ui/form.js +22 -0
  319. data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
  320. data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
  321. data/vendor/assets/javascripts/jquery-ui/labels.js +65 -0
  322. data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
  323. data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
  324. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
  325. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
  326. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
  327. data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
  328. data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
  329. data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
  330. data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
  331. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
  332. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +291 -0
  333. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
  334. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
  335. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
  336. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
  337. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
  338. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
  339. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
  340. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
  341. metadata +182 -553
  342. data/.gitignore +0 -49
  343. data/.hound.yml +0 -11
  344. data/.travis.yml +0 -42
  345. data/.yardopts +0 -8
  346. data/Gemfile +0 -54
  347. data/Guardfile +0 -8
  348. data/Rakefile +0 -33
  349. data/activeadmin.gemspec +0 -28
  350. data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
  351. data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
  352. data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
  353. data/app/assets/images/active_admin/orderable.png +0 -0
  354. data/app/assets/javascripts/active_admin/application.js.coffee +0 -32
  355. data/app/assets/javascripts/active_admin/base.js.coffee +0 -14
  356. data/app/assets/javascripts/active_admin/ext/jquery-ui.js.coffee +0 -6
  357. data/app/assets/javascripts/active_admin/ext/jquery.js.coffee +0 -7
  358. data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +0 -39
  359. data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +0 -36
  360. data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +0 -101
  361. data/app/assets/javascripts/active_admin/lib/flash.js.coffee +0 -19
  362. data/app/assets/javascripts/active_admin/lib/has_many.js.coffee +0 -79
  363. data/app/assets/javascripts/active_admin/lib/modal_dialog.js.coffee +0 -37
  364. data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +0 -27
  365. data/app/assets/javascripts/active_admin/lib/popover.js.coffee +0 -68
  366. data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +0 -24
  367. data/app/assets/stylesheets/active_admin/components/_popovers.scss +0 -122
  368. data/app/assets/stylesheets/active_admin/mixins/_icons.scss +0 -20
  369. data/app/assets/stylesheets/active_admin/mixins/_reset.scss +0 -165
  370. data/cucumber.yml +0 -3
  371. data/features/action_item.feature +0 -73
  372. data/features/authorization.feature +0 -64
  373. data/features/authorization_cancan.feature +0 -52
  374. data/features/authorization_pundit.feature +0 -37
  375. data/features/belongs_to.feature +0 -66
  376. data/features/breadcrumb.feature +0 -75
  377. data/features/comments/commenting.feature +0 -171
  378. data/features/comments/viewing_index.feature +0 -19
  379. data/features/dashboard.feature +0 -16
  380. data/features/decorators.feature +0 -41
  381. data/features/development_reloading.feature +0 -30
  382. data/features/edit_page.feature +0 -117
  383. data/features/favicon.feature +0 -20
  384. data/features/first_boot.feature +0 -16
  385. data/features/global_navigation.feature +0 -29
  386. data/features/i18n.feature +0 -43
  387. data/features/index/batch_actions.feature +0 -164
  388. data/features/index/filters.feature +0 -161
  389. data/features/index/format_as_csv.feature +0 -203
  390. data/features/index/formats.feature +0 -66
  391. data/features/index/index_as_block.feature +0 -15
  392. data/features/index/index_as_blog.feature +0 -69
  393. data/features/index/index_as_grid.feature +0 -45
  394. data/features/index/index_as_table.feature +0 -291
  395. data/features/index/index_blank_slate.feature +0 -83
  396. data/features/index/index_parameters.feature +0 -75
  397. data/features/index/index_scope_to.feature +0 -56
  398. data/features/index/index_scopes.feature +0 -251
  399. data/features/index/page_title.feature +0 -41
  400. data/features/index/pagination.feature +0 -59
  401. data/features/index/switch_index_view.feature +0 -73
  402. data/features/menu.feature +0 -53
  403. data/features/new_page.feature +0 -109
  404. data/features/registering_assets.feature +0 -35
  405. data/features/registering_pages.feature +0 -148
  406. data/features/registering_resources.feature +0 -33
  407. data/features/renamed_resource.feature +0 -32
  408. data/features/root_to.feature +0 -17
  409. data/features/show/default_content.feature +0 -43
  410. data/features/show/page_title.feature +0 -58
  411. data/features/show/tabs.feature +0 -27
  412. data/features/sidebar_sections.feature +0 -210
  413. data/features/site_title.feature +0 -47
  414. data/features/specifying_actions.feature +0 -93
  415. data/features/step_definitions/action_item_steps.rb +0 -7
  416. data/features/step_definitions/action_link_steps.rb +0 -20
  417. data/features/step_definitions/additional_web_steps.rb +0 -81
  418. data/features/step_definitions/asset_steps.rb +0 -15
  419. data/features/step_definitions/attribute_steps.rb +0 -18
  420. data/features/step_definitions/batch_action_steps.rb +0 -72
  421. data/features/step_definitions/blog_steps.rb +0 -3
  422. data/features/step_definitions/breadcrumb_steps.rb +0 -3
  423. data/features/step_definitions/comment_steps.rb +0 -12
  424. data/features/step_definitions/configuration_steps.rb +0 -100
  425. data/features/step_definitions/dashboard_steps.rb +0 -15
  426. data/features/step_definitions/factory_steps.rb +0 -34
  427. data/features/step_definitions/filter_steps.rb +0 -39
  428. data/features/step_definitions/flash_steps.rb +0 -11
  429. data/features/step_definitions/format_steps.rb +0 -52
  430. data/features/step_definitions/i18n_steps.rb +0 -3
  431. data/features/step_definitions/index_scope_steps.rb +0 -21
  432. data/features/step_definitions/index_views_steps.rb +0 -3
  433. data/features/step_definitions/layout_steps.rb +0 -3
  434. data/features/step_definitions/member_link_steps.rb +0 -7
  435. data/features/step_definitions/menu_steps.rb +0 -11
  436. data/features/step_definitions/pagination_steps.rb +0 -7
  437. data/features/step_definitions/sidebar_steps.rb +0 -13
  438. data/features/step_definitions/site_title_steps.rb +0 -17
  439. data/features/step_definitions/symbol_leak_steps.rb +0 -3
  440. data/features/step_definitions/tab_steps.rb +0 -8
  441. data/features/step_definitions/table_steps.rb +0 -119
  442. data/features/step_definitions/user_steps.rb +0 -45
  443. data/features/step_definitions/web_steps.rb +0 -85
  444. data/features/sti_resource.feature +0 -65
  445. data/features/strong_parameters.feature +0 -73
  446. data/features/support/env.rb +0 -145
  447. data/features/support/paths.rb +0 -71
  448. data/features/support/selectors.rb +0 -45
  449. data/features/symbol_leak.feature +0 -35
  450. data/features/users/logging_in.feature +0 -34
  451. data/features/users/logging_out.feature +0 -13
  452. data/features/users/resetting_password.feature +0 -34
  453. data/lib/active_admin/batch_actions/views/batch_action_popover.rb +0 -28
  454. data/lib/active_admin/event.rb +0 -33
  455. data/lib/active_admin/helpers/settings.rb +0 -115
  456. data/lib/active_admin/iconic/icons.rb +0 -142
  457. data/lib/active_admin/iconic.rb +0 -53
  458. data/lib/active_admin/view_helpers/icon_helper.rb +0 -12
  459. data/lib/active_admin/views/components/action_list_popover.rb +0 -29
  460. data/lib/active_admin/views/components/popover.rb +0 -27
  461. data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +0 -1
  462. data/lib/generators/active_admin/resource/templates/admin.rb +0 -18
  463. data/script/local +0 -44
  464. data/script/travis_cache +0 -107
  465. data/script/use_rails +0 -53
  466. data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +0 -50
  467. data/spec/javascripts/coffeescripts/jquery.aa.flash.js.coffee +0 -25
  468. data/spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee +0 -82
  469. data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +0 -34
  470. data/spec/javascripts/fixtures/checkboxes.html +0 -9
  471. data/spec/javascripts/fixtures/flashes.html +0 -2
  472. data/spec/javascripts/fixtures/table_checkboxes.html +0 -17
  473. data/spec/javascripts/helpers/SpecHelper.js +0 -3
  474. data/spec/javascripts/support/jasmine.yml +0 -74
  475. data/spec/javascripts/support/jasmine_config.rb +0 -23
  476. data/spec/javascripts/support/jasmine_runner.rb +0 -32
  477. data/spec/rails_helper.rb +0 -154
  478. data/spec/requests/default_namespace_spec.rb +0 -61
  479. data/spec/requests/javascript_spec.rb +0 -20
  480. data/spec/requests/memory_spec.rb +0 -23
  481. data/spec/requests/stylesheets_spec.rb +0 -18
  482. data/spec/spec_helper.rb +0 -17
  483. data/spec/support/deferred_garbage_collection.rb +0 -19
  484. data/spec/support/detect_rails_version.rb +0 -34
  485. data/spec/support/integration_example_group.rb +0 -31
  486. data/spec/support/jslint.yml +0 -80
  487. data/spec/support/rails_template.rb +0 -138
  488. data/spec/support/rails_template_with_data.rb +0 -59
  489. data/spec/support/templates/admin/stores.rb +0 -9
  490. data/spec/support/templates/cucumber.rb +0 -24
  491. data/spec/support/templates/cucumber_with_reloading.rb +0 -5
  492. data/spec/support/templates/en.yml +0 -8
  493. data/spec/support/templates/policies/active_admin/comment_policy.rb +0 -9
  494. data/spec/support/templates/policies/active_admin/page_policy.rb +0 -18
  495. data/spec/support/templates/policies/admin_user_policy.rb +0 -11
  496. data/spec/support/templates/policies/application_policy.rb +0 -45
  497. data/spec/support/templates/policies/category_policy.rb +0 -7
  498. data/spec/support/templates/policies/post_policy.rb +0 -15
  499. data/spec/support/templates/policies/store_policy.rb +0 -11
  500. data/spec/support/templates/policies/user_policy.rb +0 -11
  501. data/spec/support/templates/post_decorator.rb +0 -11
  502. data/spec/unit/abstract_view_factory_spec.rb +0 -79
  503. data/spec/unit/action_builder_spec.rb +0 -132
  504. data/spec/unit/active_admin_spec.rb +0 -11
  505. data/spec/unit/application_spec.rb +0 -140
  506. data/spec/unit/asset_registration_spec.rb +0 -52
  507. data/spec/unit/authorization/authorization_adapter_spec.rb +0 -61
  508. data/spec/unit/authorization/controller_authorization_spec.rb +0 -39
  509. data/spec/unit/authorization/index_overriding_spec.rb +0 -22
  510. data/spec/unit/auto_link_spec.rb +0 -69
  511. data/spec/unit/batch_actions/resource_spec.rb +0 -92
  512. data/spec/unit/batch_actions/settings_spec.rb +0 -61
  513. data/spec/unit/belongs_to_spec.rb +0 -51
  514. data/spec/unit/cancan_adapter_spec.rb +0 -43
  515. data/spec/unit/comments_spec.rb +0 -166
  516. data/spec/unit/component_spec.rb +0 -18
  517. data/spec/unit/config_shared_examples.rb +0 -59
  518. data/spec/unit/controller_filters_spec.rb +0 -44
  519. data/spec/unit/csv_builder_spec.rb +0 -244
  520. data/spec/unit/dependency_spec.rb +0 -135
  521. data/spec/unit/devise_spec.rb +0 -96
  522. data/spec/unit/dsl_spec.rb +0 -122
  523. data/spec/unit/event_spec.rb +0 -47
  524. data/spec/unit/filters/filter_form_builder_spec.rb +0 -433
  525. data/spec/unit/filters/resource_spec.rb +0 -121
  526. data/spec/unit/form_builder_spec.rb +0 -752
  527. data/spec/unit/generators/install_spec.rb +0 -23
  528. data/spec/unit/helpers/collection_spec.rb +0 -65
  529. data/spec/unit/helpers/scope_chain_spec.rb +0 -36
  530. data/spec/unit/helpers/settings_spec.rb +0 -30
  531. data/spec/unit/i18n_spec.rb +0 -12
  532. data/spec/unit/menu_collection_spec.rb +0 -62
  533. data/spec/unit/menu_item_spec.rb +0 -143
  534. data/spec/unit/menu_spec.rb +0 -71
  535. data/spec/unit/namespace/authorization_spec.rb +0 -27
  536. data/spec/unit/namespace/register_page_spec.rb +0 -74
  537. data/spec/unit/namespace/register_resource_spec.rb +0 -161
  538. data/spec/unit/namespace_spec.rb +0 -103
  539. data/spec/unit/order_clause_spec.rb +0 -81
  540. data/spec/unit/page_controller_spec.rb +0 -5
  541. data/spec/unit/page_spec.rb +0 -78
  542. data/spec/unit/pretty_format_spec.rb +0 -63
  543. data/spec/unit/pundit_adapter_spec.rb +0 -98
  544. data/spec/unit/resource/action_items_spec.rb +0 -65
  545. data/spec/unit/resource/includes_spec.rb +0 -21
  546. data/spec/unit/resource/menu_spec.rb +0 -18
  547. data/spec/unit/resource/naming_spec.rb +0 -122
  548. data/spec/unit/resource/page_presenters_spec.rb +0 -44
  549. data/spec/unit/resource/pagination_spec.rb +0 -38
  550. data/spec/unit/resource/routes_spec.rb +0 -73
  551. data/spec/unit/resource/scopes_spec.rb +0 -50
  552. data/spec/unit/resource/sidebars_spec.rb +0 -43
  553. data/spec/unit/resource_collection_spec.rb +0 -158
  554. data/spec/unit/resource_controller/data_access_spec.rb +0 -140
  555. data/spec/unit/resource_controller/decorators_spec.rb +0 -83
  556. data/spec/unit/resource_controller/sidebars_spec.rb +0 -45
  557. data/spec/unit/resource_controller_spec.rb +0 -269
  558. data/spec/unit/resource_registration_spec.rb +0 -56
  559. data/spec/unit/resource_spec.rb +0 -278
  560. data/spec/unit/routing_spec.rb +0 -180
  561. data/spec/unit/scope_spec.rb +0 -190
  562. data/spec/unit/settings_spec.rb +0 -118
  563. data/spec/unit/view_factory_spec.rb +0 -21
  564. data/spec/unit/view_helpers/breadcrumbs_spec.rb +0 -217
  565. data/spec/unit/view_helpers/display_name_spec.rb +0 -69
  566. data/spec/unit/view_helpers/download_format_links_helper_spec.rb +0 -39
  567. data/spec/unit/view_helpers/fields_for_spec.rb +0 -50
  568. data/spec/unit/view_helpers/flash_helper_spec.rb +0 -25
  569. data/spec/unit/view_helpers/form_helper_spec.rb +0 -43
  570. data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +0 -139
  571. data/spec/unit/views/components/action_list_popover_spec.rb +0 -40
  572. data/spec/unit/views/components/attributes_table_spec.rb +0 -272
  573. data/spec/unit/views/components/batch_action_popover_spec.rb +0 -47
  574. data/spec/unit/views/components/blank_slate_spec.rb +0 -27
  575. data/spec/unit/views/components/columns_spec.rb +0 -172
  576. data/spec/unit/views/components/index_list_spec.rb +0 -35
  577. data/spec/unit/views/components/index_table_for_spec.rb +0 -46
  578. data/spec/unit/views/components/paginated_collection_spec.rb +0 -236
  579. data/spec/unit/views/components/panel_spec.rb +0 -62
  580. data/spec/unit/views/components/popover_spec.rb +0 -33
  581. data/spec/unit/views/components/sidebar_section_spec.rb +0 -47
  582. data/spec/unit/views/components/site_title_spec.rb +0 -78
  583. data/spec/unit/views/components/status_tag_spec.rb +0 -235
  584. data/spec/unit/views/components/table_for_spec.rb +0 -384
  585. data/spec/unit/views/components/tabs_spec.rb +0 -39
  586. data/spec/unit/views/components/unsupported_browser_spec.rb +0 -47
  587. data/spec/unit/views/pages/form_spec.rb +0 -42
  588. data/spec/unit/views/pages/index_spec.rb +0 -60
  589. data/spec/unit/views/pages/layout_spec.rb +0 -59
  590. data/spec/unit/views/pages/show_spec.rb +0 -33
  591. data/spec/unit/views/tabbed_navigation_spec.rb +0 -158
  592. data/tasks/docs.rake +0 -37
  593. data/tasks/parallel_tests.rake +0 -66
  594. data/tasks/test.rake +0 -83
  595. data/tasks/yard.rake +0 -9
data/CHANGELOG.md CHANGED
@@ -1,1106 +1,754 @@
1
- ## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3...master) (unreleased)
1
+ # Changelog
2
2
 
3
- ### Breaking Changes
3
+ ## Unreleased
4
4
 
5
- * Rename `allow_comments` to `comments` for more consistent naming [#3695][] by [@pranas][]
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
- #### Major
12
-
13
- * Migration from Metasearch to Ransack [#1979][] by [@seanlinsley][]
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
- * Accept block for download links [#2040][] by [@potatosalad][]
40
- ```ruby
41
- index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
42
- ```
13
+ ### Bug Fixes
43
14
 
44
- ### Security Fixes
15
+ * Pick up upstream fixes in devise templates. [#6536] by [@munen]
16
+
17
+ ### Documentation
45
18
 
46
- * Prevents potential DOS attack via Ruby symbols [#1926][] by [@seanlinsley][]
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
- * Fixes filters for `has_many :through` relationships [#2541][] by [@shekibobo][]
51
- * "New" action item now only shows up on the index page bf659bc by [@seanlinsley][]
52
- * Fixes comment creation bug with aliased resources 9a082486 by [@seanlinsley][]
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
- ## 0.6.3 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.2...v0.6.3)
34
+ ## 2.8.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.7.0..v2.8.0)
56
35
 
57
- * __Reinstitutes the 10k limit for CSV exports__ [#2847][] by [@seanlinsley][]
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
- ## 0.6.2 [](https://github.com/activeadmin/activeadmin/compare/v0.6.1...v0.6.2)
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
- * Patches MetaSearch bug for attributes ending in "ne" d5db9ff4 by [@seanlinsley][]
42
+ ### Bug Fixes
69
43
 
70
- ## 0.6.1 [](https://github.com/activeadmin/activeadmin/compare/v0.6.0...v0.6.1)
44
+ * Fix comment layout so regardless of size, each is aligned and spaced evenly. [#6393] by [@Ivanov-Anton]
71
45
 
72
- ### Features
46
+ ### Translation Improvements
73
47
 
74
- * OmniAuth provider links now automatically appear on the login page [#2088][] by [@henrrrik][]
75
- * Menu items can now properly overflow [#2046][] by [@maax][]; later updated in [#2125][] by [@ball-hayden][]
76
- * Favicon support [#2348][] by [@stereoscott][]
77
- * HABTM filters [#1928][] by [@seanlinsley][]
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
- * Advanced string filters [#2096][] by [@joseluistorres][]; later updated in [#2228][] by [@seanlinsley][]
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
- ### Bug Fixes
55
+ * Fix filter_columns_for_large_association and filter_method_for_large_association examples. [#6232] by [@ndbroadbent]
56
+
57
+ ### Dependency Changes
90
58
 
91
- * The CSS encapsulation from 0.6.0 has been rolled back [#1952][] by [@tinynumbers][]
92
- * Fixes problem where extra `/` route was being generated [#2062][] by [@jbhannah][]
93
- * `IndexAsBlog` now renders title/body procs in the view context [#2087][] by [@macfanatic][]
94
- * Fixes `route_instance_path` for `belongs_to` resources [#2099][] by [@pcreux][]
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
- * Adds option to "undecorate" resource when building forms [#2085][] by [@amiel][]
106
- * Adds `:pagination_total` option to index to hide count for large databases [#2333][] by [@joseluistorres][]
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 conflict with Redcloth [#1805][] by [@adrienkohlbecker][]
150
- * Add missing batch actions translations. [#1788][] by [@EtienneDepaulis][]
151
- * JS fix for batch actions checkbox toggling [#1947][] by [@ai][]
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
- ### Enhancements
75
+ ## 2.6.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.0..v2.6.1)
155
76
 
156
- * Rubinis compatability change over block variables [#1871][] by [@dbussin][]
157
- * Compatability with Draper 1.0 release [#1896][] by [@hakanensari][]
158
- * Fixed references to "dashboards.rb" in locales, since file doesn't exist [#1873][] by [@ryansch][]
159
- * Removing deprecated bourbon box-shadow mixin [#1913][] by [@stereoscott][]
160
- * More Japanese localizations [#1929][] by [@johnnyshields][]
161
- * Devise lockable module now supported by default [#1933][] by [@Bishop][]
162
- * Index table now uses a unique DOM id (`#index_table_posts` instead of `#posts`) [#1966][] by [@TiagoCardoso1983][]
163
- * Coffeescript 1.5 compatability as constructors no longer return a value [#1940][] by [@ronen][]
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
- * Developer can pass options for CSV generation. [#1626][] by [@rheaton][]
239
- ```ruby
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
- * Support proc for parent options on menus [#1664][] by [@shell][]
259
- ```ruby
260
- ActiveAdmin.register Post do
261
- menu parent: proc { I18n.t("admin") }
262
- end
263
- ```
91
+ ### Bug Fixes
264
92
 
265
- * Support automatic use of Decorators. [#1117][] by [@amiel][] and [#1647][] by [@dapi][]
266
- ```ruby
267
- ActiveAdmin.register Post do
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
- * Allow blacklisting of filters with 'remove_filter' [#1609][] by [@tracedwax][]
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
- * ActiveAdmin i18n translations can be overwritten in your rails
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
- ### Bug fix
289
- * Apply before_filter to BaseController [#1683][] by [@yorch][]
290
- * ... and much more.
101
+ * Azerbaijani translation. [#5078] by [@orkhan]
291
102
 
292
- ### Contributions
103
+ ### Bug Fixes
293
104
 
294
- 156 commits (49 Pull Requests) by 51 contributors.
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
- ## 0.5.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.4.4...v0.5.0)
113
+ ### Dependency Changes
297
114
 
298
- ### Enhancements
115
+ * Support for Rails 5.0 and Rails 5.1 has been dropped. [#5877] by [@deivid-rodriguez]
299
116
 
300
- * Created new view components (Footer, TitleBar, Header, UtilityNav) to more
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
- ### Deprecations
119
+ ### Enhancements
314
120
 
315
- * Removed all references to ActiveAdmin::Renderer. If you were using these
316
- please update code to use an Arbre component. Removed
317
- `ActiveAdmin:Views::HeaderRender` and replaced with
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
- ### Contributions
125
+ ## 2.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.3.0..v2.3.1)
327
126
 
328
- 561 commits (142 Pull Requests) by 88 contributors.
127
+ ### Bug Fixes
329
128
 
330
- ## 0.4.4 [](https://github.com/activeadmin/activeadmin/compare/v0.4.3...v0.4.4)
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
- ### Dependencies
131
+ ## 2.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.2.0..v2.3.0)
333
132
 
334
- * Use `formtastic` ~> 2.1.1 until AA 0.5.0 is released
335
- * Use `inherited_resources` >= 1.3.1 (ensure flash messages work)
133
+ ### Enhancements
336
134
 
337
- ## 0.4.3 [](https://github.com/activeadmin/activeadmin/compare/v0.4.2...v0.4.3)
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
- * [#1063][]: Fix comment issues when using postgres ([@jancel][])
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
- ## 0.4.2 [☰](https://github.com/activeadmin/activeadmin/compare/v0.4.1...v0.4.2)
145
+ ## 2.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.1.0..v2.2.0)
344
146
 
345
147
  ### Enhancements
346
148
 
347
- * [#822][]: Automatically include js and css to precompile list ([@jschwindt][])
348
- * [#1033][]: Site title accepts a proc that is rendered in the context
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
- * [#34][]: Comments now work with models using string ids ([@jancel][])
360
- * [#1041][]: When `table_for` collection is empty it no longer outputs
361
- a blank array in Ruby 1.9 ([@jancel][], [#1016][])
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
- ### Contributors
158
+ ## 2.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0..v2.1.0)
159
+
160
+ ### Bug Fixes
366
161
 
367
- 42 Commits by 10 authors
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
- * Allen Huang
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.4.1 [☰](https://github.com/activeadmin/activeadmin/compare/v0.4.0...v0.4.1)
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
- * [#865][]: Pages support the `#page_action` to add custom controller actions
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
- ### Bug Fixes
180
+ ## 2.0.0.rc1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.3..v2.0.0.rc1)
181
+
182
+ ### Enhancements
395
183
 
396
- * [#101][]: Global nav now works with RackBaseURI ([@gregbell][])
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
- ### Dependencies
186
+ ```ruby
187
+ ActiveAdmin.setup do |config|
188
+ config.head = ''.html_safe
189
+ end
190
+ ```
403
191
 
404
- * [#978][]: Support for Inherited Resources 1.3.0 ([@fabiormoura][])
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
- ### Contributors
196
+ ### Security Fixes
407
197
 
408
- 75 Commits by 12 authors
198
+ * Prevent leaking hashed passwords via user CSV export and adds a config option for sensitive attributes. [#5486] by [@chrp]
409
199
 
410
- * Bruno Bonamin
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
- ## 0.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.3.4...v0.4.0)
209
+ ### Dependency Changes
426
210
 
427
- ### Upgrade Notes
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
- If you're running on Rails 3.0.x, make sure to run `rails generate active_admin:assets`
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
- ### Deprecations
224
+ ### Bug Fixes
433
225
 
434
- * In the initializer `config.allow_comments_in = []` is now
435
- `config.allow_comments = true`. Use the new namespace specific configurations
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
- ### New Features
229
+ ## 1.4.2 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.1..v1.4.2)
441
230
 
442
- * Namespace specific configurations in the initializer ([@gregbell][])
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
- ### Enhancements
233
+ * Fix `input_html` filter option evaluated only once. [#5376] by [@kjeldahl]
450
234
 
451
- * [#428][]: Paginated Collection now supports `:param_name` and `:download_links`.
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
- * [#590][]: Comments now work in the default namespace ([@jbarket][])
473
- * [#780][]: Fix stack level too deep exception when logout path is setup to use
474
- `:logout_path` named route. ([@george][])
475
- * [#637][]: Fix scope all I18n ([@fbuenemann][])
476
- * [#496][]: Remove global `Object#to_html` [@ebeigarts][]
477
- * [#470][], [#154][]: Arbre properly supports blocks that return Numeric values
478
- ([@bobbytables][], [@utkarshkukreti][], [@gregbell][])
479
- * [#897][]: Fix count display for collections with GROUP BY [@comboy][]
480
-
481
- ### Dependencies
482
-
483
- * [#468][]: Removed vendored jQuery. Now depends on the jquery-rails gem. If you're
484
- running Rails 3.0.x (no asset pipeline), make sure to run
485
- `rails generate active_admin:assets` to generate the correct files. ([@gregbell][])
486
- * [#527][]: Active Admin now requires Formtastic 2.0 or greater ([@ebeigarts][])
487
- * [#711][]: Active admin now depends on Bourbon > 1.0.0. If you're using Rails
488
- 3.0.x, make sure to run `rails generate active_admin:assets` to ensure you
489
- have the correct css files ([@mattvague][])
490
- * [#869][]: Upgraded Kaminari to >= 0.13.0 and added support for
491
- `Kaminari.config.page_method_name`. Active Admin should now be happy if
492
- `will_paginate` is installed with it. ([@j][]-manu)
493
- * [#931][]: Support for Rails 3.2 added ([@mperham][])
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
- * Fix reloading issues across operating systems.
550
- * Fix issue where SASS was recompiling on every request. This can seriously
551
- decrease the load time of applications when running in development mode.
552
- Thanks [@dhiemstra][] for tracking this one down!
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
- ### Contributors
272
+ ## 1.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.0..v1.3.1)
555
273
 
556
- * Danny Hiemstra
557
- * Greg Bell
274
+ ### Bug Fixes
558
275
 
559
- ## 0.3.3 [](https://github.com/activeadmin/activeadmin/compare/v0.3.2...v0.3.3)
276
+ * gemspec should have more permissive ransack dependency. [#5448] by [@varyonic]
560
277
 
561
- 1 commit by 1 author
278
+ ## 1.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.1..v1.3.0)
562
279
 
563
280
  ### Enhancements
564
281
 
565
- * Only reload Active Admin when files in the load paths have changed. This is a
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
- ### Contributors
284
+ ## 1.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.0..v1.2.1)
570
285
 
571
- * Greg Bell
286
+ ### Bug Fixes
572
287
 
573
- ## 0.3.2 [](https://github.com/activeadmin/activeadmin/compare/v0.3.1...v0.3.2)
288
+ * Resolve issue with [#5275] preventing XSS in filters sidebar. [#5299] by [@faucct]
574
289
 
575
- 45 commits by 15 contributors
290
+ ## 1.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.1.0..v1.2.0)
576
291
 
577
292
  ### Enhancements
578
293
 
579
- * Site title can now be a link. Use config.site_title_link in
580
- config/initializers/active_admin.rb
581
- * i18n support for Japanese
582
- * i18n support for Bulgarian
583
- * i18n support for Swedish
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
- * DeviseGenerator respects singular table names
588
- * Active Admin no longer assumes sass-rails is installed
589
- * Arbre::Context passes methods to the underlying html which fixes
590
- issues on different types of servers (and on Heroku)
591
- * [#45][]: Fix for multibyte characters ([@tricknotes][])
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
- ### Dependencies
315
+ ## 1.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.0.0..v1.1.0)
597
316
 
598
- * Formtastic 2.0.0 breaks Active Admin. Locking to < 2.0.0
317
+ ### Bug Fixes
599
318
 
600
- ### Contributors
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
- * Amiel Martin
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
- ## 0.3.1 [](https://github.com/activeadmin/activeadmin/compare/v0.3.0...v0.3.1)
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
- * Only support InheritedResources up to 1.2.2
334
+ ### Deprecations
621
335
 
622
- ## 0.3.0 [](https://github.com/activeadmin/activeadmin/compare/v0.2.2...v0.3.0)
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
- 326 commits by 35 contributors
340
+ ```ruby
341
+ status_tag(status, :ok, class: 'completed', label: 'on')
342
+ ```
625
343
 
626
- ### New Features
344
+ to:
627
345
 
628
- * I18n! Now supported in 10 languages!
629
- * Customizeable CSV ([@pcreux][], [@gregbell][])
630
- * Menus now support `if` and `priority` (Moritz Lawitschka)
631
- * Rails 3.1 support
632
- * Asset pipeline support ([@gregbell][])
633
- * `skip_before_filter` now supported in DSL ([@shayfrendt][])
634
- * Added a blank slate design ([@mattvague][])
635
- * Collection and Member actions use the Active Admin layout ([@gregbell][])
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
- * Better I18n config file loading ([@fabiokr][])
640
- * `TableFor` now supports I18n headers ([@fabiokr][])
641
- * `AttributesTable` now supports I18n attributes ([@fabiokr][])
642
- * Member actions all use CSS class `member_link` ([@doug316][])
643
- * Made `status_tag` an Arbre component ([@pcreux][])
644
- * CSV downloads have sexy names such as "articles-2011-06-21.csv" ([@pcreux][])
645
- * Created `ActiveAdmin::Setting` to easily create settings ([@gregbell][])
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
- ### Bug Fixes
370
+ ## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3..v1.0.0)
652
371
 
653
- * [#52][]: Fix update action with STI models ([@gregbell][])
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
- ### Bug Fixes
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
- * Sort order now includes table name ([#38][])
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
- ### Bug Fixes
768
- * Fixed issue with dashboard rendering a sidebar
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
- ## 0.2.0 [](https://github.com/activeadmin/activeadmin/compare/v0.1.1...v0.2.0)
417
+ * Accept block for download links. [#2040] by [@potatosalad]
771
418
 
772
- 0.2.0 is essentially an entire re-write of Active Admin. Here are some
773
- of the highlights. 250 commits. Enough said.
419
+ ```ruby
420
+ index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
421
+ ```
774
422
 
775
- ### Features & Enhancements
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
- * Full visual redesign
778
- * Integrated Devise for authentication
779
- * Brand new view and component layer called Arbre (Project coming soon)
780
- * Added ActiveAdmin::Comments
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
- * Too many to list! Been in production for close to a year
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
- ## 0.1.1 [](https://github.com/activeadmin/activeadmin/compare/v0.1.0...v0.1.1)
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
- ### Bug Fixes
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
- [#2588]: https://github.com/activeadmin/activeadmin/issues/2588
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
- [@Bishop]: https://github.com/Bishop
997
- [@BoboFraggins]: https://github.com/BoboFraggins
998
- [@DMajrekar]: https://github.com/DMajrekar
999
- [@EtienneDepaulis]: https://github.com/EtienneDepaulis
1000
- [@MoritzMoritz]: https://github.com/MoritzMoritz
1001
- [@PChambino]: https://github.com/PChambino
1002
- [@TBAA]: https://github.com/TBAA
1003
- [@TiagoCardoso1983]: https://github.com/TiagoCardoso1983
1004
- [@TimPetricola]: https://github.com/TimPetricola
1005
- [@ZequeZ]: https://github.com/ZequeZ
1006
- [@adrienkohlbecker]: https://github.com/adrienkohlbecker
1007
- [@ai]: https://github.com/ai
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
- [@ball-hayden]: https://github.com/ball-hayden
1010
- [@bobbytables]: https://github.com/bobbytables
1011
- [@caifara]: https://github.com/caifara
1012
- [@cknoxrun]: https://github.com/cknoxrun
1013
- [@comboy]: https://github.com/comboy
1014
- [@coreyward]: https://github.com/coreyward
1015
- [@dapi]: https://github.com/dapi
1016
- [@dbussin]: https://github.com/dbussin
1017
- [@developer88]: https://github.com/developer88
1018
- [@dhiemstra]: https://github.com/dhiemstra
1019
- [@dmfrancisco]: https://github.com/dmfrancisco
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
- [@doug316]: https://github.com/doug316
1022
- [@ebeigarts]: https://github.com/ebeigarts
1023
- [@ejholmes]: https://github.com/ejholmes
1024
- [@emzeq]: https://github.com/emzeq
1025
- [@ericcumbee]: https://github.com/ericcumbee
1026
- [@ericpromislow]: https://github.com/ericpromislow
1027
- [@fabiokr]: https://github.com/fabiokr
1028
- [@fabiormoura]: https://github.com/fabiormoura
1029
- [@fbuenemann]: https://github.com/fbuenemann
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
- [@gregbell]: https://github.com/gregbell
1035
- [@hakanensari]: https://github.com/hakanensari
1036
- [@henrrrik]: https://github.com/henrrrik
1037
- [@ilyakatz]: https://github.com/ilyakatz
1038
- [@j]: https://github.com/j
1039
- [@jamesalmond]: https://github.com/jamesalmond
1040
- [@jancel]: https://github.com/jancel
1041
- [@jbarket]: https://github.com/jbarket
1042
- [@jbhannah]: https://github.com/jbhannah
1043
- [@jherdman]: https://github.com/jherdman
1044
- [@jjarmoc]: https://github.com/jjarmoc
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
- [@jokklan]: https://github.com/jokklan
1047
- [@joseluistorres]: https://github.com/joseluistorres
1048
- [@joshuacollins85]: https://github.com/joshuacollins85
1049
- [@jschwindt]: https://github.com/jschwindt
1050
- [@kerberoS]: https://github.com/kerberoS
1051
- [@knoopx]: https://github.com/knoopx
1052
- [@krug]: https://github.com/krug
1053
- [@laffinkippah]: https://github.com/laffinkippah
1054
- [@latortuga]: https://github.com/latortuga
1055
- [@lupinglade]: https://github.com/lupinglade
1056
- [@maax]: https://github.com/maax
1057
- [@macfanatic]: https://github.com/macfanatic
1058
- [@mattvague]: https://github.com/mattvague
1059
- [@mindhalt]: https://github.com/mindhalt
1060
- [@mitio]: https://github.com/mitio
1061
- [@mperham]: https://github.com/mperham
1062
- [@mwindwer]: https://github.com/mwindwer
1063
- [@nappa]: https://github.com/nappa
1064
- [@neoriddle]: https://github.com/neoriddle
1065
- [@orendon]: https://github.com/orendon
1066
- [@page_title]: https://github.com/page_title
1067
- [@pcreux]: https://github.com/pcreux
1068
- [@per_page]: https://github.com/per_page
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
- [@psy-q]: https://github.com/psy-q
1072
- [@ptn]: https://github.com/ptn
1073
- [@randym]: https://github.com/randym
1074
- [@rdsoze]: https://github.com/rdsoze
1075
- [@rheaton]: https://github.com/rheaton
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
- [@sftsang]: https://github.com/sftsang
1084
- [@shayfrendt]: https://github.com/shayfrendt
733
+ [@sgara]: https://github.com/sgara
734
+ [@ShallmentMo]: https://github.com/ShallmentMo
1085
735
  [@shekibobo]: https://github.com/shekibobo
1086
- [@shell]: https://github.com/shell
1087
- [@simonoff]: https://github.com/simonoff
1088
- [@snapapps]: https://github.com/snapapps
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
- [@sunny]: https://github.com/sunny
1091
- [@tank-bohr]: https://github.com/tank-bohr
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
- [@tinynumbers]: https://github.com/tinynumbers
1095
- [@tracedwax]: https://github.com/tracedwax
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
- [@watson]: https://github.com/watson
1103
- [@whatcould]: https://github.com/whatcould
1104
- [@yawn]: https://github.com/yawn
1105
- [@yorch]: https://github.com/yorch
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