nautobot 2.3.5__py3-none-any.whl → 2.3.7__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/__init__.py +4 -2
- nautobot/circuits/tests/test_views.py +4 -5
- nautobot/core/api/utils.py +12 -2
- nautobot/core/api/views.py +15 -3
- nautobot/core/forms/fields.py +5 -2
- nautobot/core/forms/utils.py +31 -6
- nautobot/core/models/fields.py +56 -0
- nautobot/core/templates/inc/javascript.html +2 -0
- nautobot/core/templates/inc/nav_menu.html +0 -251
- nautobot/core/testing/mixins.py +59 -2
- nautobot/core/testing/views.py +45 -61
- nautobot/core/tests/runner.py +6 -3
- nautobot/core/tests/test_paginator.py +4 -3
- nautobot/core/tests/test_utils.py +83 -0
- nautobot/core/tests/test_views.py +39 -56
- nautobot/core/views/__init__.py +27 -11
- nautobot/dcim/tests/test_api.py +4 -1
- nautobot/dcim/tests/test_views.py +26 -67
- nautobot/extras/datasources/git.py +6 -1
- nautobot/extras/factory.py +2 -1
- nautobot/extras/migrations/0112_dynamic_group_group_type_data_migration.py +3 -0
- nautobot/extras/migrations/0116_fix_dynamic_group_group_type_data_migration.py +16 -0
- nautobot/extras/models/models.py +2 -0
- nautobot/extras/tests/test_api.py +3 -3
- nautobot/extras/tests/test_customfields.py +9 -16
- nautobot/extras/tests/test_dynamicgroups.py +116 -0
- nautobot/extras/tests/test_forms.py +2 -0
- nautobot/extras/tests/test_plugins.py +4 -6
- nautobot/extras/tests/test_utils.py +5 -0
- nautobot/extras/tests/test_views.py +63 -161
- nautobot/extras/utils.py +50 -11
- nautobot/ipam/api/serializers.py +30 -1
- nautobot/ipam/api/views.py +165 -3
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +2 -0
- nautobot/ipam/migrations/0050_vlangroup_range.py +24 -0
- nautobot/ipam/models.py +51 -8
- nautobot/ipam/tables.py +4 -4
- nautobot/ipam/templates/ipam/vlangroup.html +4 -0
- nautobot/ipam/tests/test_api.py +192 -12
- nautobot/ipam/tests/test_models.py +35 -1
- nautobot/ipam/tests/test_utils.py +61 -0
- nautobot/ipam/tests/test_views.py +8 -15
- nautobot/ipam/utils/__init__.py +10 -17
- nautobot/ipam/views.py +1 -1
- nautobot/project-static/docs/404.html +3 -3
- nautobot/project-static/docs/apps/index.html +3 -3
- nautobot/project-static/docs/apps/nautobot-apps.html +3 -3
- nautobot/project-static/docs/assets/javascripts/bundle.525ec568.min.js +16 -0
- nautobot/project-static/docs/assets/javascripts/{bundle.56dfad97.min.js.map → bundle.525ec568.min.js.map} +4 -4
- nautobot/project-static/docs/assets/stylesheets/main.8c3ca2c6.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.8c3ca2c6.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +5 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +124 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +3 -3
- nautobot/project-static/docs/development/apps/api/configuration-view.html +3 -3
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +3 -3
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +3 -3
- nautobot/project-static/docs/development/apps/api/models/global-search.html +3 -3
- nautobot/project-static/docs/development/apps/api/models/graphql.html +3 -3
- nautobot/project-static/docs/development/apps/api/models/index.html +5 -5
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +3 -3
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +3 -3
- nautobot/project-static/docs/development/apps/api/prometheus.html +3 -3
- nautobot/project-static/docs/development/apps/api/setup.html +3 -3
- nautobot/project-static/docs/development/apps/api/testing.html +3 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +3 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +3 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +3 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +3 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/base-template.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/index.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/notes.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/urls.html +3 -3
- nautobot/project-static/docs/development/apps/index.html +3 -3
- nautobot/project-static/docs/development/apps/migration/code-updates.html +3 -3
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +3 -3
- nautobot/project-static/docs/development/apps/migration/from-v1.html +3 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +3 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +3 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +3 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +3 -3
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +3 -3
- nautobot/project-static/docs/development/core/application-registry.html +3 -3
- nautobot/project-static/docs/development/core/best-practices.html +3 -3
- nautobot/project-static/docs/development/core/bootstrap-ui.html +3 -3
- nautobot/project-static/docs/development/core/caching.html +3 -3
- nautobot/project-static/docs/development/core/controllers.html +3 -3
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +3 -3
- nautobot/project-static/docs/development/core/generic-views.html +3 -3
- nautobot/project-static/docs/development/core/getting-started.html +3 -3
- nautobot/project-static/docs/development/core/homepage.html +3 -3
- nautobot/project-static/docs/development/core/index.html +3 -3
- nautobot/project-static/docs/development/core/model-checklist.html +3 -3
- nautobot/project-static/docs/development/core/model-features.html +3 -3
- nautobot/project-static/docs/development/core/natural-keys.html +3 -3
- nautobot/project-static/docs/development/core/navigation-menu.html +3 -3
- nautobot/project-static/docs/development/core/release-checklist.html +3 -3
- nautobot/project-static/docs/development/core/role-internals.html +3 -3
- nautobot/project-static/docs/development/core/settings.html +3 -3
- nautobot/project-static/docs/development/core/style-guide.html +3 -3
- nautobot/project-static/docs/development/core/templates.html +3 -3
- nautobot/project-static/docs/development/core/testing.html +3 -3
- nautobot/project-static/docs/development/core/user-preferences.html +3 -3
- nautobot/project-static/docs/development/index.html +3 -3
- nautobot/project-static/docs/development/jobs/index.html +3 -3
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +3 -3
- nautobot/project-static/docs/index.html +3 -3
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +3 -3
- nautobot/project-static/docs/overview/design_philosophy.html +3 -3
- nautobot/project-static/docs/release-notes/index.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.0.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.1.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.2.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.3.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.4.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.5.html +3 -3
- nautobot/project-static/docs/release-notes/version-1.6.html +3 -3
- nautobot/project-static/docs/release-notes/version-2.0.html +3 -3
- nautobot/project-static/docs/release-notes/version-2.1.html +3 -3
- nautobot/project-static/docs/release-notes/version-2.2.html +3 -3
- nautobot/project-static/docs/release-notes/version-2.3.html +392 -95
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +269 -269
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +3 -3
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/index.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/services.html +3 -3
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +3 -3
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +3 -3
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +3 -3
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +3 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +308 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +3 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +3 -3
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +3 -3
- nautobot/project-static/docs/user-guide/index.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +3 -3
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +3 -3
- nautobot/project-static/js/nav_menu.js +249 -0
- nautobot/tenancy/templates/tenancy/tenant.html +1 -1
- nautobot/users/tests/test_views.py +9 -11
- nautobot/virtualization/tests/test_views.py +3 -5
- {nautobot-2.3.5.dist-info → nautobot-2.3.7.dist-info}/METADATA +2 -1
- {nautobot-2.3.5.dist-info → nautobot-2.3.7.dist-info}/RECORD +334 -330
- {nautobot-2.3.5.dist-info → nautobot-2.3.7.dist-info}/WHEEL +1 -1
- nautobot/project-static/docs/assets/javascripts/bundle.56dfad97.min.js +0 -16
- nautobot/project-static/docs/assets/stylesheets/main.35f28582.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.35f28582.min.css.map +0 -1
- {nautobot-2.3.5.dist-info → nautobot-2.3.7.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.5.dist-info → nautobot-2.3.7.dist-info}/NOTICE +0 -0
- {nautobot-2.3.5.dist-info → nautobot-2.3.7.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.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.39">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../assets/stylesheets/main.8c3ca2c6.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -8121,6 +8121,15 @@
|
|
|
8121
8121
|
</span>
|
|
8122
8122
|
</a>
|
|
8123
8123
|
|
|
8124
|
+
</li>
|
|
8125
|
+
|
|
8126
|
+
<li class="md-nav__item">
|
|
8127
|
+
<a href="#vlangroup-model-enhancement-6309" class="md-nav__link">
|
|
8128
|
+
<span class="md-ellipsis">
|
|
8129
|
+
VLANGroup Model Enhancement (#6309)
|
|
8130
|
+
</span>
|
|
8131
|
+
</a>
|
|
8132
|
+
|
|
8124
8133
|
</li>
|
|
8125
8134
|
|
|
8126
8135
|
<li class="md-nav__item">
|
|
@@ -8227,13 +8236,13 @@
|
|
|
8227
8236
|
</li>
|
|
8228
8237
|
|
|
8229
8238
|
<li class="md-nav__item">
|
|
8230
|
-
<a href="#
|
|
8239
|
+
<a href="#v237-2024-10-15" class="md-nav__link">
|
|
8231
8240
|
<span class="md-ellipsis">
|
|
8232
|
-
v2.3.
|
|
8241
|
+
v2.3.7 (2024-10-15)
|
|
8233
8242
|
</span>
|
|
8234
8243
|
</a>
|
|
8235
8244
|
|
|
8236
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8245
|
+
<nav class="md-nav" aria-label="v2.3.7 (2024-10-15)">
|
|
8237
8246
|
<ul class="md-nav__list">
|
|
8238
8247
|
|
|
8239
8248
|
<li class="md-nav__item">
|
|
@@ -8270,6 +8279,48 @@
|
|
|
8270
8279
|
</span>
|
|
8271
8280
|
</a>
|
|
8272
8281
|
|
|
8282
|
+
</li>
|
|
8283
|
+
|
|
8284
|
+
<li class="md-nav__item">
|
|
8285
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8286
|
+
<span class="md-ellipsis">
|
|
8287
|
+
Housekeeping
|
|
8288
|
+
</span>
|
|
8289
|
+
</a>
|
|
8290
|
+
|
|
8291
|
+
</li>
|
|
8292
|
+
|
|
8293
|
+
</ul>
|
|
8294
|
+
</nav>
|
|
8295
|
+
|
|
8296
|
+
</li>
|
|
8297
|
+
|
|
8298
|
+
<li class="md-nav__item">
|
|
8299
|
+
<a href="#v236-2024-10-02" class="md-nav__link">
|
|
8300
|
+
<span class="md-ellipsis">
|
|
8301
|
+
v2.3.6 (2024-10-02)
|
|
8302
|
+
</span>
|
|
8303
|
+
</a>
|
|
8304
|
+
|
|
8305
|
+
<nav class="md-nav" aria-label="v2.3.6 (2024-10-02)">
|
|
8306
|
+
<ul class="md-nav__list">
|
|
8307
|
+
|
|
8308
|
+
<li class="md-nav__item">
|
|
8309
|
+
<a href="#added_2" class="md-nav__link">
|
|
8310
|
+
<span class="md-ellipsis">
|
|
8311
|
+
Added
|
|
8312
|
+
</span>
|
|
8313
|
+
</a>
|
|
8314
|
+
|
|
8315
|
+
</li>
|
|
8316
|
+
|
|
8317
|
+
<li class="md-nav__item">
|
|
8318
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8319
|
+
<span class="md-ellipsis">
|
|
8320
|
+
Fixed
|
|
8321
|
+
</span>
|
|
8322
|
+
</a>
|
|
8323
|
+
|
|
8273
8324
|
</li>
|
|
8274
8325
|
|
|
8275
8326
|
<li class="md-nav__item">
|
|
@@ -8282,7 +8333,76 @@
|
|
|
8282
8333
|
</li>
|
|
8283
8334
|
|
|
8284
8335
|
<li class="md-nav__item">
|
|
8285
|
-
<a href="#
|
|
8336
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8337
|
+
<span class="md-ellipsis">
|
|
8338
|
+
Housekeeping
|
|
8339
|
+
</span>
|
|
8340
|
+
</a>
|
|
8341
|
+
|
|
8342
|
+
</li>
|
|
8343
|
+
|
|
8344
|
+
</ul>
|
|
8345
|
+
</nav>
|
|
8346
|
+
|
|
8347
|
+
</li>
|
|
8348
|
+
|
|
8349
|
+
<li class="md-nav__item">
|
|
8350
|
+
<a href="#v235-2024-09-30" class="md-nav__link">
|
|
8351
|
+
<span class="md-ellipsis">
|
|
8352
|
+
v2.3.5 (2024-09-30)
|
|
8353
|
+
</span>
|
|
8354
|
+
</a>
|
|
8355
|
+
|
|
8356
|
+
<nav class="md-nav" aria-label="v2.3.5 (2024-09-30)">
|
|
8357
|
+
<ul class="md-nav__list">
|
|
8358
|
+
|
|
8359
|
+
<li class="md-nav__item">
|
|
8360
|
+
<a href="#added_3" class="md-nav__link">
|
|
8361
|
+
<span class="md-ellipsis">
|
|
8362
|
+
Added
|
|
8363
|
+
</span>
|
|
8364
|
+
</a>
|
|
8365
|
+
|
|
8366
|
+
</li>
|
|
8367
|
+
|
|
8368
|
+
<li class="md-nav__item">
|
|
8369
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8370
|
+
<span class="md-ellipsis">
|
|
8371
|
+
Changed
|
|
8372
|
+
</span>
|
|
8373
|
+
</a>
|
|
8374
|
+
|
|
8375
|
+
</li>
|
|
8376
|
+
|
|
8377
|
+
<li class="md-nav__item">
|
|
8378
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8379
|
+
<span class="md-ellipsis">
|
|
8380
|
+
Fixed
|
|
8381
|
+
</span>
|
|
8382
|
+
</a>
|
|
8383
|
+
|
|
8384
|
+
</li>
|
|
8385
|
+
|
|
8386
|
+
<li class="md-nav__item">
|
|
8387
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8388
|
+
<span class="md-ellipsis">
|
|
8389
|
+
Dependencies
|
|
8390
|
+
</span>
|
|
8391
|
+
</a>
|
|
8392
|
+
|
|
8393
|
+
</li>
|
|
8394
|
+
|
|
8395
|
+
<li class="md-nav__item">
|
|
8396
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8397
|
+
<span class="md-ellipsis">
|
|
8398
|
+
Documentation
|
|
8399
|
+
</span>
|
|
8400
|
+
</a>
|
|
8401
|
+
|
|
8402
|
+
</li>
|
|
8403
|
+
|
|
8404
|
+
<li class="md-nav__item">
|
|
8405
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8286
8406
|
<span class="md-ellipsis">
|
|
8287
8407
|
Housekeeping
|
|
8288
8408
|
</span>
|
|
@@ -8306,7 +8426,7 @@
|
|
|
8306
8426
|
<ul class="md-nav__list">
|
|
8307
8427
|
|
|
8308
8428
|
<li class="md-nav__item">
|
|
8309
|
-
<a href="#
|
|
8429
|
+
<a href="#added_4" class="md-nav__link">
|
|
8310
8430
|
<span class="md-ellipsis">
|
|
8311
8431
|
Added
|
|
8312
8432
|
</span>
|
|
@@ -8315,7 +8435,7 @@
|
|
|
8315
8435
|
</li>
|
|
8316
8436
|
|
|
8317
8437
|
<li class="md-nav__item">
|
|
8318
|
-
<a href="#
|
|
8438
|
+
<a href="#changed_3" class="md-nav__link">
|
|
8319
8439
|
<span class="md-ellipsis">
|
|
8320
8440
|
Changed
|
|
8321
8441
|
</span>
|
|
@@ -8324,7 +8444,7 @@
|
|
|
8324
8444
|
</li>
|
|
8325
8445
|
|
|
8326
8446
|
<li class="md-nav__item">
|
|
8327
|
-
<a href="#
|
|
8447
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8328
8448
|
<span class="md-ellipsis">
|
|
8329
8449
|
Fixed
|
|
8330
8450
|
</span>
|
|
@@ -8333,7 +8453,7 @@
|
|
|
8333
8453
|
</li>
|
|
8334
8454
|
|
|
8335
8455
|
<li class="md-nav__item">
|
|
8336
|
-
<a href="#
|
|
8456
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8337
8457
|
<span class="md-ellipsis">
|
|
8338
8458
|
Documentation
|
|
8339
8459
|
</span>
|
|
@@ -8342,7 +8462,7 @@
|
|
|
8342
8462
|
</li>
|
|
8343
8463
|
|
|
8344
8464
|
<li class="md-nav__item">
|
|
8345
|
-
<a href="#
|
|
8465
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8346
8466
|
<span class="md-ellipsis">
|
|
8347
8467
|
Housekeeping
|
|
8348
8468
|
</span>
|
|
@@ -8375,7 +8495,7 @@
|
|
|
8375
8495
|
</li>
|
|
8376
8496
|
|
|
8377
8497
|
<li class="md-nav__item">
|
|
8378
|
-
<a href="#
|
|
8498
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8379
8499
|
<span class="md-ellipsis">
|
|
8380
8500
|
Fixed
|
|
8381
8501
|
</span>
|
|
@@ -8384,7 +8504,7 @@
|
|
|
8384
8504
|
</li>
|
|
8385
8505
|
|
|
8386
8506
|
<li class="md-nav__item">
|
|
8387
|
-
<a href="#
|
|
8507
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8388
8508
|
<span class="md-ellipsis">
|
|
8389
8509
|
Dependencies
|
|
8390
8510
|
</span>
|
|
@@ -8393,7 +8513,7 @@
|
|
|
8393
8513
|
</li>
|
|
8394
8514
|
|
|
8395
8515
|
<li class="md-nav__item">
|
|
8396
|
-
<a href="#
|
|
8516
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8397
8517
|
<span class="md-ellipsis">
|
|
8398
8518
|
Housekeeping
|
|
8399
8519
|
</span>
|
|
@@ -8426,7 +8546,7 @@
|
|
|
8426
8546
|
</li>
|
|
8427
8547
|
|
|
8428
8548
|
<li class="md-nav__item">
|
|
8429
|
-
<a href="#
|
|
8549
|
+
<a href="#added_5" class="md-nav__link">
|
|
8430
8550
|
<span class="md-ellipsis">
|
|
8431
8551
|
Added
|
|
8432
8552
|
</span>
|
|
@@ -8435,7 +8555,7 @@
|
|
|
8435
8555
|
</li>
|
|
8436
8556
|
|
|
8437
8557
|
<li class="md-nav__item">
|
|
8438
|
-
<a href="#
|
|
8558
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8439
8559
|
<span class="md-ellipsis">
|
|
8440
8560
|
Fixed
|
|
8441
8561
|
</span>
|
|
@@ -8444,7 +8564,7 @@
|
|
|
8444
8564
|
</li>
|
|
8445
8565
|
|
|
8446
8566
|
<li class="md-nav__item">
|
|
8447
|
-
<a href="#
|
|
8567
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8448
8568
|
<span class="md-ellipsis">
|
|
8449
8569
|
Housekeeping
|
|
8450
8570
|
</span>
|
|
@@ -8468,7 +8588,7 @@
|
|
|
8468
8588
|
<ul class="md-nav__list">
|
|
8469
8589
|
|
|
8470
8590
|
<li class="md-nav__item">
|
|
8471
|
-
<a href="#
|
|
8591
|
+
<a href="#added_6" class="md-nav__link">
|
|
8472
8592
|
<span class="md-ellipsis">
|
|
8473
8593
|
Added
|
|
8474
8594
|
</span>
|
|
@@ -8477,7 +8597,7 @@
|
|
|
8477
8597
|
</li>
|
|
8478
8598
|
|
|
8479
8599
|
<li class="md-nav__item">
|
|
8480
|
-
<a href="#
|
|
8600
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8481
8601
|
<span class="md-ellipsis">
|
|
8482
8602
|
Changed
|
|
8483
8603
|
</span>
|
|
@@ -8486,7 +8606,7 @@
|
|
|
8486
8606
|
</li>
|
|
8487
8607
|
|
|
8488
8608
|
<li class="md-nav__item">
|
|
8489
|
-
<a href="#
|
|
8609
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8490
8610
|
<span class="md-ellipsis">
|
|
8491
8611
|
Fixed
|
|
8492
8612
|
</span>
|
|
@@ -8495,7 +8615,7 @@
|
|
|
8495
8615
|
</li>
|
|
8496
8616
|
|
|
8497
8617
|
<li class="md-nav__item">
|
|
8498
|
-
<a href="#
|
|
8618
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8499
8619
|
<span class="md-ellipsis">
|
|
8500
8620
|
Housekeeping
|
|
8501
8621
|
</span>
|
|
@@ -8528,7 +8648,7 @@
|
|
|
8528
8648
|
</li>
|
|
8529
8649
|
|
|
8530
8650
|
<li class="md-nav__item">
|
|
8531
|
-
<a href="#
|
|
8651
|
+
<a href="#added_7" class="md-nav__link">
|
|
8532
8652
|
<span class="md-ellipsis">
|
|
8533
8653
|
Added
|
|
8534
8654
|
</span>
|
|
@@ -8537,7 +8657,7 @@
|
|
|
8537
8657
|
</li>
|
|
8538
8658
|
|
|
8539
8659
|
<li class="md-nav__item">
|
|
8540
|
-
<a href="#
|
|
8660
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8541
8661
|
<span class="md-ellipsis">
|
|
8542
8662
|
Changed
|
|
8543
8663
|
</span>
|
|
@@ -8555,7 +8675,7 @@
|
|
|
8555
8675
|
</li>
|
|
8556
8676
|
|
|
8557
8677
|
<li class="md-nav__item">
|
|
8558
|
-
<a href="#
|
|
8678
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8559
8679
|
<span class="md-ellipsis">
|
|
8560
8680
|
Fixed
|
|
8561
8681
|
</span>
|
|
@@ -8564,7 +8684,7 @@
|
|
|
8564
8684
|
</li>
|
|
8565
8685
|
|
|
8566
8686
|
<li class="md-nav__item">
|
|
8567
|
-
<a href="#
|
|
8687
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8568
8688
|
<span class="md-ellipsis">
|
|
8569
8689
|
Documentation
|
|
8570
8690
|
</span>
|
|
@@ -8573,7 +8693,7 @@
|
|
|
8573
8693
|
</li>
|
|
8574
8694
|
|
|
8575
8695
|
<li class="md-nav__item">
|
|
8576
|
-
<a href="#
|
|
8696
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8577
8697
|
<span class="md-ellipsis">
|
|
8578
8698
|
Housekeeping
|
|
8579
8699
|
</span>
|
|
@@ -8606,7 +8726,7 @@
|
|
|
8606
8726
|
</li>
|
|
8607
8727
|
|
|
8608
8728
|
<li class="md-nav__item">
|
|
8609
|
-
<a href="#
|
|
8729
|
+
<a href="#added_8" class="md-nav__link">
|
|
8610
8730
|
<span class="md-ellipsis">
|
|
8611
8731
|
Added
|
|
8612
8732
|
</span>
|
|
@@ -8615,7 +8735,7 @@
|
|
|
8615
8735
|
</li>
|
|
8616
8736
|
|
|
8617
8737
|
<li class="md-nav__item">
|
|
8618
|
-
<a href="#
|
|
8738
|
+
<a href="#changed_6" class="md-nav__link">
|
|
8619
8739
|
<span class="md-ellipsis">
|
|
8620
8740
|
Changed
|
|
8621
8741
|
</span>
|
|
@@ -8642,7 +8762,7 @@
|
|
|
8642
8762
|
</li>
|
|
8643
8763
|
|
|
8644
8764
|
<li class="md-nav__item">
|
|
8645
|
-
<a href="#
|
|
8765
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8646
8766
|
<span class="md-ellipsis">
|
|
8647
8767
|
Fixed
|
|
8648
8768
|
</span>
|
|
@@ -8651,7 +8771,7 @@
|
|
|
8651
8771
|
</li>
|
|
8652
8772
|
|
|
8653
8773
|
<li class="md-nav__item">
|
|
8654
|
-
<a href="#
|
|
8774
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
8655
8775
|
<span class="md-ellipsis">
|
|
8656
8776
|
Dependencies
|
|
8657
8777
|
</span>
|
|
@@ -8660,7 +8780,7 @@
|
|
|
8660
8780
|
</li>
|
|
8661
8781
|
|
|
8662
8782
|
<li class="md-nav__item">
|
|
8663
|
-
<a href="#
|
|
8783
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8664
8784
|
<span class="md-ellipsis">
|
|
8665
8785
|
Documentation
|
|
8666
8786
|
</span>
|
|
@@ -8669,7 +8789,7 @@
|
|
|
8669
8789
|
</li>
|
|
8670
8790
|
|
|
8671
8791
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
8792
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
8673
8793
|
<span class="md-ellipsis">
|
|
8674
8794
|
Housekeeping
|
|
8675
8795
|
</span>
|
|
@@ -9368,6 +9488,15 @@
|
|
|
9368
9488
|
</span>
|
|
9369
9489
|
</a>
|
|
9370
9490
|
|
|
9491
|
+
</li>
|
|
9492
|
+
|
|
9493
|
+
<li class="md-nav__item">
|
|
9494
|
+
<a href="#vlangroup-model-enhancement-6309" class="md-nav__link">
|
|
9495
|
+
<span class="md-ellipsis">
|
|
9496
|
+
VLANGroup Model Enhancement (#6309)
|
|
9497
|
+
</span>
|
|
9498
|
+
</a>
|
|
9499
|
+
|
|
9371
9500
|
</li>
|
|
9372
9501
|
|
|
9373
9502
|
<li class="md-nav__item">
|
|
@@ -9474,13 +9603,13 @@
|
|
|
9474
9603
|
</li>
|
|
9475
9604
|
|
|
9476
9605
|
<li class="md-nav__item">
|
|
9477
|
-
<a href="#
|
|
9606
|
+
<a href="#v237-2024-10-15" class="md-nav__link">
|
|
9478
9607
|
<span class="md-ellipsis">
|
|
9479
|
-
v2.3.
|
|
9608
|
+
v2.3.7 (2024-10-15)
|
|
9480
9609
|
</span>
|
|
9481
9610
|
</a>
|
|
9482
9611
|
|
|
9483
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
9612
|
+
<nav class="md-nav" aria-label="v2.3.7 (2024-10-15)">
|
|
9484
9613
|
<ul class="md-nav__list">
|
|
9485
9614
|
|
|
9486
9615
|
<li class="md-nav__item">
|
|
@@ -9517,6 +9646,48 @@
|
|
|
9517
9646
|
</span>
|
|
9518
9647
|
</a>
|
|
9519
9648
|
|
|
9649
|
+
</li>
|
|
9650
|
+
|
|
9651
|
+
<li class="md-nav__item">
|
|
9652
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
9653
|
+
<span class="md-ellipsis">
|
|
9654
|
+
Housekeeping
|
|
9655
|
+
</span>
|
|
9656
|
+
</a>
|
|
9657
|
+
|
|
9658
|
+
</li>
|
|
9659
|
+
|
|
9660
|
+
</ul>
|
|
9661
|
+
</nav>
|
|
9662
|
+
|
|
9663
|
+
</li>
|
|
9664
|
+
|
|
9665
|
+
<li class="md-nav__item">
|
|
9666
|
+
<a href="#v236-2024-10-02" class="md-nav__link">
|
|
9667
|
+
<span class="md-ellipsis">
|
|
9668
|
+
v2.3.6 (2024-10-02)
|
|
9669
|
+
</span>
|
|
9670
|
+
</a>
|
|
9671
|
+
|
|
9672
|
+
<nav class="md-nav" aria-label="v2.3.6 (2024-10-02)">
|
|
9673
|
+
<ul class="md-nav__list">
|
|
9674
|
+
|
|
9675
|
+
<li class="md-nav__item">
|
|
9676
|
+
<a href="#added_2" class="md-nav__link">
|
|
9677
|
+
<span class="md-ellipsis">
|
|
9678
|
+
Added
|
|
9679
|
+
</span>
|
|
9680
|
+
</a>
|
|
9681
|
+
|
|
9682
|
+
</li>
|
|
9683
|
+
|
|
9684
|
+
<li class="md-nav__item">
|
|
9685
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9686
|
+
<span class="md-ellipsis">
|
|
9687
|
+
Fixed
|
|
9688
|
+
</span>
|
|
9689
|
+
</a>
|
|
9690
|
+
|
|
9520
9691
|
</li>
|
|
9521
9692
|
|
|
9522
9693
|
<li class="md-nav__item">
|
|
@@ -9529,7 +9700,76 @@
|
|
|
9529
9700
|
</li>
|
|
9530
9701
|
|
|
9531
9702
|
<li class="md-nav__item">
|
|
9532
|
-
<a href="#
|
|
9703
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9704
|
+
<span class="md-ellipsis">
|
|
9705
|
+
Housekeeping
|
|
9706
|
+
</span>
|
|
9707
|
+
</a>
|
|
9708
|
+
|
|
9709
|
+
</li>
|
|
9710
|
+
|
|
9711
|
+
</ul>
|
|
9712
|
+
</nav>
|
|
9713
|
+
|
|
9714
|
+
</li>
|
|
9715
|
+
|
|
9716
|
+
<li class="md-nav__item">
|
|
9717
|
+
<a href="#v235-2024-09-30" class="md-nav__link">
|
|
9718
|
+
<span class="md-ellipsis">
|
|
9719
|
+
v2.3.5 (2024-09-30)
|
|
9720
|
+
</span>
|
|
9721
|
+
</a>
|
|
9722
|
+
|
|
9723
|
+
<nav class="md-nav" aria-label="v2.3.5 (2024-09-30)">
|
|
9724
|
+
<ul class="md-nav__list">
|
|
9725
|
+
|
|
9726
|
+
<li class="md-nav__item">
|
|
9727
|
+
<a href="#added_3" class="md-nav__link">
|
|
9728
|
+
<span class="md-ellipsis">
|
|
9729
|
+
Added
|
|
9730
|
+
</span>
|
|
9731
|
+
</a>
|
|
9732
|
+
|
|
9733
|
+
</li>
|
|
9734
|
+
|
|
9735
|
+
<li class="md-nav__item">
|
|
9736
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9737
|
+
<span class="md-ellipsis">
|
|
9738
|
+
Changed
|
|
9739
|
+
</span>
|
|
9740
|
+
</a>
|
|
9741
|
+
|
|
9742
|
+
</li>
|
|
9743
|
+
|
|
9744
|
+
<li class="md-nav__item">
|
|
9745
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9746
|
+
<span class="md-ellipsis">
|
|
9747
|
+
Fixed
|
|
9748
|
+
</span>
|
|
9749
|
+
</a>
|
|
9750
|
+
|
|
9751
|
+
</li>
|
|
9752
|
+
|
|
9753
|
+
<li class="md-nav__item">
|
|
9754
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9755
|
+
<span class="md-ellipsis">
|
|
9756
|
+
Dependencies
|
|
9757
|
+
</span>
|
|
9758
|
+
</a>
|
|
9759
|
+
|
|
9760
|
+
</li>
|
|
9761
|
+
|
|
9762
|
+
<li class="md-nav__item">
|
|
9763
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9764
|
+
<span class="md-ellipsis">
|
|
9765
|
+
Documentation
|
|
9766
|
+
</span>
|
|
9767
|
+
</a>
|
|
9768
|
+
|
|
9769
|
+
</li>
|
|
9770
|
+
|
|
9771
|
+
<li class="md-nav__item">
|
|
9772
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9533
9773
|
<span class="md-ellipsis">
|
|
9534
9774
|
Housekeeping
|
|
9535
9775
|
</span>
|
|
@@ -9553,7 +9793,7 @@
|
|
|
9553
9793
|
<ul class="md-nav__list">
|
|
9554
9794
|
|
|
9555
9795
|
<li class="md-nav__item">
|
|
9556
|
-
<a href="#
|
|
9796
|
+
<a href="#added_4" class="md-nav__link">
|
|
9557
9797
|
<span class="md-ellipsis">
|
|
9558
9798
|
Added
|
|
9559
9799
|
</span>
|
|
@@ -9562,7 +9802,7 @@
|
|
|
9562
9802
|
</li>
|
|
9563
9803
|
|
|
9564
9804
|
<li class="md-nav__item">
|
|
9565
|
-
<a href="#
|
|
9805
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9566
9806
|
<span class="md-ellipsis">
|
|
9567
9807
|
Changed
|
|
9568
9808
|
</span>
|
|
@@ -9571,7 +9811,7 @@
|
|
|
9571
9811
|
</li>
|
|
9572
9812
|
|
|
9573
9813
|
<li class="md-nav__item">
|
|
9574
|
-
<a href="#
|
|
9814
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9575
9815
|
<span class="md-ellipsis">
|
|
9576
9816
|
Fixed
|
|
9577
9817
|
</span>
|
|
@@ -9580,7 +9820,7 @@
|
|
|
9580
9820
|
</li>
|
|
9581
9821
|
|
|
9582
9822
|
<li class="md-nav__item">
|
|
9583
|
-
<a href="#
|
|
9823
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9584
9824
|
<span class="md-ellipsis">
|
|
9585
9825
|
Documentation
|
|
9586
9826
|
</span>
|
|
@@ -9589,7 +9829,7 @@
|
|
|
9589
9829
|
</li>
|
|
9590
9830
|
|
|
9591
9831
|
<li class="md-nav__item">
|
|
9592
|
-
<a href="#
|
|
9832
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9593
9833
|
<span class="md-ellipsis">
|
|
9594
9834
|
Housekeeping
|
|
9595
9835
|
</span>
|
|
@@ -9622,7 +9862,7 @@
|
|
|
9622
9862
|
</li>
|
|
9623
9863
|
|
|
9624
9864
|
<li class="md-nav__item">
|
|
9625
|
-
<a href="#
|
|
9865
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9626
9866
|
<span class="md-ellipsis">
|
|
9627
9867
|
Fixed
|
|
9628
9868
|
</span>
|
|
@@ -9631,7 +9871,7 @@
|
|
|
9631
9871
|
</li>
|
|
9632
9872
|
|
|
9633
9873
|
<li class="md-nav__item">
|
|
9634
|
-
<a href="#
|
|
9874
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9635
9875
|
<span class="md-ellipsis">
|
|
9636
9876
|
Dependencies
|
|
9637
9877
|
</span>
|
|
@@ -9640,7 +9880,7 @@
|
|
|
9640
9880
|
</li>
|
|
9641
9881
|
|
|
9642
9882
|
<li class="md-nav__item">
|
|
9643
|
-
<a href="#
|
|
9883
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9644
9884
|
<span class="md-ellipsis">
|
|
9645
9885
|
Housekeeping
|
|
9646
9886
|
</span>
|
|
@@ -9673,7 +9913,7 @@
|
|
|
9673
9913
|
</li>
|
|
9674
9914
|
|
|
9675
9915
|
<li class="md-nav__item">
|
|
9676
|
-
<a href="#
|
|
9916
|
+
<a href="#added_5" class="md-nav__link">
|
|
9677
9917
|
<span class="md-ellipsis">
|
|
9678
9918
|
Added
|
|
9679
9919
|
</span>
|
|
@@ -9682,7 +9922,7 @@
|
|
|
9682
9922
|
</li>
|
|
9683
9923
|
|
|
9684
9924
|
<li class="md-nav__item">
|
|
9685
|
-
<a href="#
|
|
9925
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9686
9926
|
<span class="md-ellipsis">
|
|
9687
9927
|
Fixed
|
|
9688
9928
|
</span>
|
|
@@ -9691,7 +9931,7 @@
|
|
|
9691
9931
|
</li>
|
|
9692
9932
|
|
|
9693
9933
|
<li class="md-nav__item">
|
|
9694
|
-
<a href="#
|
|
9934
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9695
9935
|
<span class="md-ellipsis">
|
|
9696
9936
|
Housekeeping
|
|
9697
9937
|
</span>
|
|
@@ -9715,7 +9955,7 @@
|
|
|
9715
9955
|
<ul class="md-nav__list">
|
|
9716
9956
|
|
|
9717
9957
|
<li class="md-nav__item">
|
|
9718
|
-
<a href="#
|
|
9958
|
+
<a href="#added_6" class="md-nav__link">
|
|
9719
9959
|
<span class="md-ellipsis">
|
|
9720
9960
|
Added
|
|
9721
9961
|
</span>
|
|
@@ -9724,7 +9964,7 @@
|
|
|
9724
9964
|
</li>
|
|
9725
9965
|
|
|
9726
9966
|
<li class="md-nav__item">
|
|
9727
|
-
<a href="#
|
|
9967
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9728
9968
|
<span class="md-ellipsis">
|
|
9729
9969
|
Changed
|
|
9730
9970
|
</span>
|
|
@@ -9733,7 +9973,7 @@
|
|
|
9733
9973
|
</li>
|
|
9734
9974
|
|
|
9735
9975
|
<li class="md-nav__item">
|
|
9736
|
-
<a href="#
|
|
9976
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9737
9977
|
<span class="md-ellipsis">
|
|
9738
9978
|
Fixed
|
|
9739
9979
|
</span>
|
|
@@ -9742,7 +9982,7 @@
|
|
|
9742
9982
|
</li>
|
|
9743
9983
|
|
|
9744
9984
|
<li class="md-nav__item">
|
|
9745
|
-
<a href="#
|
|
9985
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9746
9986
|
<span class="md-ellipsis">
|
|
9747
9987
|
Housekeeping
|
|
9748
9988
|
</span>
|
|
@@ -9775,7 +10015,7 @@
|
|
|
9775
10015
|
</li>
|
|
9776
10016
|
|
|
9777
10017
|
<li class="md-nav__item">
|
|
9778
|
-
<a href="#
|
|
10018
|
+
<a href="#added_7" class="md-nav__link">
|
|
9779
10019
|
<span class="md-ellipsis">
|
|
9780
10020
|
Added
|
|
9781
10021
|
</span>
|
|
@@ -9784,7 +10024,7 @@
|
|
|
9784
10024
|
</li>
|
|
9785
10025
|
|
|
9786
10026
|
<li class="md-nav__item">
|
|
9787
|
-
<a href="#
|
|
10027
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9788
10028
|
<span class="md-ellipsis">
|
|
9789
10029
|
Changed
|
|
9790
10030
|
</span>
|
|
@@ -9802,7 +10042,7 @@
|
|
|
9802
10042
|
</li>
|
|
9803
10043
|
|
|
9804
10044
|
<li class="md-nav__item">
|
|
9805
|
-
<a href="#
|
|
10045
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9806
10046
|
<span class="md-ellipsis">
|
|
9807
10047
|
Fixed
|
|
9808
10048
|
</span>
|
|
@@ -9811,7 +10051,7 @@
|
|
|
9811
10051
|
</li>
|
|
9812
10052
|
|
|
9813
10053
|
<li class="md-nav__item">
|
|
9814
|
-
<a href="#
|
|
10054
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9815
10055
|
<span class="md-ellipsis">
|
|
9816
10056
|
Documentation
|
|
9817
10057
|
</span>
|
|
@@ -9820,7 +10060,7 @@
|
|
|
9820
10060
|
</li>
|
|
9821
10061
|
|
|
9822
10062
|
<li class="md-nav__item">
|
|
9823
|
-
<a href="#
|
|
10063
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9824
10064
|
<span class="md-ellipsis">
|
|
9825
10065
|
Housekeeping
|
|
9826
10066
|
</span>
|
|
@@ -9853,7 +10093,7 @@
|
|
|
9853
10093
|
</li>
|
|
9854
10094
|
|
|
9855
10095
|
<li class="md-nav__item">
|
|
9856
|
-
<a href="#
|
|
10096
|
+
<a href="#added_8" class="md-nav__link">
|
|
9857
10097
|
<span class="md-ellipsis">
|
|
9858
10098
|
Added
|
|
9859
10099
|
</span>
|
|
@@ -9862,7 +10102,7 @@
|
|
|
9862
10102
|
</li>
|
|
9863
10103
|
|
|
9864
10104
|
<li class="md-nav__item">
|
|
9865
|
-
<a href="#
|
|
10105
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9866
10106
|
<span class="md-ellipsis">
|
|
9867
10107
|
Changed
|
|
9868
10108
|
</span>
|
|
@@ -9889,7 +10129,7 @@
|
|
|
9889
10129
|
</li>
|
|
9890
10130
|
|
|
9891
10131
|
<li class="md-nav__item">
|
|
9892
|
-
<a href="#
|
|
10132
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9893
10133
|
<span class="md-ellipsis">
|
|
9894
10134
|
Fixed
|
|
9895
10135
|
</span>
|
|
@@ -9898,7 +10138,7 @@
|
|
|
9898
10138
|
</li>
|
|
9899
10139
|
|
|
9900
10140
|
<li class="md-nav__item">
|
|
9901
|
-
<a href="#
|
|
10141
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9902
10142
|
<span class="md-ellipsis">
|
|
9903
10143
|
Dependencies
|
|
9904
10144
|
</span>
|
|
@@ -9907,7 +10147,7 @@
|
|
|
9907
10147
|
</li>
|
|
9908
10148
|
|
|
9909
10149
|
<li class="md-nav__item">
|
|
9910
|
-
<a href="#
|
|
10150
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9911
10151
|
<span class="md-ellipsis">
|
|
9912
10152
|
Documentation
|
|
9913
10153
|
</span>
|
|
@@ -9916,7 +10156,7 @@
|
|
|
9916
10156
|
</li>
|
|
9917
10157
|
|
|
9918
10158
|
<li class="md-nav__item">
|
|
9919
|
-
<a href="#
|
|
10159
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9920
10160
|
<span class="md-ellipsis">
|
|
9921
10161
|
Housekeeping
|
|
9922
10162
|
</span>
|
|
@@ -9984,6 +10224,7 @@
|
|
|
9984
10224
|
</div>
|
|
9985
10225
|
<ul>
|
|
9986
10226
|
<li>Python 3.12 is now supported by Nautobot and is now the default recommended version of Python. Apps will likely need to update their packaging in order to explicitly declare support for Python 3.12.</li>
|
|
10227
|
+
<li>App Developers should review the feature set of their data models and consider whether their models should opt into or out of inclusion in Dynamic Groups, Contacts/Teams, Object Metadata, and Saved Views via the inclusion or omission of appropriate model mixins and flag variables. Refer to the <a href="../development/apps/api/models/index.html#adding-database-models">developer documentation</a> for details.</li>
|
|
9987
10228
|
</ul>
|
|
9988
10229
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
9989
10230
|
<h3 id="added">Added<a class="headerlink" href="#added" title="Permanent link">¶</a></h3>
|
|
@@ -10001,6 +10242,11 @@
|
|
|
10001
10242
|
<p>Added <a href="../user-guide/platform-functionality/objectmetadata.html">a set of functionality</a> for defining and managing object metadata, that is to say, data <em>about</em> the network data managed in Nautobot, such as data provenance, data ownership, and data classification. For more details, refer to the linked documentation.</p>
|
|
10002
10243
|
<h4 id="python-312-support-5429">Python 3.12 Support (<a href="https://github.com/nautobot/nautobot/issues/5429">#5429</a>)<a class="headerlink" href="#python-312-support-5429" title="Permanent link">¶</a></h4>
|
|
10003
10244
|
<p>Nautobot now supports Python 3.12, and Python 3.12 is now the default Python version included in the <code>nautobot</code> Docker images.</p>
|
|
10245
|
+
<h4 id="vlangroup-model-enhancement-6309">VLANGroup Model Enhancement (<a href="https://github.com/nautobot/nautobot/issues/6309">#6309</a>)<a class="headerlink" href="#vlangroup-model-enhancement-6309" title="Permanent link">¶</a></h4>
|
|
10246
|
+
<details class="version-added">
|
|
10247
|
+
<summary>Added in version 2.3.6</summary>
|
|
10248
|
+
</details>
|
|
10249
|
+
<p>Added a <code>range</code> field on the <code>VLANGroup</code> model with a default value of <code>1-4094</code>. <code>VLANGroup</code> model now also supports <code>custom_links</code>, <code>export_templates</code>, <code>tags</code>, and <code>webhooks</code>.</p>
|
|
10004
10250
|
<h4 id="saved-views-1758">Saved Views (<a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a>)<a class="headerlink" href="#saved-views-1758" title="Permanent link">¶</a></h4>
|
|
10005
10251
|
<p>Added the ability for users to save multiple configurations of list views (table columns, filtering, pagination and sorting) for ease of later use and reuse. Refer to the <a href="../user-guide/platform-functionality/savedview.html">Saved View</a> documentation for more details and on how to use saved views.</p>
|
|
10006
10252
|
<h4 id="worker-status-page-5873">Worker Status Page (<a href="https://github.com/nautobot/nautobot/issues/5873">#5873</a>)<a class="headerlink" href="#worker-status-page-5873" title="Permanent link">¶</a></h4>
|
|
@@ -10033,17 +10279,68 @@
|
|
|
10033
10279
|
<h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">¶</a></h4>
|
|
10034
10280
|
<p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
|
|
10035
10281
|
<!-- towncrier release notes start -->
|
|
10036
|
-
<h2 id="
|
|
10282
|
+
<h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">¶</a></h2>
|
|
10037
10283
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10038
10284
|
<ul>
|
|
10285
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
10286
|
+
</ul>
|
|
10287
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10288
|
+
<ul>
|
|
10289
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
|
|
10290
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that ensure_git_repository logs hashes to include the name of the repository.</li>
|
|
10291
|
+
</ul>
|
|
10292
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10293
|
+
<ul>
|
|
10294
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
10295
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
|
|
10296
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
|
|
10297
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
|
|
10298
|
+
</ul>
|
|
10299
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10300
|
+
<ul>
|
|
10301
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
|
|
10302
|
+
</ul>
|
|
10303
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10304
|
+
<ul>
|
|
10305
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
|
|
10306
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
|
|
10307
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6283">#6283</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.39</code>.</li>
|
|
10308
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed an error when rerunning parallel tests with a cached database and test factories enabled.</li>
|
|
10309
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed a permission-denied error on the <code>MEDIA_ROOT</code> volume when running the local development environment with <code>docker-compose.final.yml</code>.</li>
|
|
10310
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Increased the healthcheck start_period in the local development environment to 10 minutes.</li>
|
|
10311
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
|
|
10312
|
+
</ul>
|
|
10313
|
+
<h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">¶</a></h2>
|
|
10314
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10315
|
+
<ul>
|
|
10316
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
10317
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
10318
|
+
</ul>
|
|
10319
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10320
|
+
<ul>
|
|
10321
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
|
|
10322
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed a warning during startup about the <code>extras.FileAttachment</code> model.</li>
|
|
10323
|
+
</ul>
|
|
10324
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10325
|
+
<ul>
|
|
10326
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
|
|
10327
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
|
|
10328
|
+
</ul>
|
|
10329
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10330
|
+
<ul>
|
|
10331
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
|
|
10332
|
+
</ul>
|
|
10333
|
+
<h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">¶</a></h2>
|
|
10334
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10335
|
+
<ul>
|
|
10039
10336
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
|
|
10040
10337
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
10041
10338
|
</ul>
|
|
10042
|
-
<h3 id="
|
|
10339
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
10043
10340
|
<ul>
|
|
10044
10341
|
<li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
|
|
10045
10342
|
</ul>
|
|
10046
|
-
<h3 id="
|
|
10343
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10047
10344
|
<ul>
|
|
10048
10345
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
10049
10346
|
<li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
|
|
@@ -10054,16 +10351,16 @@
|
|
|
10054
10351
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
|
|
10055
10352
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
10056
10353
|
</ul>
|
|
10057
|
-
<h3 id="
|
|
10354
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
10058
10355
|
<ul>
|
|
10059
10356
|
<li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
|
|
10060
10357
|
<li><a href="https://github.com/nautobot/nautobot/issues/6287">#6287</a> - Replaced incorrect <code>django-structlog[all]</code> dependency with <code>django-structlog[celery]</code>.</li>
|
|
10061
10358
|
</ul>
|
|
10062
|
-
<h3 id="
|
|
10359
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10063
10360
|
<ul>
|
|
10064
10361
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
|
|
10065
10362
|
</ul>
|
|
10066
|
-
<h3 id="
|
|
10363
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
10067
10364
|
<ul>
|
|
10068
10365
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
10069
10366
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
|
|
@@ -10072,22 +10369,22 @@
|
|
|
10072
10369
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
10073
10370
|
</ul>
|
|
10074
10371
|
<h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">¶</a></h2>
|
|
10075
|
-
<h3 id="
|
|
10372
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
10076
10373
|
<ul>
|
|
10077
10374
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
10078
10375
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
|
|
10079
10376
|
</ul>
|
|
10080
|
-
<h3 id="
|
|
10377
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
10081
10378
|
<ul>
|
|
10082
10379
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
|
|
10083
10380
|
</ul>
|
|
10084
|
-
<h3 id="
|
|
10381
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10085
10382
|
<ul>
|
|
10086
10383
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
10087
10384
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
10088
10385
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
10089
10386
|
</ul>
|
|
10090
|
-
<h3 id="
|
|
10387
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
10091
10388
|
<ul>
|
|
10092
10389
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Required Settings" and "Optional Settings" docs into a single unified "Settings" document.</li>
|
|
10093
10390
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
|
|
@@ -10095,7 +10392,7 @@
|
|
|
10095
10392
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
|
|
10096
10393
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
|
|
10097
10394
|
</ul>
|
|
10098
|
-
<h3 id="
|
|
10395
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
10099
10396
|
<ul>
|
|
10100
10397
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
|
|
10101
10398
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
|
|
@@ -10107,18 +10404,18 @@
|
|
|
10107
10404
|
<ul>
|
|
10108
10405
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
|
|
10109
10406
|
</ul>
|
|
10110
|
-
<h3 id="
|
|
10407
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10111
10408
|
<ul>
|
|
10112
10409
|
<li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
|
|
10113
10410
|
<li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
|
|
10114
10411
|
<li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
|
|
10115
10412
|
<li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
|
|
10116
10413
|
</ul>
|
|
10117
|
-
<h3 id="
|
|
10414
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
10118
10415
|
<ul>
|
|
10119
10416
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
|
|
10120
10417
|
</ul>
|
|
10121
|
-
<h3 id="
|
|
10418
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
10122
10419
|
<ul>
|
|
10123
10420
|
<li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
|
|
10124
10421
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
|
|
@@ -10132,14 +10429,14 @@
|
|
|
10132
10429
|
<ul>
|
|
10133
10430
|
<li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10134
10431
|
</ul>
|
|
10135
|
-
<h3 id="
|
|
10432
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
10136
10433
|
<ul>
|
|
10137
10434
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
10138
10435
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
10139
10436
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
10140
10437
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
10141
10438
|
</ul>
|
|
10142
|
-
<h3 id="
|
|
10439
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
10143
10440
|
<ul>
|
|
10144
10441
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
|
|
10145
10442
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
|
|
@@ -10148,7 +10445,7 @@
|
|
|
10148
10445
|
<li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
|
|
10149
10446
|
<li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
|
|
10150
10447
|
</ul>
|
|
10151
|
-
<h3 id="
|
|
10448
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
10152
10449
|
<ul>
|
|
10153
10450
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
10154
10451
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
|
|
@@ -10156,24 +10453,24 @@
|
|
|
10156
10453
|
<li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
|
|
10157
10454
|
</ul>
|
|
10158
10455
|
<h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">¶</a></h2>
|
|
10159
|
-
<h3 id="
|
|
10456
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
10160
10457
|
<ul>
|
|
10161
10458
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
10162
10459
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
|
|
10163
10460
|
<li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
|
|
10164
10461
|
</ul>
|
|
10165
|
-
<h3 id="
|
|
10462
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
10166
10463
|
<ul>
|
|
10167
10464
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
10168
10465
|
</ul>
|
|
10169
|
-
<h3 id="
|
|
10466
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
10170
10467
|
<ul>
|
|
10171
10468
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
|
|
10172
10469
|
<li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
|
|
10173
10470
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
10174
10471
|
<li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
|
|
10175
10472
|
</ul>
|
|
10176
|
-
<h3 id="
|
|
10473
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
10177
10474
|
<ul>
|
|
10178
10475
|
<li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
|
|
10179
10476
|
</ul>
|
|
@@ -10182,7 +10479,7 @@
|
|
|
10182
10479
|
<ul>
|
|
10183
10480
|
<li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
|
|
10184
10481
|
</ul>
|
|
10185
|
-
<h3 id="
|
|
10482
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
10186
10483
|
<ul>
|
|
10187
10484
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
10188
10485
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -10192,7 +10489,7 @@
|
|
|
10192
10489
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
|
|
10193
10490
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
|
|
10194
10491
|
</ul>
|
|
10195
|
-
<h3 id="
|
|
10492
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
10196
10493
|
<ul>
|
|
10197
10494
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
|
|
10198
10495
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -10206,7 +10503,7 @@
|
|
|
10206
10503
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
10207
10504
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
10208
10505
|
</ul>
|
|
10209
|
-
<h3 id="
|
|
10506
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
10210
10507
|
<ul>
|
|
10211
10508
|
<li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
|
|
10212
10509
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -10222,7 +10519,7 @@
|
|
|
10222
10519
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
10223
10520
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>ServiceForm.ip_addresses</code> valid addresses.</li>
|
|
10224
10521
|
</ul>
|
|
10225
|
-
<h3 id="
|
|
10522
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
10226
10523
|
<ul>
|
|
10227
10524
|
<li><a href="https://github.com/nautobot/nautobot/issues/5920">#5920</a> - Updated documentation for installation under Ubuntu 24.04 LTS, Fedora 40, AlmaLinux 9, and similar distros.</li>
|
|
10228
10525
|
<li><a href="https://github.com/nautobot/nautobot/issues/6019">#6019</a> - Updated the installation documentation to recommend a more secure set of filesystem permissions.</li>
|
|
@@ -10230,7 +10527,7 @@
|
|
|
10230
10527
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
10231
10528
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
10232
10529
|
</ul>
|
|
10233
|
-
<h3 id="
|
|
10530
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
10234
10531
|
<ul>
|
|
10235
10532
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
|
|
10236
10533
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
|
|
@@ -10245,7 +10542,7 @@
|
|
|
10245
10542
|
<ul>
|
|
10246
10543
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
|
|
10247
10544
|
</ul>
|
|
10248
|
-
<h3 id="
|
|
10545
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
10249
10546
|
<ul>
|
|
10250
10547
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
10251
10548
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
|
|
@@ -10292,7 +10589,7 @@
|
|
|
10292
10589
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
|
|
10293
10590
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
10294
10591
|
</ul>
|
|
10295
|
-
<h3 id="
|
|
10592
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
10296
10593
|
<ul>
|
|
10297
10594
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
|
|
10298
10595
|
<li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Changed behavior of the <code>CHANGELOG_RETENTION</code> setting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job.</li>
|
|
@@ -10336,7 +10633,7 @@
|
|
|
10336
10633
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
|
|
10337
10634
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
|
|
10338
10635
|
</ul>
|
|
10339
|
-
<h3 id="
|
|
10636
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
10340
10637
|
<ul>
|
|
10341
10638
|
<li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
|
|
10342
10639
|
<li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
|
|
@@ -10360,7 +10657,7 @@
|
|
|
10360
10657
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
10361
10658
|
<li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
|
|
10362
10659
|
</ul>
|
|
10363
|
-
<h3 id="
|
|
10660
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
10364
10661
|
<ul>
|
|
10365
10662
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
10366
10663
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -10386,13 +10683,13 @@
|
|
|
10386
10683
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
|
|
10387
10684
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-timezone-field</code> to version <code>~7.0</code>.</li>
|
|
10388
10685
|
</ul>
|
|
10389
|
-
<h3 id="
|
|
10686
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
10390
10687
|
<ul>
|
|
10391
10688
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
10392
10689
|
<li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
|
|
10393
10690
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
10394
10691
|
</ul>
|
|
10395
|
-
<h3 id="
|
|
10692
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
10396
10693
|
<ul>
|
|
10397
10694
|
<li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
|
|
10398
10695
|
<li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>
|
|
@@ -10563,7 +10860,7 @@
|
|
|
10563
10860
|
<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.6ce7567c.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>
|
|
10564
10861
|
|
|
10565
10862
|
|
|
10566
|
-
<script src="../assets/javascripts/bundle.
|
|
10863
|
+
<script src="../assets/javascripts/bundle.525ec568.min.js"></script>
|
|
10567
10864
|
|
|
10568
10865
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10569
10866
|
|