github nautobot/nautobot v1.1.0b2
v1.1.0b2 - 2021-07-09

latest releases: v1.6.19, v2.2.2, v1.6.18...
pre-release2 years ago

Nautobot v1.1

This document describes all new features and changes in Nautobot 1.1.

If you are a user migrating from NetBox to Nautobot, please refer to the "Migrating from NetBox" documentation.

Release Overview

Added

App Defined Navigation (#12)

Applications can now define tabs, groups, items and buttons in the navigation menu. Using navigation objects a developer can add items to any section of the navigation using key names and weight values. Please see Application Registry for more details.

Computed Fields (#4)

Computed fields offers users the ability to create read-only custom fields using existing data already stored in the database. Users define Jinja2 templates that populate the value of these fields. Computed fields are available on all data models that currently support custom fields.

Config Context Schemas (#274)

While config contexts allow for arbitrary data structures to be stored within Nautobot, at scale it is desirable to apply validation constraints to that data to ensure its consistency and to avoid data entry errors. To service this need, Nautobot supports optionally backing config contexts with JSON Schemas for validation. These schema are managed via the config context schema model and are optionally linked to config context instances, in addition to devices and virtual machines for the purpose of validating their local context data. Please see the docs for more details.

GraphQL ORM Functions

Two new GraphQL utility functions have been added to allow easy access to the GraphQL system from source code. Both can be accessed by using from nautobot.core.graphql import execute_saved_query, execute_query.

  1. execute_query(): Runs string as a query against GraphQL.
  2. execute_saved_query(): Execute a saved query from Nautobot database.

MySQL Database Support (#17)

MySQL 8.x is now fully supported as a database backend!

The installation and configuration guides have been revised to include MySQL. If you prefer MySQL or it is more easily supported in your environment, configuring Nautobot to use MySQL is as easy as changing value of ENGINE in your DATABASES setting to point to django.db.backends.mysql and installing the MySQL Python driver using pip3 install nautobot[mysql].

!!! note
You will not be able to directly migrate your data from PostgreSQL to MySQL. A fresh start is required.

A new NAUTOBOT_DB_ENGINE environment variable has been added to allow for specifying the desired database engine at runtime without needing to modify your nautobot_config.py. Please see the configuration guide on DATABASES for more details on how to configure Nautobot to use MySQL.

Please see the MySQL setup guides for Ubuntu and CentOS to get started.

Plugin Defined Navigation (#12)

Plugins can now define tabs, groups, items and buttons in the navigation menu. Using navigation objects a developer can add items to any section of the navigation using key names and weight values. Please see Application Registry for more details.

Read Only Jobs (#200)

Jobs may be optionally marked as read only by setting the read_only = True meta attribute. This prevents the job from making any changes to nautobot data and suppresses certain log messages. Read only jobs can be a great way to safely develop new jobs, and for working with reporting use cases. Please see the Jobs documentation for more details.

Saved GraphQL Queries (#3)

Saved GraphQL queries offers a new model where reusable queries can be stored in Nautobot. New views for managing saved queries are available; additionally, the GraphiQL interface has been augmented to allow populating the interface from a saved query, editing and saving new queries.

Saved queries can easily be imported into the GraphiQL interface by using the new navigation tab located on the right side of the navbar. Inside the new tab are also buttons for editing and saving queries directly into Nautobot's databases.

Changed

Background Tasks now use Celery (#223)

Celery has been introduced to eventually replace RQ for executing background tasks within Nautobot. All core usage of RQ has been migrated to use Celery.

Prior to version 1.1.0, Nautobot utilized RQ as the primary background task worker. As of Nautobot 1.1.0, RQ is now deprecated. RQ and the @job decorator for custom tasks are still supported for now, but will no longer be documented, and support for RQ will be removed in a future release.

RQ support for custom tasks was not removed in order to give plugin authors time to migrate, however, to continue to utilize advanced Nautobot features such as Git repository synchronization, webhooks, jobs, etc. you must migrate your nautobot-worker deployment from RQ to Celery.

Please see the section on migrating to Celery from RQ for more information on how to easily migrate your deployment.

Removed

v1.1.0b2 (2021-07-09)

Added

  • #599 - Custom fields are now supported on JobResult objects
  • #637 - Implemented a nautobot-server fix_custom_fields command to manually purge stale custom field data

Changed

  • #634 - Documentation on plugin capabilities has been clarified.

Fixed

  • #495 - Fixed search for partial IPv4 prefixes/aggregates not finding all matching objects
  • #533 - Custom field tasks are now run atomically to avoid stale field data from being saved on objects.
  • #554 - Fixed search for partial IPv6 prefixes/aggregates not finding all matching objects
  • #569 - Change minimum/maximum allowed values for integer type in Custom Fields to 64-bit BigIntegerField types (64-bit)
  • #600 - The invoke migrate step is now included in the development getting started guide for Docker workflows
  • #617 - Added extra comments to uwsgi.ini config to help with load balancer deployments in Nautobot services documentation
  • #626 - Added prefix NAUTOBOT_ in override.env example inside of docker-entrypoint.sh
  • #645 - Updated services troubleshooting docs to include "incorrect string value" fix when using Unicode emojis with MySQL as a database backend
  • #653 - Fixed systemd unit file for nautobot-worker to correctly start/stop/restart
  • #661 - Fixed computed_fields key not being included in API response for devices when using opt_in_fields
  • #667 - Fixed various outdated/incorrect places in the documentation for v1.1.0 release.

Don't miss a new nautobot release

NewReleases is sending notifications on new releases.