Skip to content

Latest commit

 

History

History
115 lines (97 loc) · 5.33 KB

CHANGELOG.md

File metadata and controls

115 lines (97 loc) · 5.33 KB

Changelog

1.0.0 (unreleased)

Breaking Changes

  • Rename allow_comments to comments for more consistent naming #3695 by @pranas
  • JavaScript window.AA has been removed, use window.ActiveAdmin #3606 by @timoschilling
  • f.form_buffers has been removed #3486 by @varyonic
  • Iconic has been removed #3553 by @timoschilling
  • config.show_comments_in_menu has been removed [#4187][] by [@drn][]

Enhancements

Major

Minor

    controller do
      # Redirects to index page instead of rendering updated resource
      def update
        update!{ collection_path }
      end
    end
index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
  • Comments menu can be customized via configuration passed to config.comments_menu [#4187][] by [@drn][]

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"

Previous Changes

Please check 0-6-stable for previous changes.