activeadmin 1.0.0 → 2.13.1

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 (618) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +851 -68
  3. data/CODE_OF_CONDUCT.md +64 -12
  4. data/CONTRIBUTING.md +80 -82
  5. data/README.md +73 -19
  6. data/app/assets/javascripts/active_admin/base.js +524 -0
  7. data/app/assets/stylesheets/active_admin/_base.scss +53 -37
  8. data/app/assets/stylesheets/active_admin/_forms.scss +7 -35
  9. data/app/assets/stylesheets/active_admin/_header.scss +40 -8
  10. data/app/assets/stylesheets/active_admin/_mixins.scss +1 -1
  11. data/app/assets/stylesheets/active_admin/_normalize.scss +349 -0
  12. data/app/assets/stylesheets/active_admin/{print.scss → _print.scss} +3 -4
  13. data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -5
  14. data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
  15. data/app/assets/stylesheets/active_admin/components/_date_picker.scss +1 -2
  16. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +0 -1
  17. data/app/assets/stylesheets/active_admin/components/_pagination.scss +11 -0
  18. data/app/assets/stylesheets/active_admin/components/_scopes.scss +3 -0
  19. data/app/assets/stylesheets/active_admin/components/_status_tags.scss +0 -4
  20. data/app/assets/stylesheets/active_admin/components/_tables.scss +5 -3
  21. data/app/assets/stylesheets/active_admin/components/_tabs.scss +1 -1
  22. data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -10
  23. data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +1 -1
  24. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +17 -0
  25. data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +1 -1
  26. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -1
  27. data/app/javascript/active_admin/base.js +28 -0
  28. data/app/javascript/active_admin/ext/jquery-ui.js +7 -0
  29. data/app/javascript/active_admin/ext/jquery.js +9 -0
  30. data/app/javascript/active_admin/initializers/batch-actions.js +61 -0
  31. data/app/javascript/active_admin/initializers/checkbox-toggler.js +3 -0
  32. data/app/javascript/active_admin/initializers/datepicker.js +16 -0
  33. data/app/javascript/active_admin/initializers/dropdown-menu.js +9 -0
  34. data/app/javascript/active_admin/initializers/filters.js +10 -0
  35. data/app/javascript/active_admin/initializers/has-many.js +98 -0
  36. data/app/javascript/active_admin/initializers/per-page.js +13 -0
  37. data/app/javascript/active_admin/initializers/table-checkbox-toggler.js +3 -0
  38. data/app/javascript/active_admin/initializers/tabs.js +6 -0
  39. data/app/javascript/active_admin/lib/checkbox-toggler.js +49 -0
  40. data/app/javascript/active_admin/lib/dropdown-menu.js +116 -0
  41. data/app/javascript/active_admin/lib/filters.js +39 -0
  42. data/app/javascript/active_admin/lib/modal-dialog.js +63 -0
  43. data/app/javascript/active_admin/lib/per-page.js +38 -0
  44. data/app/javascript/active_admin/lib/table-checkbox-toggler.js +38 -0
  45. data/app/javascript/active_admin/lib/utils.js +40 -0
  46. data/app/views/active_admin/devise/confirmations/new.html.erb +2 -2
  47. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
  48. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
  49. data/app/views/active_admin/devise/passwords/edit.html.erb +2 -2
  50. data/app/views/active_admin/devise/passwords/new.html.erb +2 -2
  51. data/app/views/active_admin/devise/registrations/new.html.erb +2 -3
  52. data/app/views/active_admin/devise/sessions/new.html.erb +2 -2
  53. data/app/views/active_admin/devise/shared/_error_messages.html.erb +15 -0
  54. data/app/views/active_admin/devise/shared/_links.erb +12 -6
  55. data/app/views/active_admin/devise/unlocks/new.html.erb +2 -2
  56. data/app/views/active_admin/page/index.html.arb +1 -0
  57. data/app/views/active_admin/resource/edit.html.arb +1 -0
  58. data/app/views/active_admin/resource/index.html.arb +1 -0
  59. data/app/views/active_admin/resource/new.html.arb +1 -0
  60. data/app/views/active_admin/resource/show.html.arb +1 -0
  61. data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
  62. data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
  63. data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
  64. data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
  65. data/app/views/kaminari/active_admin/_page.html.erb +12 -0
  66. data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
  67. data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
  68. data/app/views/kaminari/active_admin_countless/_first_page.html.erb +11 -0
  69. data/app/views/kaminari/active_admin_countless/_gap.html.erb +8 -0
  70. data/app/views/kaminari/active_admin_countless/_next_page.html.erb +11 -0
  71. data/app/views/kaminari/active_admin_countless/_page.html.erb +12 -0
  72. data/app/views/kaminari/active_admin_countless/_paginator.html.erb +24 -0
  73. data/app/views/kaminari/active_admin_countless/_prev_page.html.erb +11 -0
  74. data/app/views/layouts/active_admin.html.arb +1 -0
  75. data/app/views/layouts/active_admin_logged_out.html.erb +17 -7
  76. data/config/locales/ar.yml +10 -11
  77. data/config/locales/az.yml +138 -0
  78. data/config/locales/bg.yml +1 -3
  79. data/config/locales/bs.yml +1 -2
  80. data/config/locales/ca.yml +1 -3
  81. data/config/locales/cs.yml +1 -2
  82. data/config/locales/da.yml +2 -3
  83. data/config/locales/de-CH.yml +2 -3
  84. data/config/locales/de.yml +30 -3
  85. data/config/locales/el.yml +2 -3
  86. data/config/locales/en-CA.yml +139 -0
  87. data/config/locales/en-GB.yml +46 -5
  88. data/config/locales/en.yml +32 -8
  89. data/config/locales/eo.yml +145 -0
  90. data/config/locales/es-MX.yml +6 -3
  91. data/config/locales/es.yml +36 -10
  92. data/config/locales/fa.yml +1 -2
  93. data/config/locales/fi.yml +2 -3
  94. data/config/locales/fr.yml +15 -7
  95. data/config/locales/he.yml +53 -7
  96. data/config/locales/hr.yml +1 -2
  97. data/config/locales/hu.yml +5 -2
  98. data/config/locales/id.yml +2 -3
  99. data/config/locales/it.yml +33 -7
  100. data/config/locales/ja.yml +9 -5
  101. data/config/locales/ko.yml +2 -3
  102. data/config/locales/lt.yml +27 -6
  103. data/config/locales/lv.yml +3 -4
  104. data/config/locales/mk.yml +134 -0
  105. data/config/locales/nb.yml +16 -7
  106. data/config/locales/nl.yml +14 -4
  107. data/config/locales/pl.yml +75 -5
  108. data/config/locales/pt-BR.yml +10 -3
  109. data/config/locales/pt-PT.yml +1 -2
  110. data/config/locales/ro.yml +4 -4
  111. data/config/locales/ru.yml +4 -3
  112. data/config/locales/sk.yml +60 -2
  113. data/config/locales/sv-SE.yml +4 -3
  114. data/config/locales/tr.yml +10 -2
  115. data/config/locales/uk.yml +4 -3
  116. data/config/locales/vi.yml +53 -12
  117. data/config/locales/zh-CN.yml +34 -7
  118. data/config/locales/zh-TW.yml +2 -3
  119. data/docs/.gitignore +1 -0
  120. data/docs/0-installation.md +42 -15
  121. data/docs/1-general-configuration.md +46 -4
  122. data/docs/10-custom-pages.md +24 -5
  123. data/docs/11-decorators.md +17 -5
  124. data/docs/12-arbre-components.md +47 -9
  125. data/docs/13-authorization-adapter.md +69 -35
  126. data/docs/14-gotchas.md +41 -22
  127. data/docs/2-resource-customization.md +57 -20
  128. data/docs/3-index-pages/custom-index.md +2 -1
  129. data/docs/3-index-pages/index-as-block.md +0 -5
  130. data/docs/3-index-pages/index-as-blog.md +1 -6
  131. data/docs/3-index-pages/index-as-grid.md +0 -5
  132. data/docs/3-index-pages/index-as-table.md +13 -14
  133. data/docs/3-index-pages.md +47 -12
  134. data/docs/4-csv-format.md +2 -1
  135. data/docs/5-forms.md +68 -24
  136. data/docs/6-show-pages.md +14 -1
  137. data/docs/7-sidebars.md +2 -1
  138. data/docs/8-custom-actions.md +16 -2
  139. data/docs/9-batch-actions.md +5 -3
  140. data/docs/CNAME +1 -1
  141. data/docs/Gemfile +4 -2
  142. data/docs/Gemfile.lock +283 -0
  143. data/docs/_config.yml +3 -1
  144. data/docs/_includes/toc.html +1 -1
  145. data/docs/_includes/top-menu.html +9 -1
  146. data/docs/documentation.md +21 -23
  147. data/docs/images/tidelift.svg +14 -0
  148. data/docs/index.html +110 -9
  149. data/docs/stylesheets/main.css +55 -2
  150. data/lib/active_admin/abstract_view_factory.rb +14 -51
  151. data/lib/active_admin/application.rb +65 -170
  152. data/lib/active_admin/application_settings.rb +43 -0
  153. data/lib/active_admin/asset_registration.rb +1 -0
  154. data/lib/active_admin/authorization_adapter.rb +4 -6
  155. data/lib/active_admin/base_controller/authorization.rb +18 -19
  156. data/lib/active_admin/base_controller/menu.rb +10 -9
  157. data/lib/active_admin/base_controller.rb +12 -12
  158. data/lib/active_admin/batch_actions/controller.rb +6 -5
  159. data/lib/active_admin/batch_actions/resource_extension.rb +16 -10
  160. data/lib/active_admin/batch_actions/views/batch_action_form.rb +4 -3
  161. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +7 -6
  162. data/lib/active_admin/batch_actions/views/selection_cells.rb +8 -6
  163. data/lib/active_admin/batch_actions.rb +1 -0
  164. data/lib/active_admin/callbacks.rb +2 -1
  165. data/lib/active_admin/cancan_adapter.rb +2 -1
  166. data/lib/active_admin/collection_decorator.rb +32 -0
  167. data/lib/active_admin/component.rb +1 -0
  168. data/lib/active_admin/controller_action.rb +3 -1
  169. data/lib/active_admin/csv_builder.rb +17 -23
  170. data/lib/active_admin/dependency.rb +15 -78
  171. data/lib/active_admin/deprecation.rb +1 -25
  172. data/lib/active_admin/devise.rb +18 -7
  173. data/lib/active_admin/dsl.rb +5 -11
  174. data/lib/active_admin/dynamic_setting.rb +39 -0
  175. data/lib/active_admin/dynamic_settings_node.rb +29 -0
  176. data/lib/active_admin/engine.rb +16 -7
  177. data/lib/active_admin/error.rb +5 -4
  178. data/lib/active_admin/filters/active.rb +14 -14
  179. data/lib/active_admin/filters/active_filter.rb +124 -0
  180. data/lib/active_admin/filters/active_sidebar.rb +28 -0
  181. data/lib/active_admin/filters/dsl.rb +1 -0
  182. data/lib/active_admin/filters/forms.rb +12 -9
  183. data/lib/active_admin/filters/formtastic_addons.rb +3 -7
  184. data/lib/active_admin/filters/resource_extension.rb +32 -35
  185. data/lib/active_admin/filters.rb +8 -5
  186. data/lib/active_admin/form_builder.rb +110 -70
  187. data/lib/active_admin/generators/boilerplate.rb +13 -4
  188. data/lib/active_admin/helpers/collection.rb +2 -0
  189. data/lib/active_admin/helpers/i18n.rb +1 -0
  190. data/lib/active_admin/helpers/optional_display.rb +3 -2
  191. data/lib/active_admin/helpers/routes/url_helpers.rb +1 -0
  192. data/lib/active_admin/helpers/scope_chain.rb +2 -0
  193. data/lib/active_admin/inputs/datepicker_input.rb +14 -6
  194. data/lib/active_admin/inputs/filters/base/search_method_select.rb +7 -6
  195. data/lib/active_admin/inputs/filters/base.rb +2 -1
  196. data/lib/active_admin/inputs/filters/boolean_input.rb +2 -1
  197. data/lib/active_admin/inputs/filters/check_boxes_input.rb +2 -1
  198. data/lib/active_admin/inputs/filters/date_picker_input.rb +1 -0
  199. data/lib/active_admin/inputs/filters/date_range_input.rb +24 -12
  200. data/lib/active_admin/inputs/filters/numeric_input.rb +1 -0
  201. data/lib/active_admin/inputs/filters/select_input.rb +8 -3
  202. data/lib/active_admin/inputs/filters/string_input.rb +1 -0
  203. data/lib/active_admin/inputs/filters/text_input.rb +1 -1
  204. data/lib/active_admin/inputs.rb +1 -0
  205. data/lib/active_admin/localizers/resource_localizer.rb +4 -3
  206. data/lib/active_admin/localizers.rb +2 -1
  207. data/lib/active_admin/menu.rb +13 -15
  208. data/lib/active_admin/menu_collection.rb +1 -2
  209. data/lib/active_admin/menu_item.rb +11 -38
  210. data/lib/active_admin/namespace.rb +34 -21
  211. data/lib/active_admin/namespace_settings.rb +127 -0
  212. data/lib/active_admin/order_clause.rb +4 -3
  213. data/lib/active_admin/orm/active_record/comments/comment.rb +6 -9
  214. data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +1 -0
  215. data/lib/active_admin/orm/active_record/comments/resource_helper.rb +1 -0
  216. data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +1 -0
  217. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +37 -24
  218. data/lib/active_admin/orm/active_record/comments/views.rb +3 -2
  219. data/lib/active_admin/orm/active_record/comments.rb +35 -23
  220. data/lib/active_admin/orm/active_record.rb +2 -1
  221. data/lib/active_admin/orm/mongoid.rb +1 -0
  222. data/lib/active_admin/page.rb +2 -1
  223. data/lib/active_admin/page_controller.rb +2 -1
  224. data/lib/active_admin/page_dsl.rb +2 -1
  225. data/lib/active_admin/page_presenter.rb +3 -1
  226. data/lib/active_admin/pundit_adapter.rb +73 -16
  227. data/lib/active_admin/resource/action_items.rb +16 -6
  228. data/lib/active_admin/resource/attributes.rb +10 -6
  229. data/lib/active_admin/resource/belongs_to.rb +9 -3
  230. data/lib/active_admin/resource/controllers.rb +2 -1
  231. data/lib/active_admin/resource/includes.rb +1 -0
  232. data/lib/active_admin/resource/menu.rb +6 -5
  233. data/lib/active_admin/resource/model.rb +16 -0
  234. data/lib/active_admin/resource/naming.rb +6 -5
  235. data/lib/active_admin/resource/ordering.rb +1 -0
  236. data/lib/active_admin/resource/page_presenters.rb +2 -1
  237. data/lib/active_admin/resource/pagination.rb +1 -0
  238. data/lib/active_admin/resource/routes.rb +26 -15
  239. data/lib/active_admin/resource/scope_to.rb +8 -7
  240. data/lib/active_admin/resource/scopes.rb +5 -3
  241. data/lib/active_admin/resource/sidebars.rb +3 -2
  242. data/lib/active_admin/resource.rb +37 -22
  243. data/lib/active_admin/resource_collection.rb +3 -2
  244. data/lib/active_admin/resource_controller/action_builder.rb +11 -0
  245. data/lib/active_admin/resource_controller/data_access.rb +43 -14
  246. data/lib/active_admin/resource_controller/decorators.rb +10 -31
  247. data/lib/active_admin/resource_controller/polymorphic_routes.rb +38 -0
  248. data/lib/active_admin/resource_controller/resource_class_methods.rb +3 -0
  249. data/lib/active_admin/resource_controller/scoping.rb +2 -1
  250. data/lib/active_admin/resource_controller/sidebars.rb +1 -0
  251. data/lib/active_admin/resource_controller/streaming.rb +9 -7
  252. data/lib/active_admin/resource_controller.rb +15 -11
  253. data/lib/active_admin/resource_dsl.rb +18 -28
  254. data/lib/active_admin/router.rb +91 -84
  255. data/lib/active_admin/scope.rb +22 -13
  256. data/lib/active_admin/settings_node.rb +20 -0
  257. data/lib/active_admin/sidebar_section.rb +4 -1
  258. data/lib/active_admin/version.rb +2 -1
  259. data/lib/active_admin/view_factory.rb +18 -17
  260. data/lib/active_admin/view_helpers/active_admin_application_helper.rb +1 -0
  261. data/lib/active_admin/view_helpers/auto_link_helper.rb +1 -0
  262. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +6 -5
  263. data/lib/active_admin/view_helpers/display_helper.rb +26 -9
  264. data/lib/active_admin/view_helpers/download_format_links_helper.rb +3 -1
  265. data/lib/active_admin/view_helpers/fields_for.rb +3 -2
  266. data/lib/active_admin/view_helpers/flash_helper.rb +1 -0
  267. data/lib/active_admin/view_helpers/form_helper.rb +2 -1
  268. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +4 -0
  269. data/lib/active_admin/view_helpers/scope_name_helper.rb +17 -0
  270. data/lib/active_admin/view_helpers/sidebar_helper.rb +1 -0
  271. data/lib/active_admin/view_helpers/title_helper.rb +1 -0
  272. data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -0
  273. data/lib/active_admin/view_helpers.rb +3 -1
  274. data/lib/active_admin/views/action_items.rb +2 -1
  275. data/lib/active_admin/views/components/active_admin_form.rb +15 -9
  276. data/lib/active_admin/views/components/active_filters_sidebar_content.rb +59 -0
  277. data/lib/active_admin/views/components/attributes_table.rb +9 -8
  278. data/lib/active_admin/views/components/blank_slate.rb +2 -1
  279. data/lib/active_admin/views/components/columns.rb +1 -0
  280. data/lib/active_admin/views/components/dropdown_menu.rb +9 -11
  281. data/lib/active_admin/views/components/index_list.rb +4 -5
  282. data/lib/active_admin/views/components/menu.rb +33 -0
  283. data/lib/active_admin/views/components/menu_item.rb +59 -0
  284. data/lib/active_admin/views/components/paginated_collection.rb +22 -20
  285. data/lib/active_admin/views/components/panel.rb +2 -1
  286. data/lib/active_admin/views/components/scopes.rb +19 -17
  287. data/lib/active_admin/views/components/sidebar.rb +14 -0
  288. data/lib/active_admin/views/components/sidebar_section.rb +1 -0
  289. data/lib/active_admin/views/components/site_title.rb +7 -7
  290. data/lib/active_admin/views/components/status_tag.rb +19 -23
  291. data/lib/active_admin/views/components/table_for.rb +22 -29
  292. data/lib/active_admin/views/components/tabs.rb +18 -5
  293. data/lib/active_admin/views/components/unsupported_browser.rb +1 -0
  294. data/lib/active_admin/views/footer.rb +6 -8
  295. data/lib/active_admin/views/header.rb +4 -16
  296. data/lib/active_admin/views/index_as_block.rb +1 -0
  297. data/lib/active_admin/views/index_as_blog.rb +4 -4
  298. data/lib/active_admin/views/index_as_grid.rb +27 -26
  299. data/lib/active_admin/views/index_as_table.rb +53 -26
  300. data/lib/active_admin/views/pages/base.rb +47 -63
  301. data/lib/active_admin/views/pages/form.rb +1 -0
  302. data/lib/active_admin/views/pages/index.rb +16 -13
  303. data/lib/active_admin/views/pages/layout.rb +1 -0
  304. data/lib/active_admin/views/pages/page.rb +1 -0
  305. data/lib/active_admin/views/pages/show.rb +7 -1
  306. data/lib/active_admin/views/tabbed_navigation.rb +5 -59
  307. data/lib/active_admin/views/title_bar.rb +6 -5
  308. data/lib/active_admin/views.rb +2 -1
  309. data/lib/active_admin.rb +70 -68
  310. data/lib/activeadmin.rb +2 -1
  311. data/lib/generators/active_admin/assets/assets_generator.rb +3 -2
  312. data/lib/generators/active_admin/assets/templates/active_admin.js +1 -0
  313. data/lib/generators/active_admin/assets/templates/active_admin.scss +2 -2
  314. data/lib/generators/active_admin/devise/devise_generator.rb +7 -6
  315. data/lib/generators/active_admin/install/install_generator.rb +19 -8
  316. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +45 -3
  317. data/lib/generators/active_admin/install/templates/{admin_user.rb.erb → admin_users.rb.erb} +1 -1
  318. data/lib/generators/active_admin/install/templates/dashboard.rb +3 -3
  319. data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb.erb +1 -15
  320. data/lib/generators/active_admin/page/page_generator.rb +2 -1
  321. data/lib/generators/active_admin/page/templates/page.rb +1 -0
  322. data/lib/generators/active_admin/resource/resource_generator.rb +5 -4
  323. data/lib/generators/active_admin/resource/templates/admin.rb.erb +40 -37
  324. data/lib/generators/active_admin/webpacker/plugins/jquery.js +7 -0
  325. data/lib/generators/active_admin/webpacker/templates/active_admin.js +5 -0
  326. data/lib/generators/active_admin/webpacker/templates/active_admin.scss +17 -0
  327. data/lib/generators/active_admin/webpacker/templates/print.scss +2 -0
  328. data/lib/generators/active_admin/webpacker/webpacker_generator.rb +27 -0
  329. data/lib/ransack_ext.rb +10 -9
  330. data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
  331. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
  332. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
  333. data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
  334. data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +80 -0
  335. data/vendor/assets/javascripts/jquery-ui/form.js +22 -0
  336. data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
  337. data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
  338. data/vendor/assets/javascripts/jquery-ui/labels.js +65 -0
  339. data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
  340. data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
  341. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
  342. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
  343. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
  344. data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
  345. data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
  346. data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
  347. data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
  348. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
  349. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +291 -0
  350. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
  351. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
  352. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
  353. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
  354. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
  355. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
  356. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
  357. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
  358. metadata +158 -580
  359. data/.gitignore +0 -49
  360. data/.hound.yml +0 -14
  361. data/.rubocop.yml +0 -27
  362. data/.travis.yml +0 -66
  363. data/.yardopts +0 -8
  364. data/Appraisals +0 -41
  365. data/Gemfile +0 -49
  366. data/Rakefile +0 -65
  367. data/activeadmin.gemspec +0 -34
  368. data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
  369. data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
  370. data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
  371. data/app/assets/images/active_admin/orderable.png +0 -0
  372. data/app/assets/javascripts/active_admin/base.js.coffee +0 -9
  373. data/app/assets/javascripts/active_admin/ext/jquery-ui.js.coffee +0 -6
  374. data/app/assets/javascripts/active_admin/ext/jquery.js.coffee +0 -7
  375. data/app/assets/javascripts/active_admin/initializers/batch_actions.js.coffee +0 -7
  376. data/app/assets/javascripts/active_admin/initializers/datepicker.js.coffee +0 -10
  377. data/app/assets/javascripts/active_admin/initializers/filters.js.coffee +0 -22
  378. data/app/assets/javascripts/active_admin/initializers/tabs.js.coffee +0 -3
  379. data/app/assets/javascripts/active_admin/jquery_ui.js.erb +0 -18
  380. data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +0 -39
  381. data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +0 -44
  382. data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +0 -101
  383. data/app/assets/javascripts/active_admin/lib/flash.js.coffee +0 -19
  384. data/app/assets/javascripts/active_admin/lib/has_many.js.coffee +0 -79
  385. data/app/assets/javascripts/active_admin/lib/modal_dialog.js.coffee +0 -45
  386. data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +0 -42
  387. data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +0 -24
  388. data/app/assets/stylesheets/active_admin/mixins/_reset.scss +0 -165
  389. data/codecov.yml +0 -23
  390. data/cucumber.yml +0 -3
  391. data/features/action_item.feature +0 -73
  392. data/features/authorization.feature +0 -64
  393. data/features/authorization_cancan.feature +0 -52
  394. data/features/authorization_pundit.feature +0 -37
  395. data/features/belongs_to.feature +0 -124
  396. data/features/breadcrumb.feature +0 -75
  397. data/features/comments/commenting.feature +0 -158
  398. data/features/comments/viewing_index.feature +0 -19
  399. data/features/create_another.feature +0 -55
  400. data/features/dashboard.feature +0 -16
  401. data/features/decorators.feature +0 -43
  402. data/features/development_reloading.feature +0 -28
  403. data/features/edit_page.feature +0 -116
  404. data/features/favicon.feature +0 -20
  405. data/features/first_boot.feature +0 -16
  406. data/features/footer.feature +0 -28
  407. data/features/global_navigation.feature +0 -29
  408. data/features/i18n.feature +0 -55
  409. data/features/index/batch_actions.feature +0 -218
  410. data/features/index/filters.feature +0 -199
  411. data/features/index/format_as_csv.feature +0 -203
  412. data/features/index/formats.feature +0 -88
  413. data/features/index/index_as_block.feature +0 -15
  414. data/features/index/index_as_blog.feature +0 -69
  415. data/features/index/index_as_grid.feature +0 -45
  416. data/features/index/index_as_table.feature +0 -291
  417. data/features/index/index_blank_slate.feature +0 -83
  418. data/features/index/index_parameters.feature +0 -75
  419. data/features/index/index_scope_to.feature +0 -56
  420. data/features/index/index_scopes.feature +0 -270
  421. data/features/index/page_title.feature +0 -41
  422. data/features/index/pagination.feature +0 -63
  423. data/features/index/switch_index_view.feature +0 -73
  424. data/features/menu.feature +0 -72
  425. data/features/meta_tags.feature +0 -21
  426. data/features/new_page.feature +0 -107
  427. data/features/registering_assets.feature +0 -34
  428. data/features/registering_pages.feature +0 -237
  429. data/features/registering_resources.feature +0 -33
  430. data/features/renamed_resource.feature +0 -30
  431. data/features/root_to.feature +0 -17
  432. data/features/show/columns.feature +0 -40
  433. data/features/show/default_content.feature +0 -44
  434. data/features/show/page_title.feature +0 -58
  435. data/features/show/tabs.feature +0 -27
  436. data/features/sidebar_sections.feature +0 -210
  437. data/features/site_title.feature +0 -47
  438. data/features/specifying_actions.feature +0 -118
  439. data/features/step_definitions/action_item_steps.rb +0 -7
  440. data/features/step_definitions/action_link_steps.rb +0 -20
  441. data/features/step_definitions/additional_web_steps.rb +0 -81
  442. data/features/step_definitions/asset_steps.rb +0 -15
  443. data/features/step_definitions/attribute_steps.rb +0 -18
  444. data/features/step_definitions/batch_action_steps.rb +0 -81
  445. data/features/step_definitions/blog_steps.rb +0 -3
  446. data/features/step_definitions/breadcrumb_steps.rb +0 -3
  447. data/features/step_definitions/column_steps.rb +0 -8
  448. data/features/step_definitions/comment_steps.rb +0 -12
  449. data/features/step_definitions/configuration_steps.rb +0 -100
  450. data/features/step_definitions/dashboard_steps.rb +0 -15
  451. data/features/step_definitions/factory_steps.rb +0 -35
  452. data/features/step_definitions/filter_steps.rb +0 -39
  453. data/features/step_definitions/flash_steps.rb +0 -11
  454. data/features/step_definitions/footer_steps.rb +0 -11
  455. data/features/step_definitions/format_steps.rb +0 -56
  456. data/features/step_definitions/i18n_steps.rb +0 -11
  457. data/features/step_definitions/index_scope_steps.rb +0 -25
  458. data/features/step_definitions/index_views_steps.rb +0 -3
  459. data/features/step_definitions/layout_steps.rb +0 -3
  460. data/features/step_definitions/member_link_steps.rb +0 -7
  461. data/features/step_definitions/menu_steps.rb +0 -11
  462. data/features/step_definitions/meta_tag_steps.rb +0 -3
  463. data/features/step_definitions/pagination_steps.rb +0 -15
  464. data/features/step_definitions/sidebar_steps.rb +0 -11
  465. data/features/step_definitions/site_title_steps.rb +0 -17
  466. data/features/step_definitions/tab_steps.rb +0 -8
  467. data/features/step_definitions/table_steps.rb +0 -116
  468. data/features/step_definitions/user_steps.rb +0 -52
  469. data/features/step_definitions/web_steps.rb +0 -86
  470. data/features/sti_resource.feature +0 -65
  471. data/features/strong_parameters.feature +0 -69
  472. data/features/support/env.rb +0 -121
  473. data/features/support/paths.rb +0 -73
  474. data/features/support/selectors.rb +0 -45
  475. data/features/users/logging_in.feature +0 -36
  476. data/features/users/logging_out.feature +0 -13
  477. data/features/users/resetting_password.feature +0 -34
  478. data/gemfiles/rails_42.gemfile +0 -45
  479. data/gemfiles/rails_50.gemfile +0 -45
  480. data/gemfiles/rails_51.gemfile +0 -45
  481. data/lib/active_admin/event.rb +0 -24
  482. data/lib/active_admin/filters/humanized.rb +0 -68
  483. data/lib/active_admin/helpers/settings.rb +0 -115
  484. data/lib/active_admin/reloader.rb +0 -25
  485. data/lib/bug_report_templates/rails_5_master.rb +0 -118
  486. data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +0 -1
  487. data/spec/bug_report_templates_spec.rb +0 -27
  488. data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +0 -50
  489. data/spec/javascripts/coffeescripts/jquery.aa.flash.js.coffee +0 -25
  490. data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +0 -34
  491. data/spec/javascripts/fixtures/checkboxes.html +0 -9
  492. data/spec/javascripts/fixtures/flashes.html +0 -2
  493. data/spec/javascripts/fixtures/table_checkboxes.html +0 -17
  494. data/spec/javascripts/helpers/SpecHelper.js +0 -3
  495. data/spec/javascripts/support/jasmine.yml +0 -74
  496. data/spec/javascripts/support/jasmine_runner.rb +0 -19
  497. data/spec/rails_helper.rb +0 -62
  498. data/spec/requests/default_namespace_spec.rb +0 -81
  499. data/spec/requests/javascript_spec.rb +0 -22
  500. data/spec/requests/memory_spec.rb +0 -25
  501. data/spec/requests/stylesheets_spec.rb +0 -18
  502. data/spec/spec_helper.rb +0 -12
  503. data/spec/support/active_admin_integration_spec_helper.rb +0 -73
  504. data/spec/support/active_admin_request_helpers.rb +0 -39
  505. data/spec/support/jslint.yml +0 -80
  506. data/spec/support/rails_template.rb +0 -182
  507. data/spec/support/rails_template_with_data.rb +0 -68
  508. data/spec/support/templates/admin/stores.rb +0 -7
  509. data/spec/support/templates/en.yml +0 -8
  510. data/spec/support/templates/manifest.js +0 -3
  511. data/spec/support/templates/policies/active_admin/comment_policy.rb +0 -9
  512. data/spec/support/templates/policies/active_admin/page_policy.rb +0 -18
  513. data/spec/support/templates/policies/admin_user_policy.rb +0 -11
  514. data/spec/support/templates/policies/application_policy.rb +0 -45
  515. data/spec/support/templates/policies/category_policy.rb +0 -7
  516. data/spec/support/templates/policies/post_policy.rb +0 -15
  517. data/spec/support/templates/policies/store_policy.rb +0 -11
  518. data/spec/support/templates/policies/user_policy.rb +0 -11
  519. data/spec/support/templates/post_decorator.rb +0 -11
  520. data/spec/unit/abstract_view_factory_spec.rb +0 -79
  521. data/spec/unit/action_builder_spec.rb +0 -125
  522. data/spec/unit/active_admin_spec.rb +0 -11
  523. data/spec/unit/application_spec.rb +0 -180
  524. data/spec/unit/asset_registration_spec.rb +0 -52
  525. data/spec/unit/authorization/authorization_adapter_spec.rb +0 -61
  526. data/spec/unit/authorization/controller_authorization_spec.rb +0 -43
  527. data/spec/unit/authorization/index_overriding_spec.rb +0 -23
  528. data/spec/unit/auto_link_spec.rb +0 -93
  529. data/spec/unit/batch_actions/resource_spec.rb +0 -84
  530. data/spec/unit/batch_actions/settings_spec.rb +0 -61
  531. data/spec/unit/belongs_to_spec.rb +0 -77
  532. data/spec/unit/cancan_adapter_spec.rb +0 -43
  533. data/spec/unit/comments_spec.rb +0 -176
  534. data/spec/unit/component_spec.rb +0 -18
  535. data/spec/unit/config_shared_examples.rb +0 -59
  536. data/spec/unit/controller_filters_spec.rb +0 -41
  537. data/spec/unit/csv_builder_spec.rb +0 -306
  538. data/spec/unit/dependency_spec.rb +0 -135
  539. data/spec/unit/devise_spec.rb +0 -110
  540. data/spec/unit/dsl_spec.rb +0 -122
  541. data/spec/unit/filters/active_spec.rb +0 -14
  542. data/spec/unit/filters/filter_form_builder_spec.rb +0 -500
  543. data/spec/unit/filters/humanized_spec.rb +0 -64
  544. data/spec/unit/filters/resource_spec.rb +0 -128
  545. data/spec/unit/form_builder_spec.rb +0 -990
  546. data/spec/unit/generators/install_spec.rb +0 -31
  547. data/spec/unit/helpers/collection_spec.rb +0 -68
  548. data/spec/unit/helpers/scope_chain_spec.rb +0 -36
  549. data/spec/unit/helpers/settings_spec.rb +0 -30
  550. data/spec/unit/i18n_spec.rb +0 -12
  551. data/spec/unit/localizers/resource_localizer_spec.rb +0 -36
  552. data/spec/unit/menu_collection_spec.rb +0 -62
  553. data/spec/unit/menu_item_spec.rb +0 -143
  554. data/spec/unit/menu_spec.rb +0 -71
  555. data/spec/unit/namespace/authorization_spec.rb +0 -27
  556. data/spec/unit/namespace/register_page_spec.rb +0 -99
  557. data/spec/unit/namespace/register_resource_spec.rb +0 -162
  558. data/spec/unit/namespace_spec.rb +0 -125
  559. data/spec/unit/order_clause_spec.rb +0 -81
  560. data/spec/unit/page_controller_spec.rb +0 -5
  561. data/spec/unit/page_spec.rb +0 -131
  562. data/spec/unit/pretty_format_spec.rb +0 -82
  563. data/spec/unit/pundit_adapter_spec.rb +0 -98
  564. data/spec/unit/resource/action_items_spec.rb +0 -65
  565. data/spec/unit/resource/attributes_spec.rb +0 -50
  566. data/spec/unit/resource/includes_spec.rb +0 -21
  567. data/spec/unit/resource/menu_spec.rb +0 -18
  568. data/spec/unit/resource/naming_spec.rb +0 -122
  569. data/spec/unit/resource/ordering_spec.rb +0 -38
  570. data/spec/unit/resource/page_presenters_spec.rb +0 -44
  571. data/spec/unit/resource/pagination_spec.rb +0 -38
  572. data/spec/unit/resource/routes_spec.rb +0 -125
  573. data/spec/unit/resource/scopes_spec.rb +0 -50
  574. data/spec/unit/resource/sidebars_spec.rb +0 -43
  575. data/spec/unit/resource_collection_spec.rb +0 -175
  576. data/spec/unit/resource_controller/data_access_spec.rb +0 -230
  577. data/spec/unit/resource_controller/decorators_spec.rb +0 -94
  578. data/spec/unit/resource_controller/sidebars_spec.rb +0 -37
  579. data/spec/unit/resource_controller_spec.rb +0 -274
  580. data/spec/unit/resource_registration_spec.rb +0 -61
  581. data/spec/unit/resource_spec.rb +0 -313
  582. data/spec/unit/routing_spec.rb +0 -213
  583. data/spec/unit/scope_spec.rb +0 -209
  584. data/spec/unit/settings_spec.rb +0 -118
  585. data/spec/unit/view_factory_spec.rb +0 -19
  586. data/spec/unit/view_helpers/breadcrumbs_spec.rb +0 -252
  587. data/spec/unit/view_helpers/display_helper_spec.rb +0 -195
  588. data/spec/unit/view_helpers/download_format_links_helper_spec.rb +0 -39
  589. data/spec/unit/view_helpers/fields_for_spec.rb +0 -50
  590. data/spec/unit/view_helpers/flash_helper_spec.rb +0 -25
  591. data/spec/unit/view_helpers/form_helper_spec.rb +0 -43
  592. data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +0 -139
  593. data/spec/unit/views/components/attributes_table_spec.rb +0 -272
  594. data/spec/unit/views/components/batch_action_selector_spec.rb +0 -43
  595. data/spec/unit/views/components/blank_slate_spec.rb +0 -27
  596. data/spec/unit/views/components/columns_spec.rb +0 -189
  597. data/spec/unit/views/components/index_list_spec.rb +0 -49
  598. data/spec/unit/views/components/index_table_for_spec.rb +0 -127
  599. data/spec/unit/views/components/paginated_collection_spec.rb +0 -249
  600. data/spec/unit/views/components/panel_spec.rb +0 -58
  601. data/spec/unit/views/components/sidebar_section_spec.rb +0 -68
  602. data/spec/unit/views/components/site_title_spec.rb +0 -78
  603. data/spec/unit/views/components/status_tag_spec.rb +0 -249
  604. data/spec/unit/views/components/table_for_spec.rb +0 -436
  605. data/spec/unit/views/components/tabs_spec.rb +0 -39
  606. data/spec/unit/views/components/unsupported_browser_spec.rb +0 -41
  607. data/spec/unit/views/index_as_blog_spec.rb +0 -76
  608. data/spec/unit/views/pages/form_spec.rb +0 -54
  609. data/spec/unit/views/pages/index_spec.rb +0 -60
  610. data/spec/unit/views/pages/layout_spec.rb +0 -59
  611. data/spec/unit/views/pages/show_spec.rb +0 -32
  612. data/spec/unit/views/tabbed_navigation_spec.rb +0 -158
  613. data/tasks/docs.rake +0 -37
  614. data/tasks/lint.rake +0 -8
  615. data/tasks/local.rake +0 -25
  616. data/tasks/parallel_tests.rake +0 -66
  617. data/tasks/test.rake +0 -46
  618. data/tasks/yard.rake +0 -9
data/CHANGELOG.md CHANGED
@@ -1,94 +1,576 @@
1
1
  # Changelog
2
- ## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3...master)
2
+
3
+ ## Unreleased
4
+
5
+ ## 2.13.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.13.0..v2.13.1)
6
+
7
+ ### Bug Fixes
8
+
9
+ * Honor load paths order when loading admin files. [#7488] by [@tf]
10
+ * Fix passing expected hash payload argument. [#7487] by [@ispyropoulos]
11
+
12
+ ## 2.13.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.12.0..v2.13.0)
13
+
14
+ ### Documentation
15
+
16
+ * Update validation errors documentation to account for deprecated `ActiveModel::Errors#keys`. [#7475] by [@amit]
17
+
18
+ ### Dependency Changes
19
+
20
+ * Drop rails 6.0 support. [#7476] by [@deivid-rodriguez]
21
+
22
+ ### Performance
23
+
24
+ * Fix pundit performance. [#7479] by [@deivid-rodriguez]
25
+
26
+ ## 2.12.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.2..v2.12.0)
27
+
28
+ ### Enhancements
29
+
30
+ * Add Ransack 3 compatibility. [#7453] by [@tagliala]
31
+
32
+ ### Bug Fixes
33
+
34
+ * Fix pundit namespace detection. [#7144] by [@vlad-psh]
35
+
36
+ ### Documentation
37
+
38
+ * Don't mention webpacker as the default asset generator in Rails. [#7377] by [@jaynetics]
39
+
40
+ ### Performance
41
+
42
+ * Avoid duplicate work when downloading CSV. [#7336] by [@deivid-rodriguez]
43
+
44
+ ## 2.11.2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.1..v2.11.2)
45
+
46
+ ### Bug Fixes
47
+
48
+ * Fix disappearing BOM option for `CSVBuilder`. [#7170] by [@Karoid]
49
+
50
+ ## 2.11.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.0..v2.11.1)
51
+
52
+ ### Enhancements
53
+
54
+ * Add turbolinks support to has many js. [#7384] by [@amiel]
55
+
56
+ ### Documentation
57
+
58
+ * Remove `insert_tag` from Form-Partial docs. [#7394] by [@TonyArra]
59
+
60
+ ## 2.11.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.1..v2.11.0)
61
+
62
+ ### Enhancements
63
+
64
+ * Add Rails 7 Support. [#7235] by [@tagliala]
65
+
66
+ ### Bug Fixes
67
+
68
+ * Fix form SCSS variables no longer being defined in the outermost scope, so no longer being accessible. [#7341] by [@gigorok]
69
+
70
+ ## 2.10.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.0..v2.10.1)
71
+
72
+ ### Enhancements
73
+
74
+ * Apply `box-sizing: border-box` globally. [#7349] by [@deivid-rodriguez]
75
+ * Vendor normalize 8.0.1. [#7350] by [@deivid-rodriguez]
76
+ * Remove deprecation warning using controller filters inside initializer. [#7340] by [@mgrunberg]
77
+
78
+ ### Bug Fixes
79
+
80
+ * Fix frozen string error when downloading CSV and streaming disabled. [#7332] by [@deivid-rodriguez]
81
+
82
+ ## 2.10.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.9.0..v2.10.0)
83
+
84
+ ### Enhancements
85
+
86
+ * Load favicon from Webpacker assets when use_webpacker is set to true. [#6954] by [@Fs00]
87
+ * Don't apply sorting to collection until after scoping. [#7205] by [@agrobbin]
88
+ * Resolve dart sass deprecation warning for division. [#7095] by [@tordans]
89
+ * Use `instrument` from the Notifications API instead of low level `publish`. [#7262] by [@sprql]
90
+ * Avoid mutating string literals. [#6936] by [@tomgilligan]
91
+ * Include print styles in main stylesheet. [#6922] by [@deivid-rodriguez]
92
+ * Use `POST` for OmniAuth links. [#6916] by [@deivid-rodriguez]
93
+ * Scope new record instantiation by authorization scope. [#6884] by [@ngouy]
94
+ * Make `permit_params` and `belongs_to` order independent. [#6906] by [@deivid-rodriguez]
95
+ * Use collection length instead of running COUNTs for limited collections. [#5660] by [@MmKolodziej]
96
+
97
+ ### Bug Fixes
98
+
99
+ * Show ransackable_scopes filters in search results. [#7127] by [@vlad-psh]
100
+
101
+ ### Translation Improvements
102
+
103
+ * Fix Dutch translation for password reset button. [#7181] by [@mvz]
104
+ * Add few key to RO pagination.entry. [#6915] by [@lubosch]
105
+ * Change misleading Korean translation. [#6873] by [@1000ship]
106
+
107
+ ### Documentation
108
+
109
+ * Replace deprecated update_attributes! with update!. [#6959] by [@sergey-alekseev]
110
+ * Clarify docs on user setup. [#6872] by [@javawizard]
111
+
112
+ ### Dependency Changes
113
+
114
+ * Drop rails 5.2 support. [#7293] by [@deivid-rodriguez]
115
+ * Drop support for Ruby 2.5. [#7236] by [@alejandroperea]
116
+
117
+ ## 2.9.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.1..v2.9.0)
118
+
119
+ ### Enhancements
120
+
121
+ * Support for Rails 6.1. [#6548] by [@deivid-rodriguez]
122
+ * Add ability to override "Remove" button text on has_many forms. [#6523] by [@littleforest]
123
+ * Drop git in gemspec. [#6462] by [@utkarsh2102]
124
+
125
+ ### Bug Fixes
126
+
127
+ * Pick up upstream fixes in devise templates. [#6536] by [@munen]
128
+
129
+ ### Documentation
130
+
131
+ * Fix `has_many` syntax in forms documentation. [#6583] by [@krzcho]
132
+ * Add example of using `default_main_content` in show pages. [#6487] by [@sjieg]
133
+
134
+ ### Dependency Changes
135
+
136
+ * Remove sassc and sprockets runtime dependencies. [#6584] by [@deivid-rodriguez]
137
+
138
+ ## 2.8.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.0..v2.8.1)
139
+
140
+ ### Bug Fixes
141
+
142
+ * Fix `permitted_param` generation for `belongs_to` when `:param` is used. [#6460] by [@deivid-rodriguez]
143
+ * Fix streaming CSV export. [#6451] by [@deivid-rodriguez]
144
+ * Fix input string filter no rendering dropdown input when its column name ends with a ransack predicate. [#6422] by [@Fivell]
145
+
146
+ ## 2.8.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.7.0..v2.8.0)
147
+
148
+ ### Enhancements
149
+
150
+ * Allow using PORO decorators. [#6249] by [@brunvez]
151
+ * Make sure `ActiveAdmin.routes` provides routes in a consistent order. [#6124] by [@jiikko]
152
+ * Use proper closing tags for HTML in ModalDialog component. [#6221] by [@javierjulio]
153
+
154
+ ### Bug Fixes
155
+
156
+ * Fix comment layout so regardless of size, each is aligned and spaced evenly. [#6393] by [@Ivanov-Anton]
157
+
158
+ ### Translation Improvements
159
+
160
+ * Fix several Arabic translations. [#6368] by [@mshalaby]
161
+ * Add missing `scope/all` italian translation. [#6341] by [@fuzziness]
162
+ * Improve Japanese translation. [#6315] by [@rn0rno]
163
+ * Fix es and es-MX sign_in and sign_up translation. [#6210] by [@roramirez]
164
+
165
+ ### Documentation
166
+
167
+ * Fix filter_columns_for_large_association and filter_method_for_large_association examples. [#6232] by [@ndbroadbent]
168
+
169
+ ### Dependency Changes
170
+
171
+ * Allow formtastic 4. [#6318] by [@deivid-rodriguez]
172
+ * Drop Ruby 2.4 support. [#6198] by [@deivid-rodriguez]
173
+
174
+ ## 2.7.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.1..v2.7.0)
175
+
176
+ ### Enhancements
177
+
178
+ * Extend menu to allow for nested submenus. [#5994] by [@taralbass]
179
+ * Add Webpacker compatibility with opt-in config switch and installation generator. [#5855] by [@sgara]
180
+
181
+ ### Bug Fixes
182
+
183
+ * Fix scopes renderer when resource has only optional scopes and their conditions are false. [#6149] by [@Looooong]
184
+ * Fix some missing wrapper markup in "logged out" layout. [#6086] by [@irmela]
185
+ * Fix some typos in Vietnamese translation. [#6099] by [@giapnhdev]
186
+
187
+ ## 2.6.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.0..v2.6.1)
188
+
189
+ ### Bug Fixes
190
+
191
+ * Fix some ruby 2.7 warnings about keyword args. [#6000] by [@vcsjones]
192
+ * Missing `create_another` translation in Vietnamese. [#6002] by [@imcvampire]
193
+ * Using "destroy" for user facing message is too robotic, prefer "delete". [#6047] by [@vfonic]
194
+ * Typo in confirmation message for comment deletion. [#6047] by [@vfonic]
195
+
196
+ ## 2.6.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.5.0..v2.6.0)
197
+
198
+ ### Enhancements
199
+
200
+ * Display multiple flash messages in separate elements. [#5929] by [@mirelon]
201
+ * Make delete confirmation messages in French & Spanish gender-neutral. [#5946] by [@cprodhomme]
202
+
203
+ ### Bug Fixes
204
+
205
+ * Export ModalDialog component to re-enable client side usage. [#5956] by [@sgara]
206
+ * Use default ActionView options instead of default Formtastic options for DateRangeInput [#5957] by [@mirelon]
207
+ * Fix i18n key in docs example to translate scopes. [#5943] by [@adler99]
208
+
209
+ ## 2.5.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.4.0..v2.5.0)
210
+
211
+ ### Enhancements
212
+
213
+ * Azerbaijani translation. [#5078] by [@orkhan]
214
+
215
+ ### Bug Fixes
216
+
217
+ * Convert namespace to sym to prevent duplicate namespaces such as :foo and 'foo'. [#5931] by [@westonganger]
218
+ * Use filter label when condition has a predicate. [#5886] by [@ko-lem]
219
+ * Fix error when routing with array containing symbol. [#5870] by [@jwesorick]
220
+ * Fix error when there is a model named `Tag` and `meta_tags` have been configured. [#5895] by [@micred], [@FabioRos] and [@deivid-rodriguez]
221
+ * Allow specifying custom `input_html` for `DateRangeInput`. [#5867] by [@mirelon]
222
+ * Adjust `#main_content` right margin to take into account possible custom values of `$sidebar-width` and `$section-padding`. [#5887] by [@guigs]
223
+ * Improved polymorphic routes generation to avoid problems when multiple `belongs_to` are defined. [#5938] by [@leio10]
224
+
225
+ ### Dependency Changes
226
+
227
+ * Support for Rails 5.0 and Rails 5.1 has been dropped. [#5877] by [@deivid-rodriguez]
228
+
229
+ ## 2.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.3.1..v2.4.0)
230
+
231
+ ### Enhancements
232
+
233
+ * Make optimization to not use expensive COUNT queries also work for decorated actions. [#5811] by [@irmela]
234
+ * Render a text filter instead of a select for large associations (opt-in). [#5548] by [@DanielHeath]
235
+ * Improve German translations. [#5874] by [@juril33t]
236
+
237
+ ## 2.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.3.0..v2.3.1)
238
+
239
+ ### Bug Fixes
240
+
241
+ * 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]
242
+
243
+ ## 2.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.2.0..v2.3.0)
244
+
245
+ ### Enhancements
246
+
247
+ * Bump minimum ransack requirement to make sure everyone gets a version that works ok with all supported versions of Rails. [#5831] by [@deivid-rodriguez]
248
+
249
+ ### Bug Fixes
250
+
251
+ * Fix CSVBuilder not respecting `ActiveAdmin.application.csv_options = { humanize_name: false }` setting. [#5800] by [@HappyKadaver]
252
+ * Fix crash when displaying current filters after filtering by a nested resource. [#5816] by [@deivid-rodriguez]
253
+ * 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]
254
+ * 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]
255
+ * Fix double modal issue in applications using turbolinks 5. [#5842] by [@sgara]
256
+
257
+ ## 2.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.1.0..v2.2.0)
258
+
259
+ ### Enhancements
260
+
261
+ * 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]
262
+ * Add Macedonian locale. [#5710] by [@violeta-p]
263
+
264
+ ### Bug Fixes
265
+
266
+ * Fix pundit policy retrieving for static pages when the pundit namespace is `:active_admin`. [#5777] by [@kwent]
267
+ * Fix show page title not being properly escaped if title's content included HTML. [#5802] by [@deivid-rodriguez]
268
+ * Revert [21b6138f] from [#5740] since it actually caused the performance in development to regress. [#5801] by [@deivid-rodriguez]
269
+
270
+ ## 2.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0..v2.1.0)
271
+
272
+ ### Bug Fixes
273
+
274
+ * Ensure application gets reloaded only once. [#5740] by [@jscheid]
275
+ * Crash when rendering comments from a custom controller block. [#5758] by [@deivid-rodriguez]
276
+ * 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]
277
+
278
+ ### Dependency Changes
279
+
280
+ * Support for ruby 2.3 has been removed. [#5751] by [@deivid-rodriguez]
281
+
282
+ ## 2.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc2..v2.0.0)
283
+
284
+ _No changes_.
285
+
286
+ ## 2.0.0.rc2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc1..v2.0.0.rc2)
287
+
288
+ ### Enhancements
289
+
290
+ * Require arbre `~> 1.2, >= 1.2.1`. [#5726] by [@ionut998], and [#5738] by [@deivid-rodriguez]
291
+
292
+ ## 2.0.0.rc1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.3..v2.0.0.rc1)
293
+
294
+ ### Enhancements
295
+
296
+ * Add your own content to the site `<head>`, like analytics. [#5590] by [@buren]
297
+
298
+ ```ruby
299
+ ActiveAdmin.setup do |config|
300
+ config.head = ''.html_safe
301
+ end
302
+ ```
303
+
304
+ * Consider authorization when displaying comments in show page. [#5555] by [@amiuhle]
305
+ * Add better support for rendering lists. [#5370] by [@dkniffin]
306
+ * 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]
307
+
308
+ ### Security Fixes
309
+
310
+ * Prevent leaking hashed passwords via user CSV export and adds a config option for sensitive attributes. [#5486] by [@chrp]
311
+
312
+ ### Bug Fixes
313
+
314
+ * Fix for paginated collections with `per_page: Array, pagination_total: false`. [#5627] by [@bartoszkopinski]
315
+ * Restrict ransack requirement to >= 2.1.1 to play nice with Rails 5.2.2. [#5632] by [@deivid-rodriguez]
316
+ * Bad interpolation variables on pagination keys in Lithuanian translation. [#5631] by [@deivid-rodriguez]
317
+ * Tabs are not correctly created when using non-transliteratable characters as title. [#5650] by [@panasyuk]
318
+ * Sidebar title internationalization. [#5417] by [@WaKeMaTTa]
319
+ * `filter` labels not allowing a `Proc` to be passed. [#5418] by [@WaKeMaTTa]
320
+
321
+ ### Dependency Changes
322
+
323
+ * Rails 4.2 support has been dropped. [#5104] by [@javierjulio] and [@deivid-rodriguez]
324
+ * Dependency on coffee-rails has been removed. [#5081] by [@javierjulio]
325
+ If your application uses coffescript but was relying on ActiveAdmin to provide
326
+ the dependency, you need to add the `coffee-script` gem to your `Gemfile` to
327
+ restore it. If your only usage of coffescript was the
328
+ `active_admin.js.coffee` generated by ActiveAdmin's generator, you can also
329
+ convert that file to plain JS (`//= require active_admin/base` if you
330
+ didn't add any stuff to it).
331
+ * Devise 3 support has been dropped. [#5608] by [@deivid-rodriguez] and [@javierjulio]
332
+ * `action_item` without a name has been removed. [#5099] by [@javierjulio]
333
+
334
+ ## 1.4.3 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.2..v1.4.3)
335
+
336
+ ### Bug Fixes
337
+
338
+ * Fix `form` parameter to `batch_action` no longer accepting procs. [#5611] by [@buren] and [@deivid-rodriguez]
339
+ * Fix passing a proc to `scope_to`. [#5611] by [@deivid-rodriguez]
340
+
341
+ ## 1.4.2 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.1..v1.4.2)
342
+
343
+ ### Bug Fixes
344
+
345
+ * Fix `input_html` filter option evaluated only once. [#5376] by [@kjeldahl]
346
+
347
+ ## 1.4.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.0..v1.4.1)
348
+
349
+ ### Bug Fixes
350
+
351
+ * Fix menu item link with method delete. [#5583] by [@tiagotex]
352
+
353
+ ## 1.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.1..v1.4.0)
354
+
355
+ ### Enhancements
356
+
357
+ * Add missing I18n for comments. [#5458], [#5461] by [@mauriciopasquier]
358
+ * Fix batch_actions.delete_confirmation translation in zh-CN.yml. [#5453] by [@ShallmentMo]
359
+ * Add some missing italian translations. [#5433] by [@stefsava]
360
+ * Enhance some chinese translations. [#5413] by [@shouya]
361
+ * Add missing filter predicate translations to nb. [#5357] by [@rogerkk]
362
+ * Add missing norwegian comment translations. [#5375] by [@rogerkk]
363
+ * Add missing dutch translations. [#5368] by [@dennisvdvliet]
364
+ * Add missing german translations. [#5341] by [@eikes]
365
+ * Add missing spanish translation. [#5336] by [@mconiglio]
366
+ * Add from and to predicates for russian language. [#5330] by [@glebtv]
367
+ * Fix typo in finnish translation. [#5320] by [@JiiHu]
368
+ * Add missing turkish translations. [#5295] by [@kobeumut]
369
+ * Add missing chinese translations. [#5266] by [@jasl]
370
+ * Allow proc label in datepicker input. [#5408] by [@tiagotex]
371
+ * Add `group` attribute to scopes in order to show them in grouped. [#5359] by [@leio10]
372
+ * Add missing polish translations and improve existing ones. [#5537] by [@Wowu]
373
+ * Add `priority` option to `action_item`. [#5334] by [@andreslemik]
374
+
375
+ ### Bug Fixes
376
+
377
+ * Fixed the string representation of the resolved `sort_key` when no explicit `sortable` attribute is passed. [#5464] by [@chumakoff]
378
+ * 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]
379
+ * Fixed `if:` scope option when a lambda is passed. [#5501] by [@deivid-rodriguez]
380
+ * Comment validation adding redundant errors when resource is missing. [#5517] by [@deivid-rodriguez]
381
+ * Fixed resource filtering by association when the resource has custom primary key. [#5446] by [@wasifhossain]
382
+ * Fixed "create anoter" checkbox styling. [#5324] by [@faucct]
383
+
384
+ ## 1.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.0..v1.3.1)
385
+
386
+ ### Bug Fixes
387
+
388
+ * gemspec should have more permissive ransack dependency. [#5448] by [@varyonic]
389
+
390
+ ## 1.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.1..v1.3.0)
391
+
392
+ ### Enhancements
393
+
394
+ * Rails 5.2 support [#5343] by [@varyonic], [#5399], [#5401] by [@zorab47]
395
+
396
+ ## 1.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.0..v1.2.1)
397
+
398
+ ### Bug Fixes
399
+
400
+ * Resolve issue with [#5275] preventing XSS in filters sidebar. [#5299] by [@faucct]
401
+
402
+ ## 1.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.1.0..v1.2.0)
403
+
404
+ ### Enhancements
405
+
406
+ * Do not display pagination info when there are no comments. [#5119] by [@alex-bogomolov]
407
+ * Revert generated config files to pluralized. [#5120] by [@varyonic], [#5137] by [@deivid-rodriguez]
408
+ * Warn when action definition overwrites controller method. [#5167] by [@aarek]
409
+ * Better performance of comments show view. [#5208] by [@dhyegofernando]
410
+ * Mitigate memory bloat [#4118] with CSV exports. [#5251] by [@f1sherman]
411
+ * Fix issue applying custom decorations. [#5253] by [@faucct]
412
+ * Brazilian locale updated. [#5125] by [@renotocn]
413
+ * Japanese locale updated. [#5143] by [@5t111111], [#5157] by [@innparusu95]
414
+ * Italian locale updated. [#5180] by [@blocknotes]
415
+ * Swedish locale updated. [#5187] by [@jawa]
416
+ * Vietnamese locale updated. [#5194] by [@Nguyenanh]
417
+ * Esperanto locale added. [#5210] by [@RobinvanderVliet]
418
+
419
+ ### Bug Fixes
420
+
421
+ * Fix a couple of issues rendering filter labels. [#5223] by [@wspurgin]
422
+ * Prevent NameError when filtering on a namespaced association. [#5240] by [@DanielHeath]
423
+ * Fix undefined method error in Ransack when building filters. [#5238] by [@wspurgin]
424
+ * Fixed [#5198] Prevent XSS on sidebar's current filter rendering. [#5275] by [@deivid-rodriguez]
425
+ * Sanitize display_name. [#5284] by [@markstory]
426
+
427
+ ## 1.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.0.0..v1.1.0)
428
+
429
+ ### Bug Fixes
430
+
431
+ * Fixed [#5093] Handle table prefix & table suffix for `ActiveAdminComment` model
432
+ * Fixed [#4173] by including the default Kaminari templates. [#5069] by [@javierjulio]
433
+ * Fixed [#5043]. Do not crash in sidebar rendering when a default scope is not specified. [#5044] by [@Fivell]
434
+ * Fixed [#3894]. Make tab's component work with non-ascii titles. [#5046] by [@Fivell]
435
+
436
+ ### Dependency Changes
437
+
438
+ * Ruby 2.1 support has been dropped. [#5003] by [@deivid-rodriguez]
439
+ * Replaced `sass-rails` with `sass` dependency. [#5037] by [@javierjulio]
440
+ * Removed `jquery-ui-rails` as a dependency. [#5052] by [@javierjulio]
441
+ The specific jQuery UI assets used are now within the vendor directory. This
442
+ will be replaced by alternatives and dropped entirely in a major release.
443
+ Please remove any direct inclusions of `//= require jquery-ui`. This allows us
444
+ to upgrade to jquery v3.
445
+
446
+ ### Deprecations
447
+
448
+ * 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]
449
+ * Deprecated `type` param from `status_tag` and related CSS classes [#4989] by [@javierjulio]
450
+ The method signature has changed from:
451
+
452
+ ```ruby
453
+ status_tag(status, :ok, class: 'completed', label: 'on')
454
+ ```
455
+
456
+ to:
457
+
458
+ ```ruby
459
+ status_tag(status, class: 'completed ok', label: 'on')
460
+ ```
461
+
462
+ The following CSS classes have been deprecated and will be removed in the future:
463
+
464
+ ```css
465
+ .status_tag {
466
+ &.ok, &.published, &.complete, &.completed, &.green { background: #8daa92; }
467
+ &.warn, &.warning, &.orange { background: #e29b20; }
468
+ &.error, &.errored, &.red { background: #d45f53; }
469
+ }
470
+ ```
471
+
472
+ ### Enhancements
473
+
474
+ * Support proc as an input_html option value when declaring filters. [#5029] by [@Fivell]
475
+ * Base localization support, better associations handling for active filters sidebar. [#4951] by [@Fivell]
476
+ * Allow AA scopes to return paginated collections. [#4996] by [@Fivell]
477
+ * Added `scopes_show_count` configuration to setup show_count attribute for scopes globally. [#4950] by [@Fivell]
478
+ * Allow custom panel title given with `attributes_table`. [#4940] by [@ajw725]
479
+ * Allow passing a class to `action_item` block. [#4997] by [@Fivell]
480
+ * Add pagination to the comments section. [#5088] by [@alex-bogomolov]
481
+
482
+ ## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3..v1.0.0)
3
483
 
4
484
  ### Breaking Changes
5
485
 
6
- * Rename `allow_comments` to `comments` for more consistent naming [#3695][] by [@pranas][]
7
- * JavaScript `window.AA` has been removed, use `window.ActiveAdmin` [#3606][] by [@timoschilling][]
8
- * `f.form_buffers` has been removed [#3486][] by [@varyonic][]
9
- * Iconic has been removed [#3553][] by [@timoschilling][]
10
- * `config.show_comments_in_menu` has been removed, see `config.comments_menu` [#4187][] by [@drn][]
11
- * Rails 3.2 & Ruby 1.9.3 support has been dropped [#4848][] [@deivid-rodriguez][]
12
- * Ruby 2.0.0 support has been dropped [#4851][] [@deivid-rodriguez][]
13
- * Rails 4.0 & 4.1 support has been dropped [#4855][] [@deivid-rodriguez][]
14
-
15
- ### Enhancements
16
-
17
- #### Major
18
-
19
- * Migration from Metasearch to Ransack [#1979][] by [@seanlinsley][]
20
- * Rails 4 support [#2326][] by many people <3
21
- * Rails 4.2 support [#3731][] by [@gonzedge][] and [@timoschilling][]
22
- * Rails 5 support [#4254][] by [@seanlinsley][]
23
- * Rails 5.1 support [#4882][] by [@varyonic][]
24
-
25
- #### Minor
26
-
27
- * "Create another" checkbox for the new resource page. [#4477][] by [@bolshakov][]
28
- * Page supports belongs_to [#4759][] by [@Fivell][] and [@zorab47][]
29
- * Support for custom sorting strategies [#4768][] by [@Fivell][]
30
- * Stream CSV downloads as they're generated [#3038][] by [@craigmcnamara][]
31
- * Disable streaming in development for easier debugging [#3535][] by [@seanlinsley][]
32
- * Improved code reloading [#3783][] by [@chancancode][]
33
- * Do not auto link to inaccessible actions [#3686][] by [@pranas][]
34
- * Allow to enable comments on per-resource basis [#3695][] by [@pranas][]
35
- * Unify DSL for index `actions` and `actions dropdown: true` [#3463][] by [@timoschilling][]
36
- * Add DSL method `includes` for `ActiveRecord::Relation#includes` [#3464][] by [@timoschilling][]
37
- * BOM (byte order mark) configurable for CSV download [#3519][] by [@timoschilling][]
38
- * Column block on table index is now sortable by default [#3075][] by [@dmitry][]
39
- * Allow Arbre to be used inside ActiveAdmin forms [#3486][] by [@varyonic][]
40
- * Make AA ORM-agnostic [#2545][] by [@johnnyshields][]
41
- * Add multi-record support to `attributes_table_for` [#2544][] by [@zorab47][]
42
- * Table CSS classes are now prefixed to prevent clashes [#2532][] by [@TimPetricola][]
43
- * Allow Inherited Resources shorthand for redirection [#2001][] by [@seanlinsley][]
44
- ```ruby
45
- controller do
46
- # Redirects to index page instead of rendering updated resource
47
- def update
48
- update!{ collection_path }
49
- end
486
+ * Rename `allow_comments` to `comments` for more consistent naming. [#3695] by [@pranas]
487
+ * JavaScript `window.AA` has been removed, use `window.ActiveAdmin`. [#3606] by [@timoschilling]
488
+ * `f.form_buffers` has been removed. [#3486] by [@varyonic]
489
+ * Iconic has been removed. [#3553] by [@timoschilling]
490
+ * `config.show_comments_in_menu` has been removed, see `config.comments_menu`. [#4187] by [@drn]
491
+ * Rails 3.2 & Ruby 1.9.3 support has been dropped. [#4848] by [@deivid-rodriguez]
492
+ * Ruby 2.0.0 support has been dropped. [#4851] by [@deivid-rodriguez]
493
+ * Rails 4.0 & 4.1 support has been dropped. [#4870] by [@deivid-rodriguez]
494
+
495
+ ### Enhancements
496
+
497
+ * Migration from Metasearch to Ransack. [#1979] by [@seanlinsley]
498
+ * Rails 4 support. [#2326] by many people :heart:
499
+ * Rails 4.2 support. [#3731] by [@gonzedge] and [@timoschilling]
500
+ * Rails 5 support. [#4254] by [@seanlinsley]
501
+ * Rails 5.1 support. [#4882] by [@varyonic]
502
+ * "Create another" checkbox for the new resource page. [#4477] by [@bolshakov]
503
+ * Page supports belongs_to. [#4759] by [@Fivell] and [@zorab47]
504
+ * Support for custom sorting strategies. [#4768] by [@Fivell]
505
+ * Stream CSV downloads as they're generated. [#3038] by [@craigmcnamara]
506
+ * Disable streaming in development for easier debugging. [#3535] by [@seanlinsley]
507
+ * Improved code reloading. [#3783] by [@chancancode]
508
+ * Do not auto link to inaccessible actions. [#3686] by [@pranas]
509
+ * Allow to enable comments on per-resource basis. [#3695] by [@pranas]
510
+ * Unify DSL for index `actions` and `actions dropdown: true`. [#3463] by [@timoschilling]
511
+ * Add DSL method `includes` for `ActiveRecord::Relation#includes`. [#3464] by [@timoschilling]
512
+ * BOM (byte order mark) configurable for CSV download. [#3519] by [@timoschilling]
513
+ * Column block on table index is now sortable by default. [#3075] by [@dmitry]
514
+ * Allow Arbre to be used inside ActiveAdmin forms. [#3486] by [@varyonic]
515
+ * Make AA ORM-agnostic. [#2545] by [@johnnyshields]
516
+ * Add multi-record support to `attributes_table_for`. [#2544] by [@zorab47]
517
+ * Table CSS classes are now prefixed to prevent clashes. [#2532] by [@TimPetricola]
518
+ * Allow Inherited Resources shorthand for redirection. [#2001] by [@seanlinsley]
519
+
520
+ ```ruby
521
+ controller do
522
+ # Redirects to index page instead of rendering updated resource
523
+ def update
524
+ update!{ collection_path }
50
525
  end
51
- ```
526
+ end
527
+ ```
52
528
 
53
- * Accept block for download links [#2040][] by [@potatosalad][]
54
- ```ruby
55
- index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
56
- ```
57
- * Comments menu can be customized via configuration passed to `config.comments_menu` [#4187][] by [@drn][]
58
- * Added `config.route_options` to namespace to customize routes [#4467][] by [@stereoscott[]]
529
+ * Accept block for download links. [#2040] by [@potatosalad]
530
+
531
+ ```ruby
532
+ index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
533
+ ```
534
+
535
+ * Comments menu can be customized via configuration passed to `config.comments_menu`. [#4187] by [@drn]
536
+ * Added `config.route_options` to namespace to customize routes. [#4731] by [@stereoscott]
59
537
 
60
538
  ### Security Fixes
61
539
 
62
- * Prevents access to formats that the user not permitted to see [#4867][] by [@Fivell][] and [@timoschilling][]
63
- * Prevents potential DOS attack via Ruby symbols [#1926][] by [@seanlinsley][]
540
+ * Prevents access to formats that the user not permitted to see. [#4867] by [@Fivell] and [@timoschilling]
541
+ * Prevents potential DOS attack via Ruby symbols. [#1926] by [@seanlinsley]
64
542
  * [this isn't an issue for those using Ruby >= 2.2](http://rubykaigi.org/2014/presentation/S-NarihiroNakamura)
65
543
 
66
544
  ### Bug Fixes
67
545
 
68
- * Fixes filters for `has_many :through` relationships [#2541][] by [@shekibobo][]
69
- * "New" action item now only shows up on the index page bf659bc by [@seanlinsley][]
70
- * Fixes comment creation bug with aliased resources 9a082486 by [@seanlinsley][]
71
- * Fixes the deletion of `:if` and `:unless` from filters [#2523][] by [@PChambino][]
546
+ * Fixes filters for `has_many :through` relationships. [#2541] by [@shekibobo]
547
+ * "New" action item now only shows up on the index page. bf659bc by [@seanlinsley]
548
+ * Fixes comment creation bug with aliased resources. 9a082486 by [@seanlinsley]
549
+ * Fixes the deletion of `:if` and `:unless` from filters. [#2523] by [@PChambino]
72
550
 
73
551
  ### Deprecations
74
552
 
75
- * `ActiveAdmin::Event` (`ActiveAdmin::EventDispatcher`) [#3435][] by [@timoschilling][]
553
+ * `ActiveAdmin::Event` (`ActiveAdmin::EventDispatcher`). [#3435] by [@timoschilling]
76
554
  `ActiveAdmin::Event` will be removed in a future version, ActiveAdmin switched
77
- to use `ActiveSupport::Notifications`.
555
+ to use `ActiveSupport::Notifications`
78
556
  NOTE: The blog parameters has changed:
79
- ```ruby
80
- ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
81
- # some code
82
- end
83
557
 
84
- ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"
85
- ```
558
+ ```ruby
559
+ ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
560
+ # some code
561
+ end
562
+
563
+ ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"
564
+ ```
565
+
566
+ * `action_item` without a name, to introduce a solution for removing action items (`remove_action_item(name)`). [#3091] by [@amiel]
86
567
 
87
568
  ## Previous Changes
88
569
 
89
- Please check [0-6-stable](https://github.com/activeadmin/activeadmin/blob/0-6-stable/CHANGELOG.md) for previous changes.
570
+ Please check [0-6-stable] for previous changes.
571
+
572
+ [0-6-stable]: https://github.com/activeadmin/activeadmin/blob/0-6-stable/CHANGELOG.md
90
573
 
91
- <!--- The following link definition list is generated by PimpMyChangelog --->
92
574
  [#1926]: https://github.com/activeadmin/activeadmin/issues/1926
93
575
  [#1979]: https://github.com/activeadmin/activeadmin/issues/1979
94
576
  [#2001]: https://github.com/activeadmin/activeadmin/issues/2001
@@ -112,31 +594,332 @@ Please check [0-6-stable](https://github.com/activeadmin/activeadmin/blob/0-6-st
112
594
  [#3695]: https://github.com/activeadmin/activeadmin/issues/3695
113
595
  [#3731]: https://github.com/activeadmin/activeadmin/issues/3731
114
596
  [#3783]: https://github.com/activeadmin/activeadmin/issues/3783
597
+ [#3894]: https://github.com/activeadmin/activeadmin/issues/3894
598
+ [#4118]: https://github.com/activeadmin/activeadmin/issues/4118
599
+ [#4173]: https://github.com/activeadmin/activeadmin/issues/4173
115
600
  [#4187]: https://github.com/activeadmin/activeadmin/issues/4187
116
601
  [#4254]: https://github.com/activeadmin/activeadmin/issues/4254
602
+ [#5043]: https://github.com/activeadmin/activeadmin/issues/5043
603
+ [#5198]: https://github.com/activeadmin/activeadmin/issues/5198
604
+
605
+ [21b6138f]: https://github.com/activeadmin/activeadmin/pull/5740/commits/21b6138fdcf58cd54c3f1d3f60cb1127b174b40f
606
+
607
+ [#3091]: https://github.com/activeadmin/activeadmin/pull/3091
608
+ [#3435]: https://github.com/activeadmin/activeadmin/pull/3435
117
609
  [#4477]: https://github.com/activeadmin/activeadmin/pull/4477
610
+ [#4731]: https://github.com/activeadmin/activeadmin/pull/4731
118
611
  [#4759]: https://github.com/activeadmin/activeadmin/pull/4759
119
612
  [#4768]: https://github.com/activeadmin/activeadmin/pull/4768
120
613
  [#4848]: https://github.com/activeadmin/activeadmin/pull/4848
121
614
  [#4851]: https://github.com/activeadmin/activeadmin/pull/4851
122
615
  [#4867]: https://github.com/activeadmin/activeadmin/pull/4867
616
+ [#4870]: https://github.com/activeadmin/activeadmin/pull/4870
123
617
  [#4882]: https://github.com/activeadmin/activeadmin/pull/4882
618
+ [#4940]: https://github.com/activeadmin/activeadmin/pull/4940
619
+ [#4950]: https://github.com/activeadmin/activeadmin/pull/4950
620
+ [#4951]: https://github.com/activeadmin/activeadmin/pull/4951
621
+ [#4989]: https://github.com/activeadmin/activeadmin/pull/4989
622
+ [#4996]: https://github.com/activeadmin/activeadmin/pull/4996
623
+ [#4997]: https://github.com/activeadmin/activeadmin/pull/4997
624
+ [#5003]: https://github.com/activeadmin/activeadmin/pull/5003
625
+ [#5029]: https://github.com/activeadmin/activeadmin/pull/5029
626
+ [#5037]: https://github.com/activeadmin/activeadmin/pull/5037
627
+ [#5044]: https://github.com/activeadmin/activeadmin/pull/5044
628
+ [#5046]: https://github.com/activeadmin/activeadmin/pull/5046
629
+ [#5052]: https://github.com/activeadmin/activeadmin/pull/5052
630
+ [#5060]: https://github.com/activeadmin/activeadmin/pull/5060
631
+ [#5069]: https://github.com/activeadmin/activeadmin/pull/5069
632
+ [#5078]: https://github.com/activeadmin/activeadmin/pull/5078
633
+ [#5081]: https://github.com/activeadmin/activeadmin/pull/5081
634
+ [#5088]: https://github.com/activeadmin/activeadmin/pull/5088
635
+ [#5093]: https://github.com/activeadmin/activeadmin/pull/5093
636
+ [#5099]: https://github.com/activeadmin/activeadmin/pull/5099
637
+ [#5104]: https://github.com/activeadmin/activeadmin/pull/5104
638
+ [#5119]: https://github.com/activeadmin/activeadmin/pull/5119
639
+ [#5120]: https://github.com/activeadmin/activeadmin/pull/5120
640
+ [#5125]: https://github.com/activeadmin/activeadmin/pull/5125
641
+ [#5137]: https://github.com/activeadmin/activeadmin/pull/5137
642
+ [#5143]: https://github.com/activeadmin/activeadmin/pull/5143
643
+ [#5157]: https://github.com/activeadmin/activeadmin/pull/5157
644
+ [#5167]: https://github.com/activeadmin/activeadmin/pull/5167
645
+ [#5180]: https://github.com/activeadmin/activeadmin/pull/5180
646
+ [#5187]: https://github.com/activeadmin/activeadmin/pull/5187
647
+ [#5194]: https://github.com/activeadmin/activeadmin/pull/5194
648
+ [#5208]: https://github.com/activeadmin/activeadmin/pull/5208
649
+ [#5210]: https://github.com/activeadmin/activeadmin/pull/5210
650
+ [#5223]: https://github.com/activeadmin/activeadmin/pull/5223
651
+ [#5238]: https://github.com/activeadmin/activeadmin/pull/5238
652
+ [#5240]: https://github.com/activeadmin/activeadmin/pull/5240
653
+ [#5251]: https://github.com/activeadmin/activeadmin/pull/5251
654
+ [#5253]: https://github.com/activeadmin/activeadmin/pull/5253
655
+ [#5266]: https://github.com/activeadmin/activeadmin/pull/5266
656
+ [#5272]: https://github.com/activeadmin/activeadmin/pull/5272
657
+ [#5275]: https://github.com/activeadmin/activeadmin/pull/5275
658
+ [#5284]: https://github.com/activeadmin/activeadmin/pull/5284
659
+ [#5295]: https://github.com/activeadmin/activeadmin/pull/5295
660
+ [#5299]: https://github.com/activeadmin/activeadmin/pull/5299
661
+ [#5320]: https://github.com/activeadmin/activeadmin/pull/5320
662
+ [#5324]: https://github.com/activeadmin/activeadmin/pull/5324
663
+ [#5330]: https://github.com/activeadmin/activeadmin/pull/5330
664
+ [#5334]: https://github.com/activeadmin/activeadmin/pull/5334
665
+ [#5336]: https://github.com/activeadmin/activeadmin/pull/5336
666
+ [#5341]: https://github.com/activeadmin/activeadmin/pull/5341
667
+ [#5343]: https://github.com/activeadmin/activeadmin/pull/5343
668
+ [#5357]: https://github.com/activeadmin/activeadmin/pull/5357
669
+ [#5359]: https://github.com/activeadmin/activeadmin/pull/5359
670
+ [#5368]: https://github.com/activeadmin/activeadmin/pull/5368
671
+ [#5370]: https://github.com/activeadmin/activeadmin/pull/5370
672
+ [#5375]: https://github.com/activeadmin/activeadmin/pull/5375
673
+ [#5376]: https://github.com/activeadmin/activeadmin/pull/5376
674
+ [#5399]: https://github.com/activeadmin/activeadmin/pull/5399
675
+ [#5401]: https://github.com/activeadmin/activeadmin/pull/5401
676
+ [#5408]: https://github.com/activeadmin/activeadmin/pull/5408
677
+ [#5413]: https://github.com/activeadmin/activeadmin/pull/5413
678
+ [#5417]: https://github.com/activeadmin/activeadmin/pull/5417
679
+ [#5418]: https://github.com/activeadmin/activeadmin/pull/5418
680
+ [#5433]: https://github.com/activeadmin/activeadmin/pull/5433
681
+ [#5446]: https://github.com/activeadmin/activeadmin/pull/5446
682
+ [#5448]: https://github.com/activeadmin/activeadmin/pull/5448
683
+ [#5453]: https://github.com/activeadmin/activeadmin/pull/5453
684
+ [#5458]: https://github.com/activeadmin/activeadmin/pull/5458
685
+ [#5461]: https://github.com/activeadmin/activeadmin/pull/5461
686
+ [#5464]: https://github.com/activeadmin/activeadmin/pull/5464
687
+ [#5486]: https://github.com/activeadmin/activeadmin/pull/5486
688
+ [#5501]: https://github.com/activeadmin/activeadmin/pull/5501
689
+ [#5504]: https://github.com/activeadmin/activeadmin/pull/5504
690
+ [#5517]: https://github.com/activeadmin/activeadmin/pull/5517
691
+ [#5537]: https://github.com/activeadmin/activeadmin/pull/5537
692
+ [#5548]: https://github.com/activeadmin/activeadmin/pull/5548
693
+ [#5555]: https://github.com/activeadmin/activeadmin/pull/5555
694
+ [#5583]: https://github.com/activeadmin/activeadmin/pull/5583
695
+ [#5590]: https://github.com/activeadmin/activeadmin/pull/5590
696
+ [#5608]: https://github.com/activeadmin/activeadmin/pull/5608
697
+ [#5611]: https://github.com/activeadmin/activeadmin/pull/5611
698
+ [#5627]: https://github.com/activeadmin/activeadmin/pull/5627
699
+ [#5631]: https://github.com/activeadmin/activeadmin/pull/5631
700
+ [#5632]: https://github.com/activeadmin/activeadmin/pull/5632
701
+ [#5650]: https://github.com/activeadmin/activeadmin/pull/5650
702
+ [#5660]: https://github.com/activeadmin/activeadmin/pull/5660
703
+ [#5662]: https://github.com/activeadmin/activeadmin/pull/5662
704
+ [#5710]: https://github.com/activeadmin/activeadmin/pull/5710
705
+ [#5726]: https://github.com/activeadmin/activeadmin/pull/5726
706
+ [#5738]: https://github.com/activeadmin/activeadmin/pull/5738
707
+ [#5740]: https://github.com/activeadmin/activeadmin/pull/5740
708
+ [#5751]: https://github.com/activeadmin/activeadmin/pull/5751
709
+ [#5758]: https://github.com/activeadmin/activeadmin/pull/5758
710
+ [#5777]: https://github.com/activeadmin/activeadmin/pull/5777
711
+ [#5794]: https://github.com/activeadmin/activeadmin/pull/5794
712
+ [#5800]: https://github.com/activeadmin/activeadmin/pull/5800
713
+ [#5801]: https://github.com/activeadmin/activeadmin/pull/5801
714
+ [#5802]: https://github.com/activeadmin/activeadmin/pull/5802
715
+ [#5811]: https://github.com/activeadmin/activeadmin/pull/5811
716
+ [#5816]: https://github.com/activeadmin/activeadmin/pull/5816
717
+ [#5822]: https://github.com/activeadmin/activeadmin/pull/5822
718
+ [#5826]: https://github.com/activeadmin/activeadmin/pull/5826
719
+ [#5831]: https://github.com/activeadmin/activeadmin/pull/5831
720
+ [#5842]: https://github.com/activeadmin/activeadmin/pull/5842
721
+ [#5854]: https://github.com/activeadmin/activeadmin/pull/5854
722
+ [#5855]: https://github.com/activeadmin/activeadmin/pull/5855
723
+ [#5867]: https://github.com/activeadmin/activeadmin/pull/5867
724
+ [#5870]: https://github.com/activeadmin/activeadmin/pull/5870
725
+ [#5874]: https://github.com/activeadmin/activeadmin/pull/5874
726
+ [#5877]: https://github.com/activeadmin/activeadmin/pull/5877
727
+ [#5886]: https://github.com/activeadmin/activeadmin/pull/5886
728
+ [#5887]: https://github.com/activeadmin/activeadmin/pull/5887
729
+ [#5894]: https://github.com/activeadmin/activeadmin/pull/5894
730
+ [#5895]: https://github.com/activeadmin/activeadmin/pull/5895
731
+ [#5929]: https://github.com/activeadmin/activeadmin/pull/5929
732
+ [#5931]: https://github.com/activeadmin/activeadmin/pull/5931
733
+ [#5938]: https://github.com/activeadmin/activeadmin/pull/5938
734
+ [#5943]: https://github.com/activeadmin/activeadmin/pull/5943
735
+ [#5946]: https://github.com/activeadmin/activeadmin/pull/5946
736
+ [#5956]: https://github.com/activeadmin/activeadmin/pull/5956
737
+ [#5957]: https://github.com/activeadmin/activeadmin/pull/5957
738
+ [#5994]: https://github.com/activeadmin/activeadmin/pull/5994
739
+ [#6000]: https://github.com/activeadmin/activeadmin/pull/6000
740
+ [#6002]: https://github.com/activeadmin/activeadmin/pull/6002
741
+ [#6047]: https://github.com/activeadmin/activeadmin/pull/6047
742
+ [#6086]: https://github.com/activeadmin/activeadmin/pull/6086
743
+ [#6099]: https://github.com/activeadmin/activeadmin/pull/6099
744
+ [#6124]: https://github.com/activeadmin/activeadmin/pull/6124
745
+ [#6149]: https://github.com/activeadmin/activeadmin/pull/6149
746
+ [#6198]: https://github.com/activeadmin/activeadmin/pull/6198
747
+ [#6210]: https://github.com/activeadmin/activeadmin/pull/6210
748
+ [#6221]: https://github.com/activeadmin/activeadmin/pull/6221
749
+ [#6232]: https://github.com/activeadmin/activeadmin/pull/6232
750
+ [#6249]: https://github.com/activeadmin/activeadmin/pull/6249
751
+ [#6315]: https://github.com/activeadmin/activeadmin/pull/6315
752
+ [#6318]: https://github.com/activeadmin/activeadmin/pull/6318
753
+ [#6341]: https://github.com/activeadmin/activeadmin/pull/6341
754
+ [#6368]: https://github.com/activeadmin/activeadmin/pull/6368
755
+ [#6393]: https://github.com/activeadmin/activeadmin/pull/6393
756
+ [#6422]: https://github.com/activeadmin/activeadmin/pull/6422
757
+ [#6451]: https://github.com/activeadmin/activeadmin/pull/6451
758
+ [#6460]: https://github.com/activeadmin/activeadmin/pull/6460
759
+ [#6462]: https://github.com/activeadmin/activeadmin/pull/6462
760
+ [#6487]: https://github.com/activeadmin/activeadmin/pull/6487
761
+ [#6523]: https://github.com/activeadmin/activeadmin/pull/6523
762
+ [#6536]: https://github.com/activeadmin/activeadmin/pull/6536
763
+ [#6548]: https://github.com/activeadmin/activeadmin/pull/6548
764
+ [#6583]: https://github.com/activeadmin/activeadmin/pull/6583
765
+ [#6584]: https://github.com/activeadmin/activeadmin/pull/6584
766
+ [#6872]: https://github.com/activeadmin/activeadmin/pull/6872
767
+ [#6873]: https://github.com/activeadmin/activeadmin/pull/6873
768
+ [#6884]: https://github.com/activeadmin/activeadmin/pull/6884
769
+ [#6906]: https://github.com/activeadmin/activeadmin/pull/6906
770
+ [#6915]: https://github.com/activeadmin/activeadmin/pull/6915
771
+ [#6916]: https://github.com/activeadmin/activeadmin/pull/6916
772
+ [#6922]: https://github.com/activeadmin/activeadmin/pull/6922
773
+ [#6936]: https://github.com/activeadmin/activeadmin/pull/6936
774
+ [#6954]: https://github.com/activeadmin/activeadmin/pull/6954
775
+ [#6959]: https://github.com/activeadmin/activeadmin/pull/6959
776
+ [#7095]: https://github.com/activeadmin/activeadmin/pull/7095
777
+ [#7127]: https://github.com/activeadmin/activeadmin/pull/7127
778
+ [#7144]: https://github.com/activeadmin/activeadmin/pull/7144
779
+ [#7170]: https://github.com/activeadmin/activeadmin/pull/7170
780
+ [#7181]: https://github.com/activeadmin/activeadmin/pull/7181
781
+ [#7205]: https://github.com/activeadmin/activeadmin/pull/7205
782
+ [#7235]: https://github.com/activeadmin/activeadmin/pull/7235
783
+ [#7236]: https://github.com/activeadmin/activeadmin/pull/7236
784
+ [#7262]: https://github.com/activeadmin/activeadmin/pull/7262
785
+ [#7293]: https://github.com/activeadmin/activeadmin/pull/7293
786
+ [#7332]: https://github.com/activeadmin/activeadmin/pull/7332
787
+ [#7336]: https://github.com/activeadmin/activeadmin/pull/7336
788
+ [#7340]: https://github.com/activeadmin/activeadmin/pull/7340
789
+ [#7341]: https://github.com/activeadmin/activeadmin/pull/7341
790
+ [#7349]: https://github.com/activeadmin/activeadmin/pull/7349
791
+ [#7350]: https://github.com/activeadmin/activeadmin/pull/7350
792
+ [#7377]: https://github.com/activeadmin/activeadmin/pull/7377
793
+ [#7384]: https://github.com/activeadmin/activeadmin/pull/7384
794
+ [#7394]: https://github.com/activeadmin/activeadmin/pull/7394
795
+ [#7453]: https://github.com/activeadmin/activeadmin/pull/7453
796
+ [#7475]: https://github.com/activeadmin/activeadmin/pull/7475
797
+ [#7476]: https://github.com/activeadmin/activeadmin/pull/7476
798
+ [#7479]: https://github.com/activeadmin/activeadmin/pull/7479
799
+ [#7487]: https://github.com/activeadmin/activeadmin/pull/7487
800
+ [#7488]: https://github.com/activeadmin/activeadmin/pull/7488
124
801
 
802
+ [@1000ship]: https://github.com/1000ship
803
+ [@5t111111]: https://github.com/5t111111
804
+ [@aarek]: https://github.com/aarek
805
+ [@adler99]: https://github.com/adler99
806
+ [@agrobbin]: https://github.com/agrobbin
807
+ [@ajw725]: https://github.com/ajw725
808
+ [@alejandroperea]: https://github.com/alejandroperea
809
+ [@alex-bogomolov]: https://github.com/alex-bogomolov
810
+ [@amiel]: https://github.com/amiel
811
+ [@amit]: https://github.com/amit
812
+ [@amiuhle]: https://github.com/amiuhle
813
+ [@andreslemik]: https://github.com/andreslemik
814
+ [@bartoszkopinski]: https://github.com/bartoszkopinski
815
+ [@blocknotes]: https://github.com/blocknotes
125
816
  [@bolshakov]: https://github.com/bolshakov
817
+ [@brunvez]: https://github.com/brunvez
818
+ [@buren]: https://github.com/buren
126
819
  [@chancancode]: https://github.com/chancancode
820
+ [@chrp]: https://github.com/chrp
821
+ [@chumakoff]: https://github.com/chumakoff
822
+ [@cprodhomme]: https://github.com/cprodhomme
127
823
  [@craigmcnamara]: https://github.com/craigmcnamara
824
+ [@DanielHeath]: https://github.com/DanielHeath
128
825
  [@deivid-rodriguez]: https://github.com/deivid-rodriguez
826
+ [@dennisvdvliet]: https://github.com/dennisvdvliet
827
+ [@dhyegofernando]: https://github.com/dhyegofernando
828
+ [@dkniffin]: https://github.com/dkniffin
129
829
  [@dmitry]: https://github.com/dmitry
130
830
  [@drn]: https://github.com/drn
831
+ [@eikes]: https://github.com/eikes
832
+ [@f1sherman]: https://github.com/f1sherman
833
+ [@FabioRos]: https://github.com/FabioRos
834
+ [@faucct]: https://github.com/faucct
131
835
  [@Fivell]: https://github.com/Fivell
836
+ [@Fs00]: https://github.com/Fs00
837
+ [@fuzziness]: https://github.com/fuzziness
838
+ [@giapnhdev]: https://github.com/giapnhdev
839
+ [@gigorok]: https://github.com/gigorok
840
+ [@glebtv]: https://github.com/glebtv
132
841
  [@gonzedge]: https://github.com/gonzedge
842
+ [@guigs]: https://github.com/guigs
843
+ [@HappyKadaver]: https://github.com/HappyKadaver
844
+ [@imcvampire]: https://github.com/imcvampire
845
+ [@innparusu95]: https://github.com/innparusu95
846
+ [@ionut998]: https://github.com/ionut998
847
+ [@irmela]: https://github.com/irmela
848
+ [@ispyropoulos]: https://github.com/ispyropoulos
849
+ [@Ivanov-Anton]: https://github.com/Ivanov-Anton
850
+ [@jasl]: https://github.com/jasl
851
+ [@javawizard]: https://github.com/javawizard
852
+ [@javierjulio]: https://github.com/javierjulio
853
+ [@jawa]: https://github.com/jawa
854
+ [@jaynetics]: https://github.com/jaynetics
855
+ [@JiiHu]: https://github.com/JiiHu
856
+ [@jiikko]: https://github.com/jiikko
133
857
  [@johnnyshields]: https://github.com/johnnyshields
858
+ [@jscheid]: https://github.com/jscheid
859
+ [@juril33t]: https://github.com/juril33t
860
+ [@jwesorick]: https://github.com/jwesorick
861
+ [@Karoid]: https://github.com/Karoid
862
+ [@kjeldahl]: https://github.com/kjeldahl
863
+ [@ko-lem]: https://github.com/ko-lem
864
+ [@kobeumut]: https://github.com/kobeumut
865
+ [@Kris-LIBIS]: https://github.com/Kris-LIBIS
866
+ [@krzcho]: https://github.com/krzcho
867
+ [@kwent]: https://github.com/kwent
868
+ [@leio10]: https://github.com/leio10
869
+ [@littleforest]: https://github.com/littleforest
870
+ [@Looooong]: https://github.com/Looooong
871
+ [@lubosch]: https://github.com/lubosch
872
+ [@markstory]: https://github.com/markstory
873
+ [@mauriciopasquier]: https://github.com/mauriciopasquier
874
+ [@mconiglio]: https://github.com/mconiglio
875
+ [@mgrunberg]: https://github.com/mgrunberg
876
+ [@micred]: https://github.com/micred
877
+ [@mirelon]: https://github.com/mirelon
878
+ [@MmKolodziej]: https://github.com/MmKolodziej
879
+ [@mshalaby]: https://github.com/mshalaby
880
+ [@munen]: https://github.com/munen
881
+ [@mvz]: https://github.com/mvz
882
+ [@ndbroadbent]: https://github.com/ndbroadbent
883
+ [@ngouy]: https://github.com/ngouy
884
+ [@Nguyenanh]: https://github.com/Nguyenanh
885
+ [@orkhan]: https://github.com/orkhan
886
+ [@panasyuk]: https://github.com/panasyuk
134
887
  [@PChambino]: https://github.com/PChambino
135
888
  [@potatosalad]: https://github.com/potatosalad
136
889
  [@pranas]: https://github.com/pranas
890
+ [@renotocn]: https://github.com/renotocn
891
+ [@rn0rno]: https://github.com/rn0rno
892
+ [@RobinvanderVliet]: https://github.com/RobinvanderVliet
893
+ [@rogerkk]: https://github.com/rogerkk
894
+ [@roramirez]: https://github.com/roramirez
137
895
  [@seanlinsley]: https://github.com/seanlinsley
896
+ [@sergey-alekseev]: https://github.com/sergey-alekseev
897
+ [@sgara]: https://github.com/sgara
898
+ [@ShallmentMo]: https://github.com/ShallmentMo
138
899
  [@shekibobo]: https://github.com/shekibobo
900
+ [@shouya]: https://github.com/shouya
901
+ [@sjieg]: https://github.com/sjieg
902
+ [@sprql]: https://github.com/sprql
903
+ [@stefsava]: https://github.com/stefsava
904
+ [@stereoscott]: https://github.com/stereoscott
905
+ [@tagliala]: https://github.com/tagliala
906
+ [@taralbass]: https://github.com/taralbass
907
+ [@tf]: https://github.com/tf
908
+ [@tiagotex]: https://github.com/tiagotex
139
909
  [@timoschilling]: https://github.com/timoschilling
140
910
  [@TimPetricola]: https://github.com/TimPetricola
911
+ [@tomgilligan]: https://github.com/tomgilligan
912
+ [@TonyArra]: https://github.com/TonyArra
913
+ [@tordans]: https://github.com/tordans
914
+ [@utkarsh2102]: https://github.com/utkarsh2102
141
915
  [@varyonic]: https://github.com/varyonic
916
+ [@vcsjones]: https://github.com/vcsjones
917
+ [@vfonic]: https://github.com/vfonic
918
+ [@violeta-p]: https://github.com/violeta-p
919
+ [@vlad-psh]: https://github.com/vlad-psh
920
+ [@WaKeMaTTa]: https://github.com/WaKeMaTTa
921
+ [@wasifhossain]: https://github.com/wasifhossain
922
+ [@westonganger]: https://github.com/westonganger
923
+ [@Wowu]: https://github.com/Wowu
924
+ [@wspurgin]: https://github.com/wspurgin
142
925
  [@zorab47]: https://github.com/zorab47