Nautobot v2.4¶
This document describes all new features and changes in Nautobot 2.4.
Upgrade Actions¶
Administrators¶
- Nautobot 2.4 drops support for Python 3.8, so any existing Nautobot deployment using Python 3.8 will need upgrade to a newer Python version before upgrading to Nautobot v2.4 or later.
- Administrators should familiarize themselves with the new Event Publication Framework and the possibilities it enables for improved monitoring of Nautobot operations and integration with distributed automation platforms.
- Administrators of Kubernetes-based Nautobot deployments should familiarize themselves with the new capabilities that Nautobot v2.4 provides for Job execution in such environments and may wish to update their Nautobot configuration to take advantage of these capabilities. Please note that this feature set is considered Experimental in v2.4.0 and is subject to change in future releases.
- Nautobot 2.4 includes an About page which is capable of displaying the status of Network to Code support contracts, dictated by the
NTC_SUPPORT_CONTRACT_EXPIRATION_DATEconfiguration setting.
Job Authors & App Developers¶
- App developers should begin to adopt the UI Component Framework introduced in Nautobot v2.4, as this will reduce the amount of boilerplate HTML/CSS content that they need to develop and maintain, and will help insulate Apps from future CSS and layout design changes planned for Nautobot v3.
- Additionally, App developers should familiarize themselves with the new Event Publication Framework and the possibilities it enables for Apps to publish their own relevant events to configured message brokers.
- As a side benefit of adding REST API
exclude_m2msupport, the Nautobot REST APIViewSetclasses now attempt to intelligently applyselect_related()and/orprefetch_related()optimizations to thequerysetassociated to a given REST API viewset. Apps defining their own REST API viewsets (and requiring Nautobot v2.4.0 or later) can typically remove most explicit calls toselect_related()andprefetch_related(); furthermore, in order to benefit most from theexclude_m2m=truequery parameter, apps in Nautobot v2.4.0 and later should not explicitlyprefetch_related()many-to-many related fields any longer. (Explicit calls toselect_related()andprefetch_related()may still be necessary and appropriate if your API serializer needs to perform nested lookups, as the automatic optimization here currently only understands directly related object lookups.) - Job authors should be aware of the ability to log
successmessages in Nautobot v2.4.0 and later and should adopt this log level as appropriate. - Job authors should be aware of the introduction of Job Queues as a general-purpose replacement for the Celery-specific
Job.task_queuesattribute, and if a Job specifies its preferredtask_queues, should verify that the queue selected as itsdefault_job_queueafter the Nautobot upgrade is correct.
Release Overview¶
Added¶
Virtual Device Context Data Models¶
Nautobot 2.4 adds a VirtualDeviceContext data model to support modeling of logical partitions of physical network devices, such as Cisco Nexus Virtual Device Contexts, Juniper Logical Systems, Arista Multi-instance EOS, and so forth. Device Interfaces can be associated to Virtual Device Contexts via the new InterfaceVDCAssignment model as well.
Wireless Data Models¶
Nautobot 2.4 adds the data models WirelessNetwork, RadioProfile, and SupportedDataRate, enabling Nautobot to model campus wireless networks. In support of this functionality, the Controller and ControllerManagedDeviceGroup models have been enhanced with additional capabilities as well.
Refer to the Wireless documentation for more details.
Apps Marketplace Page and Installed Apps Page Tile View¶
Nautobot v2.4 introduces the Apps Marketplace, containing information about available Nautobot Apps. In addition to that, the Installed Apps page has added a tile-view option, similar to the Apps Marketplace.
Event Publication Framework¶
Nautobot now includes a general-purpose, extensible event publication framework for publication of event notifications to other systems such as Redis publish/subscribe, Kafka, syslog, and others. An abstract EventBroker API can be implemented and extended with system-specific functionality to enable publication of Nautobot events to any desired message broker.
As of v2.4.0, Nautobot publishes events with the following topics:
Data model manipulation:
- nautobot.create.<app>.<model>
- nautobot.update.<app>.<model>
- nautobot.delete.<app>.<model>
User interaction:
- nautobot.users.user.login
- nautobot.users.user.logout
- nautobot.users.user.change_password
- nautobot.admin.user.change_password
Jobs:
- nautobot.jobs.job.started
- nautobot.jobs.job.completed
- nautobot.jobs.approval.approved
- nautobot.jobs.approval.denied
The payload of each topic is a data representaton of the corresponding event, such as the object created, or the Job that started execution. Events are published to configured event brokers, and may be filtered.
Nautobot Apps can also make use of this framework to publish additional event topics, specific to the App's functionality as desired.
Jinja2 Template Rendering Tool¶
Nautobot v2.4 adds a new tool to render Jinja2 templates directly from the UI. Users may supply their own template body and context data to be rendered, with access to to Nautobot's built-in Jinja2 tags and filters. Additionally, a new REST API endpoint /api/core/render-jinja-template/ has been added to achieve the same functionaly. This can be used by users and Apps such as Nautobot Golden Config to assist with the development and validation of Jinja2 template content. This functionality will be extended in the future to more easily access context aware data in Nautobot such as Devices and Config Contexts.
Job success Log Level¶
Jobs can now log success messages as a new logging level which will be appropriately labeled and colorized in Job Result views.
Added in version 2.4.5
In Nautobot v2.4.5 and later, Jobs can now log failure messages as well:
In Nautobot v2.4.5 and later, Jobs can also mark their result as failed without raising an uncaught exception by calling the new Job.fail(message) API:
self.fail("Something went wrong, and we'll fail in the end, but we can continue for now.")
self.logger.info("Continuing...")
Kubernetes Job Execution and Job Queue Data Model (Experimental)¶
Please note that this functionality is considered Experimental in the v2.4.0 release and is subject to change in the future.
When running in a Kubernetes (k8s) deployment, such as with Nautobot's Helm chart, Nautobot now supports an alternative method of running Nautobot Jobs - instead of (or in addition to) running one or more Celery Workers as long-lived persistent pods, Nautobot can dispatch Nautobot Jobs to be executed as short-lived Kubernetes Job pods.
In support of this functionality, Nautobot now supports the definition of JobQueue records, which represent either a Celery task queue or a Kubernetes Job queue. Nautobot Jobs can be associated to queues of either or both types, and the Job Queue selected when submitting a Job will dictate whether it is executed via Celery or via Kubernetes.
Nautobot Jobs support the same feature sets, regardless if they are executed on Celery Job queues or Kubernetes Job queues.
Refer to the Jobs documentation for more details.
Singleton Jobs¶
Job authors can now set their jobs to only allow a single concurrent execution across all workers, preventing mistakes where, e.g., data synchronization jobs accidentally run twice and create multiple instances of the same data. This functionality and the corresponding setting are documented in the section on developing Jobs.
Per-user Time Zone Support¶
Users can now configure their preferred display time zone via the User Preferences UI under their user profile and Nautobot will display dates and times in the configured time zone for each user.
REST API exclude_m2m Support¶
Added REST API support for an ?exclude_m2m=true query parameter. Specifying this parameter prevents the API from retrieving and serializing many-to-many relations on the requested object(s) (for example, the list of all Prefixes associated with a given VRF), which can in some cases greatly improve the performance of the API and reduce memory and network overhead substantially.
A future Nautobot major release may change the REST API behavior to make exclude_m2m=true the default behavior.
Additionally, the DynamicModelChoiceField and related form fields have been enhanced to use exclude_m2m=true when querying the REST API to populate their options, which can in some cases significantly improve the responsiveness of these fields.
UI Component Framework¶
Nautobot's new UI Component Framework provides a set of Python APIs for defining parts of the Nautobot UI without needing, in many cases, to write custom HTML templates. In v2.4.0, the focus is primarily on the definition of object "detail" views as those were the most common cases where custom templates have been required in the past.
Adoption of this framework significantly reduces the amount of boilerplate needed to define an object detail view, drives increased self-consistency across views, and encourages code reuse. It also insulates Apps from the details of Nautobot's CSS and layout (Bootstrap 3 framework), smoothing the way for Nautobot to adopt UI changes in the future with minimal impact to compliant apps.
App template extensions--which are used to inject App content into Nautobot Core views--offer new implementation patterns using the UI Component Framework and it is highly recomended that App developers take this opportunity to adopt, as old methods have been deprecated in some cases (see below).
As of Nautobot 2.4.0, the following detail views have been migrated to use the UI Component Framework, and any app template extensions targeting these models should adopt:
- Circuit
- Cluster Type
- Device ("Add Components" buttons only)
- External Integration
- Location Type
- Provider
- Route Target
- Secret
- Tenant
- VRF
Deprecated¶
FilterTestCases.NameOnlyFilterTestCase and FilterTestCases.NameSlugFilterTestCase¶
These two generic base test classes are deprecated. Apps should migrate to using FilterTestCases.FilterTestCase with an appropriately defined list of generic_filter_tests instead.
Job task_queues and ScheduledJob.queue¶
The Job.task_queues field (a list of queue name strings) is deprecated in favor of the new Job.job_queues relationship to the JobQueue model. task_queues is still readable and settable for backward compatibility purposes but code using this attribute should migrate to using job_queues instead.
Similarly, ScheduledJob.queue is deprecated in favor of ScheduledJob.job_queue.
TemplateExtension.detail_tabs(), TemplateExtension.left_page() and others¶
With the introduction of the UI Component Framework (described above), new APIs are available for Apps to extend core Nautobot views with additional content using this framework. A number of new APIs have been added to the TemplateExtension base class in support of this functionality, and several existing TemplateExtension APIs have been deprecated in favor of these new APIs. Refer to the App development documentation for details.
Dependencies¶
Removed Python 3.8 Support¶
As Python 3.8 has reached end-of-life, Nautobot 2.4 requires a minimum of Python 3.9, and Nautobot 2.4.6 and later specifically require a minimum of Python 3.9.2. Note that existing installs using older Python versions will need to upgrade their Python version prior to initiating the Nautobot v2.4 upgrade.
v2.4.17 (2025-09-02)¶
Security in v2.4.17¶
- #7682 - Removed obsolete package
futurefrom thepoetry.lockand hence from the Docker images, eliminating Nautobot's exposure to vulnerability CVE-2025-50817 in that package.
Added in v2.4.17¶
- #3547 - Added support for using shift+click to select one or more ranges of objects from list views.
- #6151 - Added
Check/Fix IPAM Parentssystem Job that can be run if IP Address and/or Prefixparentvalues are incorrectly set. - #6151 - Added logic in IPAddress and Prefix detail views to detect an incorrect
parentvalue on the record being viewed and display a banner recommending to run the aforementioned system Job if so. - #7685 - Added Jinja2 validation to
ComputedFieldmodel to catch template syntax errors at save time. - #8000 - Added
django_querystring, copied fromquerystringtemplatetag in Django 5.1 and above. - #8000 - Added
legacy_querystring, copied fromquerystringtemplatetag in Nautobot 2.4 and below.
Changed in v2.4.17¶
- #6151 - Changed Prefix update logic so that moving a Prefix to a different Namespace now carries along its descendant Prefixes and their associated IP Addresses as well, instead of only carrying along its direct child IP Addresses and leaving behind the other descendants in the original Namespace.
- #7670 - Disable default pagination in ObjectsTablePanel.
Deprecated in v2.4.17¶
- #8000 - Deprecate the
querystringtemplatetag as it overlaps with Django 5.1.
Removed in v2.4.17¶
- #6151 - Removed UI warnings about various combinations of Prefix types (container versus network versus pool) and IP addresses, as time has shown that there are valid use cases for many of these combinations.
Fixed in v2.4.17¶
- #6151 - Fixed incorrect data after editing a Prefix's
prefix/network/prefix_lengthfields by adding aclean()check to detect and block cases where it could result in orphaned IPAddress records. - #6151 - Fixed incorrect data after editing a Prefix's
prefix/network/prefix_lengthfields by adding logic insave()to correctly reparent existing child Prefix and IPAddress records. - #6151 - Fixed potential for incorrect data when moving a VRF-associated Prefix between Namespaces by adding a
clean()check to detect and block this scenario. - #7496 - Fixed issue with removed Prefix column in VLANs table.
- #7708 - Hide the 'select all matching query' UI element when the 'select all' checkbox in an object list view is unchecked.
- #7720 - Fixed a Django REST Framework warning related to the
power_factorattribute on aDecimalField.
Dependencies in v2.4.17¶
- #7682 - Updated dependency
django-constanceto~4.3.2. - #7682 - Updated dependency
prometheus-clientto~0.22.1. - #7682 - Updated dependency
python-slugifyto~8.0.4. - #7682 - Updated dependency
svgwriteto~1.4.3. - #7682 - Regenerated
poetry.lockto bring latest version of indirect dependencies into the Docker images and development environment. - #7715 - Updated dependency
django-silkto~5.4.2.
Documentation in v2.4.17¶
- #6671 - Documented different approaches for initial population of data.
Housekeeping in v2.4.17¶
- #7124 - Fixed developer docker flow when override files drop ancillary containers.
- #7496 - Refactored VLAN model related UI views to use
UI component framework. - #7682 - Updated development dependency
pylintto~3.3.8. - #7682 - Updated development dependency
pymarkdownlntto~0.9.32. - #7682 - Updated development dependency
ruffto~0.12.9. - #7682 - Updated documentation dependency
mkdocs-macros-pluginto~1.3.9. - #7682 - Updated documentation dependency
mkdocs-materialto~9.6.17. - #7703 - Made sure line endings were consistently Unix-style (
\nrather than\r\n) in project source files. - #7715 - Updated documentation dependency
mkdocs-materialto9.6.18. - #7715 - Updated development dependency
fakerto^37.6.0. - #7715 - Updated development dependency
ruffto~0.12.11. - #7715 - Updated test dependency
requeststo~2.32.5. - #7732 - Added code coverage reporting to pull request CI workflow.
- #7734 - Added
--diffoption toinvoke ruffcommand.
v2.4.16 (2025-08-19)¶
Fixed in v2.4.16¶
- #7699 - Fixed breakage of the "Apps Marketplace" view in Nautobot v2.4.15.
Housekeeping in v2.4.16¶
- #7643 - Refactored SecretsGroup model related UI views to use
UI component framework.
v2.4.15 (2025-08-18)¶
Added in v2.4.15¶
- #7315 - Added Bulk Update functionality for the CustomField model.
- #7364 - Added new management command
check_job_approval_statusto detect scheduled jobs and jobs that still require approval. This command helps during upgrade to Nautobot 3.x. - #7511 - Added
power_factorfield to PowerPort and PowerPortTemplate models to track the power factor ratio for electrical devices. - #7511 - Added
panel_typeandbreaker_position_countfields to PowerPanel model to specify panel type and total number of breaker positions. - #7511 - Added
power_pathfield to PowerPanel model to track physical power distribution redundancy path. - #7511 - Added
destination_panelfield to PowerFeed model to specify destination panel that receives power from the feed. - #7511 - Added
power_pathfield to PowerFeed model to track physical power distribution redundancy path. - #7511 - Added
breaker_positionandbreaker_pole_countfields to PowerFeed model to specify circuit breaker position and pole count. - #7511 - Added
occupied_positionsandphase_designationproperties to PowerFeed model to display breaker positions and calculate phase designation. - #7511 - Added
paginateandshow_table_config_buttonbools to ObjectsTablePanel to provide an option to hide the paginator and configure button UI. - #7573 - Added support for page heading, document title and breadcrumbs in Nautobot UI Framework.
- #7609 - Added
context_object_keyoptional parameter to theButtonclass. - #7655 - Added
JobResult.date_startedfield, corresponding to the feature enhancement indjango-celery-results2.6.0.
Changed in v2.4.15¶
- #7511 - Changed PowerFeed model validation to enforce mutual exclusivity between cable connections and destination panel connections.
- #7511 - Changed PowerFeed model to validate breaker position conflicts and panel capacity constraints.
- #7511 - Changed PowerFeed rack location validation to use location hierarchy instead of exact location match.
- #7511 - Changed PowerFeed
clone_fieldsto includedestination_panel,breaker_position, andbreaker_pole_countfields. - #7613 - Improved object change list view performance.
- #7645 - Implemented custom TreeQuerySet.count method. Note that this impacts all tree models calling count everywhere, but should be transparent.
Fixed in v2.4.15¶
- #6145 - Fixed a regression in which the
contacts__n,dynamic_groups__n,role__n,status__n, andteams__nfilterset filters would not accept multiple values or names, instead only accepting a single UUID. - #6748 - Fixed
PowerPort.get_power_draw()andRack.get_power_utilization()calculations to use power factor for Watts (W) to volt-amps (VA) conversion. - #7084 - Fixed incorrect labels for negated custom-field filters in object list views.
- #7321 - Fixed missing support for "exclude" filters in
ContentTypeFilter,ContentTypeChoiceFilter, andContentTypeMultipleChoiceFilter. This allows filters like/extras/roles/?content_types__n=ipam.ipaddressto work properly. - #7321 - Fixed incorrect extended filter types presented for
ContentTypeFilter,ContentTypeChoiceFilter, andContentTypeMultipleChoiceFilter. These filters only support the__nfilter extension at present, not various character-based extensions like__ic,__nic, etc. - #7511 - Fixed bug in device detail template where
object.powerportsandobject.poweroutletswere incorrectly referenced instead ofobject.power_portsandobject.power_outlets, preventing the Power Utilization panel from being displayed on the device detail page. - #7519 - Hide the actions column in BulkDelete/BulkEdit views supported by NautobotUIViewSet.
- #7594 - Fixed a bug in
NoteFilterSetwhere theassigned_object_idfilter did not properly convert values to UUIDs, causing failed lookups when filtering by this field. Now applies aUUIDpreprocessor to ensure correct filtering. - #7662 - Fixed the Children section in
location_retrieve.htmlto properly display child locations of the same Location Type (e.g., sites within sites, rooms within rooms). - #7663 - Fixed namespace issues when using bulk edit form was auto setting a bulk edit field based on a filter param that was carried over.
Dependencies in v2.4.15¶
- #7655 - Updated dependency
cryptographyto~45.0.6. - #7655 - Updated optional dependency
django-auth-ldapto~5.2.0. - #7655 - Updated dependency
django-celery-beatto~2.7.0. - #7655 - Updated dependency
django-celery-resultsto~2.6.0. - #7655 - Updated dependency
django-cors-headersto~4.7.0. - #7655 - Updated dependency
django-extensionsto~4.1. - #7655 - Updated dependency
django-health-checkto~3.20.0. - #7655 - Updated dependency
django-prometheusto~2.4.1. - #7655 - Updated dependency
django-redisto~6.0.0. - #7655 - Updated dependency
django-silkto~5.4.1. - #7655 - Updated dependency
django-storagesto~1.14.6. - #7655 - Updated dependency
django-structlogto~9.1.1. - #7655 - Updated dependency
django-timezone-fieldto~7.1. - #7655 - Updated dependency
django-tree-queriesto~0.20.0. - #7655 - Widened range of permitted versions for dependency
djangorestframeworkto also permit3.16.xversions. Note that depending on your environment this may result in either version 3.15.2 or 3.16.1 being installed after upgrading Nautobot. - #7655 - Updated dependency
drf-spectacularto~0.28.0. - #7655 - Updated dependency
emojito~2.14.1. - #7655 - Updated dependency
kubernetesto~33.1.0. - #7655 - Updated dependency
Markdownto~3.8.2. - #7655 - Updated dependency
nh3to~0.3.0. - #7655 - Widened range of permitted versions for dependency
Pillowto permit any11.x.yversions. - #7655 - Updated dependency
prometheus-clientto~0.22.0. - #7655 - Updated dependency
social-auth-coreto~4.7.0. - #7672 - Pinned the Docker image to Debian 12
bookwormLTS to prevent unintended upgrades to Debian 13trixie.
Housekeeping in v2.4.15¶
- #7315 - Refactored CustomField model related UI views to use
NautobotUIViewSet. - #7324 - Refactored DeviceType model related UI views to use
UI component framework. - #7513 - Refactored VirtualMachine model related UI views to use
NautobotUIViewSet. - #7519 - Refactored JobResult model related UI views to use
NautobotUIViewSet. - #7594 - Refactored Note model related UI views to use
NautobotUIViewSet. - #7648 - Adjusted Renovate configuration for
developandnext. - #7648 - Added management of
npmdependencies via Renovate. - #7648 - Added automatic refresh of
poetry.lockandpackage-lock.jsonto Renovate configuration. - #7654 - Updated
renovate.jsonto newer standards and removed some obsolete configuration thereof. - #7655 - Updated development dependency
django-debug-toolbarto~5.2.0. - #7655 - Updated development dependency
fakerto^37.5.3. - #7655 - Updated development dependency
richto~14.1.0. - #7655 - Updated development dependency
ruffto~0.12.8and applied its recommendations. - #7655 - Updated development dependency
seleniumto~4.34.2. - #7655 - Updated development dependency
tblibto~3.1.0. - #7655 - Updated development dependency
time-machineto~2.17.0. - #7655 - Updated development dependency
yamllintto~1.37.1. - #7655 - Updated documentation dependency
mkdocstringsto~0.30.0. - #7655 - Updated documentation dependency
mkdocstrings-pythonto~1.16.12.
v2.4.14 (2025-08-04)¶
Added in v2.4.14¶
- #7278 - Added
range_startandrange_endparameters for/api/ipam/prefixes/<id>/available-ips/. This replaces the use of theoffsetparameter in this particular case. - #7479 - Added Bulk Edit functionality for the SecretsGroup model.
- #7566 - Added Eaton and Raritan C39 power outlet type.
- #7574 - Added 4 new choices in the Secret Type category of Secret Groups: "Authentication Key", "Authentication Protocol", "Private Key" and "Private Algorithm".
- #7625 - Added an index to JobLogEntry to improve performance of Job Result logs.
- #7633 - Added support for optional
get_querysetboolean parameter toCustomField.objects.get_for_model(),ComputedField.objects.get_for_model(), andRelationship.objects.get_for_model()APIs. If set toFalsethese APIs will return a (potentially cached) list of records instead of a QuerySet. - #7633 - Added
populate_list_caches()method toCustomField.objects,ComputedField.objects, andRelationship.objects, which can be called to efficiently populate the caches used by theget_for_model()methods whenget_queryset=Falsefor all content-types. - #7633 - Added
feature_modelsdict to the Nautobot registry for more efficient GraphQL schema generation. - #7633 - Added caching of generated search parameters for more efficient GraphQL schema generation.
Changed in v2.4.14¶
- #7601 - Made network driver mappings dynamically find network driver keys.
- #7611 - Added more verbose default output to
nautobot-server migratecommand.
Fixed in v2.4.14¶
- #3609 - Fixed
cluster_countnot showing up on the API of/tenancy/tenants/. - #7577 - Fixed incorrect reference to Inventory Items under the Module documentation.
- #7616 - Fixed a data-loss bug in the v1.x-to-v2.0 migration
extras.0062_collect_roles_from_related_apps_rolesin which custom-field data ondcim.DeviceRole,dcim.RackRole, andipam.Rolerecords was not correctly copied to the corresponding createdextras.Rolerecords. - #7633 - Greatly reduced the number of database queries made when generating the GraphQL schema.
Dependencies in v2.4.14¶
- #7584 - Updated
GitPythondependency to~3.1.45. - #7584 - Updated
nh3dependency to~0.2.22. - #7584 - Updated
pyuwsgidependency to2.0.30. - #7601 - Updated dependency
netutilsminimum version to support ability for dynamic network driver mappings.
Housekeeping in v2.4.14¶
- #7419 - Refactored GraphQLQuery model related UI views to use
NautobotUIViewSet. - #7479 - Refactored SecretsGroup model related UI views to use
NautobotUIViewSet. - #7500 - Refactored Rack model related UI views to use
NautobotUIViewSet. - #7584 - Updated development dependency
pymarkdownlntto~0.9.31. - #7584 - Updated documentation dependency
mkdocs-materialto~9.6.16.
v2.4.13 (2025-07-21)¶
Added in v2.4.13¶
- #6594 - Added additional database indices to
IPAddress,Prefix, andVRFmodels to improve the default list view performance for these models.
Changed in v2.4.13¶
- #6608 - Updated branding hyperlinks on bottom of UI to open in new tab.
- #7484 - Add the Show Device Full Name button to the
Elevationslist view.
Fixed in v2.4.13¶
- #6594 - Changed the default
orderingofInterface(and similar device components) to a less expensive query to improve performance of default list views of these components. - #6594 - Improved the performance of
Device.all_interfaces,.all_console_ports, etc. in the case where the Device has no module bays. - #7590 - Improved performance of Device detail view when many devices belong to many dynamic-groups.
v2.4.12 (2025-07-17)¶
Changed in v2.4.12¶
- #7194 - Moved
job_resultsfield from Job Panel to a separateJobResultstable panel using ObjectsTablePanel from UI framework.
Fixed in v2.4.12¶
- #5056 - Fixed broken link pointing to Nautobot Golden Config Git Settings.
- #7143 - Fixed filtering on custom relationships for component models.
- #7547 - Fixed worker-status page failing with a KeyError.
- #7552 - Fixed formatting issue in rendering Config Context data.
- #7556 - Fixed Cloud, Devices, and Wireless NavMenuTabs all had the same weight of 200. Updated the Cloud weight to 150 and the Wireless weight to 250.
- #7558 - Improved logic in
LogsCleanupsystem Job to avoid an infinite recursion possibility. - #7559 - Reverted some of the changes introduced in v2.4.11 to Job loading from
JOBS_ROOTand Git repositories, due to reports of regressions in behavior.
Housekeeping in v2.4.12¶
- #7194 - Refactored Jobs detail view to use
UI component framework. - #7194 - Added
jobs_ui.pytonautobot.extras.viewswith classes:JobRunScheduleButton,JobKeyValueOverrideValueTablePanelandJobObjectFieldsPanel. - #7217 - Refactored Controller model related UI views to use
UI component framework. - #7291 - Refactored VirtualChassis model related UI views to use
NautobotUIViewSet. - #7323 - Refactored CircuitTermination model related UI views to use
UI component framework. - #7490 - Refactored Tag model related UI views to use
UI component framework. - #7537 - Updated documentation dependency
mkdocs-materialto~9.6.15.
v2.4.11 (2025-07-07)¶
Security in v2.4.11¶
- #7440 - Updated
requeststo2.32.4to addressCVE-2024-47081. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment. - #7461 - Updated
Djangoto 4.2.23 to further addressCVE-2025-48432. - #7487 - Updated
urllib3to 2.5.0 due toCVE-2025-50181andCVE-2025-50182. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.
Added in v2.4.11¶
- #6941 -
ModuleTypescan now be classified into a newModuleFamilymodel.ModuleBayandModuleBayTemplatescan define aModuleFamilythey will accept. - #7007 - Added support for bulk-editing Webhook
additional_headersandbody_templatefields. - #7298 - Added a
provides_dynamic_jobssetting to NautobotAppConfig and associated logic to reload app-provided jobs similar to Git repo jobs.
Changed in v2.4.11¶
- #7178 - Changed JobResult list view default configuration to not calculate and show "summary" of log entries by default, as it is not performant at scale.
Fixed in v2.4.11¶
- #6933 - Fixed Cable deleting via API.
- #7007 - Fixed an exception when bulk-editing Location
time_zonevalues. - #7038 - Fixed issue where approved scheduled jobs set to run "immediately" were not executed, by changing the
create_schedulemethod inScheduledJob. - #7149 - Fixed
EXEMPT_VIEW_PERMISSIONScausing an exception. - #7307 - Fixed incorrect bulk-edit job and view logic around nulling out fields.
- #7307 - Fixed a number of incorrect
nullable_fieldsentries on various bulk-edit forms. - #7361 - Added a check in
refresh_job_code_from_repository()to cause it to abort early if given arepository_slugthat is invalid or conflicts with an installed Python package or Python built-in. - #7361 - Fixed the code for loading Jobs from a GitRepository to only auto-import the
<repository_slug>and<repository_slug>.jobsmodules fromGIT_ROOT, rather than loading all Python packages present inGIT_ROOT. - #7361 - Fixed the code for loading Jobs from
JOBS_ROOTand Git repositories to not import discovered packages/modules whose names are invalid as Python module names or whose names conflict with installed Python packages or Python built-ins. This fix prevents some improper-but-previously-permitted names (e.g.pass.py,nautobot.py) from being imported. - #7361 - Added additional validation constraints on GitRepository
slugto disallow values that would conflict with Python built-ins and keywords. This fix will disallow some improper-but-previously-permitted slugs (e.g.sys,pass); you can runnautobot-server validate_models extras.GitRepositoryafter upgrading to identify entries that should be deleted and recreated with a different slug. - #7427 - Fixed return URL for single "Remove cable" operations.
- #7460 - Added missing permission enforcement for custom actions in NautobotUIViewSet supported models.
- #7464 - Fixed issue where network driver help text and choices modal were missing in
Platform. - #7489 - Fixed broken Relationship "Move to advanced tab" functionality.
- #7503 - Fixed issue where retrieving the username of the latest change log entry loaded large unrelated fields.
- #7518 - Improved performance for the "utilization" column of the Prefix list view.
- #7528 - Fixed a typo in the RadioProfile model.
Dependencies in v2.4.11¶
- #7444 - Updated dependency
celeryto permit versions up to 5.5.x andkombuto permit versions up to 5.5.x as well. Due to concern about potential impacts of the upgrade, we have not yet updated the minimum Celery and Kombu versions required by Nautobot. This minimum version will likely be raised in a future release; in the interim, please upgrade Celery and Kombu and verify their operation in your local environment as befits your risk tolerance.
Documentation in v2.4.11¶
- #7469 - Updated sample Device Redundancy Group GraphQL queries with correct v2 field names.
- #7514 - Updated BootstrapMixin import location in secrets provider example docs.
- #7527 - Added Analytics GTM template override only to the public ReadTheDocs build.
Housekeeping in v2.4.11¶
- #7007 - Enhanced
test_bulk_edit_objects_with_permissiongeneric view test case to include validation that the providedbulk_edit_datawas processed correctly and correctly passed through to the BulkEditObjects job. - #7007 - Added
test_bulk_edit_objects_nullable_fieldsgeneric view test case to verify correct definition and operation ofnullable_fieldson bulk edit forms. - #7238 - Refactored InterfaceRedundancyGroup model related UI views to use
UI component framework. - #7258 - Refactored ControllerManagedDeviceGroup model related UI views to use
UI component framework. - #7303 - Refactored PowerFeed model related UI views to use
UI component framework. - #7346 - Refactored Location model related UI views to use
NautobotUIViewSet. - #7347 - Refactored RelationshipAssociation model related UI views to use
NautobotUIViewSet. - #7357 - Refactored Tag model related UI views to use
NautobotUIViewSet. - #7361 - Added unit tests for
import_modules_privatelyutility method. - #7409 - Refactored ConfigContext model related UI views to use
NautobotUIViewSet. - #7413 - Refactored VLAN model related UI views to use
NautobotUIViewSet. - #7421 - Refactored ConfigContextSchema model related UI views to use
NautobotUIViewSet. - #7450 - Removed deprecated sandbox deployment workflow.
- #7461 - Updated testing dependency
openapi-spec-validatorto~0.7.2. - #7483 - Refactored ConfigContext model related UI views to use
UI component framework.
v2.4.10 (2025-06-09)¶
Security in v2.4.10¶
- #6672 - Added enforcement of user authentication when serving uploaded media files (GHSA-rh67-4c8j-hjjh).
- #7417 - Added protections against access of various security-related and/or data-altering methods of various Nautobot models from within a Jinja2 sandboxed environment or the Django template renderer (GHSA-wjw6-95h5-4jpx).
- #7425 - Updated
Djangoto 4.2.22 to addressCVE-2025-48432.
Fixed in v2.4.10¶
- #7358 - Fixed
web_request_contextfaulty logic in itstry/finallyblock. - #7362 - Fixed NautobotCSVParser incorrect parsing of many-to-many fields.
Documentation in v2.4.10¶
- #7430 - Added latest security disclosures to the documentation.
- #7430 - Removed John Anderson as a point of contact for Nautobot security issues.
v2.4.9 (2025-05-27)¶
Security in v2.4.9¶
- #7317 - Updated
setuptoolsto78.1.1to addressCVE-2025-47273. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.
Added in v2.4.9¶
- #7043 - Added support for
job_queueparameter toJobResult.execute_job(),JobResult.enqueue_job(), andScheduledJob.create_schedule().
Changed in v2.4.9¶
- #7043 - Changed "Run Job" form to display a warning when submitting a Job against a Celery queue that has no active workers, but allow the job to be submitted, instead of blocking the Job altogether.
Fixed in v2.4.9¶
- #7043 - Fixed regression introduced in 2.4.0 involving inability to specify a non-default job queue when scheduling a Job.
- #7172 - Restored missing
rdcolumn inVRFTable. - #7245 - Fixed
ExportObjectListjob now initializesfilter_paramsfrom the selected SavedView's config when?saved_viewis present and filters haven't been cleared. If additional query parameters are included, they override matching filters from the saved view. - #7250 - Fixed MULTISELECT custom field representation in GraphQL to be a JSON array instead of a string.
- #7308 - Fixed incorrect form buttons rendered in create/update views provided by NautobotUIViewSet.
- #7309 - Fixed Content-Type filtering on ObjectMetaData.
- #7311 - Added f-strings to 2 places where they were missing (
nautobot/core/utils/filtering.pyingenerate_querymethod and in migration filenautobot/extras/migrations/0024_job_data_migration.py). - #7318 - Fixed an AttributeError exception when rendering a table column describing a Relationship association to an unknown content-type.
- #7328 - Fixed an issue in the Golden Config App where clicking a Configuration Compliance Feature Navigation link or loading a page with a hash would not scroll to the correct section due to conflicting legacy scroll offset logic.
- #7340 - Fixed incorrect rendering of "Last run" column in Job list view.
Dependencies in v2.4.9¶
Housekeeping in v2.4.9¶
- #7104 - Resolved bug in VS Code devcontainer workflow.
- #7163 - Refactored CloudResourceType model related UI views to use
UI component framework. - #7231 - Refactored DeviceFamily model related UI views to use
UI component framework. - #7237 - Refactored DeviceRedundancyGroup model related UI views to use
UI component framework. - #7243 - Refactored DeviceType model related UI views to use
NautobotUIViewSet. - #7246 - Refactored WirelessNetwork model related UI views to use
UI component framework. - #7248 - Refactored ModuleBayUIViewSet model related UI views to use
UI component framework. - #7265 - Refactored MetadataType model related UI views to use
UI component framework. - #7271 - Refactored ComputedField model related UI views to use
UI component framework. - #7277 - Updated documentation dependency
mkdocs-materialto~9.6.14. - #7277 - Updated development dependency
pylintto~3.3.7. - #7277 - Updated development dependency
pymarkdownlntto~0.9.30. - #7287 - Refactored CircuitTypeUIViewSet model related UI views to use
UI component framework. - #7300 - Refactored RackReservation model related UI views to use
UI component framework.
v2.4.8 (2025-05-12)¶
Security in v2.4.8¶
- #7223 - Updated dependency
h11to0.16.0to addressCVE-2025-43859. This is a development dependency and will not auto-update when upgrading Nautobot. Please be sure to update your local environment. - #7273 - Updated
Djangoto 4.2.21 to addressCVE-2025-32873.
Added in v2.4.8¶
- #6053 - Added
primary_ipproperty to GraphQLDeviceTypeto simplify lookup of primary IPs when a mixture of IPv4 and IPv6 are involved. - #6053 - Added
deviceproperty to GraphQLModuleTypeto simplify lookup of the Device containing a given Module. - #7048 - Added Bulk Edit functionality for the Platform model.
- #7075 - Added Bulk Edit functionality for the Webhook model.
- #7107 - Added Bulk Edit functionality for the JobHook model.
- #7126 - Added Bulk Edit functionality for the CustomLink model.
- #7148 - Added Bulk Edit functionality for the RackGroup model.
- #7154 - Added index to
createdfield inJobLogEntry. - #7159 - Added Bulk Edit functionality for the ComputedField model.
- #7232 - Added Bulk Edit functionality for the CircuitType model.
- #7234 - Added Bulk Edit functionality for the CircuitTermination model.
Changed in v2.4.8¶
- #7219 - Enhanced Contact and Team search to include matching by email and phone number.
- #7224 - Changed
ObjectsTablePanel.__init__()to enforce that arelated_field_nameis required when specifying atable_attribute. - #7267 - Changed the
contactstab in object detail views to not render if users do not have permission to view contact-associations.
Fixed in v2.4.8¶
- #6053 - Added
all_interfaces,all_modules, etc. properties to GraphQLDeviceTypeto facilitate lookup of components belonging to descendant modules. - #6053 - Added
common_vc_interfaces,vc_interfacesproperties to GraphQLDeviceTypeto facilitate lookup of components when VirtualChassis are involved. - #6157 - Fixed invalid specs for ChoiceFields and EmailFields in the swagger schema.
- #6985 - Added
filterset_formtoRackElevationListView. - #7026 - Fixed collapsing/expanding on the jobs page.
- #7102 - Fixed that event payload's
prechangefield is empty when relevant object's previous changelog entries do not exist. - #7154 - Fixed memory issue in cleanup Job Results by changing
deleteto_raw_deleteinrecursive_delete_with_cascademethod. - #7184 - Fixed missing support for
value_transformswith certain model field types inObjectFieldsPanel. - #7188 - Fixed broken advanced filters in Nautobot v2.4.7
- #7224 - Fixed table filter issues in CloudNetwork model related UI component.
Documentation in v2.4.8¶
- #7140 - Fixed a typo in front port documentation.
- #7240 - Reorganized and expanded the Nautobot Jobs documentation across both the User Guide and the Development Guide. The goals of this update are to improve navigation, reduce page length for easier readability, standardize examples, and align the documentation with Nautobot 2.4.x behavior.
Housekeeping in v2.4.8¶
- #6157 - Added a unit test to validate the generated OpenAPI spec.
- #7047 - Refactored VLANGroup model related UI views to use
NautobotUIViewSetandUI Component Framework. - #7048 - Refactored Platform model related UI views to use
NautobotUIViewSetandUI Component Framework. - #7056 - Refactored Cluster model related UI views to use
NautobotUIViewSetandUI component framework. - #7075 - Refactored webhook model related UI views to use
NautobotUIViewSetandUI Component Framework. - #7107 - Refactored JobHook model related UI views to use
NautobotUIViewSetandUI component framework. - #7126 - Refactored CustomLink model related UI views to use
NautobotUIViewSetandUI component framework. - #7141 - Refactored PowerPanel model related UI views to use
NautobotUIViewSetandUI component framework. - #7148 - Refactored RackGroup model related UI views to use
NautobotUIViewSetandUI component framework. - #7153 - Refactored SupportedDataRate model related UI views to use
UI component framework. - #7155 - Refactored RackReservation model related UI views to use
NautobotUIViewSet. - #7158 - Refactored CloudNetwork model related UI views to use
UI component framework. - #7159 - Refactored ComputedField model related UI views to use
NautobotUIViewSet. - #7162 - Refactored CloudService model related UI views to use
UI component framework. - #7172 - Refactored PowerFeed model related UI views to use
NautobotUIViewSet. - #7173 - Refactored JobQueue model related UI views to use
UI component framework. - #7175 - Refactored JobButton model related UI views to use
UI component framework. - #7184 - Refactored RadioProfile model related UI views to use
UI component framework. - #7187 - Added upstream testing for next/next-3.0 in Apps.
- #7187 - Removed upstream testing for ltm-1.6.
- #7189 - Updated
mkdocs-materialdocumentation dependency to~9.6.12. - #7189 - Updated
mkdocs-section-indexdocumentation dependency to~0.3.10. - #7204 - Refactored SoftwareVersion model related UI views to use
UI component framework. - #7212 - Refactored SoftwareImageFile model related UI views to use
UI component framework.
v2.4.7 (2025-04-14)¶
Added in v2.4.7¶
- #4171 - Added
TYPE_NOTESandTYPE_URLto SecretsGroupSecretTypeChoices. - #6923 - Added
AutoPopulateWidgetto support form fields with auto-population logic. - #6998 - Added browser and backend caching for
/api/swaggerOpenAPI endpoint to speed up Swagger and Redoc loading time. - #7115 - Added Bulk Edit functionality for the Relationship model.
- #7127 - Added Bulk Edit functionality for the ExportTemplate model.
- #7134 - Added Bulk Edit functionality for the Manufacturer model.
Changed in v2.4.7¶
- #6753 - Removed indentation of child locations on location details page.
- #7114 - Changed "Locations" column in VLAN table to show
location.nameinstead oflocation.displayto avoid verbose location hierarchy.
Fixed in v2.4.7¶
- #5287 - Fixed text to be selectable on homepage panels.
- #6923 - Fixed auto populating position field when creating Module Bay from Device Type details and bulk creating from Devices or Modules list.
- #7101 - Fixed saving a new rack elevation view.
- #7108 - Fixed various cases where CustomField-related
provision_fieldanddelete_custom_field_databackground tasks were unnecessarily triggered. - #7108 - Added missing signal handler to remove custom field data from affected objects when
CustomField.content_types.clear()is called. - #7152 - Changed
Location.displayto honorLOCATION_NAME_AS_NATURAL_KEY- meaning the display of location names will not render the full hierarchy, in places where only the name is relevant.
Housekeeping in v2.4.7¶
- #6923 - Refactored
initializeSlugFieldto use common logic with other auto populated field like Module Bay position. - #7099 - Removed jQuery from documentation builds as it's not needed anymore for the ReadTheDocs version selection flyout menu.
- #7103 - Refactored ProviderNetwork model related UI views to use
UI component framework. - #7111 - Refactored Team model related UI views to use
UI component framework. - #7115 - Refactored Relationship model related UI views to use
NautobotUIViewSet. - #7127 - Refactored ExportTemplate model related UI views to use
NautobotUIViewSetandUI component framework. - #7130 - Refactored Contact model related UI views to use
UI component framework. - #7134 - Refactored Manufacturer model related UI views to use
NautobotUIViewSetandUI component framework. - #7144 - Refactored CloudAccount model related UI views to use
UI component framework.
v2.4.6 (2025-03-31)¶
Security in v2.4.6¶
- #7039 - Updated
cryptographyto44.0.2to addressCVE-2024-12797.
Added in v2.4.6¶
- #4181 - Added
last_updatedcolumn to Note table. - #4181 - Added display for number of notes attached to each object on the Notes tab header in Object Detail View.
- #5780 - Added object permission enforcement to related objects when modifying records through the REST API.
- #6957 - Added optional
display_fieldparameter toLinkedCountColumn. - #7003 - Added
external_integrationforeign key field toSoftwareImageFilemodel, which allows the enrichment of file data to include download options, secrets, etc. - #7041 - Added Bulk Edit functionality for the ClusterType model.
- #7044 - Added Bulk Edit functionality for the ClusterGroup model.
- #7088 - Added support for removing content types in Status bulk-edit and Role bulk-edit.
- #7091 - Added Nautobot DNS Models app to the Apps Marketplace.
Changed in v2.4.6¶
- #4181 - Changed the default column ordering of Note table.
- #6379 - Changed
SoftwareImageFile.download_urlto allow additional URI Schemas, such assftp://,tftp://. - #6957 - Changed "Locations" column in Prefix table to show
location.nameinstead oflocation.displayto avoid verbose location hierarchy in tables.
Fixed in v2.4.6¶
- #6902 - Fixed bug with formatting date in templates.
- #6962 - Fixed a Validation error with empty ports field in Service Bulk Edit Form.
- #6987 - Improved speed of IPAM 1.x-to-2.x data migration
0031_ipam___data_migrationsby about 20% when working with large data sets. - #7088 - Fixed bulk assignment and bulk removal of content types.
- #7092 - Added graceful handling for route-lookup errors when constructing a DynamicModelChoiceField or a DynamicModelMultipleChoiceField.
Dependencies in v2.4.6¶
- #6993 - Update dependency
kubernetesto^32.0.1. - #6993 - Update dependency
nh3to~0.2.21. - #7019 - Added
cryptographyas a directly specified dependency of Nautobot to make it easier to protect against various security issues in older versions ofcryptography. - #7019 - Removed support for Python 3.9.0 and 3.9.1 due to dependencies such as
cryptographyrequiring newer Python versions.
Documentation in v2.4.6¶
- #6944 - Updated the "Installation" section of the documentation to more clearly describe the various deployment approaches recommended for Nautobot and their respective pros and cons.
- #6995 - Added content to User Guide
index.mdto give overview of options in the documentation of the guide. - #7014 - Added "Recipe" section to permissions documentation with an "Export" example.
- #7020 - Improving issues found in various User Guide Getting Started typos and unclear references.
- #7030 - Improved Nautobot Webhooks documentation with additional context and examples.
- #7051 - Clarified developer "best practices" documentation regarding base classes for forms in Nautobot.
Housekeeping in v2.4.6¶
- #6962 - Refactored Service model related UI views to use
NautobotUIViewSetandUI component framework. - #6970 - Added selenium helper. Fixed selenium VNC port bug.
- #6987 - Added
django-test-migrationsas a testing dependency. - #6987 - Added
nautobot.ipam.tests.test_migrations.IPAMDataMigration0031TestCasethat can be run to reproducibly test IPAM data migration0031_ipam___data_migrationsfor correctness and performance. - #6987 - Renamed
invoke teststask toinvoke lintand renamedinvoke unittesttask toinvoke tests. - #6987 - Changed
invoke teststask to default to not measuring and reporting code coverage by default, since doing so slows test performance. - #6987 - Removed
django-slowtestsas a development dependency and removed associated test-performance-measuring functionality. - #6987 - Removed distinct
invoke integration-test,invoke performance-test, andinvoke unittest-coveragetasks; integration tests should now be run withinvoke tests --tag integrationand test coverage is reported when runninginvoke tests --coverage. - #6987 - Refactored
nautobot.ipam.tests.test_migrations.AggregateToPrefixMigrationTestCaseto usedjango-test-migrationsand be runnable. - #7013 - Refactored Namespace model related UI views to use
UI component framework. - #7017 - Fixed conflicts between factory data and bespoke test data involving VRF assignments to Virtual Device Contexts.
- #7017 - Fixed state leakage from custom-validation test cases potentially causing failures of other test cases.
- #7037 - Adds github action linter to CI.
- #7041 - Refactored ClusterType model related UI views to use
NautobotUIViewSetandUI component framework. - #7044 - Refactored ClusterGroup model related UI views to use
NautobotUIViewSetandUI component framework. - #7055 - Updated development dependencies
pylintto~3.3.6andpymarkdownlntto~0.9.29. - #7064 - Updated CI to use Poetry 1.8.5.
- #7064 - Updated "upstream testing" CI to use Python 3.11.
- #7071 - Refactored Status model related UI views to use
NautobotUIViewSetandUI component framework.
v2.4.5 (2025-03-10)¶
Security in v2.4.5¶
- #6983 - Updated dependency
Jinja2to~3.1.6to addressCVE-2025-27516. - #7000 - Updated dependency
Djangoto~4.2.20to addressCVE-2025-26699.
Added in v2.4.5¶
- #6384 - Added
Job.logger.failure()API for Job logging, using customFAILURElog level (betweenWARNINGandERROR). - #6384 - Added
Job.fail()API, which can be used to fail a Job more gracefully than by raising an uncaught exception. - #6384 - Added
NautobotTestCaseMixin.assertJobResultStatus()testing helper API. - #7001 - Added Bulk Edit functionality for the RIR model.
Changed in v2.4.5¶
- #6384 - Changed output of
nautobot-server runjobcommand to include the traceback (if any) and count ofsuccess/failurelog messages.
Removed in v2.4.5¶
- #6384 - Removed the (undocumented) requirement for Jobs that implement a custom
before_start()orafter_return()method to callsuper()for the Job to execute successfully.
Fixed in v2.4.5¶
- #6384 - Fixed rendering of "actions" column in the JobResult table view.
- #6384 - Fixed incorrect
stackleveldefault value in Joblogger.success()API. - #6906 -
GitRepository.clone_to_directorynow uses configured Secrets for Repository to prepare correctfrom_url. - #6972 - Fixed IPAddress get_or_create not working with the address argument.
Housekeeping in v2.4.5¶
- #6384 - Added
init: trueto developmentdocker-compose.ymlto avoid failed health-checks from remaining as zombie processes. - #6384 - Added
ExampleFailingJobto example app to demonstrate the two different ways to fail a Job. - #6971 - Fixed invoke commands requiring pyyaml.
- #7001 - Refactored RIR model related UI views to use
NautobotUIViewSetandUI component framework.
v2.4.4 (2025-03-03)¶
Added in v2.4.4¶
- #5851 - Added
PrefixFilterhelper class tonautobot.apps.filters. - #5851 - Enhanced
prefixesfilter onCloudNetworkandTenantfiltersets to support filtering by literal prefix string (10.0.0.0/8) as an alternative to filtering by primary key. - #5851 - Enhanced
prefixfilter onCloudNetworkPrefixAssignment,VRF, andVRFPrefixAssignmentfiltersets to support filtering by literal prefix string (10.0.0.0/8) as an alternative to filtering by primary key. - #5851 - Enhanced
parentfilter onPrefixfiltersets to support filtering by literal prefix string (10.0.0.0/8) as an alternative to filtering by primary key. - #5851 - Enhanced
prefixfilter onPrefixLocationAssignmentfiltersets to support filtering by primary key as an alternative to filtering by literal prefix string. - #5851 - Added
qsearch filter toVRFPrefixAssignmentfilterset. - #6635 - Added Monaco Editor integration to object change view for improved visualization of structured data differences including JSON, YAML, XML, tags, custom fields, and config contexts.
- #6924 - Added optional VRF relationship to Virtual Device Context.
- #6925 - Added colors next to Devices to indicate Device status in Rack Elevation view.
- #6966 - Added support for accessing the current user within Custom Validators via
self.context["user"].
Changed in v2.4.4¶
- #6829 - Enabled assignment of a Device to a Rack that belongs to a child Location of the device's location; for example, a Device located in a "Building" can now be assigned to a Rack located in a "Room" within that building.
Fixed in v2.4.4¶
- #3041 - Fixed inability to assign a parent bay when creating a Device via the REST API.
- #5006 - Added a validation check to prevent removing an in-use content type from a LocationType.
- #5193 - Fixed an erroneous
ValidationErrorwhen attempting to apply Tags to an object via the REST API. - #5851 - Fixed
VRFPrefixAssignmentREST API endpoint incorrectly advertising support for Notes. - #5851 - Fixed incorrect
Meta.modelvalue onControllerManagedDeviceGroupWirelessNetworkAssignmentTableandControllerManagedDeviceGroupRadioProfileAssignmentTable. - #6848 - Fixed a
DoesNotExisterror in the GUI at/extras/git-repositories/X/result/when a Git repository was created via API and not yet synced. - #6861 - Fixed the data population of the Rack Group dropdown to include Rack Groups from the Rack's parent locations in Rack Edit View.
- #6910 - Fixed CSV export job to add a UTF-8 BOM (byte order mark) to the created file to ensure Excel will correctly handle any Unicode data.
- #6920 - Added log messages to help troubleshoot failures when rendering UI Component Framework
extra_buttons. - #6920 - Fixed logic in UI Component Framework
StatsPanelthat incorrectly disallowed use of FilterSet filters implicitly defined throughfields = "__all__". - #6920 - Fixed logic in generic
FormTestCaseclass that would incorrectly fail if form fields used FilterSet filters implicitly defined throughfields = "__all__". - #6939 - Fixed an error in testing Jobs in
JOBS_ROOTby forcing registration oftaggitandsocial_djangomodels before unregistering them from the admin site. - #6950 - Added missing
job_queuesfilter field toJobFilterSet. - #6952 - Fixed an
AttributeErrorexception when upgrading from v1.x to v2.x with certain existing data in the database.
Dependencies in v2.4.4¶
- #6927 - Updated dependency
django-filterto~25.1.
Documentation in v2.4.4¶
- #6903 - Removed documentation references to Nautobot 1.x behavior and feature changes within the 1.x release series.
- #6951 - Fixed typo in v2 migration documentation.
Housekeeping in v2.4.4¶
- #5851 - Enhanced
PrefixFactoryandVRFFactorytest helpers to automatically create appropriateVRFPrefixAssignmentrecords. - #6857 - Added
.yarndirectory to.gitignore. - #6857 - Changed CI for integration tests to use
--no-keepdb. - #6858 - Fixed generation of performance test endpoints for Nautobot apps.
- #6893 - Added an option for ephemeral ports, and streamlined debug settings for VSCode developers.
- #6943 - Updated
debuginvoke task to restore previous behavior.
v2.4.3 (2025-02-18)¶
Added in v2.4.3¶
- #6836 - Added management command
generate_performance_test_endpointsto generate performance test endpoints. - #6865 - Added Bulk Edit functionality for the Tenant Group model.
Changed in v2.4.3¶
- #5568 - Added hyperlink to the total device count number under device family.
Fixed in v2.4.3¶
- #5539 - Fixed incorrect error message in Controller
clean()method. - #6113 - Menus inside responsive tables are fixed to be visible by dynamically mounting them to the body and positioning them absolutely.
- #6667 - Adds custom clearable file input form widget.
- #6764 - Fixed global and user default saved views incorrectly overriding filtered views.
- #6785 - Fixed Saved Views throwing an unexpected error when they contain boolean filter parameters.
- #6805 - Fixed an exception when saving a Dynamic Group of IP Addresses.
- #6806 - Fixed a bug that prevented users from accessing the detail views of Location related Dynamic Groups.
- #6836 - Fixed various Component Template models incorrectly assume
Notessupport in the API. - #6836 - Fixed CloudNetworkPrefixAssignment, CloudServiceNetworkAssignment, InterfaceVDCAssignment, JobQueueAssignment, ObjectMetadata, PrefixLocationAssignment, VLANLocationAssignment, ControllerManagedDeviceGroupWirelessNetworkAssignment, and ControllerManagedDeviceGroupRadioProfileAssignment models incorrectly assume
Notessupport in the API. - #6841 - Fixed missing termination side when creating from Circuit detail page.
- #6860 - Fixed incorrect marking of
channel_widthandallowed_channel_listas required fields in the Wireless Radio Profile REST API. - #6901 - Fixed incorrect rendering of cable traces in the case where Modules are part of the hardware definition.
- #6901 - Fixed incorrect rendering of device-component (Interface, Front Port, etc.) detail views when Modules are involved.
Dependencies in v2.4.3¶
- #6658 - Updated dependency
django-constanceto~4.3.0. - #6658 - Updated dependency
kubernetesto^32.0.0. - #6869 - Updated dependency
Djangoto~4.2.19. - #6869 - Updated dependency
django-structlogto^9.0.1. - #6894 - Updated dependency
social-auth-app-djangoto~5.4.3. - #6894 - Updated dependency
social-auth-coreto~4.5.6.
Documentation in v2.4.3¶
- #6894 - Enabled PyMarkdown
proper-nameschecking for some relevant proper nouns and corrected documentation accordingly.
Housekeeping in v2.4.3¶
- #6618 - Updated GitHub Actions to use ubuntu-24.04 since ubuntu-20.04 is deprecated.
- #6658 - Updated development dependency
fakerto~36.1.0. - #6658 - Updated development dependency
django-debug-toolbarto~5.0.1. - #6846 - Fixed integration test task to allow passing in pattern match.
- #6865 - Refactored
tenancyapp to useNautobotUIViewSetand UI component framework. - #6869 - Updated development dependency
factory-boyto~3.3.3. - #6894 - Updated development dependency
fakerto~36.1.1. - #6894 - Updated linting dependency
pymarkdownlntto~0.9.28.
v2.4.2 (2025-02-03)¶
Added in v2.4.2¶
- #3319 - Added the appropriate Namespace to the link for adding a new IP address from an existing Prefix's detail view.
- #4702 - Added support for loading GraphQL queries from a Git repository.
- #5622 - Added
tagsfield onDeviceFamilyForm. - #6347 - Added Bulk Edit functionality for LocationType model.
- #6487 - Added the ability to perform a shallow copy of a GitRepository instance and to optionally checkout a different branch and/or a specific commit hash.
- #6767 - Added cacheable
CustomField.choicesproperty for retrieving the list of permissible values for a select/multiselect Custom Field.
Changed in v2.4.2¶
- #5781 - Removed unnecessary
import_jobs()call during system startup. - #6650 - Changed the
nautobot.apps.utils.get_base_template()function's fallback behavior to return"generic/object_retrieve.html"instead of"base.html"in order to more correctly align with its usage throughout Nautobot core. - #6650 - Replaced references to
generic/object_detail.htmlwithgeneric/object_retrieve.htmlthroughout the code and docs, asgeneric/object_detail.htmlhas been a deprecated alias since v1.4.0. - #6808 - Improved returned data when syncing a Git repository via the REST API.
Fixed in v2.4.2¶
- #3319 - Fixed an exception when retrieving available IP addresses within a Prefix for certain IPv6 networks.
- #3319 - Fixed incorrect potential inclusion of IPv4 IP addresses from the same Namespace when calling
.get_all_ips()or.get_utilization()on an IPv6 Prefix. - #6650 - Fixed rendering of "notes" and "changelog" tabs for object detail views that do not provide a custom HTML template.
- #6767 - Improved performance of object detail views when a large number of select/multiselect Custom Fields and also filtered Relationships are defined on the model class.
- #6767 - Improved performance of Device detail view by adding appropriate
select_related/prefetch_relatedcalls. - #6767 - Fixed display of Cluster Group in Device detail view.
- #6810 - Fixed Bulk Edit Objects job failure when passing a single value to
add_*/remove_*fields. - #6812 - Fixed the incorrect rendering of the Relationship panel in Object Detail View.
- #6821 - Fixed the rendering of
Locationin theRackReservationdetail page. - #6825 - Added links to the
manufacturercolumn of the Platform table. - #6838 - Added missing
keyandlabelfields to Relationship Detail View.
Dependencies in v2.4.2¶
- #6717 - Updated
GitPythondependency to~3.1.44. - #6717 - Updated
django-silkdependency to~5.3.2. - #6717 - Updated
django-tables2dependency to~2.7.5. - #6717 - Updated
mysqlclientoptional dependency to~2.2.7.
Documentation in v2.4.2¶
- #346 - Added documentation about Git repository REST API.
- #6621 - Added "Security Notices" document to the documentation under User Guide --> Administration.
Housekeeping in v2.4.2¶
- #6717 - Updated
mkdocs-materialdocumentation dependency to9.5.50. - #6717 - Updated
fakerdevelopment dependency to~33.3.1. - #6717 - Updated
pylintdevelopment dependency to~3.3.4. - #6779 - Added integration tests for bulk edit/delete operations for Devices and Locations.
- #6779 - Added
BulkOperationsTestCasesclass with built-in standard test cases for testing bulk operations. - #6842 - Fix
invoke integration-testto run standalone, without running theinvoke startfirst.
v2.4.1 (2025-01-21)¶
Security in v2.4.1¶
- #6780 - Updated
Djangoto4.2.18to addressCVE-2024-56374.
Fixed in v2.4.1¶
- #6427 - Fixed a bug which allowed several wireless interface types to accept cables.
- #6489 - Fixed partial-match filters (such as
__icand__isw) on fields that have restricted choices (Prefix.type,Interface.type, etc.) so that partial values are no longer rejected. - #6763 - Fixed the issue where the Wireless Network detail view fails to render when any record in the Controller Managed Device Groups table is missing a VLAN.
- #6770 - Fixed breakage of JobButton functionality.
- #6771 - Reverted breaking changes to various generic View base class attributes.
- #6773 - Fixed an exception when trying to render a Job class to a form when no corresponding Job database record exists.
- #6776 - Fixed
FilterTestCase.generic_filter_teststo again be optional as intended. - #6779 - Fixed Object Bulk Delete and Object Bulk Edit functionalities.
- #6783 - Fixed
NautobotDataBaseSchedulerunable to run Scheduled Jobs without job queues assigned. - #6786 - Fixed incorrect marking of
capabilitiesfield as required on Controller and ControllerManagedDeviceGroup REST APIs. - #6792 - Fixed
natural_key_field_lookupsfor proxy models.
Housekeeping in v2.4.1¶
- #6768 - Fixed link to changelog fragment documentation.
- #6794 - Fixed Device factory to ensure that it only selects SoftwareImageFiles that are permitted for a given Device.
v2.4.0 (2025-01-10)¶
Added in v2.4.0¶
- #1004 - Added singleton job functionality to limit specified jobs to one concurrent execution.
- #6353 - Added "Bulk Delete Objects" system Job.
- #6354 - Added "Bulk Edit Objects" system job.
- #6462 - Added tenant relationship to the
ControllerManagedDeviceGroup - #6462 - Added
tenantanddescriptionfields to forms, filtersets and tables forControllerandControllerManagedDeviceGroup - #6556 - Added REST API support for an
?exclude_m2m=truequery parameter. Specifying this parameter prevents the API from retrieving and serializing many-to-many relations on the requested object(s) (for example, the list of all Prefixes associated with a given VRF), which can in some cases greatly improve the performance of the API and reduce memory and network overhead substantially. - #6556 - Added automatic optimization of REST API querysets via appropriate
select_relatedandprefetch_relatedcalls. - #6556 - Enhanced generic REST API test methods
ListObjectsViewTestCase.test_list_objects_depth_0andListObjectsViewTestCase.test_list_objects_depth_1to test the?exclude_m2m=truequery parameter. This enhancement includes checks for missing related fields in the serialized data, which may result in new test failures being seen in Apps using this test class. - #6556 - Enhanced generic REST API test method
UpdateObjectViewTestCase.test_update_objectto include an idempotency test in combination with the?exclude_m2m=truequery parameter. This may result in new test failures being seen in Apps using this test class. - #6597 - Added an about page that displays Nautobot and support contract information.
- #6597 - Added
NTC_SUPPORT_CONTRACT_EXPIRATION_DATEconfiguration setting. - #6684 - Added support for
label-transparentCSS class. - #6684 - Added "success" log entry counts to the Job Result table.
- #6751 - Added NetObs and Load Balancer to Apps Marketplace.
Changed in v2.4.0¶
- #6463 - Reorganized parts of the Device and VirtualMachine create/edit forms for consistency and clarity.
- #6529 - Added VRF's to the Prefixes API.
- #6556 - Changed
DynamicModelChoiceField,DynamicModelMultipleChoiceField, andMultiMatchModelMultipleChoiceFielddefault behavior to include?exclude_m2m=trueas a query parameter to the REST API, improving the typical performance of populating such fields with options. - #6652 - Refined the App Marketplace and Installed Apps views based on stakeholder feedback.
- #6684 - Changed the
addnavigation menu buttons to be styled asprimary(light blue) rather thaninfo(darker blue). - #6684 - Updated the "author" and "availability" text in App Marketplace data for clarity.
- #6684 - Adjusted the layout and rendering of the App Marketplace and Installed Apps views based on stakeholder feedback.
Fixed in v2.4.0¶
- #6461 - Fixed inconsistent rendering of DynamicModelChoiceField throughout the UI.
- #6462 - Fixed
JSONArrayFormFielderror that field is required when default value is used. - #6526 - Fixed an AttributeError that occurred in the UI when editing a
DynamicGroupwithipam|prefixas its content-type and changing the value of the "Present in VRF" field. - #6556 - Added missing
tagsfield toCircuitTermination,Contact,DeviceFamily,GitRepository,MetadataType,Team,VirtualDeviceContextREST APIs. - #6556 - Fixed incorrect field identification logic in REST API testing helper method
ListObjectsViewTestCase.get_depth_fields(). This may result in new detection of latent issues in Apps by this test case. - #6556 - Fixed incorrect test logic in REST API generic test case
UpdateObjectViewTestCase.test_update_object(). This may result in new detection of latent issues in Apps by this test case. - #6556 - Fixed
?depthquery parameter support inContactandTeamREST APIs. - #6601 - Fixed whitespace in Jinja template renderer.
- #6602 - Fixed incorrect naming of
controller_managed_device_groupsfilter on the RadioProfile and WirelessNetwork filtersets. - #6629 - Fixed an
AttributeErrorthat could be raised if aDynamicModelChoiceFielduses a non-standardwidget. - #6661 - Fixed the rendering of the dynamic group associable model list tables.
- #6663 - Fixed
test_cable_cannot_terminate_to_a_virtual_interfaceandtest_cable_cannot_terminate_to_a_wireless_interfacetests so they fail properly. - #6738 - Fixed an exception when cleaning a Prefix that was defined by specifying
networkandprefix_length. - #6743 - Fixed incorrect rendering of the "Assigned" column in the IPAddress list view.
- #6745 - Restored indentation of child prefixes in Prefix detail view.
- #6745 - Improved logic for generation of "available" child prefixes in Prefix detail view.
Dependencies in v2.4.0¶
- #6424 - Updated
django-structlogdependency to^9.0.0.
Documentation in v2.4.0¶
- #6436 - Clarified NGINX user in installation documentation.
- #6480 - Added kubernetes-related job documentation and removed kubernetes-kind-related documentation.
- #6512 - Improved screenshots of UI Component Framework examples.
- #6512 - Added before/after example in Migration guide for UI Component Framework.
- #6639 - Added User Guide for Wireless Networks.
- #6654 - Improved REST API documentation about query parameters and filtering of fields.
Housekeeping in v2.4.0¶
- #6424 - Updated development dependencies
fakerto>=33.1.0,<33.2.0andwatchdogto~6.0.0. - #6612 - Replaced
markdownlint-clidevelopment dependency with Python packagepymarkdownlntand removed Node.js andnpmfrom the development Docker images. - #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. - #6715 - Updated development dependency
ruffto~0.8.5and addressed new rules added in that version. - #6742 - Updated various development dependencies to the latest versions available as of January 7.
v2.4.0b1 (2024-11-25)¶
Added in v2.4.0b1¶
- #3263 - Added support for users to specify their timezone from the user Preferences UI.
- #6087 - Added JobQueue and JobQueueAssignment models, GraphQL, UI and API.
- #6087 - Added a data migration to replace
Job.task_queueswithJobQueueinstances. - #6087 - Added a data migration to replace
ScheduledJob.queuewith aJobQueueinstance. - #6089 - Added enforcement of the Job execution soft time limit to the
nautobot-server runjob --local ...management command. - #6089 - Added automatic refreshing of Git repository Jobs to the
nautobot-server runjobmanagement command. - #6133 - Added
ObjectDetailContent,Tab, andPanelUI component Python classes. - #6133 - Added support for defining an
object_detail_contentattribute on object detail view classes to use the new UI framework. - #6134 - Added support for ordering
TabandPanelinstances byweightin code-defined detail views. - #6134 - Added
ObjectsTablePanelclass for rendering related-object tables in code-defined detail views. - #6135 - Enhanced ObjectFieldsPanel: Include TreeModel Hierarchy display, copy button at row level and url fields automatically hyperlinked features.
- #6136 - Enhanced
ObjectsTablePanel: Include features likeinclude/exclude columns, set limits of rows, change table panel header title. - #6137 - Added
DataTablePanelUI component. - #6137 - Added support for
context_table_keyparameter toObjectsTablePanel.__init__(). - #6137 - Added automatic formatting of
JSONFieldinObjectFieldsPanel. - #6138 - Added
BaseTextPanel.RenderOptions.CODEoption to render values inside<pre>tags using theTextPanelandObjectTextPanel. - #6139 - Added
ObjectTextPanelfor rendering text with markdown/json/yaml from given object field. - #6139 - Added
TextPanelfor rendering text with markdown/json/yaml from given value in the context. - #6140 - Added
StatsPanelUI component Python class. - #6141 - Added
KeyValueTablePanelandGroupedKeyValueTablePanelgeneric panel classes to Python UI framework. - #6141 - Added
RelationshipModel.get_relationships_with_related_objects()API allowing direct querying for all objects related to a given object by Relationships. - #6141 - Added object
tagsdisplay to detail views using the Python UI framework. - #6142 - Added
ButtonUI framework class andObjectDetailContent.extra_buttonsattribute, enabling declarative specification of custom buttons in an object detail view. - #6142 - Added support for App
TemplateExtensionimplementations to defineobject_detail_buttons. - #6144 - Added Virtual Device Context Model, API, UI.
- #6196 - Added Wireless Models.
- #6208 - Added
nautobot.core.eventsmodule, Redis and syslog event brokers, and event publication of CRUD events. - #6211 - Added InterfaceVDCAssignment model and API.
- #6241 - Added REST API for Wireless models.
- #6255 - Added
KUBERNETES_DEFAULT_SERVICE_ADDRESS,KUBERNETES_JOB_MANIFEST,KUBERNETES_JOB_POD_NAME,KUBERNETES_JOB_POD_NAMESPACE,KUBERNETES_SSL_CA_CERT_PATHandKUBERNETES_TOKEN_PATHsettings variables to support Kubernetes Job execution. - #6258 - Added optional
rolefield toVirtualDeviceContext. - #6259 - Added
default_job_queuefield to the Job Model. - #6276 - Added support for Apps to define
object_detail_panelsandobject_detail_tabsin theirTemplateExtensionclasses. - #6276 - Added
nautobot.apps.ui.DistinctViewTabclass for defining detail-view tabs that exist as a distinct view. - #6276 - Added
nautobot.apps.ui.render_component_templatehelper function. - #6323 - Added Scheduled Job support for Kubernetes Job Execution.
- #6324 - Added Event Broker Config
- #6325 - Added event publishing for events: user login, user logout, job failed, user changed password and admin changes user's password.
- #6326 - Added event publishing for events: job started, job completed, job failed, schedule job approved and scheduled job denied.
- #6338 - Added UI Components for Wireless models.
- #6348 - Added "Add virtual device contexts" to the Virtual Device Contexts panel in Device detail view.
- #6377 - Added support for
hide_hierarchy_uioption inObjectsTablePanel. - #6387 - Added a custom SUCCESS log level for use in Nautobot and Nautobot Jobs.
- #6446 - Added support for
query_paramsto NavMenuItem and NavMenuButton. - #6446 - Added
capabilitiesfield to Controller and ControllerManagedDeviceGroup. - #6488 - Added a REST API endpoint for rendering Jinja2 templates.
- #6504 - Added Apps Marketplace page.
- #6513 - Added
pre_taghelper/filter method to wrap content within<pre>tags. - #6537 - Added logic to prevent users from modifying device on Virtual Device Contexts.
- #6539 - Added Installed Apps page tile view.
- #6555 - Added a Jinja template renderer to the UI.
Changed in v2.4.0b1¶
- #6125 - Refactored Job run related code to be able to use Job Queues.
- #6133 - Converted
Circuitdetail view to use the new UI framework. - #6137 - Converted example app
ExampleModeldetail view to use UI component framework. - #6137 - Converted
ExternalIntegrationdetail view to use UI component framework. - #6138 - Changed
ExampleModelUIViewSetwith added example ofTextPanelusage. - #6139 - Changed
_ObjectCommentPanelto be subclass ofObjectTextPaneland use newly created text panel component. - #6140 - Refactored Tenant detail view to use UI component Python classes.
- #6142 - Converted
Secretrelated views to use NautobotUIViewSet and UI Framework. - #6142 - Converted
Devicedetail view to use UI Framework to define the "Add Components" dropdown. - #6196 -
JSONArrayFieldnow allowschoicesto be provided in thebase_fielddeclaration. - #6205 - Changed initial
Nautobot initialized!message logged on startup to include the Nautobot version number. - #6330 - Refactored
ObjectsTablePanelto accept either a table class and a queryset or an already initialized table. - #6377 - Converted VRF and RouteTarget UI views to use
NautobotUIViewSetandobject_detail_content. - #6476 - Converted
ClusterTypedetail view to use UI framework. - #6503 - Addressed Wireless models UI Feedback.
Deprecated in v2.4.0b1¶
- #6108 - Deprecated the
FilterTestCases.NameOnlyFilterTestCaseandFilterTestCases.NameSlugFilterTestCasegeneric test classes. Apps should migrate toFilterTestCases.FilterTestCasewith an appropriately defined list ofgeneric_filter_testsinstead. - #6142 - Deprecated the
TemplateExtension.buttons()API in favor ofTemplateExtension.object_detail_buttonsimplementation based around the UI Component Framework. - #6276 - Deprecated the
TemplateExtension.left_page(),TemplateExtension.right_page(), andTemplateExtension.full_width_page()APIs in favor ofTemplateExtension.object_detail_panelsimplementation based around the UI Component Framework.
Removed in v2.4.0b1¶
- #6108 - Removed the previously deprecated
ViewTestCases.BulkImportObjectsViewTestCasegeneric test class as obsolete. - #6342 - Removed remnants of the React UI prototype -
NavContext,NavGrouping,NavItem,GetMenuAPIView,GetObjectCountsView,ViewConfigException,get_all_new_ui_ready_routes(),get_only_new_ui_ready_routes(),is_route_new_ui_ready().
Fixed in v2.4.0b1¶
- #6089 - Fixed warning message
No sanitizer support for <class 'NoneType'> dataemitted by thenautobot-server runjob --local ...command. - #6108 - Fixed incorrect definition of
VirtualMachineFilterSet.clusterfilter. - #6137 - Fixed
ObjectsTablePanel.related_field_namefallback logic to be more correct. - #6137 - Fixed incorrect configuration of "Contacts", "Dynamic Groups", and "Object Metadata" tables in component-based views.
- #6139 - Fixed
body_content_text.htmlto properly render different formats like json, yaml or markdown. - #6208 - Fixed duplicate loading of
nautobot_config.pyduring Nautobot startup. - #6246 - Fixed accordion collapse/expand behavior when grouped computed fields and/or custom fields are present in a detail view.
- #6331 - Added missing
rolefield in Virtual Device Context detail view and edit view. - #6331 - Fixed Virtual Device Context edit view layout.
- #6337 - Added exception handling and fallback logic for Constance config lookups as
django-constance4.x removed some built-in exception handling. - #6338 - Fixed NumericArrayField not respecting numerical order.
- #6377 - Fixed Panel rendering to not include the header or footer if the content is only whitespace.
- #6377 - Fixed incorrect/unnecessary rendering of many-to-many fields in ObjectFieldsPanel.
- #6377 - Fixed various references to
context["object"]to useget_obj_from_context()appropriately. - #6394 - Fixed unexpected error
{'default_job_queue': ['This field cannot be null.']}on Job Bulk Update. - #6394 - Fixed overriding custom
job_queueson Job Bulk Update when no changes made on this field. - #6395 - Corrected name of IPAM migration 0050 to match the one released in v2.3.6.
- #6397 - Fixed incorrect handling of JobQueue objects in
get_worker_count(). - #6403 - Fixed wrong Primary IPv6 field label on VirtualDeviceContextForm.
- #6428 - Fixed some issues causing failures with reverse migrations.
- #6537 - Fixed unexpected failure when adding an interface component to a device from the Device detail view.
- #6546 - Fixed inconsistent rendering of the Role column on the Virtual Device Context list table.
- #6549 - Added missing
/to/api/core/render-jinja-template/URL.
Dependencies in v2.4.0b1¶
- #5963 - Updated
django-taggitto~6.1.0. - #6252 - Dropped support for Python 3.8. Python 3.9 is now the minimum version required by Nautobot.
- #6254 - Added
kubernetes==31.0.0development dependency. - #6342 - Removed dependency on
drf-react-template-framework. - #6363 - Removed direct dependency on
MarkupSafeas Nautobot does not use it directly, only through theJinja2dependency. - #6363 - Updated dependency
Pillowto~11.0.0. - #6363 - Updated dependency
django-auth-ldapto~5.1.0. - #6469 - Updated dependency
django-silkto~5.3.0. - #6549 - Moved
kubernetesfrom a development-only dependency to a required dependency.
Documentation in v2.4.0b1¶
- #6144 - Added documentation for Virtual Device Contexts.
- #6254 - Added documentation of how to use K8s Kind cluster for local K8s integrations development.
- #6275 - Added documentation about migration from template-based views into UI Component Framework.
- #6275 - Added UI Component Framework documentation.
- #6275 - Updated documentation of
development/apps/api/views/to inform users about preferred usage of UI Component Framework. - #6275 - Updated docstrings for some of UI related classes to improve auto-generated docs.
- #6381 - Added Wireless Model documentation.
- #6549 - Added 2.4 release overview.
Housekeeping in v2.4.0b1¶
- #5963 - Updated development dependency
fakerto>=30.1.0,<30.2.0. - #5963 - Updated documentation dependency
towncrierto~24.8.0. - #5963 - Updated
watchdogto~5.0.0. - #6108 - Removed roughly 800 redundant and/or obsolete test cases.
- #6108 - Merged the
APIViewTestCases.NotesURLViewTestCase.test_notes_url_on_objectgeneric test function intoAPIViewTestCases.GetObjectViewTestCase.test_get_objectgeneric test function to reduce redundant code and improve test speed. - #6108 - Merged the
FilterTestCases.FilterTestCase.test_idgeneric test function intoFilterTestCases.FilterTestCase.test_filters_genericgeneric test function to reduce redundant code and improve test speed. - #6108 - Removed the
FilterTestCases.FilterTestCase.test_q_filter_existsgeneric test function as redundant. - #6108 - Merged the
ViewTestCases.GetObjectViewTestCase.test_has_advanced_tabgeneric test function intoViewTestCases.GetObjectViewTestCase.test_get_object_with_permissiongeneric test function to reduce redundant code and improve test speed. - #6108 - Removed the
ViewTestCases.CreateObjectViewTestCase.test_slug_autocreationandtest_slug_not_modifiedgeneric test functions as obsolete. - #6108 - Merged the
ViewTestCases.ListObjectsViewTestCase.test_list_view_app_bannergeneric test function intoViewTestCases.ListObjectsViewTestCase.test_list_objects_with_permissiongeneric test function to reduce redundant code and improve test speed. - #6133 - Moved definition of nav and homepage base classes from
nautobot.core.appsto newnautobot.core.uimodule. (These classes are still available to App authors via the samenautobot.apps.uiimport aliases as previously). - #6133 - Added support for
--quietoption toinvoke nbshelltask. - #6250 - Improved speed of
JobQueueFactorywhen a large number of Jobs are installed. - #6275 - Added parameter
--fixtoinvoke markdownlint. - #6320 - Fixed an error when rerunning a test with cached test fixtures that included default job queues.
- #6493 - Moved runjob helper functions from
nautobot.extras.management.__init__.pytonautobot.extras.management.utils.py.