!! WARNING This first beta version of Infrahub v1.4.0 does not support upgrading an existing database yet. It is supposed to be used for testing purposes only, starting from an empty database !!
Main changes
UI generic list view allows you to select a specific schema node
The list view of generic schema nodes, now contains a dropdown control that allows you to select a specific schema node that inherits from this generic. When selecting a specific schema node, the list view will be filtered to the objects of that kind and the columns in the list view will now show you the attributes and relationships of that kind.
If there's only 1 specific schema node inheriting from the generic, then it will be automatically selected and the list view will immediately show the attributes and relationships of this schema node.
IPAM improvements
Improved contextual information on prefixes and addresses
The IPAM views have been updated to leverage the [generic list view improvements](#UI generic list view allows you to select a specific schema node). Schema nodes inheriting from the BuiltinIPPrefix or BuiltinIPAddress generics will now show additional attributes and relationships that are defined on them, providing more context when navigating the IPAM tree.
Hide tree navigation component
You can now hide the IPAM tree navigation component, providing more space to display the information in the IP prefix and IP address list views.
Display available prefix or address space
Infrahub can now optionally display available IP prefixes or IP addresses in the IPAM view.
For prefixes, Infrahub will automatically calculate the largest available prefixes it can create and display them in the interface.
Similarly Infrahub will calculate the available IP addresses, summarizing them into ranges when possible.
Create new IP Prefix or IP Address objects from available prefix or address space
Clicking an available IP Prefix or IP Address in the list view of Infrahub, will now open the object creation form, which will be prefilled with the available IP prefix or IP address, simplifying the process of creating new IP Address or IP Prefix records.
Improved default view
When you click on an IP Prefix object in the IP prefix list view, Infrahub will now show you the child prefixes or the IP addresses contained within that prefix. What data is being displayed depends on the member type defined on the prefix object.
Additionally more detailed information about the prefix will be available in that view.
Performance improvements
Performance improvements have been made to improve the overall user experience while navigating your IPAM data in Infrahub.
Ability to create new IP prefixes and IP addresses using resource managers
The frontend now supports creating new IP prefix and IP address objects using resource managers, previously this was only possible on nodes that had a relation to an IP address or IP prefix object.
Bulk edit capabilities
Infrahub now supports bulk edit capabilities in the object list view in the web interface, allowing you to modify attributes/relationships of multiple nodes in a single operation.
Custom webhooks now support signing and authentication using a shared key
Infrahub now supports authentication and signing for custom webhooks. Previously this was only possible for standard webhooks.
Performance improvements
Several improvements were made to improve the performance of Infrahub.
- Re-enable attribute indexes at the database level
- Support scaling out the prefect task manager component (enterprise) (experimental)
Full changelog
Added
-
Add support for nested named GraphQL fragments for cardinality=many relationships. (#5322)
-
Added support for authentication / signing to custom webhooks. If using a transform it is assumed that the transform renders JSON data. (#6521)
-
Enhance form context to auto-fill parent fields based on the current view.
When a user is viewing a node, adding certain relationships will automatically populate parent fields in the form using information from the current node, if available. (#6686) -
Make created_by relationship of CoreProposedChange read-only. Set the relationship server-side during the CoreProposedChangeCreate mutation.
-
Add
CoreProposedChangeAvailableActions
GraphQL query to get possible actions that can be taken by someone on a proposed change -
Add a permission to allow users to review proposed changes (identifier
global:review_proposed_change:allow_all
). Users with existing Infrahub instances may need to create this permission to use it. -
Add events for proposed change reviews and merge
-
Add support to see available IP spaces when querying for generic IP prefixes or generic IP addresses by using the
include_available
filter -
Added new database-level indexing logic to improve performance of queries that are searching for specific values
-
New on IPAM:
- IP Prefix details page now shows the list of members first instead of full details.
- When viewing a prefix's children list, you can now see the available sub-prefixes.
-
On generic list view and IPAM, we added a new picker to select an inheriting schema. When you pick one:
- The list view updates to display all columns defined by that schema.
- Filtering and sorting are supported on these schema-specific fields.
If the generic schema has only one inheriting schema, the list view will automatically display its columns without requiring manual selection.
-
You can now bulk edit selected rows in object list view
Changed
-
- Enhance the Proposed Changes list view by adding filters and improving the UI.
- Enhance actions and add a select menu to choose which action to trigger.
- Allow draft states for proposed changes
-
Allow
prefix_length
to be omitted when usingIPPrefixGetNextAvailable
GraphQL query to return the first next available prefix -
Deprecate
IPAddressGetNextAvailable
andIPPrefixGetNextAvailable
in favour ofInfrahubIPAddressGetNextAvailable
andInfrahubIPPrefixGetNextAvailable
respectively. Also deprecate mutationsIPPrefixPoolGetResource
andIPAddressPoolGetResource
in favour ofIPPrefixPoolGetResource
andInfrahubIPAddressPoolGetResource
. -
Stopped the IPAM menu item from showing up if there are no nodes inheriting from BuiltinIPAddress or BuiltinIPPrefix
Fixed
- Raise error on schema load if someone tries to override the peer of a generic relationship as the GraphQL schema doesn't allow for that. (#6699)
- Fix bug that prevented proposed changes in the
merging
state from showing in the UI. (#6749) - Fix: Always show suggested filters
- Fixed RelationshipAdd and RelationshipRemove mutations so they can't update read-only relationships