Upgrading to v5
To upgrade to v5, update the version in your Gemfile, then run: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.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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.
bundle install
# 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
Was this page helpful?