Please follow the recommended procedure to upgrade your agent version by following this note.
- Add or remove Smart action form fields dynamically
- Use hooks for bulk/global Smart actions
- Scopes are now enforced on all pages of the application
- Names of uploaded files are persisted and displayed, even when using the default handlers
Upgrading to v8
To upgrade to v8, run the following and then update your project as shown in the Breaking Changes section below.- SQL
- Mongoose
In case of a regression introduced in Production after the upgrade, a rollback to your previous agent is the fastest way to restore your admin panel.
Breaking changes
CORS allowed headers
Every collection calls (CRUD operations) to your agent will now be performed with a new header calledForest-Context-Url . This header contains the current URL of the user performing requests. This can be handy if you need information on the context this user is working on.
If you don’t have any restriction on headers within your CORS configuration, nothing needs to be changed, you can move on to the next section.
If you have configured a header whitelist (allowedHeaders in express for instance) in your CORS configuration, you need to add this new header to the whitelist, otherwise browsers won’t trigger request anymore due to CORS policy:
After
File Upload
Until now, once you had submitted a file for upload, the file name wasn’t persisted. We have now made so that it is possible to save and display it. If you use a regex to parse data before sending it for upload (like we originally suggested in this Woodshop tutorial), there is a breaking change: you need to use the output of theparseDataUri method.
After
Scopes
Scopes have been revamped, from a convenient alternative to segments, to a security feature. They are now enforced by the agent (server-side). This update comes with many breaking changes in the prototype of helpers which are provided to access and modify data. All occurrences of calls toRecordsGetter, RecordCounter, RecordsExporter, RecordsRemover, RecordCreator, RecordGetter, RecordUpdater, RecordRemover , RecordsCounter, must be updated.
Note that RecordSerializer was not modified, and can be used to serialize and deserialize models.
After
Smart actions
1st change: The Smart actionchange hook method name is no longer the fieldName. You are now required to declare the hook name as a property inside the field.
After
hooks functions has changed. fields is now an array. You must change the way you access fields.
After
hooks functions has changed. In order to support hooks for global and bulk smart actions, record is no longer sent to the hook. You must change the way you get the record information. This change also prevents unnecessary computation in case you don’t need to access the record(s) inside the hooks.
After
- SQL
- Mongoose