Upgrading the App¶
Here you will find any steps necessary to upgrade the App in your Nautobot environment.
Upgrade Guide¶
When a new release comes out it may be necessary to run a migration of the database to account for any changes in the data models used by this app. Execute the command nautobot-server post_upgrade within the runtime environment of your Nautobot installation after updating the nautobot-operational-compliance package via pip.
Version-specific Notes¶
v3.2.0¶
The ValidationResult GraphQL reverse-relation names were renamed to snake_case:
| Old name | New name |
|---|---|
resultPre |
result_pre |
resultPost |
result_post |
GraphQL exposes reverse relations by their related_name, so any saved query or dashboard using the old names will error after upgrading to v3.2.0 or later. Update those queries to use the new names.