activeadmin 2.6.1 → 3.2.3

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 (326) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +438 -9
  3. data/CONTRIBUTING.md +12 -36
  4. data/README.md +8 -8
  5. data/app/assets/javascripts/active_admin/base.js +27 -25
  6. data/app/assets/stylesheets/active_admin/_base.scss +53 -37
  7. data/app/assets/stylesheets/active_admin/_forms.scss +2 -13
  8. data/app/assets/stylesheets/active_admin/_header.scss +37 -3
  9. data/app/assets/stylesheets/active_admin/_normalize.scss +25 -123
  10. data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
  11. data/app/assets/stylesheets/active_admin/components/_date_picker.scss +1 -2
  12. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +7 -5
  13. data/app/assets/stylesheets/active_admin/components/_pagination.scss +5 -2
  14. data/app/assets/stylesheets/active_admin/components/_table_tools.scss +9 -6
  15. data/app/assets/stylesheets/active_admin/components/_tabs.scss +10 -7
  16. data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +2 -2
  17. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +12 -0
  18. data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +1 -1
  19. data/app/assets/stylesheets/active_admin/structure/_footer.scss +6 -1
  20. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +6 -4
  21. data/app/javascript/active_admin/initializers/has-many.js +4 -1
  22. data/app/javascript/active_admin/initializers/per-page.js +1 -1
  23. data/app/javascript/active_admin/lib/checkbox-toggler.js +3 -3
  24. data/app/javascript/active_admin/lib/dropdown-menu.js +1 -1
  25. data/app/javascript/active_admin/lib/modal-dialog.js +7 -7
  26. data/app/javascript/active_admin/lib/per-page.js +1 -1
  27. data/app/javascript/active_admin/lib/table-checkbox-toggler.js +1 -1
  28. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
  29. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
  30. data/app/views/active_admin/devise/shared/_links.erb +1 -1
  31. data/app/views/active_admin/page/index.html.arb +1 -0
  32. data/app/views/active_admin/resource/edit.html.arb +1 -0
  33. data/app/views/active_admin/resource/index.html.arb +1 -0
  34. data/app/views/active_admin/resource/new.html.arb +1 -0
  35. data/app/views/active_admin/resource/show.html.arb +1 -0
  36. data/app/views/layouts/active_admin.html.arb +1 -0
  37. data/app/views/layouts/active_admin_logged_out.html.erb +18 -7
  38. data/config/locales/ar.yml +6 -13
  39. data/config/locales/az.yml +0 -7
  40. data/config/locales/bg.yml +0 -7
  41. data/config/locales/bs.yml +0 -7
  42. data/config/locales/ca.yml +0 -7
  43. data/config/locales/cs.yml +0 -7
  44. data/config/locales/da.yml +0 -7
  45. data/config/locales/de-CH.yml +0 -7
  46. data/config/locales/de.yml +0 -8
  47. data/config/locales/el.yml +0 -7
  48. data/config/locales/en-CA.yml +0 -7
  49. data/config/locales/en-GB.yml +0 -7
  50. data/config/locales/en.yml +0 -8
  51. data/config/locales/eo.yml +0 -8
  52. data/config/locales/es-MX.yml +2 -8
  53. data/config/locales/es.yml +2 -10
  54. data/config/locales/fa.yml +0 -7
  55. data/config/locales/fi.yml +0 -7
  56. data/config/locales/fr.yml +3 -11
  57. data/config/locales/he.yml +0 -9
  58. data/config/locales/hr.yml +0 -7
  59. data/config/locales/hu.yml +0 -8
  60. data/config/locales/id.yml +0 -7
  61. data/config/locales/it.yml +18 -8
  62. data/config/locales/ja.yml +2 -10
  63. data/config/locales/ko.yml +1 -8
  64. data/config/locales/lt.yml +0 -8
  65. data/config/locales/lv.yml +0 -7
  66. data/config/locales/mk.yml +0 -8
  67. data/config/locales/nb.yml +0 -8
  68. data/config/locales/nl.yml +1 -9
  69. data/config/locales/pl.yml +0 -8
  70. data/config/locales/pt-BR.yml +0 -8
  71. data/config/locales/pt-PT.yml +0 -7
  72. data/config/locales/ro.yml +3 -9
  73. data/config/locales/ru.yml +0 -6
  74. data/config/locales/sk.yml +0 -8
  75. data/config/locales/sv-SE.yml +58 -39
  76. data/config/locales/tr.yml +0 -11
  77. data/config/locales/uk.yml +0 -6
  78. data/config/locales/vi.yml +38 -19
  79. data/config/locales/zh-CN.yml +34 -23
  80. data/config/locales/zh-TW.yml +0 -7
  81. data/lib/active_admin/abstract_view_factory.rb +1 -0
  82. data/lib/active_admin/application.rb +19 -19
  83. data/lib/active_admin/application_settings.rb +4 -3
  84. data/lib/active_admin/asset_registration.rb +4 -3
  85. data/lib/active_admin/authorization_adapter.rb +6 -3
  86. data/lib/active_admin/base_controller/authorization.rb +15 -13
  87. data/lib/active_admin/base_controller/menu.rb +1 -0
  88. data/lib/active_admin/base_controller.rb +6 -5
  89. data/lib/active_admin/batch_actions/controller.rb +4 -3
  90. data/lib/active_admin/batch_actions/resource_extension.rb +10 -8
  91. data/lib/active_admin/batch_actions/views/batch_action_form.rb +4 -3
  92. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +7 -6
  93. data/lib/active_admin/batch_actions/views/selection_cells.rb +4 -3
  94. data/lib/active_admin/batch_actions.rb +1 -0
  95. data/lib/active_admin/callbacks.rb +1 -0
  96. data/lib/active_admin/cancan_adapter.rb +2 -1
  97. data/lib/active_admin/collection_decorator.rb +32 -0
  98. data/lib/active_admin/component.rb +1 -0
  99. data/lib/active_admin/controller_action.rb +1 -0
  100. data/lib/active_admin/csv_builder.rb +25 -17
  101. data/lib/active_admin/dependency.rb +12 -15
  102. data/lib/active_admin/devise.rb +16 -5
  103. data/lib/active_admin/dsl.rb +2 -1
  104. data/lib/active_admin/dynamic_setting.rb +1 -0
  105. data/lib/active_admin/dynamic_settings_node.rb +3 -2
  106. data/lib/active_admin/engine.rb +17 -9
  107. data/lib/active_admin/error.rb +1 -2
  108. data/lib/active_admin/filters/active.rb +2 -1
  109. data/lib/active_admin/filters/active_filter.rb +6 -6
  110. data/lib/active_admin/filters/active_sidebar.rb +4 -30
  111. data/lib/active_admin/filters/dsl.rb +1 -0
  112. data/lib/active_admin/filters/forms.rb +9 -8
  113. data/lib/active_admin/filters/formtastic_addons.rb +3 -7
  114. data/lib/active_admin/filters/resource_extension.rb +6 -5
  115. data/lib/active_admin/filters.rb +8 -7
  116. data/lib/active_admin/form_builder.rb +25 -20
  117. data/lib/active_admin/generators/boilerplate.rb +2 -1
  118. data/lib/active_admin/helpers/collection.rb +2 -0
  119. data/lib/active_admin/helpers/i18n.rb +1 -0
  120. data/lib/active_admin/helpers/optional_display.rb +3 -2
  121. data/lib/active_admin/helpers/routes/url_helpers.rb +1 -0
  122. data/lib/active_admin/helpers/scope_chain.rb +1 -0
  123. data/lib/active_admin/inputs/datepicker_input.rb +2 -1
  124. data/lib/active_admin/inputs/filters/base/search_method_select.rb +7 -6
  125. data/lib/active_admin/inputs/filters/base.rb +2 -1
  126. data/lib/active_admin/inputs/filters/boolean_input.rb +2 -1
  127. data/lib/active_admin/inputs/filters/check_boxes_input.rb +2 -1
  128. data/lib/active_admin/inputs/filters/date_picker_input.rb +1 -0
  129. data/lib/active_admin/inputs/filters/date_range_input.rb +3 -2
  130. data/lib/active_admin/inputs/filters/numeric_input.rb +2 -1
  131. data/lib/active_admin/inputs/filters/select_input.rb +5 -2
  132. data/lib/active_admin/inputs/filters/string_input.rb +2 -1
  133. data/lib/active_admin/inputs/filters/text_input.rb +1 -0
  134. data/lib/active_admin/inputs.rb +1 -0
  135. data/lib/active_admin/localizers/resource_localizer.rb +4 -3
  136. data/lib/active_admin/localizers.rb +2 -1
  137. data/lib/active_admin/menu.rb +8 -3
  138. data/lib/active_admin/menu_collection.rb +1 -0
  139. data/lib/active_admin/menu_item.rb +8 -7
  140. data/lib/active_admin/namespace.rb +16 -15
  141. data/lib/active_admin/namespace_settings.rb +9 -5
  142. data/lib/active_admin/order_clause.rb +2 -1
  143. data/lib/active_admin/orm/active_record/comments/comment.rb +12 -3
  144. data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +1 -0
  145. data/lib/active_admin/orm/active_record/comments/resource_helper.rb +1 -0
  146. data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +1 -0
  147. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +21 -20
  148. data/lib/active_admin/orm/active_record/comments/views.rb +3 -2
  149. data/lib/active_admin/orm/active_record/comments.rb +28 -27
  150. data/lib/active_admin/orm/active_record.rb +2 -1
  151. data/lib/active_admin/orm/mongoid.rb +1 -0
  152. data/lib/active_admin/page.rb +2 -1
  153. data/lib/active_admin/page_controller.rb +1 -0
  154. data/lib/active_admin/page_dsl.rb +1 -0
  155. data/lib/active_admin/page_presenter.rb +1 -0
  156. data/lib/active_admin/pundit_adapter.rb +58 -16
  157. data/lib/active_admin/resource/action_items.rb +6 -5
  158. data/lib/active_admin/resource/attributes.rb +9 -1
  159. data/lib/active_admin/resource/belongs_to.rb +3 -2
  160. data/lib/active_admin/resource/controllers.rb +2 -1
  161. data/lib/active_admin/resource/includes.rb +1 -0
  162. data/lib/active_admin/resource/menu.rb +5 -4
  163. data/lib/active_admin/resource/model.rb +1 -0
  164. data/lib/active_admin/resource/naming.rb +5 -4
  165. data/lib/active_admin/resource/ordering.rb +1 -0
  166. data/lib/active_admin/resource/page_presenters.rb +1 -0
  167. data/lib/active_admin/resource/pagination.rb +1 -0
  168. data/lib/active_admin/resource/routes.rb +6 -7
  169. data/lib/active_admin/resource/scope_to.rb +8 -7
  170. data/lib/active_admin/resource/scopes.rb +1 -0
  171. data/lib/active_admin/resource/sidebars.rb +2 -1
  172. data/lib/active_admin/resource.rb +20 -19
  173. data/lib/active_admin/resource_collection.rb +1 -0
  174. data/lib/active_admin/resource_controller/action_builder.rb +1 -0
  175. data/lib/active_admin/resource_controller/data_access.rb +31 -5
  176. data/lib/active_admin/resource_controller/decorators.rb +7 -28
  177. data/lib/active_admin/resource_controller/polymorphic_routes.rb +1 -0
  178. data/lib/active_admin/resource_controller/resource_class_methods.rb +1 -0
  179. data/lib/active_admin/resource_controller/scoping.rb +1 -0
  180. data/lib/active_admin/resource_controller/sidebars.rb +1 -0
  181. data/lib/active_admin/resource_controller/streaming.rb +9 -7
  182. data/lib/active_admin/resource_controller.rb +13 -11
  183. data/lib/active_admin/resource_dsl.rb +11 -25
  184. data/lib/active_admin/router.rb +1 -0
  185. data/lib/active_admin/scope.rb +7 -6
  186. data/lib/active_admin/settings_node.rb +1 -0
  187. data/lib/active_admin/sidebar_section.rb +1 -0
  188. data/lib/active_admin/version.rb +2 -1
  189. data/lib/active_admin/view_factory.rb +18 -17
  190. data/lib/active_admin/view_helpers/active_admin_application_helper.rb +1 -0
  191. data/lib/active_admin/view_helpers/auto_link_helper.rb +2 -1
  192. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +4 -3
  193. data/lib/active_admin/view_helpers/display_helper.rb +23 -8
  194. data/lib/active_admin/view_helpers/download_format_links_helper.rb +2 -1
  195. data/lib/active_admin/view_helpers/fields_for.rb +3 -2
  196. data/lib/active_admin/view_helpers/flash_helper.rb +1 -0
  197. data/lib/active_admin/view_helpers/form_helper.rb +1 -0
  198. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +1 -0
  199. data/lib/active_admin/view_helpers/scope_name_helper.rb +1 -0
  200. data/lib/active_admin/view_helpers/sidebar_helper.rb +1 -0
  201. data/lib/active_admin/view_helpers/title_helper.rb +1 -0
  202. data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -0
  203. data/lib/active_admin/view_helpers.rb +2 -1
  204. data/lib/active_admin/views/action_items.rb +1 -0
  205. data/lib/active_admin/views/components/active_admin_form.rb +8 -11
  206. data/lib/active_admin/views/components/active_filters_sidebar_content.rb +59 -0
  207. data/lib/active_admin/views/components/attributes_table.rb +6 -5
  208. data/lib/active_admin/views/components/blank_slate.rb +2 -1
  209. data/lib/active_admin/views/components/columns.rb +1 -0
  210. data/lib/active_admin/views/components/dropdown_menu.rb +7 -9
  211. data/lib/active_admin/views/components/index_list.rb +4 -3
  212. data/lib/active_admin/views/components/menu.rb +2 -1
  213. data/lib/active_admin/views/components/menu_item.rb +5 -4
  214. data/lib/active_admin/views/components/paginated_collection.rb +19 -18
  215. data/lib/active_admin/views/components/panel.rb +2 -1
  216. data/lib/active_admin/views/components/scopes.rb +8 -5
  217. data/lib/active_admin/views/components/sidebar.rb +1 -0
  218. data/lib/active_admin/views/components/sidebar_section.rb +1 -0
  219. data/lib/active_admin/views/components/site_title.rb +2 -1
  220. data/lib/active_admin/views/components/status_tag.rb +12 -11
  221. data/lib/active_admin/views/components/table_for.rb +18 -17
  222. data/lib/active_admin/views/components/tabs.rb +4 -3
  223. data/lib/active_admin/views/components/unsupported_browser.rb +1 -0
  224. data/lib/active_admin/views/footer.rb +3 -1
  225. data/lib/active_admin/views/header.rb +3 -2
  226. data/lib/active_admin/views/index_as_block.rb +1 -0
  227. data/lib/active_admin/views/index_as_blog.rb +2 -1
  228. data/lib/active_admin/views/index_as_grid.rb +2 -1
  229. data/lib/active_admin/views/index_as_table.rb +16 -19
  230. data/lib/active_admin/views/pages/base.rb +17 -11
  231. data/lib/active_admin/views/pages/form.rb +1 -0
  232. data/lib/active_admin/views/pages/index.rb +15 -13
  233. data/lib/active_admin/views/pages/layout.rb +1 -0
  234. data/lib/active_admin/views/pages/page.rb +1 -0
  235. data/lib/active_admin/views/pages/show.rb +2 -7
  236. data/lib/active_admin/views/tabbed_navigation.rb +3 -2
  237. data/lib/active_admin/views/title_bar.rb +2 -1
  238. data/lib/active_admin/views.rb +2 -1
  239. data/lib/active_admin.rb +63 -61
  240. data/lib/activeadmin.rb +2 -1
  241. data/lib/generators/active_admin/assets/assets_generator.rb +3 -2
  242. data/lib/generators/active_admin/assets/templates/active_admin.scss +2 -2
  243. data/lib/generators/active_admin/devise/devise_generator.rb +6 -5
  244. data/lib/generators/active_admin/install/install_generator.rb +15 -8
  245. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +27 -3
  246. data/lib/generators/active_admin/install/templates/dashboard.rb +1 -0
  247. data/lib/generators/active_admin/page/page_generator.rb +2 -1
  248. data/lib/generators/active_admin/page/templates/page.rb +1 -0
  249. data/lib/generators/active_admin/resource/resource_generator.rb +4 -3
  250. data/lib/generators/active_admin/webpacker/plugins/jquery.js +7 -0
  251. data/lib/generators/active_admin/webpacker/templates/active_admin.js +5 -0
  252. data/lib/generators/active_admin/webpacker/templates/active_admin.scss +17 -0
  253. data/lib/generators/active_admin/webpacker/templates/print.scss +2 -0
  254. data/lib/generators/active_admin/webpacker/webpacker_generator.rb +27 -0
  255. data/vendor/assets/javascripts/jquery-ui/data.js +12 -8
  256. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +10 -7
  257. data/vendor/assets/javascripts/jquery-ui/focusable.js +12 -9
  258. data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +60 -57
  259. data/vendor/assets/javascripts/jquery-ui/form.js +15 -12
  260. data/vendor/assets/javascripts/jquery-ui/ie.js +5 -2
  261. data/vendor/assets/javascripts/jquery-ui/keycode.js +11 -7
  262. data/vendor/assets/javascripts/jquery-ui/labels.js +46 -40
  263. data/vendor/assets/javascripts/jquery-ui/plugin.js +5 -2
  264. data/vendor/assets/javascripts/jquery-ui/position.js +30 -17
  265. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +6 -2
  266. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +6 -2
  267. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +10 -7
  268. data/vendor/assets/javascripts/jquery-ui/tabbable.js +11 -8
  269. data/vendor/assets/javascripts/jquery-ui/unique-id.js +10 -7
  270. data/vendor/assets/javascripts/jquery-ui/version.js +6 -3
  271. data/vendor/assets/javascripts/jquery-ui/widget.js +53 -30
  272. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +87 -24
  273. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +276 -273
  274. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +15 -11
  275. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +182 -62
  276. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +53 -36
  277. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +28 -19
  278. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +22 -11
  279. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +47 -26
  280. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +186 -125
  281. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +20 -20
  282. metadata +48 -114
  283. data/docs/.gitignore +0 -1
  284. data/docs/0-installation.md +0 -118
  285. data/docs/1-general-configuration.md +0 -224
  286. data/docs/10-custom-pages.md +0 -150
  287. data/docs/11-decorators.md +0 -59
  288. data/docs/12-arbre-components.md +0 -214
  289. data/docs/13-authorization-adapter.md +0 -285
  290. data/docs/14-gotchas.md +0 -138
  291. data/docs/2-resource-customization.md +0 -466
  292. data/docs/3-index-pages/custom-index.md +0 -35
  293. data/docs/3-index-pages/index-as-block.md +0 -19
  294. data/docs/3-index-pages/index-as-blog.md +0 -69
  295. data/docs/3-index-pages/index-as-grid.md +0 -27
  296. data/docs/3-index-pages/index-as-table.md +0 -234
  297. data/docs/3-index-pages.md +0 -328
  298. data/docs/4-csv-format.md +0 -74
  299. data/docs/5-forms.md +0 -232
  300. data/docs/6-show-pages.md +0 -81
  301. data/docs/7-sidebars.md +0 -75
  302. data/docs/8-custom-actions.md +0 -177
  303. data/docs/9-batch-actions.md +0 -237
  304. data/docs/CNAME +0 -1
  305. data/docs/Gemfile +0 -3
  306. data/docs/Gemfile.lock +0 -248
  307. data/docs/README.md +0 -24
  308. data/docs/_config.yml +0 -4
  309. data/docs/_includes/footer.html +0 -8
  310. data/docs/_includes/google-analytics.html +0 -16
  311. data/docs/_includes/head.html +0 -7
  312. data/docs/_includes/toc.html +0 -98
  313. data/docs/_includes/top-menu.html +0 -17
  314. data/docs/_layouts/default.html +0 -21
  315. data/docs/documentation.md +0 -60
  316. data/docs/images/activeadmin.png +0 -0
  317. data/docs/images/code-header.png +0 -0
  318. data/docs/images/divider.png +0 -0
  319. data/docs/images/features.png +0 -0
  320. data/docs/images/tidelift.svg +0 -14
  321. data/docs/index.html +0 -226
  322. data/docs/stylesheets/main.css +0 -1205
  323. data/lib/active_admin/deprecation.rb +0 -10
  324. data/lib/ransack_ext.rb +0 -20
  325. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +0 -23
  326. /data/app/assets/stylesheets/active_admin/{print.scss → _print.scss} +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ce87c19dbaccfc28fd5c36d12f1ef679772a70bd1ae8a131182d277d3de4cb3
4
- data.tar.gz: d0b56716796cb013d8d874280366d8fb424366ee3979bf6549585ef505836d79
3
+ metadata.gz: cd51d7cc81eac3cbb01358076ca98368ccd5879f96dd9dfaed3f4e6b5c511648
4
+ data.tar.gz: 95913536dfd3ccf746a0848545b81685ead621cd2536776ede879a9b02196058
5
5
  SHA512:
6
- metadata.gz: fcda92e560081295c175f08b876594a5bc3ea38cfcb523a15e803a086c97306574801d279ffc2f553902a4aaf2e77eece4b4e065bb26a11f12e031b2d0a94257
7
- data.tar.gz: ca2e295171c638b40f376bf8fd56a7027c79d08a063b534a666b9761e5f4102b436bfc34cc99b3cf8bab7a12a586fe7c702f62661a885f1291974efb73b14490
6
+ metadata.gz: 0b296e6597a76172815063ca7b63ba359308b9a13c26874b6ea6b746dbd25bb8d6929c4da2f1b8682dfbd998cc7a752c73d2eca70b356fdfad8362294273aac9
7
+ data.tar.gz: ac965d5a5b2308a064e0e47816c1739f8482570ce926feb72fcf1031b12ac1e738719571faae48d03128c1d8af790e74e47c04e7f62484e791cd654749373417
data/CHANGELOG.md CHANGED
@@ -2,7 +2,289 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
- ## 2.6.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.0..2.6.1)
5
+ ## 3.2.3 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.2..v3.2.3)
6
+
7
+ ### Enhancements
8
+
9
+ * Backport better implementation of counter-cache-column check [#8412] by [@plashchynski]
10
+
11
+ ### Bug Fixes
12
+
13
+ * Remove deprecation warnings when building with dart sass >= 1.77.7 [#8405] by [@mgrunberg]
14
+
15
+ ## 3.2.2 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.1..v3.2.2)
16
+
17
+ ### Security Fixes
18
+
19
+ * Backport Fix potential XSS issue when rendering form legends [#8349] by
20
+ [@deivid-rodriguez]
21
+
22
+ ### Enhancements
23
+
24
+ * Update vendored jQuery UI to 1.13.3 [#8329] by [@tagliala]
25
+
26
+ ## 3.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.0..v3.2.1)
27
+
28
+ ### Enhancements
29
+
30
+ * Backport Suppress ruby 3.3 warning [#8310] by [@mgrunberg]
31
+ * Backport Recommend using target="_blank" instead of target="blank" [#8311] by [@mgrunberg]
32
+
33
+ ## 3.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.1.0..v3.2.0)
34
+
35
+ ### Security Fixes
36
+
37
+ * Backport protect against CSV Injection. [#8167] by [@mgrunberg]
38
+
39
+ ### Enhancements
40
+
41
+ * Backport support citext column type in string filter. [#8165] by [@mgrunberg]
42
+ * Backport provide detail in DB statement timeout error for filters. [#8163] by [@mgrunberg]
43
+
44
+ ### Bug Fixes
45
+
46
+ * Backport make sure menu creation does not modify menu options. [#8166] by [@mgrunberg]
47
+ * Backport ransack error with filters when ActiveStorage is used. [#8164] by [@mgrunberg]
48
+
49
+ ## 3.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.0.0..v3.1.0)
50
+
51
+ ### Enhancements
52
+
53
+ * Support Rails 7.1. [#8102] by [@mgrunberg]
54
+ * Remove deprecated usage of ActiveSupport::Deprecation singleton. [#8106] by [@mgrunberg]
55
+ * Replace to_formatted_s with to_s to convert date to string. [#8105] by [@mgrunberg]
56
+ * Remove upper bound dependency limits from gemspec. [#8098] by [@javierjulio]
57
+
58
+ ## 3.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.14.0..v3.0.0)
59
+
60
+ ### Breaking Changes
61
+
62
+ * Remove custom Ransack predicates that were MetaSearch backports. [#8010] by [@javierjulio]
63
+ * Require Ransack v4. [#8009] by [@javierjulio]
64
+
65
+ ### Enhancements
66
+
67
+ * Use display name fallback if blank display name result. [#6342] by [@javierjulio]
68
+
69
+ ### Translation Improvements
70
+
71
+ * Improve Swedish translations. [#7993] by [@carlottostromstedt]
72
+
73
+ ## 2.14.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.13.1..v2.14.0)
74
+
75
+ ### Enhancements
76
+
77
+ * Add csp_meta_tag to layout. [#7986] by [@javierjulio]
78
+ * Update config.register_javascript with options support. [#7002] by [@lanzhiheng]
79
+ * Use `csrf_meta_tags` in place of singular version. [#7985] by [@javierjulio]
80
+ * Allow different new and edit rules in authorization adapters. [#6535] by [@timwis]
81
+
82
+ ### Bug Fixes
83
+
84
+ * Fix form layout for hints and checkboxes. [#7772] by [@JewelSam]
85
+ * Update filters disabled error to include specific action. [#6195] by [@javawizard]
86
+ * Fix Comments controller destroy declaration. [#6482] by [@bliof]
87
+ * Stop pagination elements from overflowing outside of panel container. [#7599] by [@ray-curran]
88
+
89
+ ### Translation Improvements
90
+
91
+ * Update vi locale with more translations. [#7984] by [@rs-phunt]
92
+ * Update zh-CN locale with multiple corrections. [#7944] by [@hfl]
93
+ * Fix typo in Vietnamese locale for filter text. [#7920] by [@tvziet]
94
+ * Improve French translation. [#7653] by [@cprodhomme]
95
+
96
+ ### Documentation
97
+
98
+ * Add more documentation about PORO decorator requirements. [#7556] by [@sanfrecce-osaka]
99
+ * Add Load Paths docs to the active_admin.rb template. [#7541] by [@gabo-cs]
100
+
101
+ ### Performance
102
+
103
+ * Removes docs from exported gem. [#7013] by [@brunoarueira]
104
+
105
+ ## 2.13.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.13.0..v2.13.1)
106
+
107
+ ### Bug Fixes
108
+
109
+ * Honor load paths order when loading admin files. [#7488] by [@tf]
110
+ * Fix passing expected hash payload argument. [#7487] by [@ispyropoulos]
111
+
112
+ ## 2.13.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.12.0..v2.13.0)
113
+
114
+ ### Documentation
115
+
116
+ * Update validation errors documentation to account for deprecated `ActiveModel::Errors#keys`. [#7475] by [@amit]
117
+
118
+ ### Dependency Changes
119
+
120
+ * Drop rails 6.0 support. [#7476] by [@deivid-rodriguez]
121
+
122
+ ### Performance
123
+
124
+ * Fix pundit performance. [#7479] by [@deivid-rodriguez]
125
+
126
+ ## 2.12.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.2..v2.12.0)
127
+
128
+ ### Enhancements
129
+
130
+ * Add Ransack 3 compatibility. [#7453] by [@tagliala]
131
+
132
+ ### Bug Fixes
133
+
134
+ * Fix pundit namespace detection. [#7144] by [@vlad-psh]
135
+
136
+ ### Documentation
137
+
138
+ * Don't mention webpacker as the default asset generator in Rails. [#7377] by [@jaynetics]
139
+
140
+ ### Performance
141
+
142
+ * Avoid duplicate work when downloading CSV. [#7336] by [@deivid-rodriguez]
143
+
144
+ ## 2.11.2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.1..v2.11.2)
145
+
146
+ ### Bug Fixes
147
+
148
+ * Fix disappearing BOM option for `CSVBuilder`. [#7170] by [@Karoid]
149
+
150
+ ## 2.11.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.0..v2.11.1)
151
+
152
+ ### Enhancements
153
+
154
+ * Add turbolinks support to has many js. [#7384] by [@amiel]
155
+
156
+ ### Documentation
157
+
158
+ * Remove `insert_tag` from Form-Partial docs. [#7394] by [@TonyArra]
159
+
160
+ ## 2.11.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.1..v2.11.0)
161
+
162
+ ### Enhancements
163
+
164
+ * Add Rails 7 Support. [#7235] by [@tagliala]
165
+
166
+ ### Bug Fixes
167
+
168
+ * Fix form SCSS variables no longer being defined in the outermost scope, so no longer being accessible. [#7341] by [@gigorok]
169
+
170
+ ## 2.10.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.0..v2.10.1)
171
+
172
+ ### Enhancements
173
+
174
+ * Apply `box-sizing: border-box` globally. [#7349] by [@deivid-rodriguez]
175
+ * Vendor normalize 8.0.1. [#7350] by [@deivid-rodriguez]
176
+ * Remove deprecation warning using controller filters inside initializer. [#7340] by [@mgrunberg]
177
+
178
+ ### Bug Fixes
179
+
180
+ * Fix frozen string error when downloading CSV and streaming disabled. [#7332] by [@deivid-rodriguez]
181
+
182
+ ## 2.10.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.9.0..v2.10.0)
183
+
184
+ ### Enhancements
185
+
186
+ * Load favicon from Webpacker assets when use_webpacker is set to true. [#6954] by [@Fs00]
187
+ * Don't apply sorting to collection until after scoping. [#7205] by [@agrobbin]
188
+ * Resolve dart sass deprecation warning for division. [#7095] by [@tordans]
189
+ * Use `instrument` from the Notifications API instead of low level `publish`. [#7262] by [@sprql]
190
+ * Avoid mutating string literals. [#6936] by [@tomgilligan]
191
+ * Include print styles in main stylesheet. [#6922] by [@deivid-rodriguez]
192
+ * Use `POST` for OmniAuth links. [#6916] by [@deivid-rodriguez]
193
+ * Scope new record instantiation by authorization scope. [#6884] by [@ngouy]
194
+ * Make `permit_params` and `belongs_to` order independent. [#6906] by [@deivid-rodriguez]
195
+ * Use collection length instead of running COUNTs for limited collections. [#5660] by [@MmKolodziej]
196
+
197
+ ### Bug Fixes
198
+
199
+ * Show ransackable_scopes filters in search results. [#7127] by [@vlad-psh]
200
+
201
+ ### Translation Improvements
202
+
203
+ * Fix Dutch translation for password reset button. [#7181] by [@mvz]
204
+ * Add few key to RO pagination.entry. [#6915] by [@lubosch]
205
+ * Change misleading Korean translation. [#6873] by [@1000ship]
206
+
207
+ ### Documentation
208
+
209
+ * Replace deprecated update_attributes! with update!. [#6959] by [@sergey-alekseev]
210
+ * Clarify docs on user setup. [#6872] by [@javawizard]
211
+
212
+ ### Dependency Changes
213
+
214
+ * Drop rails 5.2 support. [#7293] by [@deivid-rodriguez]
215
+ * Drop support for Ruby 2.5. [#7236] by [@alejandroperea]
216
+
217
+ ## 2.9.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.1..v2.9.0)
218
+
219
+ ### Enhancements
220
+
221
+ * Support for Rails 6.1. [#6548] by [@deivid-rodriguez]
222
+ * Add ability to override "Remove" button text on has_many forms. [#6523] by [@littleforest]
223
+ * Drop git in gemspec. [#6462] by [@utkarsh2102]
224
+
225
+ ### Bug Fixes
226
+
227
+ * Pick up upstream fixes in devise templates. [#6536] by [@munen]
228
+
229
+ ### Documentation
230
+
231
+ * Fix `has_many` syntax in forms documentation. [#6583] by [@krzcho]
232
+ * Add example of using `default_main_content` in show pages. [#6487] by [@sjieg]
233
+
234
+ ### Dependency Changes
235
+
236
+ * Remove sassc and sprockets runtime dependencies. [#6584] by [@deivid-rodriguez]
237
+
238
+ ## 2.8.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.0..v2.8.1)
239
+
240
+ ### Bug Fixes
241
+
242
+ * Fix `permitted_param` generation for `belongs_to` when `:param` is used. [#6460] by [@deivid-rodriguez]
243
+ * Fix streaming CSV export. [#6451] by [@deivid-rodriguez]
244
+ * Fix input string filter no rendering dropdown input when its column name ends with a ransack predicate. [#6422] by [@Fivell]
245
+
246
+ ## 2.8.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.7.0..v2.8.0)
247
+
248
+ ### Enhancements
249
+
250
+ * Allow using PORO decorators. [#6249] by [@brunvez]
251
+ * Make sure `ActiveAdmin.routes` provides routes in a consistent order. [#6124] by [@jiikko]
252
+ * Use proper closing tags for HTML in ModalDialog component. [#6221] by [@javierjulio]
253
+
254
+ ### Bug Fixes
255
+
256
+ * Fix comment layout so regardless of size, each is aligned and spaced evenly. [#6393] by [@Ivanov-Anton]
257
+
258
+ ### Translation Improvements
259
+
260
+ * Fix several Arabic translations. [#6368] by [@mshalaby]
261
+ * Add missing `scope/all` italian translation. [#6341] by [@fuzziness]
262
+ * Improve Japanese translation. [#6315] by [@rn0rno]
263
+ * Fix es and es-MX sign_in and sign_up translation. [#6210] by [@roramirez]
264
+
265
+ ### Documentation
266
+
267
+ * Fix filter_columns_for_large_association and filter_method_for_large_association examples. [#6232] by [@ndbroadbent]
268
+
269
+ ### Dependency Changes
270
+
271
+ * Allow formtastic 4. [#6318] by [@deivid-rodriguez]
272
+ * Drop Ruby 2.4 support. [#6198] by [@deivid-rodriguez]
273
+
274
+ ## 2.7.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.1..v2.7.0)
275
+
276
+ ### Enhancements
277
+
278
+ * Extend menu to allow for nested submenus. [#5994] by [@taralbass]
279
+ * Add Webpacker compatibility with opt-in config switch and installation generator. [#5855] by [@sgara]
280
+
281
+ ### Bug Fixes
282
+
283
+ * Fix scopes renderer when resource has only optional scopes and their conditions are false. [#6149] by [@Looooong]
284
+ * Fix some missing wrapper markup in "logged out" layout. [#6086] by [@irmela]
285
+ * Fix some typos in Vietnamese translation. [#6099] by [@giapnhdev]
286
+
287
+ ## 2.6.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.0..v2.6.1)
6
288
 
7
289
  ### Bug Fixes
8
290
 
@@ -13,7 +295,7 @@
13
295
 
14
296
  ## 2.6.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.5.0..v2.6.0)
15
297
 
16
- ### Enhacements
298
+ ### Enhancements
17
299
 
18
300
  * Display multiple flash messages in separate elements. [#5929] by [@mirelon]
19
301
  * Make delete confirmation messages in French & Spanish gender-neutral. [#5946] by [@cprodhomme]
@@ -507,15 +789,17 @@ Please check [0-6-stable] for previous changes.
507
789
  [#5504]: https://github.com/activeadmin/activeadmin/pull/5504
508
790
  [#5517]: https://github.com/activeadmin/activeadmin/pull/5517
509
791
  [#5537]: https://github.com/activeadmin/activeadmin/pull/5537
792
+ [#5548]: https://github.com/activeadmin/activeadmin/pull/5548
510
793
  [#5555]: https://github.com/activeadmin/activeadmin/pull/5555
511
794
  [#5583]: https://github.com/activeadmin/activeadmin/pull/5583
795
+ [#5590]: https://github.com/activeadmin/activeadmin/pull/5590
512
796
  [#5608]: https://github.com/activeadmin/activeadmin/pull/5608
513
797
  [#5611]: https://github.com/activeadmin/activeadmin/pull/5611
514
798
  [#5627]: https://github.com/activeadmin/activeadmin/pull/5627
515
799
  [#5631]: https://github.com/activeadmin/activeadmin/pull/5631
516
800
  [#5632]: https://github.com/activeadmin/activeadmin/pull/5632
517
801
  [#5650]: https://github.com/activeadmin/activeadmin/pull/5650
518
- [#5590]: https://github.com/activeadmin/activeadmin/pull/5590
802
+ [#5660]: https://github.com/activeadmin/activeadmin/pull/5660
519
803
  [#5662]: https://github.com/activeadmin/activeadmin/pull/5662
520
804
  [#5710]: https://github.com/activeadmin/activeadmin/pull/5710
521
805
  [#5726]: https://github.com/activeadmin/activeadmin/pull/5726
@@ -533,40 +817,142 @@ Please check [0-6-stable] for previous changes.
533
817
  [#5822]: https://github.com/activeadmin/activeadmin/pull/5822
534
818
  [#5826]: https://github.com/activeadmin/activeadmin/pull/5826
535
819
  [#5831]: https://github.com/activeadmin/activeadmin/pull/5831
536
- [#5548]: https://github.com/activeadmin/activeadmin/pull/5548
537
820
  [#5842]: https://github.com/activeadmin/activeadmin/pull/5842
538
821
  [#5854]: https://github.com/activeadmin/activeadmin/pull/5854
822
+ [#5855]: https://github.com/activeadmin/activeadmin/pull/5855
823
+ [#5867]: https://github.com/activeadmin/activeadmin/pull/5867
824
+ [#5870]: https://github.com/activeadmin/activeadmin/pull/5870
539
825
  [#5874]: https://github.com/activeadmin/activeadmin/pull/5874
540
826
  [#5877]: https://github.com/activeadmin/activeadmin/pull/5877
541
827
  [#5886]: https://github.com/activeadmin/activeadmin/pull/5886
542
- [#5870]: https://github.com/activeadmin/activeadmin/pull/5870
828
+ [#5887]: https://github.com/activeadmin/activeadmin/pull/5887
543
829
  [#5894]: https://github.com/activeadmin/activeadmin/pull/5894
544
830
  [#5895]: https://github.com/activeadmin/activeadmin/pull/5895
545
- [#5867]: https://github.com/activeadmin/activeadmin/pull/5867
546
- [#5887]: https://github.com/activeadmin/activeadmin/pull/5887
831
+ [#5929]: https://github.com/activeadmin/activeadmin/pull/5929
547
832
  [#5931]: https://github.com/activeadmin/activeadmin/pull/5931
548
833
  [#5938]: https://github.com/activeadmin/activeadmin/pull/5938
549
- [#5929]: https://github.com/activeadmin/activeadmin/pull/5929
550
834
  [#5943]: https://github.com/activeadmin/activeadmin/pull/5943
551
835
  [#5946]: https://github.com/activeadmin/activeadmin/pull/5946
552
836
  [#5956]: https://github.com/activeadmin/activeadmin/pull/5956
553
837
  [#5957]: https://github.com/activeadmin/activeadmin/pull/5957
838
+ [#5994]: https://github.com/activeadmin/activeadmin/pull/5994
554
839
  [#6000]: https://github.com/activeadmin/activeadmin/pull/6000
555
840
  [#6002]: https://github.com/activeadmin/activeadmin/pull/6002
556
841
  [#6047]: https://github.com/activeadmin/activeadmin/pull/6047
557
-
842
+ [#6086]: https://github.com/activeadmin/activeadmin/pull/6086
843
+ [#6099]: https://github.com/activeadmin/activeadmin/pull/6099
844
+ [#6124]: https://github.com/activeadmin/activeadmin/pull/6124
845
+ [#6149]: https://github.com/activeadmin/activeadmin/pull/6149
846
+ [#6195]: https://github.com/activeadmin/activeadmin/pull/6195
847
+ [#6198]: https://github.com/activeadmin/activeadmin/pull/6198
848
+ [#6210]: https://github.com/activeadmin/activeadmin/pull/6210
849
+ [#6221]: https://github.com/activeadmin/activeadmin/pull/6221
850
+ [#6232]: https://github.com/activeadmin/activeadmin/pull/6232
851
+ [#6249]: https://github.com/activeadmin/activeadmin/pull/6249
852
+ [#6315]: https://github.com/activeadmin/activeadmin/pull/6315
853
+ [#6318]: https://github.com/activeadmin/activeadmin/pull/6318
854
+ [#6341]: https://github.com/activeadmin/activeadmin/pull/6341
855
+ [#6342]: https://github.com/activeadmin/activeadmin/pull/6342
856
+ [#6368]: https://github.com/activeadmin/activeadmin/pull/6368
857
+ [#6393]: https://github.com/activeadmin/activeadmin/pull/6393
858
+ [#6422]: https://github.com/activeadmin/activeadmin/pull/6422
859
+ [#6451]: https://github.com/activeadmin/activeadmin/pull/6451
860
+ [#6460]: https://github.com/activeadmin/activeadmin/pull/6460
861
+ [#6462]: https://github.com/activeadmin/activeadmin/pull/6462
862
+ [#6482]: https://github.com/activeadmin/activeadmin/pull/6482
863
+ [#6487]: https://github.com/activeadmin/activeadmin/pull/6487
864
+ [#6523]: https://github.com/activeadmin/activeadmin/pull/6523
865
+ [#6535]: https://github.com/activeadmin/activeadmin/pull/6535
866
+ [#6536]: https://github.com/activeadmin/activeadmin/pull/6536
867
+ [#6548]: https://github.com/activeadmin/activeadmin/pull/6548
868
+ [#6583]: https://github.com/activeadmin/activeadmin/pull/6583
869
+ [#6584]: https://github.com/activeadmin/activeadmin/pull/6584
870
+ [#6872]: https://github.com/activeadmin/activeadmin/pull/6872
871
+ [#6873]: https://github.com/activeadmin/activeadmin/pull/6873
872
+ [#6884]: https://github.com/activeadmin/activeadmin/pull/6884
873
+ [#6906]: https://github.com/activeadmin/activeadmin/pull/6906
874
+ [#6915]: https://github.com/activeadmin/activeadmin/pull/6915
875
+ [#6916]: https://github.com/activeadmin/activeadmin/pull/6916
876
+ [#6922]: https://github.com/activeadmin/activeadmin/pull/6922
877
+ [#6936]: https://github.com/activeadmin/activeadmin/pull/6936
878
+ [#6954]: https://github.com/activeadmin/activeadmin/pull/6954
879
+ [#6959]: https://github.com/activeadmin/activeadmin/pull/6959
880
+ [#7002]: https://github.com/activeadmin/activeadmin/pull/7002
881
+ [#7013]: https://github.com/activeadmin/activeadmin/pull/7013
882
+ [#7095]: https://github.com/activeadmin/activeadmin/pull/7095
883
+ [#7127]: https://github.com/activeadmin/activeadmin/pull/7127
884
+ [#7144]: https://github.com/activeadmin/activeadmin/pull/7144
885
+ [#7170]: https://github.com/activeadmin/activeadmin/pull/7170
886
+ [#7181]: https://github.com/activeadmin/activeadmin/pull/7181
887
+ [#7205]: https://github.com/activeadmin/activeadmin/pull/7205
888
+ [#7235]: https://github.com/activeadmin/activeadmin/pull/7235
889
+ [#7236]: https://github.com/activeadmin/activeadmin/pull/7236
890
+ [#7262]: https://github.com/activeadmin/activeadmin/pull/7262
891
+ [#7293]: https://github.com/activeadmin/activeadmin/pull/7293
892
+ [#7332]: https://github.com/activeadmin/activeadmin/pull/7332
893
+ [#7336]: https://github.com/activeadmin/activeadmin/pull/7336
894
+ [#7340]: https://github.com/activeadmin/activeadmin/pull/7340
895
+ [#7341]: https://github.com/activeadmin/activeadmin/pull/7341
896
+ [#7349]: https://github.com/activeadmin/activeadmin/pull/7349
897
+ [#7350]: https://github.com/activeadmin/activeadmin/pull/7350
898
+ [#7377]: https://github.com/activeadmin/activeadmin/pull/7377
899
+ [#7384]: https://github.com/activeadmin/activeadmin/pull/7384
900
+ [#7394]: https://github.com/activeadmin/activeadmin/pull/7394
901
+ [#7453]: https://github.com/activeadmin/activeadmin/pull/7453
902
+ [#7475]: https://github.com/activeadmin/activeadmin/pull/7475
903
+ [#7476]: https://github.com/activeadmin/activeadmin/pull/7476
904
+ [#7479]: https://github.com/activeadmin/activeadmin/pull/7479
905
+ [#7487]: https://github.com/activeadmin/activeadmin/pull/7487
906
+ [#7488]: https://github.com/activeadmin/activeadmin/pull/7488
907
+ [#7541]: https://github.com/activeadmin/activeadmin/pull/7541
908
+ [#7556]: https://github.com/activeadmin/activeadmin/pull/7556
909
+ [#7599]: https://github.com/activeadmin/activeadmin/pull/7599
910
+ [#7653]: https://github.com/activeadmin/activeadmin/pull/7653
911
+ [#7772]: https://github.com/activeadmin/activeadmin/pull/7772
912
+ [#7920]: https://github.com/activeadmin/activeadmin/pull/7920
913
+ [#7944]: https://github.com/activeadmin/activeadmin/pull/7944
914
+ [#7984]: https://github.com/activeadmin/activeadmin/pull/7984
915
+ [#7985]: https://github.com/activeadmin/activeadmin/pull/7985
916
+ [#7986]: https://github.com/activeadmin/activeadmin/pull/7986
917
+ [#7993]: https://github.com/activeadmin/activeadmin/pull/7993
918
+ [#8009]: https://github.com/activeadmin/activeadmin/pull/8009
919
+ [#8010]: https://github.com/activeadmin/activeadmin/pull/8010
920
+ [#8098]: https://github.com/activeadmin/activeadmin/pull/8098
921
+ [#8102]: https://github.com/activeadmin/activeadmin/pull/8102
922
+ [#8105]: https://github.com/activeadmin/activeadmin/pull/8105
923
+ [#8106]: https://github.com/activeadmin/activeadmin/pull/8106
924
+ [#8163]: https://github.com/activeadmin/activeadmin/pull/8163
925
+ [#8164]: https://github.com/activeadmin/activeadmin/pull/8164
926
+ [#8165]: https://github.com/activeadmin/activeadmin/pull/8165
927
+ [#8166]: https://github.com/activeadmin/activeadmin/pull/8166
928
+ [#8167]: https://github.com/activeadmin/activeadmin/pull/8167
929
+ [#8310]: https://github.com/activeadmin/activeadmin/pull/8310
930
+ [#8311]: https://github.com/activeadmin/activeadmin/pull/8311
931
+ [#8329]: https://github.com/activeadmin/activeadmin/pull/8329
932
+ [#8349]: https://github.com/activeadmin/activeadmin/pull/8349
933
+ [#8405]: https://github.com/activeadmin/activeadmin/pull/8405
934
+ [#8412]: https://github.com/activeadmin/activeadmin/pull/8412
935
+
936
+ [@1000ship]: https://github.com/1000ship
558
937
  [@5t111111]: https://github.com/5t111111
559
938
  [@aarek]: https://github.com/aarek
560
939
  [@adler99]: https://github.com/adler99
940
+ [@agrobbin]: https://github.com/agrobbin
561
941
  [@ajw725]: https://github.com/ajw725
942
+ [@alejandroperea]: https://github.com/alejandroperea
562
943
  [@alex-bogomolov]: https://github.com/alex-bogomolov
563
944
  [@amiel]: https://github.com/amiel
945
+ [@amit]: https://github.com/amit
564
946
  [@amiuhle]: https://github.com/amiuhle
565
947
  [@andreslemik]: https://github.com/andreslemik
566
948
  [@bartoszkopinski]: https://github.com/bartoszkopinski
949
+ [@bliof]: https://github.com/bliof
567
950
  [@blocknotes]: https://github.com/blocknotes
568
951
  [@bolshakov]: https://github.com/bolshakov
952
+ [@brunoarueira]: https://github.com/brunoarueira
953
+ [@brunvez]: https://github.com/brunvez
569
954
  [@buren]: https://github.com/buren
955
+ [@carlottostromstedt]: https://github.com/carlottostromstedt
570
956
  [@chancancode]: https://github.com/chancancode
571
957
  [@chrp]: https://github.com/chrp
572
958
  [@chumakoff]: https://github.com/chumakoff
@@ -584,57 +970,100 @@ Please check [0-6-stable] for previous changes.
584
970
  [@FabioRos]: https://github.com/FabioRos
585
971
  [@faucct]: https://github.com/faucct
586
972
  [@Fivell]: https://github.com/Fivell
973
+ [@Fs00]: https://github.com/Fs00
974
+ [@fuzziness]: https://github.com/fuzziness
975
+ [@gabo-cs]: https://github.com/gabo-cs
976
+ [@giapnhdev]: https://github.com/giapnhdev
977
+ [@gigorok]: https://github.com/gigorok
587
978
  [@glebtv]: https://github.com/glebtv
588
979
  [@gonzedge]: https://github.com/gonzedge
589
980
  [@guigs]: https://github.com/guigs
590
981
  [@HappyKadaver]: https://github.com/HappyKadaver
982
+ [@hfl]: https://github.com/hfl
591
983
  [@imcvampire]: https://github.com/imcvampire
592
984
  [@innparusu95]: https://github.com/innparusu95
593
985
  [@ionut998]: https://github.com/ionut998
594
986
  [@irmela]: https://github.com/irmela
987
+ [@ispyropoulos]: https://github.com/ispyropoulos
988
+ [@Ivanov-Anton]: https://github.com/Ivanov-Anton
595
989
  [@jasl]: https://github.com/jasl
990
+ [@javawizard]: https://github.com/javawizard
596
991
  [@javierjulio]: https://github.com/javierjulio
597
992
  [@jawa]: https://github.com/jawa
993
+ [@jaynetics]: https://github.com/jaynetics
994
+ [@JewelSam]: https://github.com/JewelSam
598
995
  [@JiiHu]: https://github.com/JiiHu
996
+ [@jiikko]: https://github.com/jiikko
599
997
  [@johnnyshields]: https://github.com/johnnyshields
600
998
  [@jscheid]: https://github.com/jscheid
601
999
  [@juril33t]: https://github.com/juril33t
602
1000
  [@jwesorick]: https://github.com/jwesorick
1001
+ [@Karoid]: https://github.com/Karoid
603
1002
  [@kjeldahl]: https://github.com/kjeldahl
604
1003
  [@ko-lem]: https://github.com/ko-lem
605
1004
  [@kobeumut]: https://github.com/kobeumut
606
1005
  [@Kris-LIBIS]: https://github.com/Kris-LIBIS
1006
+ [@krzcho]: https://github.com/krzcho
607
1007
  [@kwent]: https://github.com/kwent
1008
+ [@lanzhiheng]: https://github.com/lanzhiheng
608
1009
  [@leio10]: https://github.com/leio10
1010
+ [@littleforest]: https://github.com/littleforest
1011
+ [@Looooong]: https://github.com/Looooong
1012
+ [@lubosch]: https://github.com/lubosch
609
1013
  [@markstory]: https://github.com/markstory
610
1014
  [@mauriciopasquier]: https://github.com/mauriciopasquier
611
1015
  [@mconiglio]: https://github.com/mconiglio
1016
+ [@mgrunberg]: https://github.com/mgrunberg
612
1017
  [@micred]: https://github.com/micred
613
1018
  [@mirelon]: https://github.com/mirelon
1019
+ [@MmKolodziej]: https://github.com/MmKolodziej
1020
+ [@mshalaby]: https://github.com/mshalaby
1021
+ [@munen]: https://github.com/munen
1022
+ [@mvz]: https://github.com/mvz
614
1023
  [@ndbroadbent]: https://github.com/ndbroadbent
1024
+ [@ngouy]: https://github.com/ngouy
615
1025
  [@Nguyenanh]: https://github.com/Nguyenanh
616
1026
  [@orkhan]: https://github.com/orkhan
617
1027
  [@panasyuk]: https://github.com/panasyuk
618
1028
  [@PChambino]: https://github.com/PChambino
1029
+ [@plashchynski]: https://github.com/plashchynski
619
1030
  [@potatosalad]: https://github.com/potatosalad
620
1031
  [@pranas]: https://github.com/pranas
1032
+ [@ray-curran]: https://github.com/ray-curran
621
1033
  [@renotocn]: https://github.com/renotocn
1034
+ [@rn0rno]: https://github.com/rn0rno
622
1035
  [@RobinvanderVliet]: https://github.com/RobinvanderVliet
623
1036
  [@rogerkk]: https://github.com/rogerkk
1037
+ [@roramirez]: https://github.com/roramirez
1038
+ [@rs-phunt]: https://github.com/rs-phunt
1039
+ [@sanfrecce-osaka]: https://github.com/sanfrecce-osaka
624
1040
  [@seanlinsley]: https://github.com/seanlinsley
1041
+ [@sergey-alekseev]: https://github.com/sergey-alekseev
625
1042
  [@sgara]: https://github.com/sgara
626
1043
  [@ShallmentMo]: https://github.com/ShallmentMo
627
1044
  [@shekibobo]: https://github.com/shekibobo
628
1045
  [@shouya]: https://github.com/shouya
1046
+ [@sjieg]: https://github.com/sjieg
1047
+ [@sprql]: https://github.com/sprql
629
1048
  [@stefsava]: https://github.com/stefsava
630
1049
  [@stereoscott]: https://github.com/stereoscott
1050
+ [@tagliala]: https://github.com/tagliala
1051
+ [@taralbass]: https://github.com/taralbass
1052
+ [@tf]: https://github.com/tf
631
1053
  [@tiagotex]: https://github.com/tiagotex
632
1054
  [@timoschilling]: https://github.com/timoschilling
633
1055
  [@TimPetricola]: https://github.com/TimPetricola
1056
+ [@timwis]: https://github.com/timwis
1057
+ [@tomgilligan]: https://github.com/tomgilligan
1058
+ [@TonyArra]: https://github.com/TonyArra
1059
+ [@tordans]: https://github.com/tordans
1060
+ [@tvziet]: https://github.com/tvziet
1061
+ [@utkarsh2102]: https://github.com/utkarsh2102
634
1062
  [@varyonic]: https://github.com/varyonic
635
1063
  [@vcsjones]: https://github.com/vcsjones
636
1064
  [@vfonic]: https://github.com/vfonic
637
1065
  [@violeta-p]: https://github.com/violeta-p
1066
+ [@vlad-psh]: https://github.com/vlad-psh
638
1067
  [@WaKeMaTTa]: https://github.com/WaKeMaTTa
639
1068
  [@wasifhossain]: https://github.com/wasifhossain
640
1069
  [@westonganger]: https://github.com/westonganger