Nautobot v2.3¶
This document describes all new features and changes in Nautobot 2.3.
Upgrade Actions¶
Administrators¶
Administrators should plan to take these actions during or immediately after upgrade from a previous version. New installations should also take note of these actions where appropriate.
- Python 3.12 is now the default recommended version of Python.
Python 3.12
Because Nautobot prior to 2.3.0 did not declare support for Python 3.12, most Apps similarly needed to previously declare an upper bound of Python 3.11 for their own compatibility. Therefore, older versions of most Apps will not be installable under Python 3.12. Before migrating your Nautobot environment to Python 3.12, it is your responsibility to confirm that all relevant Apps in your environment are also compatible and installable.
There is a minor "chicken-and-egg" problem here in that Apps generally cannot declare support for a new Python version before Nautobot itself publishes a release that does so; therefore, as of the 2.3.0 Nautobot release day, most Apps have not yet been updated to declare support for Python 3.12. We'll be working in the following days to promptly update our supported Apps as needed, so stay tuned.
Docker images
As has been Nautobot's policy since version 1.6.1, our published Docker images that are not tagged with a specific Python version implicitly always include the latest supported version of Python. This means that as of the release of Nautobot 2.3.0, the tags latest, stable, 2.3, and 2.3.0 will all indicate Docker images that include Python 3.12, whereas previously these indicated Python 3.11 images. As noted above and below, updating to Python 3.12 may not be immediately desirable (or even possible, depending on the status of your Apps) as a "day one" action.
If you need to stay with a given Python version for the time being, you must make sure that you're relying on an appropriately specific image tag, such as 2.3-py3.11, stable-py3.10, etc.
- As noted below, a new system job is provided for automated Dynamic Group cache updates. Administrators should schedule this system job to run on a recurring basis within the Jobs UI, after the upgrade, or on new install. Configuration referencing the
DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUTsetting can be safely removed, as it is no longer used. If this setting was being used previously, it is recommended to set the new scheduled job's interval to the same value. - As noted below, change logging retention cleanup is now handled via a system job. Administrators should schedule this job to run on a recurring basis to meet their needs. The
CHANGELOG_RETENTIONsetting is still used to define the retention period, but the scheduled system job will perform the actual cleanup, if any needed.
Job Authors & App Developers¶
Job Authors and App Developers should take these actions to ensure compatibility with their Jobs and Apps.
- Job Authors and App Developers should carefully consider the updates to the DynamicGroup API and decide if their use cases dictate changing their group membership access patterns to use
DynamicGroup.update_cached_members()to find the correct balance between Dynamic Group performance and membership updates. - Job Authors and App Developers should carefully consider the updates to the TreeManager default behavior and make necessary changes to their access of Tree based models.
- Django 4.2 is now required by Nautobot, replacing the previous Django 3.2 dependency. Job Authors and App Developers should carefully consider the updates and changes in the Django release-notes (4.0, 4.1, 4.2), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.
Django 4
Django 4 includes a small number of breaking changes compared to Django 3. In our experience, most Apps have required few (or zero) updates to be Django 4 compatible, but your mileage may vary.
- Python 3.12 is now supported by Nautobot and is now the default recommended version of Python. Apps will likely need to update their packaging in order to explicitly declare support for Python 3.12.
- App Developers should review the feature set of their data models and consider whether their models should opt into or out of inclusion in Dynamic Groups, Contacts/Teams, Object Metadata, and Saved Views via the inclusion or omission of appropriate model mixins and flag variables. Refer to the developer documentation for details.
Release Overview¶
Added¶
Cloud Models (#5716, #5719, #5721, #5872)¶
Added the new models CloudAccount, CloudResourceType, CloudNetwork, and CloudService to support recording of cloud provider accounts (AWS, Azure, GCP, DigitalOcean, etc.), cloud resource types (AWS EC2, Azure Virtual Machine Service, Google App Engine, etc.), cloud services (specific instances of services described by cloud resource types) and cloud network objects (such as VPCs) in Nautobot.
Device Modules (#2101)¶
Added new models for ModuleBay, Module, ModuleType, and ModuleBayTemplate to support modeling line cards and other modular components of a device. These models allow you to define a hierarchy of module bays and modules within a device, and to assign components (such as interfaces, power ports, etc.) to specific modules.
Dynamic Group Enhancements (#5472, #5786)¶
Dynamic Groups now have a group_type field, which specifies whether this group is defined by an object filter, defined by aggregating other groups via set operations, or defined via static assignment of objects as group members (this third type is new in Nautobot 2.3). Additionally, you can now assign a tenant and/or tags to each Dynamic Group, and many more models now can be included in Dynamic Groups.
A new model, StaticGroupAssociation, and associated REST API, have been added in support of the new "static" group type. See also "Dynamic Group Cache Changes" below.
For more details, refer to the Dynamic Group documentation.
Interface and VMInterface Roles (#4406)¶
Added an optional role field to Interface and VMInterface models to track common interface configurations. Now the users can create Role instances that can be assigned to interfaces and vminterfaces.
Object Metadata Models (#5663)¶
Added a set of functionality for defining and managing object metadata, that is to say, data about the network data managed in Nautobot, such as data provenance, data ownership, and data classification. For more details, refer to the linked documentation.
Python 3.12 Support (#5429)¶
Nautobot now supports Python 3.12, and Python 3.12 is now the default Python version included in the nautobot Docker images.
VLANGroup Model Enhancement (#6309)¶
Added in version 2.3.6
Added a range field on the VLANGroup model with a default value of 1-4094. VLANGroup model now also supports custom_links, export_templates, tags, and webhooks.
Saved Views (#1758)¶
Added the ability for users to save multiple configurations of list views (table columns, filtering, pagination and sorting) for ease of later use and reuse. Refer to the Saved View documentation for more details and on how to use saved views.
Worker Status Page (#5873)¶
User accounts with the is_staff flag set can access a new worker status page at /worker-status/ to view the status of the Celery worker(s) and the configured queues. The link to this page appears in the "User" dropdown at the bottom of the navigation menu, under the link to the "Profile" page. Use this page with caution as it runs a live query against the Celery worker(s) and may impact performance of your web service.
Changed¶
Changed TreeManager Default Behavior (#5786)¶
The TreeManager class (used for tree-models such as Location, RackGroup, and TenantGroup) default behavior has changed from with_tree_fields to without_tree_fields. This should improve performance in many cases but may impact Apps or Jobs that were relying on the old default; such code should be updated to explicitly call .with_tree_fields() where appropriate.
Dynamic Group Cache Changes (#5473)¶
To improve performance of the Dynamic Groups feature, a number of changes have been made:
- Dynamic Groups now always use
StaticGroupAssociationrecords as a database cache of their member objects, rather than optionally caching their members in Redis for a limited time period. For Dynamic Groups of types other than the new "static" group type, theseStaticGroupAssociationrecords are hidden by default from the UI and REST API. - The
DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUTsetting variable is deprecated, as it no longer influences Dynamic Group cache behavior. - The APIs
DynamicGroup.members,DynamicGroup.count,DynamicGroup.has_member(), andobject.dynamic_groupsnow always use the database cache rather than being recalculated on the fly. - The APIs
DynamicGroup.members_cached,DynamicGroup.members_cache_key,object.dynamic_groups_cached,object.dynamic_groups_list, andobject.dynamic_groups_list_cachedare now deprecated. - Editing a Dynamic Group definition refreshes its cached members and those of any "parent" groups that use it.
- Viewing a Dynamic Group detail view in the UI refreshes its cached members (only).
- A new System Job,
Refresh Dynamic Group Caches, can be run or scheduled as appropriate to refresh Dynamic Group member caches on demand. - The existing API
DynamicGroup.update_cached_members()can be called by Apps or Jobs needing to ensure that the cache is up-to-date for any given Dynamic Group.
Log Cleanup as System Job (#3749)¶
Cleanup of the change log (deletion of ObjectChange records older than a given cutoff) is now handled by the new LogsCleanup system Job, rather than occurring at random as a side effect of new change log records being created. Admins desiring automatic cleanup are encouraged to schedule this job to run at an appropriate interval suitable to your deployment's needs.
Info
Setting CHANGELOG_RETENTION in your Nautobot configuration by itself no longer directly results in periodic cleanup of ObjectChange records. You must run (or schedule to periodically run) the LogsCleanup Job for this to occur.
As an additional enhancement, the LogsCleanup Job can also be used to cleanup JobResult records if desired as well.
UI Button Consolidation (#5869, #5870, #5871)¶
Various button groups in the "object list" and "object detail" views have been consolidated following a common UI pattern of a single button for the most common action plus a popup menu for less common actions.
Dependencies¶
Updated to Django 4.2 (#3581)¶
As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (4.0, 4.1, 4.2), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.
v2.3.16 (2025-01-06)¶
Fixed in v2.3.16¶
- #5805 - Enabled extended filter lookup expressions of the
serialfilter for Device, Rack, and InventoryItem. - #5831 - Fixed an issue where the error message for missing custom job templates incorrectly reported "extras/job.html" instead of the actual missing template name.
- #5882 - Fixed
PowerOutletTemplateTableto usepower_port_templateinstead of the incorrect fieldpower_port. - #5882 - Fixed
FrontPortTemplateTableto userear_port_templateinstead of the incorrect fieldrear_port. - #6527 - Disabled (unsupported) sorting by the
Devicecolumn in Console Connections, Power Connections, and Interface Connections list views. - #6669 - Removed the need for
available-prefixes,available-ips, andavailable-vlansAPI endpoints to run validation multiple times. - #6676 - Resolved issue with IPAddressQuerySet
get_or_createmethod signature not matching the base method signature.
Housekeeping in v2.3.16¶
- #6714 - Enabled and addressed Pylint checkers
arguments-differ,arguments-renamed,exec-used,hard-coded-auth-user,super-init-not-called. - #6722 - Enabled Pylint
not-callableandno-membercheckers and addressed issues reported thereby.
v2.3.15 (2025-01-02)¶
Security in v2.3.15¶
- #6695 - Updated dependency
Jinja2to~3.1.5to addressCVE-2024-56201andCVE-2024-56326.
Added in v2.3.15¶
- #6410 - Added
settings.PUBLISH_ROBOTS_TXTconfiguration option, defaulting toTrue.
Changed in v2.3.15¶
- #6583 - Changed
available-vlansAPI endpoint to additionally requireipam.view_vlanpermission to view available VLANs under VLAN Group.
Fixed in v2.3.15¶
- #5545 - Fixed an issue in Dynamic Group Edit View where saving a valid choice in a Select-type CustomField triggered an error.
- #6583 - Fixed
available-vlans,available-ips,available-prefixesAPI endpoints to check object-level constrained permissions. - #6702 - Resolved issue with TagsBulkEditFormMixin missing self.model.
Dependencies in v2.3.15¶
- #6689 - Updated
nh3dependency to~0.2.20. - #6689 - Updated
django-tables2dependency to~2.7.4in Python 3.9 and later, and pinned it to==2.7.0under Python 3.8.
Housekeeping in v2.3.15¶
- #6688 - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.
- #6689 - Updated documentation dependency
mkdocs-materialto~9.5.49. - #6693 - Changed
poetry installin prerelease and release workflows from parallel mode to serial mode. - #6706 - Removed unnecessary
user-data.jsonintegration-test fixture file.
v2.3.14 (2024-12-19)¶
Added in v2.3.14¶
- #6548 - Added logic to set the
parentin theclean()method of the Prefix model, ensuring correct assignment during validation.
Changed in v2.3.14¶
- #6518 - Added VRFs column to Prefixes and Child Prefixes tables.
- #6531 - Restrict the
idfilter field to use to only the__n(negation) lookup filter. - #6548 - Changed the save method of the
Prefixmodel to reparent subnets and IPs only when thenetwork,namespace, orprefix_lengthfields are updated.
Fixed in v2.3.14¶
- #4056 - Fixed filter of add_tags and remove_tags of bulkedit based on content type
- #6204 - Fixed out-of-memory errors when
LogsCleanupsystem job resulted in cascade deletion of many related objects (such asJobLogEntryornautobot_ssot.SyncLogEntryrecords). - #6470 - Fixed untagged VLAN dropdown options mismatch in InterfaceEditForm and in InterfaceBulkEditForm.
- #6496 - Fixed
/ipam/prefixes/<UUID>/available-ips/to correctly consider IPs under child Prefixes. - #6496 - Fixed
Prefix.get_first_available_ip()method to not return IP taken by child Prefixes. - #6664 - Fixed
circuit_typecolumn not included correctly in CircuitTable default columns. - #6678 - Fixed incorrect copy button behavior on global search page.
Documentation in v2.3.14¶
- #6590 - Added an
ExampleEverythingJobto the Example App and updated Job developer documentation to reference it as an example.
Housekeeping in v2.3.14¶
- #6657 - Updated documentation dependency
mkdocs-materialto~9.5.48. - #6659 - Enhanced development environment and associated
invoketasks to be Nautobot major/minor version aware, such that a different Docker composeproject-name(and different local Docker image label) will be used for containers in adevelop-based branch versus anext-based branch. - #6679 - Added
logstask totasks.pyto view the logs of a docker compose service.
v2.3.13 (2024-12-10)¶
Security in v2.3.13¶
- #6615 - Updated
Djangoto~4.2.17due toCVE-2024-53907andCVE-2024-53908.
Added in v2.3.13¶
- #4817 - Added
Clusterfield on DeviceBulkEditForm. - #5333 - Added
Commentsfield on DeviceBulkEditForm. - #6498 - Added support for an additional
suffixwhen utilizing TableExtension to support tables like IPAddressDetailTable. - #6586 - Added description and weight on RoleBulkEditForm.
- #6605 - Added
BaseTablesupport for adata_transform_callbackfunction that can be used to modify the table data after performing automatic QuerySet optimizations. (Several IPAM tables now use this functionality). - #6605 - Enhanced
LinkedCountColumnto support adistinctparameter to handle cases where counts may otherwise be incorrect. - #6605 - Added
ip_addressesandhas_ip_addressesfilter support to Device, Interface, and VirtualMachine FilterSets. - #6613 - Enhanced Prefix detail view "Child Prefixes" table to render associated Locations more intelligently.
- #6614 - Enhanced IP Address tables to show the name of the associated Interface or VM Interface if only a single such association is present for a given IP Address.
Changed in v2.3.13¶
- #6166 - Enhanced the REST API to generally make it possible to create objects with known ids on request.
Fixed in v2.3.13¶
- #3124 - Fixed inability of ImageAttachment and DeviceType API endpoints to accept
multipart/form-datafile uploads. - #5166 - Fixed a
ProgrammingErrorwhen applying permissions containing network-address-based constraints. - #6466 - Fixed
table_configfield not showing up correctly in the Saved View modal. - #6498 - Fixed error when using TableExtension when the table is missing
Meta.default_columns. - #6605 - Improved rendering performance of the IPAddress list view in cases where the
Interfaces,Devices,VM Interfaces,Virtual Machines, and/orAssignedcolumns are not shown. - #6605 - Improved performance of
TreeModel.displaycalculation by making better use of the cache. - #6609 - Fixed unnecessary call to the database when logging from a Job with the parameter
extra={"skip_db_logging": True}. - #6624 - Fixed issue with
group_sync.pywhere it was accessing the settings using environment variable name vs the actual settings name. - #6624 - Fixed the
SOCIAL_AUTH_PIPELINEsettings to include the entire path of thegroup_syncfunction.
Dependencies in v2.3.13¶
- #6615 - Updated
nh3to~0.2.19.
Documentation in v2.3.13¶
- #6622 - Fixed AzureAD documentation for custom_module logging example.
- #6636 - Fixed
group_syncpath in the SSO documentation.
Housekeeping in v2.3.13¶
- #6615 - Updated documentation dependency
mkdocs-materialto~9.5.47.
v2.3.12 (2024-11-25)¶
Added in v2.3.12¶
- #6532 - Added a keyboard shortcut (⌘+enter or ctrl+enter) to submit forms when typing in a textarea.
- #6543 - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.
- #6550 - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.
Fixed in v2.3.12¶
- #6242 - Fixed "copy" button on Device tabbed views to now only copy the device name.
- #6478 - Fixed inconsistent rendering of the Role field.
- #6509 - Disallowed association of
ObjectMetadataas metadata to otherObjectMetadatarecords. - #6509 - Removed unused object-detail view for
ObjectMetadatarecords. - #6519 - Fixed
vrffield options not loading in VMInterfaceBulkEditForm, VMInterfaceForm, and VMInterfaceCreateForm. - #6519 - Added missing
VRFentry in VMInterface detail view. - #6533 - Fixed an issue where the string representation of the Note model would throw an error if accessed before saving it to the database.
- #6547 - Fixed incorrect VRF filter specified on VRF column on Prefix Table.
- #6564 - Fixed an
AttributeErrorraised when an App overrides a NautobotUIViewSet view.
Dependencies in v2.3.12¶
- #6459 - Updated
mysqlclientdependency to~2.2.6.
Documentation in v2.3.12¶
- #6516 - Updated release notes to make it clearer which are model changes.
- #6524 - Updated AzureAD authentication documentation.
- #6567 - Fixed incorrect example in documentation on using test factories.
Housekeeping in v2.3.12¶
- #6459 - Updated documentation dependencies
mkdocs-redirectsto1.2.2andmkdocs-materialto9.5.46. - #6500 - Added support for
invoke showmigrationscommand.
v2.3.11 (2024-11-12)¶
Added in v2.3.11¶
- #6231 - Added
nautobot.apps.utils.get_related_field_for_models()helper function. - #6231 - Added optional
lookupparameter toLinkedCountColumn.
Changed in v2.3.11¶
- #5321 - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.
- #6231 - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying
1. - #6465 - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.
Fixed in v2.3.11¶
- #6414 - Fixed layout bug in browsable REST API.
- #6442 - Fixed an issue where GitLab CI pipelines fail using all versions of official Docker images.
- #6453 - Fixed issue where interfaces cannot be removed/deleted from an Interface for Modules.
- #6472 - Fixed incorrect placement of buttons in create and edit views.
- #6472 - Fixed the panel width in multiple create and edit views.
- #6490 - Added missing
vrf_countcolumn to Prefix table in PrefixListView. - #6491 - Added missing
vrffield toVMInterfaceFormandVMInterfaceCreateForm. - #6492 - Fixed
vlan_groupfield is not filtered bylocationsfield input on VLANForm.
Documentation in v2.3.11¶
- #6485 - Added additional clarification for enabling request profiling via user profile.
Housekeeping in v2.3.11¶
- #6449 - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.
- #6449 - Fixed incorrect assertion in core navbar integration tests.
- #6449 - Added helper functions to SeleniumTestCase to perform some common UI actions.
- #6455 - Fixed two tests which always passed due to errors in their implementation. Ensured they provide value by checking against the correct results.
- #6497 - Added support for
--no-reusedboption toinvoke integration-testtask.
v2.3.10 (2024-10-29)¶
Added in v2.3.10¶
- #6421 - Added cacheable
CustomField.objects.keys_for_model(model)API. - #6421 - Added queryset caching in
web_request_contextfor more efficient JobHook and Webhook dispatching on bulk requests. - #6421 - Added logging to JobResults for CustomField provisioning background tasks.
- #6421 - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.
Changed in v2.3.10¶
- #6421 - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.
Fixed in v2.3.10¶
- #6421 - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.
- #6441 - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.
Dependencies in v2.3.10¶
- #6423 - Updated
mysqlclientto~2.2.5.
Housekeeping in v2.3.10¶
- #6423 - Updated documentation dependency
mkdocs-materialto~9.5.42.
v2.3.9 (2024-10-28)¶
Added in v2.3.9¶
- #4899 - Added TableExtension class to allow app developers to add columns to core tables.
- #6336 - Added logic to ModuleBay model to ensure that if the
positionfield is empty, its value will be automatically populated from thenameof the Module Bay instance. - #6372 - Added environment variable support for setting
CSRF_TRUSTED_ORIGINS.
Changed in v2.3.9¶
- #6336 - Enhanced
positionfields on ModuleBayCreate/UpdateForms to auto-populate their values fromnamefields. - #6386 - Changed
GitRepositorySyncsystem Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted. - #6386 - Changed behavior of change logging
web_request_context()to only reload Job code when a relevant JobHook is found to apply to the change in question.
Fixed in v2.3.9¶
- #6297 - Fixed overly broad scope of the TreeModel
invalidate_max_depth_cachesignal so that it now correctly only fires for TreeModel instances rather than all models. - #6297 - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.
- #6386 - Fixed reversed chronological ordering of JobHooks and Webhooks sent from a single
web_request_contextsession. - #6400 - Removed misleading help text from ModularComponentForm, as the
{module}auto-substitution in names only applies through component templates at present. - #6415 - Added missing column
software_versionto the Device Table in Device List View. - #6425 - Fixed bug in which ColoredLabelColumn() wasn't being applied to the
rolecolumn on Device/VM interfaces.
Dependencies in v2.3.9¶
- #6362 - Updated
psycopg2-binarydependency to~2.9.10.
Housekeeping in v2.3.9¶
- #6362 - Updated documentation dependency
mkdocs-materialto~9.5.41.
v2.3.8 (2024-10-18)¶
Fixed in v2.3.8¶
- #5050 - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.
- #6297 - Fixed paginator widget to display the current selected
per_pagevalue even if it's not one of thePER_PAGE_DEFAULTSoptions. - #6297 - Added pagination of related-object tables to many IPAM views to avoid errors when very large quantities of related records are present.
- #6380 - Fixed issue with Installed Apps page trying to render invalid links.
- #6385 - Restored
Prefix.get_child_ips()API mistakenly removed from v2.3.5 through v2.3.7.
v2.3.7 (2024-10-15)¶
Added in v2.3.7¶
- #2784 - Added
assertBodyContains()test helper API toNautobotTestCaseMixin.
Changed in v2.3.7¶
- #6205 - Changed initial
Nautobot initialized!message logged on startup to include the Nautobot version number. - #6350 - Changed the way that
ensure_git_repositorylogs hashes to include the name of the repository.
Fixed in v2.3.7¶
- #6158 - Fixed a UI overflow issue with the Tenant Stats panel.
- #6299 - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.
- #6318 - Fixed duplicate loading of
nautobot_config.pyduring Nautobot startup. - #6329 - Added a data migration to fix DynamicGroup
group_typevalues set incorrectly in upgrading to Nautobot 2.3.x.
Dependencies in v2.3.7¶
- #6299 - Added a direct dependency on
kombuto guarantee the presence of some essential fixes for this Celery dependency.
Housekeeping in v2.3.7¶
- #2784 - Added usage of
extract_page_body()to many view-related test cases in order to make their failure output more readable. - #2784 - Modified many view-related test cases to use new
assertBodyContains()test helper method for brevity. - #6283 - Updated documentation dependency
mkdocs-materialto~9.5.39. - #6318 - Fixed an error when rerunning parallel tests with a cached database and test factories enabled.
- #6318 - Fixed a permission-denied error on the
MEDIA_ROOTvolume when running the local development environment withdocker-compose.final.yml. - #6318 - Increased the healthcheck
start_periodin the local development environment to 10 minutes. - #6318 - Added
--remove-orphansto the docker compose commands forinvoke stopandinvoke destroy.
v2.3.6 (2024-10-02)¶
Added in v2.3.6¶
Fixed in v2.3.6¶
- #6304 - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.
- #6304 - Fixed a warning during startup about the
extras.FileAttachmentmodel.
Documentation in v2.3.6¶
- #6304 - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.
- #6304 - Updated app model developer documentation with more details about feature opt-out.
Housekeeping in v2.3.6¶
- #6308 - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.
v2.3.5 (2024-09-30)¶
Added in v2.3.5¶
- #6257 - Added
is_occupiedboolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units. - #6289 - Added the add button to IPAM Services.
Changed in v2.3.5¶
- #6057 - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.
Fixed in v2.3.5¶
- #5802 - Override
get_required_permission()in SavedViewUIViewSet to achieve the intended behavior. - #5924 - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.
- #6170 - Fix Prefix IPAddresses not accounting for Child Prefix IPAddresses in the UI.
- #6217 - Fixed SavedView functionality not working in Rack Elevation List View.
- #6233 - Corrected presentation of rendered Markdown content in Notes table.
- #6248 - Fixed Device Type link and count from Device Family Detail View.
- #6257 - Fixed the selection options for
positionon the device add/edit form to disable RUs that are currently occupied. - #6289 - Fixed lookup of IP Addresses in the Service form.
Dependencies in v2.3.5¶
- #6247 - Updated documentation dependency
mkdocs-materialto~9.5.35. - #6287 - Replaced incorrect
django-structlog[all]dependency withdjango-structlog[celery].
Documentation in v2.3.5¶
- #6264 - Added to the core developer documentation a warning against the use of data factories within test case code.
Housekeeping in v2.3.5¶
- #5802 - Override
get_required_permission()in SavedViewUIViewSet to achieve the intended behavior. - #6264 - Changed
invoke unittestto default to--paralleleven when a--labelvalue is specified. - #6264 - Added support for
invoke unittest --no-parallel. - #6285 - Added support for
invoke unittest --no-reusedbandnautobot-server test --no-reusedbto streamline testing when switching frequently between branches. - #6292 - Corrected logic of several VLAN test cases.
v2.3.4 (2024-09-18)¶
Added in v2.3.4¶
- #5795 - Added support for
NAUTOBOT_CACHES_TIMEOUTenvironment variable. - #6207 - Added the ability to filter virtual machines by their
clusternames or IDs.
Changed in v2.3.4¶
- #5795 - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.
Fixed in v2.3.4¶
- #6207 - Fixed incorrect link in ClusterTable for device count column.
- #6207 - Fixed incorrect link in PowerPanelTable for power feed count column.
- #6230 - Fixed an issue with Celery Scheduler around datetime imports.
Documentation in v2.3.4¶
- #5795 - Consolidated "Required Settings" and "Optional Settings" docs into a single unified "Settings" document.
- #5795 - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.
- #5795 - Moved "Caching" content from the "Administration: Guides" section into the "Administration: Configuration" section as a new "Redis" document.
- #5795 - Added
environment_variableskeys tosettings.yamlto more accurately document settings that are influenced by multiple environment variables together. - #5795 - Removed
is_required_settingkeys fromsettings.yamlas no longer relevant.
Housekeeping in v2.3.4¶
- #5859 - Changed
--cache-test-fixturesand--keepdbflags from opt-in to opt-out forinvoke unittestandinvoke integration-testcommands. - #5859 - Changed
invoke unittestto automatically include--parallelflag when running the entire unit test suite. - #6222 - Fixed
plugin_upstream_testing_base.ymlto work with app cookiecutter v2.3 Dockerfile. - #6227 - Fixed typo in app upstream testing workflow.
v2.3.3 (2024-09-16)¶
Security in v2.3.3¶
- #6212 - Updated
Djangoto~4.2.16to addressCVE-2024-45230andCVE-2024-45231.
Fixed in v2.3.3¶
- #6184 - Fixed an exception in
extras.models.groups._map_filter_fieldsmethod when certain Appfilter_extensionswere present. - #6190 - Added
displayproperty to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI. - #6197 - Fixed an exception in
core.utils.lookup.get_model_for_view_namefunction when rendering certain App object list views. - #6203 - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).
Dependencies in v2.3.3¶
- #6084 - Updated
pyuwsgito~2.0.26andPyYAMLto~6.0.2.
Housekeeping in v2.3.3¶
- #5376 - Disabled
coverageduring initial test database setup to improve test performance. - #6084 - Updated development dependencies
factory-boyto~3.3.1,ruffto~0.5.7, andwatchdogto~4.0.2. - #6084 - Updated documentation dependency
mkdocs-materialto~9.5.33. - #6155 - Updated the invoke.yml.example dev file to use latest values.
- #6212 - Updated documentation dependencies
mkdocsto~1.6.1,mkdocs-materialto~9.5.34, andmkdocstrings-pythonto~1.10.9. - #6212 - Updated development dependency
pylintto~3.2.7.
v2.3.2 (2024-09-03)¶
Security in v2.3.2¶
- #6182 - Updated
cryptographyto43.0.1to addressGHSA-h4gh-qq45-vh27. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.
Added in v2.3.2¶
- #5180 - Add filtering Job Results by Scheduled Job.
- #5591 - Added
time_zonefield toScheduledJobmodel. - #6120 - Added Status Field to VRF model.
- #6129 - Added collapsible icon rotation to homepage panels.
Fixed in v2.3.2¶
- #5591 - Corrected several bugs around handling of
ScheduledJobexecution whensettings.TIME_ZONEis other than "UTC". - #5591 - Added missing
Meta.orderingdefinition toScheduledJobmodel. - #6123 - Fixed cable status coloring for
DeviceModule*Tablerows in dark mode. - #6131 - Fixed a regression in which IP addresses and prefixes created through the
/api/ipam/prefixes/<uuid>/available-ips/and/api/ipam/prefixes/<uuid>/available-prefixes/REST API endpoints could not be assigned custom field data during their creation. - #6146 - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.
- #6175 - Prevented some
AttributeErrorexceptions from being raised when an App contains a model that doesn't inherit fromBaseModel.
Housekeeping in v2.3.2¶
- #5591 - Added
watchmedotocelery_beatdevelopment container. - #5591 - Added
time-machineas a development environment (test execution) dependency. - #6147 - Fixed some points of non-determinism in the data generated by
nautobot-server generate_test_data. - #6147 - Added
development/cleanup_factory_dump.pyhelper script to aid in identifying other issues with test data.
v2.3.1 (2024-08-19)¶
Added in v2.3.1¶
- #5232 - Added support for groupings to computed fields.
- #5494 - Added validation logic to
DeviceFormclean()method to raise a validation error if there is any invalid software image file specified. - #5915 - Enhanced
IPAddress.objects.get_or_createmethod to permit specifying a namespace as an alternative to a parent prefix.
Changed in v2.3.1¶
- #5970 - Removed indentations for PrefixTable in various locations in the UI.
Fixed in v2.3.1¶
- #5494 - Fixed
Devicemodelclean()validation logic to allow user to specify a software version on a device without specifying any software image files. - #6096 - Updated CloudAccount UI: Set the
secrets_groupform field to be optional. - #6097 - Updated ContactAssociation API: Set the role field to be required.
- #6116 - Added handling for an
OperationalErrorthat might be raised when runningpylint-nautobotor similar linters that depend on successfully runningnautobot.setup().
Housekeeping in v2.3.1¶
- #6107 - Updated documentation dependency
mkdocstrings-pythonto~1.10.8.
v2.3.0 (2024-08-08)¶
Security in v2.3.0¶
- #6073 - Updated
Djangoto~4.2.15due toCVE-2024-41989,CVE-2024-41990,CVE-2024-41991, andCVE-2024-42005.
Added in v2.3.0¶
- #5996 - Added missing
commentsfield to DeviceType bulk edit. - #5996 - Added
commentsfield to ModuleType. - #6039 - Added
Cloud Networkscolumn toPrefixTable. - #6039 - Added
prefixesfilter toCloudNetworkFilterSet. - #6039 - Added
parent__nameandparent__descriptiontoCloudNetworkFilterSetqfilter. - #6039 - Added support for querying
GenericRelationrelationships (reverse ofGenericForeignKey) in GraphQL. - #6039 - Added support for filtering an object's
associated_contactsin GraphQL.
Changed in v2.3.0¶
- #6003 - Changed rendering of
scoped_fieldscolumn inObjectMetadataTable. - #6003 - Changed default ordering of
ObjectMetadatalist views. - #6039 - Renamed
associated_object_metadatasGenericRelation toassociated_object_metadata. - #6039 - Renamed
object_metadatasreverse-relations toobject_metadata. - #6039 - Changed
CloudNetwork.parentforeign-keyon_deletebehavior toPROTECT. - #6070 - Marked the
Notemodel asis_metadata_associable_model = False.
Removed in v2.3.0¶
- #6005 - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.
- #6039 - Removed unneeded
CloudNetworkPrefixAssignmentTable.
Fixed in v2.3.0¶
- #5967 - Fixed a regression in the display of custom fields in object-edit forms.
- #5996 - Fixed URL typo in module and module type list views.
- #6003 - Added missing
blank=TruetoObjectMetadata.scoped_fields. - #6019 - Marked the
JobLogEntrymodel as invalid for association ofObjectMetadata. - #6039 - Added missing
Config Schemadisplay to detail view ofCloudResourceType. - #6039 - Added missing
Descriptiondisplay to detail view ofCloudService. - #6045 - Fixed interfaces of Virtual Chassis Master missing other member's interfaces.
- #6051 - Fixed improper escaping of saved-view name in success message.
- #6051 - Fixed incorrect ordering of items in Tenant detail view.
- #6051 - Fixed query parameters for
CloudNetwork.parentform field. - #6056 - Fixed the order of object deletion by constructing delete success message before the object is deleted.
- #6064 - Reverted an undesired change to
IPAddressFilterSet.devicefilter. - #6064 - Reverted an undesired change to
ServiceForm.ip_addressesvalid addresses.
Documentation in v2.3.0¶
- #5920 - Updated documentation for installation under Ubuntu 24.04 LTS, Fedora 40, AlmaLinux 9, and similar distros.
- #6019 - Updated the installation documentation to recommend a more secure set of filesystem permissions.
- #6050 - Updated model development docs with information about object metadata and dynamic groups features.
- #6050 - Added some crosslinks within the DCIM model documentation.
- #6062 - Updated Configuration Context docs with additional examples for dictionary of dictionaries.
Housekeeping in v2.3.0¶
- #5962 - Updated development dependency
ruffto~0.5.6. - #5962 - Updated documentation dependencies:
mkdocs-materialto~9.5.31,mkdocstringsto~0.25.2, andmkdocstrings-pythonto~1.10.7. - #6003 - Updated
ObjectMetadataFactoryto produce more realisticscoped_fieldsvalues. - #6014 - Fixed intermittent
ObjectMetadatafactory failures. - #6047 - Made sure that there is a sufficient amount of
ContactandTeaminstances exist in the database when testingcontactsandteamsfilters of an object's filterset. - #6055 - Added migrations check to upstream testing workflow.
- #6071 - Fixed incorrect generic-test logic in
FilterTestCase.test_q_filter_validforqfilters containingiexactlookups.
v2.3.0-beta.1 (2024-07-25)¶
Security in v2.3.0-beta.1¶
- #5889 - Updated
Djangoto~4.2.14due toCVE-2024-38875,CVE-2024-39329,CVE-2024-39330, andCVE-2024-39614.
Added in v2.3.0-beta.1¶
- #1758 - Implemented SavedView model.
- #2101 - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.
- #3749 - Added "Logs Cleanup" system Job, which can be run to delete ObjectChange and/or JobResult records older than a given cutoff.
- #4406 - Added
rolefield toInterfaceandVMInterfacemodels. - #5212 - Added
contactsandteamsfilters to appropriate FilterSets and filter forms. - #5348 - Enhanced UI to include arrow indicators for sorted table columns.
- #5429 - Added Python 3.12 support.
- #5442 - Added
JobResultFactory,JobLogEntryFactory, andObjectChangeFactoryclasses and added creation of fakeJobResult,JobLogEntry, andObjectChangerecords to thenautobot-server generate_test_datacommand. - #5471 - Added the ability to set Global and User default saved view.
- #5471 - Added the ability to set public and private saved view.
- #5472 - Added
StaticGroupandStaticGroupAssociationdata models, used for statically defining groups of Nautobot objects. - #5472 - Added
featurefilter to/api/extras/content-types/. - #5472 - Added
static_groupsfilter to all applicable models via theBaseFilterSetclass. - #5472 - Added
static_groupsfield to applicable model create/edit forms via theStaticGroupModelFormMixinclass (included inNautobotModelFormclass automatically). - #5472 - Added
Static Groupscolumn to applicable model tables. - #5472 - Added
static_groupsandassociated_contactsto applicable GraphQL types. - #5472 - Enhanced
BaseTableclass to automatically apply appropriatecount_relatedannotations for anyLinkedCountColumn. - #5473 - Added support for objects to "opt out" of change logging by returning
Nonefrom theirto_objectchange()method. - #5473 - Added
descriptionstrings to all system Jobs. - #5473 - Added
Refresh Dynamic Group Cachessystem Job. - #5631 - Added
ContactMixinandStaticGroupMixinabstract model mixin classes. Models that inherit fromOrganizationalModelorPrimaryModelwill automatically include these mixins. - #5663 - Added
MetadataTypeandMetadataChoicedata models, REST API, and UI. - #5664 - Added
ObjectMetadatadata models, UI and REST API. - #5687 - Added
setup_structlog_logging()to allow using structlog fromnautobot_config.pyfile. - #5716 - Added CloudNetwork model, UI, GraphQL and REST API.
- #5716 - Added CloudNetwork to CircuitTermination model, UI, and REST API.
- #5716 - Added CloudNetwork to Prefix View.
- #5719 - Added CloudAccount Model, UI, GraphQL and REST API.
- #5721 - Added
CloudTypeCloudResourceTypeModel, UI, GraphQL and REST API. - #5730 - Added a feature that replaces
{module},{module.parent},{module.parent.parent}, etc. with the selected module'sparent_module_baypositionwhen creating a component in a module. - #5732 - Added indices on
StaticGroupAssociationtable for common lookup patterns. - #5786 - Added
DynamicGroup.group_typefield with optionsdynamic-filter,dynamic-set, andstatic. Existing DynamicGroups will automatically be set to eitherdynamic-filterordynamic-setas befits their definitions. - #5786 - Added
DynamicGroup.tenantandDynamicGroup.tagsfields. - #5786 - Added Dynamic Group support to many more Nautobot models.
- #5791 - Added support for specifying a Device's Primary IP from an interface on a child Module.
- #5792 - Added display of components from installed modules to the Device Component tabs.
- #5817 - Added Celery Worker details to the Job Result Advanced Tab.
- #5817 - Added
advanced_content_left_pageblock to the Advanced Tab. - #5872 - Added CloudService Model, UI, GraphQL and REST API.
- #5873 - Added worker status page for staff users.
- #5890 - Add CSS class to pagination dropdown to resolve issue with color-scheme.
- #5923 - Added
prefers_idkeyword argument to NaturalKeyOrPKMultipleChoiceFilter initialization to use the object ID instead of theto_field_namewhen automatically generating a form field for the filter. - #5933 - Added tables of related
CloudServiceand/orCloudNetworkinstances to theCloudResourceTypedetail view. - #5933 - Added
descriptionfield toCloudServicemodel.
Changed in v2.3.0-beta.1¶
- #2101 - Updated device interfaces filter to support filtering by interface name as well as by ID.
- #3749 - Changed behavior of the
CHANGELOG_RETENTIONsetting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job. - #5429 - Changed default Docker image Python version to 3.12.
- #5473 - Changed object "detail" views to only show
Dynamic Groupstab if the object belongs to at least one such group. - #5473 - Replaced Redis implementation of Dynamic Group membership caches with a database cache implementation using the StaticGroupAssociation model.
- #5473 - Changed
DynamicGroup.members,DynamicGroup.has_member(), andDynamicGroupMixin.dynamic_groupsAPIs to always use the database cache. - #5631 - Changed behavior of models that inherit directly from
BaseModel(notOrganizationalModelorPrimaryModel) to default tois_contact_associable_model = False. - #5786 - Changed
TreeManagerclass (used for tree-models such as Location, RackGroup, and TenantGroup) default behavior fromwith_tree_fieldstowithout_tree_fields. This should improve performance in many cases but may impact Apps or Jobs that were relying on the old default; such code should be updated to explicitly call.with_tree_fields()where appropriate. - #5786 - Merged the
StaticGroupmodel added in #5472 into the existingDynamicGroupmodel as a special type of group. - #5786 - Replaced
static_groupsfilter added in #5472 with adynamic_groupsfilter. - #5786 - Replaced
static_groupsmodel form field added in #5472 with adynamic_groupsfield. - #5786 - Replaced
Static Groupsobject table column added in #5472 with aDynamic Groupscolumn. - #5786 - Replaced
static_groupsGraphQL field added in #5472 with adynamic_groupsfield. - #5786 - Replaced
StaticGroupMixinmodel mixin class added in #5631 with aDynamicGroupsModelMixinclass. Still included by default inOrganizationalModelandPrimaryModel. - #5790 - Updated Cable table to display the parent Device of Cables connected to Modules in a Device.
- #5790 - Updated device and
device_idfilters for Cables, Interfaces, and other modular device components to recognize components that are nested in Modules in a Device. - #5790 - Updated Cable connect form to allow connecting to Console Ports, Console Server Ports, Interfaces, Power Ports, Power Outlets, Front Ports, and Rear Ports that are nested in Modules in a Device.
- #5790 - Updated Interface
devicefilter to allow filtering on Devicenameorid. - #5790 - Updated
Cable._termination_a_deviceandCable._termination_b_deviceto cache the Device when cables are connected to an Interface or Port of a Module in a Device. - #5817 - Removed Additional Data tab on Job Result view and collapsed the data into Advanced Tab.
- #5826 - Moved
SavedViewmodel fromusersapp toextrasapp. - #5841 - Added role field as a default column for Device Interface tab and VirtualMachine VMInterface table.
- #5869 - Combined bulk-edit/bulk-delete/bulk-group-update buttons into a single button with a pop-up menu when appropriate.
- #5870 - Consolidated List View Action buttons into a single button with a dropdown menu.
- #5871 - Consolidated Detail View Action buttons into a single button with a dropdown menu.
- #5873 - Updated the job run form to use more of the horizontal whitespace on the page.
- #5933 - Renamed
CloudTypemodel toCloudResourceTypefor improved clarity. - #5977 - Changed the provider field help text of CloudAccount and CloudResourceType model classes and forms.
- #5978 - Changed CloudService
cloud_networkfield from a ForeignKey to a ManyToMany calledcloud_networks.
Deprecated in v2.3.0-beta.1¶
- #5473 - Deprecated the properties
DynamicGroup.members_cached,DynamicGroup.members_cache_key,DynamicGroupMixin.dynamic_groups_cached,DynamicGroupMixin.dynamic_groups_list, andDynamicGroupMixin.dynamic_groups_list_cached. - #5786 - Deprecated the
DynamicGroupMixinmodel mixin class. Models supporting Dynamic Groups should useDynamicGroupsModelMixininstead. - #5870 - Deprecated the blocks
block export_buttonandblock import_buttoningeneric/object_list.html. Apps and templates should migrate to usingblock export_list_elementandblock import_list_elementrespectively.
Removed in v2.3.0-beta.1¶
- #3749 - Removed automatic random cleanup of ObjectChange records when processing requests and signals.
- #5473 - Removed
DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUTsetting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation. - #5786 - Removed the
StaticGroupmodel added in #5472, replacing it with a subtype of theDynamicGroupmodel.
Fixed in v2.3.0-beta.1¶
- #2352 - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.
- #5123 - Fixed an unhandled
ValueErrorwhen filtering onvlansby their UUID rather than their VLAN ID. - #5442 - Replaced overly broad
invalidate_models_cachesignal handler with two more narrowly scoped handlers, preventing the signal handler from being invoked for operations on irrelevant models. - #5442 - Fixed incorrect linkification of JobLogEntry table rows when a record had a
log_objectbut noabsolute_url. - #5473 - Significantly improved performance of Dynamic Group UI views.
- #5774 - Fixed the bug that required users and administrators to manage additional permission to be able to use saved views.
- #5814 - Fixed style issues with Saved Views and other language code blocks.
- #5818 - Fixed broken table configure buttons in device and module component tabs.
- #5842 - Fixed missing classes when importing
*fromnautobot.ipam.models. - #5877 - Resolved issue with tags not saving on Dynamic Groups.
- #5880 - Fixed overflowing device component tables in device and module component tabs.
- #5880 - Fixed an exception when trying to edit an IPAddress that had a NAT Inside IPAddress that was related to a component attached to a module.
- #5880 - Fixed incorrect sort order of interfaces in the device and module interface tabs.
- #5898 - Replaced
object-metadatasin UI and REST API urls withobject-metadata. - #5932 - Fixed visual bug in consolidated action button for list views.
- #5933 - Fixed missing
cloud.cloudservicecontent-type option onCloudResourceTypemodel. - #5933 - Fixed incorrect submenu heading in
Cloudnavigation menu. - #5933 - Fixed incorrect rendering of
Tagscolumn in Cloud object tables. - #5939 - Fixed the usage of incorrect model in Cloud Service list view action buttons.
- #5951 - Removed unused consolidated action button on job list view.
- #5952 - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.
Dependencies in v2.3.0-beta.1¶
- #1758 - Updated
materialdesigniconsto version 7.4.47. - #4616 - Updated
django-taggitto~5.0.0. - #4616 - Updated
netaddrto~1.3.0. - #5160 - Updated
Djangoto version~4.2.13. - #5160 - Updated
django-db-file-storageto version~0.5.6.1. - #5160 - Updated
django-timezone-fieldto version~6.1.0. - #5429 - Updated Docker build and CI to use
poetry1.8.2. - #5429 - Removed development dependency on
mkdocs-include-markdown-pluginas it's no longer used in Nautobot's documentation. - #5518 - Updated
drf-spectacularto version0.27.2. - #5687 - Added
django-structlogdependency. - #5734 - Updated
django-auth-ldapdependency to~4.8. - #5734 - Updated
django-tree-queriesdependency to~0.19. - #5734 - Updated
Markdowndependency to~3.6. - #5735 - Updated
django-constancedependency to~3.1.0 - #5735 - Updated
emojidependency to~2.12.1. - #5735 - Widened
napalmdependency to permit version 5.x. - #5865 - Updated
celeryto~5.3.6. - #5865 - Updated
django-cors-headersto~4.4.0. - #5865 - Updated
django-health-checkto~3.18.3. - #5865 - Updated
django-structlogto^8.1.0. - #5865 - Updated
djangorestframeworkto~3.15.2. - #5889 - Updated
django-filterto version~24.2. - #5889 - Updated
django-timezone-fieldto version~7.0.
Documentation in v2.3.0-beta.1¶
- #5699 - Fixed a number of broken links within the documentation.
- #5895 - Added missing model documentation for
CloudNetwork,CloudNetworkPrefixAssignment,CloudServiceandCloudTypeCloudResourceType. - #5934 - Add Cloud Model Example and Entity Diagram.
Housekeeping in v2.3.0-beta.1¶
- #5160 - Replaced references to
pytzwithzoneinfoin keeping with Django 4. - #5212 - Enhanced
nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()test case to test for the presence and proper functioning of thecontactsandteamsfilters on any appropriate model FilterSet. - #5429 - Added Python 3.12 to CI.
- #5429 - Updated CI to use
poetry1.8.2 and use actionnetworktocode/gh-action-setup-poetry-environment@v6. - #5429 - Removed CI workaround for old Poetry versions.
- #5473 - Added
assertApproximateNumQueriestest-case helper method. - #5524 - Deleted unnecessary special case handling for
test_view_with_content_types. - #5663 - Added support for
django_get_or_createproperty inBaseModelFactory. - #5699 - Updated to
mkdocs~1.6.0andmkdocs-material~9.5.23. - #5725 - Updated development dependencies
pylintto3.2.0,ruffto0.4.0, andseleniumto4.21. - #5735 - Updated
mkdocstringsto~0.25.1andmkdocstrings-pythonto~1.10.2. - #5786 - Substantially reduced the setup overhead (time/memory) of
OpenAPISchemaTestCasestests. - #5842 - Fixed missing mysqldump client when trying to run tests with --parallel on mysql.
- #5865 - Updated
django-debug-toolbardevelopment dependency to~4.4.0. - #5865 - Updated
mkdocs-include-markdown-plugindocumentation dependency to6.2.1. - #5865 - Updated
mkdocs-materialdocumentation dependency to9.5.27. - #5865 - Updated
mkdocs-section-indexdocumentation dependency to0.3.9. - #5865 - Updated
mkdocstrings-pythondocumentation dependency to1.10.5. - #5865 - Updated
pylintdevelopment dependency to~3.2.5. - #5865 - Updated
ruffdevelopment dependency to~0.5.0. - #5865 - Updated
seleniumdevelopment dependency to~4.22.0. - #5986 - Fixed multiple intermittent failures in unit tests.