Skip to content

Latest commit

 

History

History
567 lines (457 loc) · 26.8 KB

CHANGELOG.md

File metadata and controls

567 lines (457 loc) · 26.8 KB

Changelog

Unreleased

Enhancements

Minor

  • Bump minimum ransack requirement to make sure everyone gets a version that works ok with all supported versions of Rails. #5831 by @deivid-rodriguez

Bug Fixes

  • Fix CSVBuilder not respecting ActiveAdmin.application.csv_options = { humanize_name: false } setting. #5800 by @HappyKadaver
  • Fix crash when displaying current filters after filtering by a nested resource. #5816 by @deivid-rodriguez
  • 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
  • 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

2.2.0

Enhancements

Minor

  • 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
  • Add Macedonian locale. #5710 by @violeta-p

Bug Fixes

2.1.0

Bug Fixes

  • Ensure application gets reloaded only once. #5740 by @jscheid
  • Crash when rendering comments from a custom controller block. #5758 by @deivid-rodriguez
  • 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

Removals

2.0.0

No changes.

2.0.0.rc2

Enhancements

Minor

2.0.0.rc1

Enhancements

  • Add your own content to the site <head>, like analytics. #5590 by @buren

    ActiveAdmin.setup do |config|
      config.head = ''.html_safe
    end
  • Consider authorization when displaying comments in show page. #5555 by @amiuhle

Minor

  • Add better support for rendering lists. #5370 by @dkniffin
  • 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

Security Fixes

  • Prevent leaking hashed passwords via user CSV export and adds a config option for sensitive attributes. #5486 by @chrp

Bug Fixes

Removals

  • Rails 4.2 support has been dropped. #5104 by @javierjulio and @deivid-rodriguez
  • Dependency on coffee-rails has been removed. #5081 by @javierjulio If your application uses coffescript but was relying on ActiveAdmin to provide the dependency, you need to add the coffee-script gem to your Gemfile to restore it. If your only usage of coffescript was the active_admin.js.coffee generated by ActiveAdmin's generator, you can also convert that file to plain JS (//= require active_admin/base if you didn't add any stuff to it).
  • Devise 3 support has been dropped. #5608 by @deivid-rodriguez and @javierjulio
  • action_item without a name has been removed. #5099 by @javierjulio

1.4.3

Bug Fixes

1.4.2

Bug Fixes

  • Fix input_html filter option evaluated only once. #5376 by @kjeldahl

1.4.1

Bug Fixes

1.4.0

Enhancements

Minor

Bug Fixes

  • Fixed the string representation of the resolved sort_key when no explicit sortable attribute is passed. #5464 by @chumakoff
  • 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
  • Fixed if: scope option when a lambda is passed. #5501 by @deivid-rodriguez
  • Comment validation adding redundant errors when resource is missing. #5517 by @deivid-rodriguez
  • Fixed resource filtering by association when the resource has custom primary key. #5446 by @wasifhossain
  • Fixed "create anoter" checkbox styling. #5324 by @faucct

1.3.1

Bug Fixes

  • gemspec should have more permissive ransack dependency. #5448 by @varyonic

1.3.0

Enhancements

Major

1.2.1

Bug Fixes

1.2.0

Enhancements

Minor

Bug Fixes

1.1.0

Bug Fixes

  • Fixed #5093 Handle table prefix & table suffix for ActiveAdminComment model
  • Fixed #4173 by including the default Kaminari templates. #5069 by @javierjulio
  • Fixed #5043. Do not crash in sidebar rendering when a default scope is not specified. #5044 by @Fivell
  • Fixed #3894. Make tab's component work with non-ascii titles. #5046 by @Fivell

Removals

  • Ruby 2.1 support has been dropped. #5003 by @deivid-rodriguez
  • Replaced sass-rails with sass dependency. #5037 by @javierjulio
  • Removed jquery-ui-rails as a dependency. #5052 by @javierjulio The specific jQuery UI assets used are now within the vendor directory. This will be replaced by alternatives and dropped entirely in a major release. Please remove any direct inclusions of //= require jquery-ui. This allows us to upgrade to jquery v3.

Deprecations

  • 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

  • Deprecated type param from status_tag and related CSS classes #4989 by @javierjulio The method signature has changed from:

    status_tag(status, :ok, class: 'completed', label: 'on')

    to:

    status_tag(status, class: 'completed ok', label: 'on')

    The following CSS classes have been deprecated and will be removed in the future:

    .status_tag {
      &.ok, &.published, &.complete, &.completed, &.green { background: #8daa92; }
      &.warn, &.warning, &.orange { background: #e29b20; }
      &.error, &.errored, &.red { background: #d45f53; }
    }

Enhancements

Minor

  • Support proc as an input_html option value when declaring filters. #5029 by @Fivell
  • Base localization support, better associations handling for active filters sidebar. #4951 by @Fivell
  • Allow AA scopes to return paginated collections. #4996 by @Fivell
  • Added scopes_show_count configuration to setup show_count attribute for scopes globally. #4950 by @Fivell
  • Allow custom panel title given with attributes_table. #4940 by @ajw725
  • Allow passing a class to action_item block. #4997 by @Fivell
  • Add pagination to the comments section. #5088 by @alex-bogomolov

1.0.0

Breaking Changes

Enhancements

Major

Minor

Security Fixes

Bug Fixes

  • Fixes filters for has_many :through relationships. #2541 by @shekibobo
  • "New" action item now only shows up on the index page. bf659bc by @seanlinsley
  • Fixes comment creation bug with aliased resources. 9a082486 by @seanlinsley
  • Fixes the deletion of :if and :unless from filters. #2523 by @PChambino

Deprecations

  • ActiveAdmin::Event (ActiveAdmin::EventDispatcher). #3435 by @timoschilling ActiveAdmin::Event will be removed in a future version, ActiveAdmin switched to use ActiveSupport::Notifications NOTE: The blog parameters has changed:

    ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
      # some code
    end
    
    ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"
  • action_item without a name, to introduce a solution for removing action items (remove_action_item(name)). #3091 by @amiel

Previous Changes

Please check 0-6-stable for previous changes.