nautobot 2.2.5__py3-none-any.whl → 2.2.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/api.py +2 -0
- nautobot/apps/models.py +2 -0
- nautobot/core/api/fields.py +13 -0
- nautobot/core/api/serializers.py +7 -1
- nautobot/core/management/commands/generate_test_data.py +128 -158
- nautobot/core/models/fields.py +15 -0
- nautobot/core/tests/test_utils.py +48 -1
- nautobot/core/utils/git.py +121 -49
- nautobot/core/utils/module_loading.py +10 -2
- nautobot/dcim/factory.py +1 -1
- nautobot/dcim/tests/test_models.py +2 -0
- nautobot/extras/datasources/git.py +133 -135
- nautobot/extras/datasources/utils.py +3 -0
- nautobot/extras/filters/__init__.py +1 -0
- nautobot/extras/forms/forms.py +16 -3
- nautobot/extras/jobs.py +9 -1
- nautobot/extras/migrations/0107_laxurlfield.py +28 -0
- nautobot/extras/migrations/0108_jobbutton_enabled.py +17 -0
- nautobot/extras/models/datasources.py +6 -4
- nautobot/extras/models/jobs.py +30 -0
- nautobot/extras/models/models.py +2 -4
- nautobot/extras/tables.py +3 -0
- nautobot/extras/templates/extras/jobbutton_retrieve.html +6 -2
- nautobot/extras/templatetags/job_buttons.py +2 -2
- nautobot/extras/tests/git_data/01-valid-files/__init__.py +0 -0
- nautobot/extras/tests/git_data/01-valid-files/config_context_schemas/schema-1.yaml +18 -0
- nautobot/extras/tests/git_data/01-valid-files/config_contexts/context.yaml +12 -0
- nautobot/extras/tests/git_data/01-valid-files/config_contexts/devices/test-device.json +3 -0
- nautobot/extras/tests/git_data/01-valid-files/config_contexts/locations/Test Location.json +7 -0
- nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template.j2 +3 -0
- nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template2.html +4 -0
- nautobot/extras/tests/git_data/01-valid-files/export_templates/ipam/vlan/template.j2 +3 -0
- nautobot/extras/tests/git_data/01-valid-files/jobs/__init__.py +5 -0
- nautobot/extras/tests/git_data/01-valid-files/jobs/my_job.py +16 -0
- nautobot/extras/tests/git_data/02-invalid-files/__init__.py +0 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema1.json +2 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema2.json +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext1.json +2 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext2.json +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext3.json +3 -0
- nautobot/extras/tests/git_data/02-invalid-files/config_contexts/devices/nosuchdevice.json +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/dcim/template.j2 +0 -0
- nautobot/extras/tests/git_data/02-invalid-files/devices/template.j2 +0 -0
- nautobot/extras/tests/git_data/02-invalid-files/export_templates/dcim/nosuchmodel/template.j2 +3 -0
- nautobot/extras/tests/git_data/02-invalid-files/export_templates/nosuchapp/device/template.j2 +3 -0
- nautobot/extras/tests/git_data/02-invalid-files/jobs/__init__.py +2 -0
- nautobot/extras/tests/git_data/02-invalid-files/jobs/importerror.py +1 -0
- nautobot/extras/tests/git_data/02-invalid-files/jobs/syntaxerror.py +1 -0
- nautobot/extras/tests/git_helper.py +76 -0
- nautobot/extras/tests/test_api.py +28 -11
- nautobot/extras/tests/test_datasources.py +94 -276
- nautobot/extras/tests/test_models.py +8 -3
- nautobot/extras/tests/test_views.py +21 -7
- nautobot/ipam/filters.py +9 -1
- nautobot/ipam/forms.py +8 -0
- nautobot/ipam/tables.py +1 -1
- nautobot/ipam/tests/test_filters.py +15 -0
- nautobot/project-static/docs/404.html +83 -8
- nautobot/project-static/docs/apps/index.html +96 -10
- nautobot/project-static/docs/apps/nautobot-apps.html +96 -10
- nautobot/project-static/docs/assets/app-icons/icon-CapacityMetrics.svg +1 -0
- nautobot/project-static/docs/assets/app-icons/icon-CircuitMaintenance.png +0 -0
- nautobot/project-static/docs/assets/javascripts/{bundle.ebd0bdb7.min.js → bundle.ad660dcc.min.js} +3 -3
- nautobot/project-static/docs/assets/javascripts/{bundle.ebd0bdb7.min.js.map → bundle.ad660dcc.min.js.map} +3 -3
- nautobot/project-static/docs/assets/javascripts/glightbox.min.js +1 -0
- nautobot/project-static/docs/assets/stylesheets/glightbox.min.css +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +156 -12
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +106 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +96 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +143 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +96 -10
- nautobot/project-static/docs/development/apps/api/configuration-view.html +96 -10
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +96 -10
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +96 -10
- nautobot/project-static/docs/development/apps/api/models/global-search.html +96 -10
- nautobot/project-static/docs/development/apps/api/models/graphql.html +96 -10
- nautobot/project-static/docs/development/apps/api/models/index.html +96 -10
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +96 -10
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +96 -10
- nautobot/project-static/docs/development/apps/api/prometheus.html +96 -10
- nautobot/project-static/docs/development/apps/api/setup.html +96 -10
- nautobot/project-static/docs/development/apps/api/testing.html +96 -10
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +96 -10
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +96 -10
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +96 -10
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +96 -10
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/base-template.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/index.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/notes.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +96 -10
- nautobot/project-static/docs/development/apps/api/views/urls.html +96 -10
- nautobot/project-static/docs/development/apps/index.html +96 -10
- nautobot/project-static/docs/development/apps/migration/code-updates.html +97 -11
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +96 -10
- nautobot/project-static/docs/development/apps/migration/from-v1.html +96 -10
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +96 -10
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +96 -10
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +96 -10
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +96 -10
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +96 -10
- nautobot/project-static/docs/development/core/application-registry.html +96 -10
- nautobot/project-static/docs/development/core/best-practices.html +96 -10
- nautobot/project-static/docs/development/core/bootstrap-ui.html +96 -10
- nautobot/project-static/docs/development/core/caching.html +96 -10
- nautobot/project-static/docs/development/core/controllers.html +96 -10
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +96 -10
- nautobot/project-static/docs/development/core/generic-views.html +96 -10
- nautobot/project-static/docs/development/core/getting-started.html +96 -10
- nautobot/project-static/docs/development/core/homepage.html +96 -10
- nautobot/project-static/docs/development/core/index.html +96 -10
- nautobot/project-static/docs/development/core/model-checklist.html +96 -10
- nautobot/project-static/docs/development/core/model-features.html +96 -10
- nautobot/project-static/docs/development/core/natural-keys.html +96 -10
- nautobot/project-static/docs/development/core/navigation-menu.html +96 -10
- nautobot/project-static/docs/development/core/release-checklist.html +96 -10
- nautobot/project-static/docs/development/core/role-internals.html +96 -10
- nautobot/project-static/docs/development/core/settings.html +96 -10
- nautobot/project-static/docs/development/core/style-guide.html +96 -10
- nautobot/project-static/docs/development/core/templates.html +96 -10
- nautobot/project-static/docs/development/core/testing.html +96 -10
- nautobot/project-static/docs/development/core/user-preferences.html +96 -10
- nautobot/project-static/docs/development/index.html +96 -10
- nautobot/project-static/docs/development/jobs/index.html +96 -10
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +96 -10
- nautobot/project-static/docs/index.html +13 -8362
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +8229 -0
- nautobot/project-static/docs/overview/design_philosophy.html +8158 -0
- nautobot/project-static/docs/overview/index.html +8230 -0
- nautobot/project-static/docs/release-notes/index.html +96 -10
- nautobot/project-static/docs/release-notes/version-1.0.html +96 -10
- nautobot/project-static/docs/release-notes/version-1.1.html +96 -10
- nautobot/project-static/docs/release-notes/version-1.2.html +96 -10
- nautobot/project-static/docs/release-notes/version-1.3.html +96 -10
- nautobot/project-static/docs/release-notes/version-1.4.html +96 -10
- nautobot/project-static/docs/release-notes/version-1.5.html +96 -10
- nautobot/project-static/docs/release-notes/version-1.6.html +96 -10
- nautobot/project-static/docs/release-notes/version-2.0.html +96 -10
- nautobot/project-static/docs/release-notes/version-2.1.html +96 -10
- nautobot/project-static/docs/release-notes/version-2.2.html +377 -117
- nautobot/project-static/docs/requirements.txt +2 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +268 -258
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +96 -10
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +96 -10
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +96 -10
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +96 -10
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +96 -10
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +96 -10
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +96 -10
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation/index.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation/services.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +96 -10
- nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +96 -10
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +96 -10
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +96 -10
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +96 -10
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +96 -10
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +97 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +96 -10
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +96 -10
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +96 -10
- nautobot/project-static/docs/user-guide/index.html +99 -13
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +97 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +101 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +96 -10
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +96 -10
- {nautobot-2.2.5.dist-info → nautobot-2.2.6.dist-info}/METADATA +1 -1
- {nautobot-2.2.5.dist-info → nautobot-2.2.6.dist-info}/RECORD +333 -300
- nautobot/extras/tests/test_git.py +0 -23
- {nautobot-2.2.5.dist-info → nautobot-2.2.6.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.5.dist-info → nautobot-2.2.6.dist-info}/NOTICE +0 -0
- {nautobot-2.2.5.dist-info → nautobot-2.2.6.dist-info}/WHEEL +0 -0
- {nautobot-2.2.5.dist-info → nautobot-2.2.6.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.26">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -67,7 +67,16 @@
|
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
<link href="../assets/stylesheets/glightbox.min.css" rel="stylesheet"/><style>
|
|
71
|
+
html.glightbox-open { overflow: initial; height: 100%; }
|
|
72
|
+
.gslide-title { margin-top: 0px; user-select: text; }
|
|
73
|
+
.gslide-desc { color: #666; user-select: text; }
|
|
74
|
+
.gslide-image img { background: white; }
|
|
75
|
+
.gscrollbar-fixer { padding-right: 15px; }
|
|
76
|
+
.gdesc-inner { font-size: 0.75rem; }
|
|
77
|
+
body[data-md-color-scheme="slate"] .gdesc-inner { background: var(--md-default-bg-color);}
|
|
78
|
+
body[data-md-color-scheme="slate"] .gslide-title { color: var(--md-default-fg-color);}
|
|
79
|
+
body[data-md-color-scheme="slate"] .gslide-desc { color: var(--md-default-fg-color);}</style> <script src="../assets/javascripts/glightbox.min.js"></script></head>
|
|
71
80
|
|
|
72
81
|
|
|
73
82
|
|
|
@@ -102,7 +111,7 @@
|
|
|
102
111
|
|
|
103
112
|
<header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
|
|
104
113
|
<nav class="md-header__inner md-grid" aria-label="Header">
|
|
105
|
-
<a href="
|
|
114
|
+
<a href=".." title="Nautobot Documentation" class="md-header__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
106
115
|
|
|
107
116
|
<img src="../assets/nautobot_logo.svg" alt="logo">
|
|
108
117
|
|
|
@@ -191,7 +200,7 @@
|
|
|
191
200
|
|
|
192
201
|
</form>
|
|
193
202
|
<div class="md-search__output">
|
|
194
|
-
<div class="md-search__scrollwrap" data-md-scrollfix>
|
|
203
|
+
<div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
|
|
195
204
|
<div class="md-search-result" data-md-component="search-result">
|
|
196
205
|
<div class="md-search-result__meta">
|
|
197
206
|
Initializing search
|
|
@@ -229,7 +238,7 @@
|
|
|
229
238
|
|
|
230
239
|
|
|
231
240
|
<li class="md-tabs__item">
|
|
232
|
-
<a href="../index.html" class="md-tabs__link">
|
|
241
|
+
<a href="../overview/index.html" class="md-tabs__link">
|
|
233
242
|
|
|
234
243
|
|
|
235
244
|
|
|
@@ -356,7 +365,7 @@
|
|
|
356
365
|
|
|
357
366
|
<nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
|
|
358
367
|
<label class="md-nav__title" for="__drawer">
|
|
359
|
-
<a href="
|
|
368
|
+
<a href=".." title="Nautobot Documentation" class="md-nav__button md-logo" aria-label="Nautobot Documentation" data-md-component="logo">
|
|
360
369
|
|
|
361
370
|
<img src="../assets/nautobot_logo.svg" alt="logo">
|
|
362
371
|
|
|
@@ -384,19 +393,94 @@
|
|
|
384
393
|
|
|
385
394
|
|
|
386
395
|
|
|
387
|
-
|
|
388
|
-
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
404
|
+
|
|
389
405
|
|
|
406
|
+
|
|
407
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_1" >
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
<div class="md-nav__link md-nav__container">
|
|
412
|
+
<a href="../overview/index.html" class="md-nav__link ">
|
|
413
|
+
|
|
390
414
|
|
|
391
415
|
<span class="md-ellipsis">
|
|
392
416
|
Overview
|
|
393
417
|
</span>
|
|
394
418
|
|
|
395
419
|
|
|
420
|
+
</a>
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
<label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
|
|
424
|
+
<span class="md-nav__icon md-icon"></span>
|
|
425
|
+
</label>
|
|
426
|
+
|
|
427
|
+
</div>
|
|
428
|
+
|
|
429
|
+
<nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
|
|
430
|
+
<label class="md-nav__title" for="__nav_1">
|
|
431
|
+
<span class="md-nav__icon md-icon"></span>
|
|
432
|
+
Overview
|
|
433
|
+
</label>
|
|
434
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<li class="md-nav__item">
|
|
443
|
+
<a href="../overview/design_philosophy.html" class="md-nav__link">
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
<span class="md-ellipsis">
|
|
447
|
+
Design Philosophy
|
|
448
|
+
</span>
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
</a>
|
|
452
|
+
</li>
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<li class="md-nav__item">
|
|
464
|
+
<a href="../overview/application_stack.html" class="md-nav__link">
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
<span class="md-ellipsis">
|
|
468
|
+
Application Stack
|
|
469
|
+
</span>
|
|
470
|
+
|
|
471
|
+
|
|
396
472
|
</a>
|
|
397
473
|
</li>
|
|
398
474
|
|
|
399
475
|
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
</ul>
|
|
479
|
+
</nav>
|
|
480
|
+
|
|
481
|
+
</li>
|
|
482
|
+
|
|
483
|
+
|
|
400
484
|
|
|
401
485
|
|
|
402
486
|
|
|
@@ -7373,13 +7457,13 @@
|
|
|
7373
7457
|
</li>
|
|
7374
7458
|
|
|
7375
7459
|
<li class="md-nav__item">
|
|
7376
|
-
<a href="#
|
|
7460
|
+
<a href="#v226-2024-06-24" class="md-nav__link">
|
|
7377
7461
|
<span class="md-ellipsis">
|
|
7378
|
-
v2.2.
|
|
7462
|
+
v2.2.6 (2024-06-24)
|
|
7379
7463
|
</span>
|
|
7380
7464
|
</a>
|
|
7381
7465
|
|
|
7382
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
7466
|
+
<nav class="md-nav" aria-label="v2.2.6 (2024-06-24)">
|
|
7383
7467
|
<ul class="md-nav__list">
|
|
7384
7468
|
|
|
7385
7469
|
<li class="md-nav__item">
|
|
@@ -7401,9 +7485,9 @@
|
|
|
7401
7485
|
</li>
|
|
7402
7486
|
|
|
7403
7487
|
<li class="md-nav__item">
|
|
7404
|
-
<a href="#
|
|
7488
|
+
<a href="#changed_1" class="md-nav__link">
|
|
7405
7489
|
<span class="md-ellipsis">
|
|
7406
|
-
|
|
7490
|
+
Changed
|
|
7407
7491
|
</span>
|
|
7408
7492
|
</a>
|
|
7409
7493
|
|
|
@@ -7442,13 +7526,13 @@
|
|
|
7442
7526
|
</li>
|
|
7443
7527
|
|
|
7444
7528
|
<li class="md-nav__item">
|
|
7445
|
-
<a href="#
|
|
7529
|
+
<a href="#v225-2024-05-28" class="md-nav__link">
|
|
7446
7530
|
<span class="md-ellipsis">
|
|
7447
|
-
v2.2.
|
|
7531
|
+
v2.2.5 (2024-05-28)
|
|
7448
7532
|
</span>
|
|
7449
7533
|
</a>
|
|
7450
7534
|
|
|
7451
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
7535
|
+
<nav class="md-nav" aria-label="v2.2.5 (2024-05-28)">
|
|
7452
7536
|
<ul class="md-nav__list">
|
|
7453
7537
|
|
|
7454
7538
|
<li class="md-nav__item">
|
|
@@ -7467,6 +7551,15 @@
|
|
|
7467
7551
|
</span>
|
|
7468
7552
|
</a>
|
|
7469
7553
|
|
|
7554
|
+
</li>
|
|
7555
|
+
|
|
7556
|
+
<li class="md-nav__item">
|
|
7557
|
+
<a href="#removed" class="md-nav__link">
|
|
7558
|
+
<span class="md-ellipsis">
|
|
7559
|
+
Removed
|
|
7560
|
+
</span>
|
|
7561
|
+
</a>
|
|
7562
|
+
|
|
7470
7563
|
</li>
|
|
7471
7564
|
|
|
7472
7565
|
<li class="md-nav__item">
|
|
@@ -7499,6 +7592,66 @@
|
|
|
7499
7592
|
</ul>
|
|
7500
7593
|
</nav>
|
|
7501
7594
|
|
|
7595
|
+
</li>
|
|
7596
|
+
|
|
7597
|
+
<li class="md-nav__item">
|
|
7598
|
+
<a href="#v224-2024-05-13" class="md-nav__link">
|
|
7599
|
+
<span class="md-ellipsis">
|
|
7600
|
+
v2.2.4 (2024-05-13)
|
|
7601
|
+
</span>
|
|
7602
|
+
</a>
|
|
7603
|
+
|
|
7604
|
+
<nav class="md-nav" aria-label="v2.2.4 (2024-05-13)">
|
|
7605
|
+
<ul class="md-nav__list">
|
|
7606
|
+
|
|
7607
|
+
<li class="md-nav__item">
|
|
7608
|
+
<a href="#security_2" class="md-nav__link">
|
|
7609
|
+
<span class="md-ellipsis">
|
|
7610
|
+
Security
|
|
7611
|
+
</span>
|
|
7612
|
+
</a>
|
|
7613
|
+
|
|
7614
|
+
</li>
|
|
7615
|
+
|
|
7616
|
+
<li class="md-nav__item">
|
|
7617
|
+
<a href="#added_3" class="md-nav__link">
|
|
7618
|
+
<span class="md-ellipsis">
|
|
7619
|
+
Added
|
|
7620
|
+
</span>
|
|
7621
|
+
</a>
|
|
7622
|
+
|
|
7623
|
+
</li>
|
|
7624
|
+
|
|
7625
|
+
<li class="md-nav__item">
|
|
7626
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
7627
|
+
<span class="md-ellipsis">
|
|
7628
|
+
Fixed
|
|
7629
|
+
</span>
|
|
7630
|
+
</a>
|
|
7631
|
+
|
|
7632
|
+
</li>
|
|
7633
|
+
|
|
7634
|
+
<li class="md-nav__item">
|
|
7635
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
7636
|
+
<span class="md-ellipsis">
|
|
7637
|
+
Documentation
|
|
7638
|
+
</span>
|
|
7639
|
+
</a>
|
|
7640
|
+
|
|
7641
|
+
</li>
|
|
7642
|
+
|
|
7643
|
+
<li class="md-nav__item">
|
|
7644
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
7645
|
+
<span class="md-ellipsis">
|
|
7646
|
+
Housekeeping
|
|
7647
|
+
</span>
|
|
7648
|
+
</a>
|
|
7649
|
+
|
|
7650
|
+
</li>
|
|
7651
|
+
|
|
7652
|
+
</ul>
|
|
7653
|
+
</nav>
|
|
7654
|
+
|
|
7502
7655
|
</li>
|
|
7503
7656
|
|
|
7504
7657
|
<li class="md-nav__item">
|
|
@@ -7512,7 +7665,7 @@
|
|
|
7512
7665
|
<ul class="md-nav__list">
|
|
7513
7666
|
|
|
7514
7667
|
<li class="md-nav__item">
|
|
7515
|
-
<a href="#
|
|
7668
|
+
<a href="#security_3" class="md-nav__link">
|
|
7516
7669
|
<span class="md-ellipsis">
|
|
7517
7670
|
Security
|
|
7518
7671
|
</span>
|
|
@@ -7521,7 +7674,7 @@
|
|
|
7521
7674
|
</li>
|
|
7522
7675
|
|
|
7523
7676
|
<li class="md-nav__item">
|
|
7524
|
-
<a href="#
|
|
7677
|
+
<a href="#added_4" class="md-nav__link">
|
|
7525
7678
|
<span class="md-ellipsis">
|
|
7526
7679
|
Added
|
|
7527
7680
|
</span>
|
|
@@ -7530,7 +7683,7 @@
|
|
|
7530
7683
|
</li>
|
|
7531
7684
|
|
|
7532
7685
|
<li class="md-nav__item">
|
|
7533
|
-
<a href="#
|
|
7686
|
+
<a href="#changed_2" class="md-nav__link">
|
|
7534
7687
|
<span class="md-ellipsis">
|
|
7535
7688
|
Changed
|
|
7536
7689
|
</span>
|
|
@@ -7539,7 +7692,7 @@
|
|
|
7539
7692
|
</li>
|
|
7540
7693
|
|
|
7541
7694
|
<li class="md-nav__item">
|
|
7542
|
-
<a href="#
|
|
7695
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
7543
7696
|
<span class="md-ellipsis">
|
|
7544
7697
|
Fixed
|
|
7545
7698
|
</span>
|
|
@@ -7548,7 +7701,7 @@
|
|
|
7548
7701
|
</li>
|
|
7549
7702
|
|
|
7550
7703
|
<li class="md-nav__item">
|
|
7551
|
-
<a href="#
|
|
7704
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
7552
7705
|
<span class="md-ellipsis">
|
|
7553
7706
|
Documentation
|
|
7554
7707
|
</span>
|
|
@@ -7557,7 +7710,7 @@
|
|
|
7557
7710
|
</li>
|
|
7558
7711
|
|
|
7559
7712
|
<li class="md-nav__item">
|
|
7560
|
-
<a href="#
|
|
7713
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
7561
7714
|
<span class="md-ellipsis">
|
|
7562
7715
|
Housekeeping
|
|
7563
7716
|
</span>
|
|
@@ -7581,7 +7734,7 @@
|
|
|
7581
7734
|
<ul class="md-nav__list">
|
|
7582
7735
|
|
|
7583
7736
|
<li class="md-nav__item">
|
|
7584
|
-
<a href="#
|
|
7737
|
+
<a href="#security_4" class="md-nav__link">
|
|
7585
7738
|
<span class="md-ellipsis">
|
|
7586
7739
|
Security
|
|
7587
7740
|
</span>
|
|
@@ -7590,7 +7743,7 @@
|
|
|
7590
7743
|
</li>
|
|
7591
7744
|
|
|
7592
7745
|
<li class="md-nav__item">
|
|
7593
|
-
<a href="#
|
|
7746
|
+
<a href="#added_5" class="md-nav__link">
|
|
7594
7747
|
<span class="md-ellipsis">
|
|
7595
7748
|
Added
|
|
7596
7749
|
</span>
|
|
@@ -7599,7 +7752,7 @@
|
|
|
7599
7752
|
</li>
|
|
7600
7753
|
|
|
7601
7754
|
<li class="md-nav__item">
|
|
7602
|
-
<a href="#
|
|
7755
|
+
<a href="#changed_3" class="md-nav__link">
|
|
7603
7756
|
<span class="md-ellipsis">
|
|
7604
7757
|
Changed
|
|
7605
7758
|
</span>
|
|
@@ -7608,7 +7761,7 @@
|
|
|
7608
7761
|
</li>
|
|
7609
7762
|
|
|
7610
7763
|
<li class="md-nav__item">
|
|
7611
|
-
<a href="#
|
|
7764
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
7612
7765
|
<span class="md-ellipsis">
|
|
7613
7766
|
Fixed
|
|
7614
7767
|
</span>
|
|
@@ -7617,7 +7770,7 @@
|
|
|
7617
7770
|
</li>
|
|
7618
7771
|
|
|
7619
7772
|
<li class="md-nav__item">
|
|
7620
|
-
<a href="#
|
|
7773
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
7621
7774
|
<span class="md-ellipsis">
|
|
7622
7775
|
Documentation
|
|
7623
7776
|
</span>
|
|
@@ -7626,7 +7779,7 @@
|
|
|
7626
7779
|
</li>
|
|
7627
7780
|
|
|
7628
7781
|
<li class="md-nav__item">
|
|
7629
|
-
<a href="#
|
|
7782
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
7630
7783
|
<span class="md-ellipsis">
|
|
7631
7784
|
Housekeeping
|
|
7632
7785
|
</span>
|
|
@@ -7650,7 +7803,7 @@
|
|
|
7650
7803
|
<ul class="md-nav__list">
|
|
7651
7804
|
|
|
7652
7805
|
<li class="md-nav__item">
|
|
7653
|
-
<a href="#
|
|
7806
|
+
<a href="#security_5" class="md-nav__link">
|
|
7654
7807
|
<span class="md-ellipsis">
|
|
7655
7808
|
Security
|
|
7656
7809
|
</span>
|
|
@@ -7659,7 +7812,7 @@
|
|
|
7659
7812
|
</li>
|
|
7660
7813
|
|
|
7661
7814
|
<li class="md-nav__item">
|
|
7662
|
-
<a href="#
|
|
7815
|
+
<a href="#added_6" class="md-nav__link">
|
|
7663
7816
|
<span class="md-ellipsis">
|
|
7664
7817
|
Added
|
|
7665
7818
|
</span>
|
|
@@ -7668,7 +7821,7 @@
|
|
|
7668
7821
|
</li>
|
|
7669
7822
|
|
|
7670
7823
|
<li class="md-nav__item">
|
|
7671
|
-
<a href="#
|
|
7824
|
+
<a href="#changed_4" class="md-nav__link">
|
|
7672
7825
|
<span class="md-ellipsis">
|
|
7673
7826
|
Changed
|
|
7674
7827
|
</span>
|
|
@@ -7677,7 +7830,7 @@
|
|
|
7677
7830
|
</li>
|
|
7678
7831
|
|
|
7679
7832
|
<li class="md-nav__item">
|
|
7680
|
-
<a href="#
|
|
7833
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
7681
7834
|
<span class="md-ellipsis">
|
|
7682
7835
|
Fixed
|
|
7683
7836
|
</span>
|
|
@@ -7695,7 +7848,7 @@
|
|
|
7695
7848
|
</li>
|
|
7696
7849
|
|
|
7697
7850
|
<li class="md-nav__item">
|
|
7698
|
-
<a href="#
|
|
7851
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
7699
7852
|
<span class="md-ellipsis">
|
|
7700
7853
|
Documentation
|
|
7701
7854
|
</span>
|
|
@@ -7704,7 +7857,7 @@
|
|
|
7704
7857
|
</li>
|
|
7705
7858
|
|
|
7706
7859
|
<li class="md-nav__item">
|
|
7707
|
-
<a href="#
|
|
7860
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
7708
7861
|
<span class="md-ellipsis">
|
|
7709
7862
|
Housekeeping
|
|
7710
7863
|
</span>
|
|
@@ -7728,7 +7881,7 @@
|
|
|
7728
7881
|
<ul class="md-nav__list">
|
|
7729
7882
|
|
|
7730
7883
|
<li class="md-nav__item">
|
|
7731
|
-
<a href="#
|
|
7884
|
+
<a href="#added_7" class="md-nav__link">
|
|
7732
7885
|
<span class="md-ellipsis">
|
|
7733
7886
|
Added
|
|
7734
7887
|
</span>
|
|
@@ -7737,7 +7890,7 @@
|
|
|
7737
7890
|
</li>
|
|
7738
7891
|
|
|
7739
7892
|
<li class="md-nav__item">
|
|
7740
|
-
<a href="#
|
|
7893
|
+
<a href="#changed_5" class="md-nav__link">
|
|
7741
7894
|
<span class="md-ellipsis">
|
|
7742
7895
|
Changed
|
|
7743
7896
|
</span>
|
|
@@ -7746,7 +7899,7 @@
|
|
|
7746
7899
|
</li>
|
|
7747
7900
|
|
|
7748
7901
|
<li class="md-nav__item">
|
|
7749
|
-
<a href="#
|
|
7902
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
7750
7903
|
<span class="md-ellipsis">
|
|
7751
7904
|
Fixed
|
|
7752
7905
|
</span>
|
|
@@ -7764,7 +7917,7 @@
|
|
|
7764
7917
|
</li>
|
|
7765
7918
|
|
|
7766
7919
|
<li class="md-nav__item">
|
|
7767
|
-
<a href="#
|
|
7920
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
7768
7921
|
<span class="md-ellipsis">
|
|
7769
7922
|
Housekeeping
|
|
7770
7923
|
</span>
|
|
@@ -7788,7 +7941,7 @@
|
|
|
7788
7941
|
<ul class="md-nav__list">
|
|
7789
7942
|
|
|
7790
7943
|
<li class="md-nav__item">
|
|
7791
|
-
<a href="#
|
|
7944
|
+
<a href="#added_8" class="md-nav__link">
|
|
7792
7945
|
<span class="md-ellipsis">
|
|
7793
7946
|
Added
|
|
7794
7947
|
</span>
|
|
@@ -7797,7 +7950,7 @@
|
|
|
7797
7950
|
</li>
|
|
7798
7951
|
|
|
7799
7952
|
<li class="md-nav__item">
|
|
7800
|
-
<a href="#
|
|
7953
|
+
<a href="#changed_6" class="md-nav__link">
|
|
7801
7954
|
<span class="md-ellipsis">
|
|
7802
7955
|
Changed
|
|
7803
7956
|
</span>
|
|
@@ -7824,7 +7977,7 @@
|
|
|
7824
7977
|
</li>
|
|
7825
7978
|
|
|
7826
7979
|
<li class="md-nav__item">
|
|
7827
|
-
<a href="#
|
|
7980
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
7828
7981
|
<span class="md-ellipsis">
|
|
7829
7982
|
Fixed
|
|
7830
7983
|
</span>
|
|
@@ -7842,7 +7995,7 @@
|
|
|
7842
7995
|
</li>
|
|
7843
7996
|
|
|
7844
7997
|
<li class="md-nav__item">
|
|
7845
|
-
<a href="#
|
|
7998
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
7846
7999
|
<span class="md-ellipsis">
|
|
7847
8000
|
Documentation
|
|
7848
8001
|
</span>
|
|
@@ -7851,7 +8004,7 @@
|
|
|
7851
8004
|
</li>
|
|
7852
8005
|
|
|
7853
8006
|
<li class="md-nav__item">
|
|
7854
|
-
<a href="#
|
|
8007
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
7855
8008
|
<span class="md-ellipsis">
|
|
7856
8009
|
Housekeeping
|
|
7857
8010
|
</span>
|
|
@@ -8560,13 +8713,13 @@
|
|
|
8560
8713
|
</li>
|
|
8561
8714
|
|
|
8562
8715
|
<li class="md-nav__item">
|
|
8563
|
-
<a href="#
|
|
8716
|
+
<a href="#v226-2024-06-24" class="md-nav__link">
|
|
8564
8717
|
<span class="md-ellipsis">
|
|
8565
|
-
v2.2.
|
|
8718
|
+
v2.2.6 (2024-06-24)
|
|
8566
8719
|
</span>
|
|
8567
8720
|
</a>
|
|
8568
8721
|
|
|
8569
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
8722
|
+
<nav class="md-nav" aria-label="v2.2.6 (2024-06-24)">
|
|
8570
8723
|
<ul class="md-nav__list">
|
|
8571
8724
|
|
|
8572
8725
|
<li class="md-nav__item">
|
|
@@ -8588,9 +8741,9 @@
|
|
|
8588
8741
|
</li>
|
|
8589
8742
|
|
|
8590
8743
|
<li class="md-nav__item">
|
|
8591
|
-
<a href="#
|
|
8744
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8592
8745
|
<span class="md-ellipsis">
|
|
8593
|
-
|
|
8746
|
+
Changed
|
|
8594
8747
|
</span>
|
|
8595
8748
|
</a>
|
|
8596
8749
|
|
|
@@ -8629,13 +8782,13 @@
|
|
|
8629
8782
|
</li>
|
|
8630
8783
|
|
|
8631
8784
|
<li class="md-nav__item">
|
|
8632
|
-
<a href="#
|
|
8785
|
+
<a href="#v225-2024-05-28" class="md-nav__link">
|
|
8633
8786
|
<span class="md-ellipsis">
|
|
8634
|
-
v2.2.
|
|
8787
|
+
v2.2.5 (2024-05-28)
|
|
8635
8788
|
</span>
|
|
8636
8789
|
</a>
|
|
8637
8790
|
|
|
8638
|
-
<nav class="md-nav" aria-label="v2.2.
|
|
8791
|
+
<nav class="md-nav" aria-label="v2.2.5 (2024-05-28)">
|
|
8639
8792
|
<ul class="md-nav__list">
|
|
8640
8793
|
|
|
8641
8794
|
<li class="md-nav__item">
|
|
@@ -8654,6 +8807,15 @@
|
|
|
8654
8807
|
</span>
|
|
8655
8808
|
</a>
|
|
8656
8809
|
|
|
8810
|
+
</li>
|
|
8811
|
+
|
|
8812
|
+
<li class="md-nav__item">
|
|
8813
|
+
<a href="#removed" class="md-nav__link">
|
|
8814
|
+
<span class="md-ellipsis">
|
|
8815
|
+
Removed
|
|
8816
|
+
</span>
|
|
8817
|
+
</a>
|
|
8818
|
+
|
|
8657
8819
|
</li>
|
|
8658
8820
|
|
|
8659
8821
|
<li class="md-nav__item">
|
|
@@ -8686,6 +8848,66 @@
|
|
|
8686
8848
|
</ul>
|
|
8687
8849
|
</nav>
|
|
8688
8850
|
|
|
8851
|
+
</li>
|
|
8852
|
+
|
|
8853
|
+
<li class="md-nav__item">
|
|
8854
|
+
<a href="#v224-2024-05-13" class="md-nav__link">
|
|
8855
|
+
<span class="md-ellipsis">
|
|
8856
|
+
v2.2.4 (2024-05-13)
|
|
8857
|
+
</span>
|
|
8858
|
+
</a>
|
|
8859
|
+
|
|
8860
|
+
<nav class="md-nav" aria-label="v2.2.4 (2024-05-13)">
|
|
8861
|
+
<ul class="md-nav__list">
|
|
8862
|
+
|
|
8863
|
+
<li class="md-nav__item">
|
|
8864
|
+
<a href="#security_2" class="md-nav__link">
|
|
8865
|
+
<span class="md-ellipsis">
|
|
8866
|
+
Security
|
|
8867
|
+
</span>
|
|
8868
|
+
</a>
|
|
8869
|
+
|
|
8870
|
+
</li>
|
|
8871
|
+
|
|
8872
|
+
<li class="md-nav__item">
|
|
8873
|
+
<a href="#added_3" class="md-nav__link">
|
|
8874
|
+
<span class="md-ellipsis">
|
|
8875
|
+
Added
|
|
8876
|
+
</span>
|
|
8877
|
+
</a>
|
|
8878
|
+
|
|
8879
|
+
</li>
|
|
8880
|
+
|
|
8881
|
+
<li class="md-nav__item">
|
|
8882
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8883
|
+
<span class="md-ellipsis">
|
|
8884
|
+
Fixed
|
|
8885
|
+
</span>
|
|
8886
|
+
</a>
|
|
8887
|
+
|
|
8888
|
+
</li>
|
|
8889
|
+
|
|
8890
|
+
<li class="md-nav__item">
|
|
8891
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8892
|
+
<span class="md-ellipsis">
|
|
8893
|
+
Documentation
|
|
8894
|
+
</span>
|
|
8895
|
+
</a>
|
|
8896
|
+
|
|
8897
|
+
</li>
|
|
8898
|
+
|
|
8899
|
+
<li class="md-nav__item">
|
|
8900
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8901
|
+
<span class="md-ellipsis">
|
|
8902
|
+
Housekeeping
|
|
8903
|
+
</span>
|
|
8904
|
+
</a>
|
|
8905
|
+
|
|
8906
|
+
</li>
|
|
8907
|
+
|
|
8908
|
+
</ul>
|
|
8909
|
+
</nav>
|
|
8910
|
+
|
|
8689
8911
|
</li>
|
|
8690
8912
|
|
|
8691
8913
|
<li class="md-nav__item">
|
|
@@ -8699,7 +8921,7 @@
|
|
|
8699
8921
|
<ul class="md-nav__list">
|
|
8700
8922
|
|
|
8701
8923
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#
|
|
8924
|
+
<a href="#security_3" class="md-nav__link">
|
|
8703
8925
|
<span class="md-ellipsis">
|
|
8704
8926
|
Security
|
|
8705
8927
|
</span>
|
|
@@ -8708,7 +8930,7 @@
|
|
|
8708
8930
|
</li>
|
|
8709
8931
|
|
|
8710
8932
|
<li class="md-nav__item">
|
|
8711
|
-
<a href="#
|
|
8933
|
+
<a href="#added_4" class="md-nav__link">
|
|
8712
8934
|
<span class="md-ellipsis">
|
|
8713
8935
|
Added
|
|
8714
8936
|
</span>
|
|
@@ -8717,7 +8939,7 @@
|
|
|
8717
8939
|
</li>
|
|
8718
8940
|
|
|
8719
8941
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
8942
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8721
8943
|
<span class="md-ellipsis">
|
|
8722
8944
|
Changed
|
|
8723
8945
|
</span>
|
|
@@ -8726,7 +8948,7 @@
|
|
|
8726
8948
|
</li>
|
|
8727
8949
|
|
|
8728
8950
|
<li class="md-nav__item">
|
|
8729
|
-
<a href="#
|
|
8951
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8730
8952
|
<span class="md-ellipsis">
|
|
8731
8953
|
Fixed
|
|
8732
8954
|
</span>
|
|
@@ -8735,7 +8957,7 @@
|
|
|
8735
8957
|
</li>
|
|
8736
8958
|
|
|
8737
8959
|
<li class="md-nav__item">
|
|
8738
|
-
<a href="#
|
|
8960
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8739
8961
|
<span class="md-ellipsis">
|
|
8740
8962
|
Documentation
|
|
8741
8963
|
</span>
|
|
@@ -8744,7 +8966,7 @@
|
|
|
8744
8966
|
</li>
|
|
8745
8967
|
|
|
8746
8968
|
<li class="md-nav__item">
|
|
8747
|
-
<a href="#
|
|
8969
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8748
8970
|
<span class="md-ellipsis">
|
|
8749
8971
|
Housekeeping
|
|
8750
8972
|
</span>
|
|
@@ -8768,7 +8990,7 @@
|
|
|
8768
8990
|
<ul class="md-nav__list">
|
|
8769
8991
|
|
|
8770
8992
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#
|
|
8993
|
+
<a href="#security_4" class="md-nav__link">
|
|
8772
8994
|
<span class="md-ellipsis">
|
|
8773
8995
|
Security
|
|
8774
8996
|
</span>
|
|
@@ -8777,7 +8999,7 @@
|
|
|
8777
8999
|
</li>
|
|
8778
9000
|
|
|
8779
9001
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#
|
|
9002
|
+
<a href="#added_5" class="md-nav__link">
|
|
8781
9003
|
<span class="md-ellipsis">
|
|
8782
9004
|
Added
|
|
8783
9005
|
</span>
|
|
@@ -8786,7 +9008,7 @@
|
|
|
8786
9008
|
</li>
|
|
8787
9009
|
|
|
8788
9010
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#
|
|
9011
|
+
<a href="#changed_3" class="md-nav__link">
|
|
8790
9012
|
<span class="md-ellipsis">
|
|
8791
9013
|
Changed
|
|
8792
9014
|
</span>
|
|
@@ -8795,7 +9017,7 @@
|
|
|
8795
9017
|
</li>
|
|
8796
9018
|
|
|
8797
9019
|
<li class="md-nav__item">
|
|
8798
|
-
<a href="#
|
|
9020
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8799
9021
|
<span class="md-ellipsis">
|
|
8800
9022
|
Fixed
|
|
8801
9023
|
</span>
|
|
@@ -8804,7 +9026,7 @@
|
|
|
8804
9026
|
</li>
|
|
8805
9027
|
|
|
8806
9028
|
<li class="md-nav__item">
|
|
8807
|
-
<a href="#
|
|
9029
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8808
9030
|
<span class="md-ellipsis">
|
|
8809
9031
|
Documentation
|
|
8810
9032
|
</span>
|
|
@@ -8813,7 +9035,7 @@
|
|
|
8813
9035
|
</li>
|
|
8814
9036
|
|
|
8815
9037
|
<li class="md-nav__item">
|
|
8816
|
-
<a href="#
|
|
9038
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8817
9039
|
<span class="md-ellipsis">
|
|
8818
9040
|
Housekeeping
|
|
8819
9041
|
</span>
|
|
@@ -8837,7 +9059,7 @@
|
|
|
8837
9059
|
<ul class="md-nav__list">
|
|
8838
9060
|
|
|
8839
9061
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
9062
|
+
<a href="#security_5" class="md-nav__link">
|
|
8841
9063
|
<span class="md-ellipsis">
|
|
8842
9064
|
Security
|
|
8843
9065
|
</span>
|
|
@@ -8846,7 +9068,7 @@
|
|
|
8846
9068
|
</li>
|
|
8847
9069
|
|
|
8848
9070
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
9071
|
+
<a href="#added_6" class="md-nav__link">
|
|
8850
9072
|
<span class="md-ellipsis">
|
|
8851
9073
|
Added
|
|
8852
9074
|
</span>
|
|
@@ -8855,7 +9077,7 @@
|
|
|
8855
9077
|
</li>
|
|
8856
9078
|
|
|
8857
9079
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#
|
|
9080
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8859
9081
|
<span class="md-ellipsis">
|
|
8860
9082
|
Changed
|
|
8861
9083
|
</span>
|
|
@@ -8864,7 +9086,7 @@
|
|
|
8864
9086
|
</li>
|
|
8865
9087
|
|
|
8866
9088
|
<li class="md-nav__item">
|
|
8867
|
-
<a href="#
|
|
9089
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8868
9090
|
<span class="md-ellipsis">
|
|
8869
9091
|
Fixed
|
|
8870
9092
|
</span>
|
|
@@ -8882,7 +9104,7 @@
|
|
|
8882
9104
|
</li>
|
|
8883
9105
|
|
|
8884
9106
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
9107
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
8886
9108
|
<span class="md-ellipsis">
|
|
8887
9109
|
Documentation
|
|
8888
9110
|
</span>
|
|
@@ -8891,7 +9113,7 @@
|
|
|
8891
9113
|
</li>
|
|
8892
9114
|
|
|
8893
9115
|
<li class="md-nav__item">
|
|
8894
|
-
<a href="#
|
|
9116
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8895
9117
|
<span class="md-ellipsis">
|
|
8896
9118
|
Housekeeping
|
|
8897
9119
|
</span>
|
|
@@ -8915,7 +9137,7 @@
|
|
|
8915
9137
|
<ul class="md-nav__list">
|
|
8916
9138
|
|
|
8917
9139
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
9140
|
+
<a href="#added_7" class="md-nav__link">
|
|
8919
9141
|
<span class="md-ellipsis">
|
|
8920
9142
|
Added
|
|
8921
9143
|
</span>
|
|
@@ -8924,7 +9146,7 @@
|
|
|
8924
9146
|
</li>
|
|
8925
9147
|
|
|
8926
9148
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
9149
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8928
9150
|
<span class="md-ellipsis">
|
|
8929
9151
|
Changed
|
|
8930
9152
|
</span>
|
|
@@ -8933,7 +9155,7 @@
|
|
|
8933
9155
|
</li>
|
|
8934
9156
|
|
|
8935
9157
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
9158
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8937
9159
|
<span class="md-ellipsis">
|
|
8938
9160
|
Fixed
|
|
8939
9161
|
</span>
|
|
@@ -8951,7 +9173,7 @@
|
|
|
8951
9173
|
</li>
|
|
8952
9174
|
|
|
8953
9175
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9176
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8955
9177
|
<span class="md-ellipsis">
|
|
8956
9178
|
Housekeeping
|
|
8957
9179
|
</span>
|
|
@@ -8975,7 +9197,7 @@
|
|
|
8975
9197
|
<ul class="md-nav__list">
|
|
8976
9198
|
|
|
8977
9199
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
9200
|
+
<a href="#added_8" class="md-nav__link">
|
|
8979
9201
|
<span class="md-ellipsis">
|
|
8980
9202
|
Added
|
|
8981
9203
|
</span>
|
|
@@ -8984,7 +9206,7 @@
|
|
|
8984
9206
|
</li>
|
|
8985
9207
|
|
|
8986
9208
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
9209
|
+
<a href="#changed_6" class="md-nav__link">
|
|
8988
9210
|
<span class="md-ellipsis">
|
|
8989
9211
|
Changed
|
|
8990
9212
|
</span>
|
|
@@ -9011,7 +9233,7 @@
|
|
|
9011
9233
|
</li>
|
|
9012
9234
|
|
|
9013
9235
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9236
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9015
9237
|
<span class="md-ellipsis">
|
|
9016
9238
|
Fixed
|
|
9017
9239
|
</span>
|
|
@@ -9029,7 +9251,7 @@
|
|
|
9029
9251
|
</li>
|
|
9030
9252
|
|
|
9031
9253
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
9254
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9033
9255
|
<span class="md-ellipsis">
|
|
9034
9256
|
Documentation
|
|
9035
9257
|
</span>
|
|
@@ -9038,7 +9260,7 @@
|
|
|
9038
9260
|
</li>
|
|
9039
9261
|
|
|
9040
9262
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9263
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9042
9264
|
<span class="md-ellipsis">
|
|
9043
9265
|
Housekeeping
|
|
9044
9266
|
</span>
|
|
@@ -9107,13 +9329,49 @@
|
|
|
9107
9329
|
<h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">¶</a></h4>
|
|
9108
9330
|
<p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
|
|
9109
9331
|
<!-- towncrier release notes start -->
|
|
9110
|
-
<h2 id="
|
|
9332
|
+
<h2 id="v226-2024-06-24">v2.2.6 (2024-06-24)<a class="headerlink" href="#v226-2024-06-24" title="Permanent link">¶</a></h2>
|
|
9111
9333
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
9112
9334
|
<ul>
|
|
9335
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
9336
|
+
</ul>
|
|
9337
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
9338
|
+
<ul>
|
|
9339
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
|
|
9340
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
|
|
9341
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Added <code>--print-hashes</code> option to <code>nautobot-server generate_test_data</code> command.</li>
|
|
9342
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5807">#5807</a> - Added the ability to sort and filter the <code>IPAddress</code> list view by the <code>nat_inside</code> field.</li>
|
|
9343
|
+
</ul>
|
|
9344
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
9345
|
+
<ul>
|
|
9346
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
|
|
9347
|
+
</ul>
|
|
9348
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
9349
|
+
<ul>
|
|
9350
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
|
|
9351
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
|
|
9352
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5782">#5782</a> - Fixed an issue with Job code not being fully reloaded after syncing a Git repository.</li>
|
|
9353
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
|
|
9354
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
|
|
9355
|
+
</ul>
|
|
9356
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
9357
|
+
<ul>
|
|
9358
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
|
|
9359
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
|
|
9360
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated <code>mkdocs-material</code> to 9.5.25.</li>
|
|
9361
|
+
</ul>
|
|
9362
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
9363
|
+
<ul>
|
|
9364
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependencies <code>requests</code> to <code>~2.32.2</code> and <code>watchdog</code> to <code>~4.0.1</code>.</li>
|
|
9365
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Refactored <code>generate_test_data</code> implementation for improved debuggability.</li>
|
|
9366
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Fixed a bug in <code>ControllerManagedDeviceGroupFactory</code> that could result in nondeterministic test data.</li>
|
|
9367
|
+
</ul>
|
|
9368
|
+
<h2 id="v225-2024-05-28">v2.2.5 (2024-05-28)<a class="headerlink" href="#v225-2024-05-28" title="Permanent link">¶</a></h2>
|
|
9369
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
9370
|
+
<ul>
|
|
9113
9371
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
9114
9372
|
<li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
9115
9373
|
</ul>
|
|
9116
|
-
<h3 id="
|
|
9374
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
9117
9375
|
<ul>
|
|
9118
9376
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
|
|
9119
9377
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
|
|
@@ -9125,7 +9383,7 @@
|
|
|
9125
9383
|
<ul>
|
|
9126
9384
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
|
|
9127
9385
|
</ul>
|
|
9128
|
-
<h3 id="
|
|
9386
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
9129
9387
|
<ul>
|
|
9130
9388
|
<li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
|
|
9131
9389
|
<li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
|
|
@@ -9138,51 +9396,51 @@
|
|
|
9138
9396
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
|
|
9139
9397
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
|
|
9140
9398
|
</ul>
|
|
9141
|
-
<h3 id="
|
|
9399
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
9142
9400
|
<ul>
|
|
9143
9401
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
|
|
9144
9402
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
9145
9403
|
</ul>
|
|
9146
|
-
<h3 id="
|
|
9404
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
9147
9405
|
<ul>
|
|
9148
9406
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated <code>pylint</code> to <code>~3.1.1</code>.</li>
|
|
9149
9407
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
9150
9408
|
</ul>
|
|
9151
9409
|
<h2 id="v224-2024-05-13">v2.2.4 (2024-05-13)<a class="headerlink" href="#v224-2024-05-13" title="Permanent link">¶</a></h2>
|
|
9152
|
-
<h3 id="
|
|
9410
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
9153
9411
|
<ul>
|
|
9154
9412
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
9155
9413
|
<li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
9156
9414
|
</ul>
|
|
9157
|
-
<h3 id="
|
|
9415
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
9158
9416
|
<ul>
|
|
9159
9417
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
9160
9418
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
9161
9419
|
</ul>
|
|
9162
|
-
<h3 id="
|
|
9420
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
9163
9421
|
<ul>
|
|
9164
9422
|
<li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
|
|
9165
9423
|
<li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
|
|
9166
9424
|
<li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
|
|
9167
9425
|
<li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
|
|
9168
9426
|
</ul>
|
|
9169
|
-
<h3 id="
|
|
9427
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
9170
9428
|
<ul>
|
|
9171
9429
|
<li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
|
|
9172
9430
|
</ul>
|
|
9173
|
-
<h3 id="
|
|
9431
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
9174
9432
|
<ul>
|
|
9175
9433
|
<li><a href="https://github.com/nautobot/nautobot/issues/5263">#5263</a> - Updated <code>nh3</code> to <code>0.2.17</code> in <code>poetry.lock</code>.</li>
|
|
9176
9434
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed <code>"version"</code> from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
9177
9435
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
9178
9436
|
</ul>
|
|
9179
9437
|
<h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">¶</a></h2>
|
|
9180
|
-
<h3 id="
|
|
9438
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
9181
9439
|
<ul>
|
|
9182
9440
|
<li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
|
|
9183
9441
|
<li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
9184
9442
|
</ul>
|
|
9185
|
-
<h3 id="
|
|
9443
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
9186
9444
|
<ul>
|
|
9187
9445
|
<li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
|
|
9188
9446
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
|
|
@@ -9190,11 +9448,11 @@
|
|
|
9190
9448
|
<li><a href="https://github.com/nautobot/nautobot/issues/5560">#5560</a> - Added a template tag which creates a hyperlink that opens in a new tab.</li>
|
|
9191
9449
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
|
|
9192
9450
|
</ul>
|
|
9193
|
-
<h3 id="
|
|
9451
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
9194
9452
|
<ul>
|
|
9195
9453
|
<li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
|
|
9196
9454
|
</ul>
|
|
9197
|
-
<h3 id="
|
|
9455
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
9198
9456
|
<ul>
|
|
9199
9457
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
|
|
9200
9458
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
|
|
@@ -9207,67 +9465,67 @@
|
|
|
9207
9465
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
|
|
9208
9466
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
|
|
9209
9467
|
</ul>
|
|
9210
|
-
<h3 id="
|
|
9468
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
9211
9469
|
<ul>
|
|
9212
9470
|
<li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
|
|
9213
9471
|
<li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
|
|
9214
9472
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
|
|
9215
9473
|
<li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
|
|
9216
9474
|
</ul>
|
|
9217
|
-
<h3 id="
|
|
9475
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
9218
9476
|
<ul>
|
|
9219
9477
|
<li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
|
|
9220
9478
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
|
|
9221
9479
|
<li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
|
|
9222
9480
|
</ul>
|
|
9223
9481
|
<h2 id="v222-2024-04-18">v2.2.2 (2024-04-18)<a class="headerlink" href="#v222-2024-04-18" title="Permanent link">¶</a></h2>
|
|
9224
|
-
<h3 id="
|
|
9482
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
9225
9483
|
<ul>
|
|
9226
9484
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
9227
9485
|
</ul>
|
|
9228
|
-
<h3 id="
|
|
9486
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
9229
9487
|
<ul>
|
|
9230
9488
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
|
|
9231
9489
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
|
|
9232
9490
|
</ul>
|
|
9233
|
-
<h3 id="
|
|
9491
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
9234
9492
|
<ul>
|
|
9235
9493
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Improved performance of bulk-edit and bulk-delete UI operations by refactoring change logging logic.</li>
|
|
9236
9494
|
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
9237
9495
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
9238
9496
|
</ul>
|
|
9239
|
-
<h3 id="
|
|
9497
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
9240
9498
|
<ul>
|
|
9241
9499
|
<li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
|
|
9242
9500
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
9243
9501
|
</ul>
|
|
9244
|
-
<h3 id="
|
|
9502
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
9245
9503
|
<ul>
|
|
9246
9504
|
<li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
|
|
9247
9505
|
</ul>
|
|
9248
|
-
<h3 id="
|
|
9506
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
9249
9507
|
<ul>
|
|
9250
9508
|
<li><a href="https://github.com/nautobot/nautobot/issues/5590">#5590</a> - Fixed upstream testing workflows showing successful when one of the steps fail.</li>
|
|
9251
9509
|
</ul>
|
|
9252
9510
|
<h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">¶</a></h2>
|
|
9253
|
-
<h3 id="
|
|
9511
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
9254
9512
|
<ul>
|
|
9255
9513
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
9256
9514
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
9257
9515
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
9258
9516
|
</ul>
|
|
9259
|
-
<h3 id="
|
|
9517
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
9260
9518
|
<ul>
|
|
9261
9519
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
9262
9520
|
<li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
|
|
9263
9521
|
<li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
|
|
9264
9522
|
<li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
|
|
9265
9523
|
</ul>
|
|
9266
|
-
<h3 id="
|
|
9524
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
9267
9525
|
<ul>
|
|
9268
9526
|
<li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
|
|
9269
9527
|
</ul>
|
|
9270
|
-
<h3 id="
|
|
9528
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
9271
9529
|
<ul>
|
|
9272
9530
|
<li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
|
|
9273
9531
|
<li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
|
|
@@ -9284,13 +9542,13 @@
|
|
|
9284
9542
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
|
|
9285
9543
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
9286
9544
|
</ul>
|
|
9287
|
-
<h3 id="
|
|
9545
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
9288
9546
|
<ul>
|
|
9289
9547
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
9290
9548
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
9291
9549
|
<li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
|
|
9292
9550
|
</ul>
|
|
9293
|
-
<h3 id="
|
|
9551
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
9294
9552
|
<ul>
|
|
9295
9553
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
|
|
9296
9554
|
<li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
|
|
@@ -9300,12 +9558,12 @@
|
|
|
9300
9558
|
<p class="admonition-title">Warning</p>
|
|
9301
9559
|
<p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
|
|
9302
9560
|
</div>
|
|
9303
|
-
<h3 id="
|
|
9561
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
9304
9562
|
<ul>
|
|
9305
9563
|
<li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
|
|
9306
9564
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
|
|
9307
9565
|
</ul>
|
|
9308
|
-
<h3 id="
|
|
9566
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
9309
9567
|
<ul>
|
|
9310
9568
|
<li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
|
|
9311
9569
|
<li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
|
|
@@ -9318,7 +9576,7 @@
|
|
|
9318
9576
|
<li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
|
|
9319
9577
|
<li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
|
|
9320
9578
|
</ul>
|
|
9321
|
-
<h3 id="
|
|
9579
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
9322
9580
|
<ul>
|
|
9323
9581
|
<li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
|
|
9324
9582
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
|
|
@@ -9329,13 +9587,13 @@
|
|
|
9329
9587
|
<ul>
|
|
9330
9588
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & it's dependency on <code>ecdsa</code>.</li>
|
|
9331
9589
|
</ul>
|
|
9332
|
-
<h3 id="
|
|
9590
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
9333
9591
|
<ul>
|
|
9334
9592
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
9335
9593
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
9336
9594
|
</ul>
|
|
9337
9595
|
<h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">¶</a></h2>
|
|
9338
|
-
<h3 id="
|
|
9596
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
9339
9597
|
<ul>
|
|
9340
9598
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
9341
9599
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
|
|
@@ -9374,7 +9632,7 @@
|
|
|
9374
9632
|
<li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
|
|
9375
9633
|
<li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
|
|
9376
9634
|
</ul>
|
|
9377
|
-
<h3 id="
|
|
9635
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
9378
9636
|
<ul>
|
|
9379
9637
|
<li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
|
|
9380
9638
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
|
|
@@ -9404,7 +9662,7 @@
|
|
|
9404
9662
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
|
|
9405
9663
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
|
|
9406
9664
|
</ul>
|
|
9407
|
-
<h3 id="
|
|
9665
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
9408
9666
|
<ul>
|
|
9409
9667
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
9410
9668
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
|
|
@@ -9421,14 +9679,14 @@
|
|
|
9421
9679
|
<ul>
|
|
9422
9680
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
|
|
9423
9681
|
</ul>
|
|
9424
|
-
<h3 id="
|
|
9682
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
9425
9683
|
<ul>
|
|
9426
9684
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
|
|
9427
9685
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
|
|
9428
9686
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide > Code Reference" section of the documentation.</li>
|
|
9429
9687
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
|
|
9430
9688
|
</ul>
|
|
9431
|
-
<h3 id="
|
|
9689
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
9432
9690
|
<ul>
|
|
9433
9691
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
|
|
9434
9692
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>
|
|
@@ -9597,10 +9855,12 @@
|
|
|
9597
9855
|
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
9598
9856
|
|
|
9599
9857
|
|
|
9600
|
-
<script src="../assets/javascripts/bundle.
|
|
9858
|
+
<script src="../assets/javascripts/bundle.ad660dcc.min.js"></script>
|
|
9601
9859
|
|
|
9602
9860
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9603
9861
|
|
|
9604
9862
|
|
|
9605
|
-
|
|
9863
|
+
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9864
|
+
document$.subscribe(() => { lightbox.reload() });
|
|
9865
|
+
</script></body>
|
|
9606
9866
|
</html>
|