Upgrade to v5

The purpose of this note is to help developers to upgrade their agent from v4 to v5. Please read carefully and integrate the following breaking changes to ensure a smooth update.​

Upgrade to v5

Upgrading to v5

To upgrade to v5, update the version in your Gemfile, then run:

bundle install

In case of a regression introduced in Production after the upgrade, a rollback to your previous agent version 4 is the fastest way to restore your admin panel.

Breaking changes

Select all feature

This version also introduces the new Select all behavior. Once you've updated your bulk Smart Actions according to the below changes, you'll be able to choose between selecting all the records or only those displayed on the current page.

/controllers/forest/companies_controller.rb
# BEFORE
class Forest::CompaniesController < ForestLiana::SmartActionsController
  def mark_as_live
    company_ids = params.dig('data', 'attributes', 'ids')
    # ...
    render json: { success: 'Companies are now live!' }
  end
end
# AFTER
class Forest::CompaniesController < ForestLiana::SmartActionsController
  def mark_as_live
    company_ids = ForestLiana::ResourcesGetter.get_ids_from_request(params)
    # ...
    render json: { success: 'Companies are now live!' }
  end
end

Important Notice

Changelogs

This release note covers only the major changes. To learn more, please refer to the changelogs in our different repositories:

Last updated

Was this helpful?