nautobot 2.3.4__py3-none-any.whl → 2.3.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.
- nautobot/core/api/utils.py +12 -2
- nautobot/core/forms/fields.py +5 -2
- nautobot/core/forms/utils.py +31 -6
- nautobot/core/models/fields.py +56 -0
- nautobot/core/tests/runner.py +13 -6
- nautobot/core/tests/test_utils.py +83 -0
- nautobot/core/tests/test_views.py +40 -1
- nautobot/core/views/generic.py +15 -15
- nautobot/core/views/mixins.py +12 -1
- nautobot/core/views/renderers.py +3 -1
- nautobot/core/views/utils.py +1 -1
- nautobot/dcim/api/serializers.py +1 -0
- nautobot/dcim/api/views.py +2 -0
- nautobot/dcim/forms.py +1 -1
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +1 -1
- nautobot/dcim/tests/test_api.py +61 -4
- nautobot/dcim/tests/test_models.py +0 -2
- nautobot/dcim/views.py +5 -2
- nautobot/extras/api/views.py +9 -0
- nautobot/extras/factory.py +2 -1
- nautobot/extras/models/jobs.py +9 -1
- nautobot/extras/models/models.py +2 -0
- nautobot/extras/querysets.py +10 -1
- nautobot/extras/tables.py +3 -0
- nautobot/extras/tests/test_api.py +39 -3
- nautobot/extras/tests/test_forms.py +2 -0
- nautobot/extras/tests/test_views.py +78 -3
- nautobot/extras/views.py +10 -7
- nautobot/ipam/api/serializers.py +30 -1
- nautobot/ipam/api/views.py +165 -3
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +8 -1
- nautobot/ipam/migrations/0050_vlangroup_range.py +24 -0
- nautobot/ipam/models.py +56 -19
- nautobot/ipam/navigation.py +8 -1
- nautobot/ipam/tables.py +4 -4
- nautobot/ipam/templates/ipam/prefix.html +1 -1
- nautobot/ipam/templates/ipam/vlangroup.html +4 -0
- nautobot/ipam/tests/test_api.py +174 -0
- nautobot/ipam/tests/test_filters.py +1 -1
- nautobot/ipam/tests/test_models.py +35 -1
- nautobot/ipam/tests/test_utils.py +61 -0
- nautobot/ipam/tests/test_views.py +43 -41
- nautobot/ipam/utils/__init__.py +10 -17
- nautobot/ipam/views.py +2 -2
- nautobot/project-static/docs/404.html +2 -2
- nautobot/project-static/docs/apps/index.html +2 -2
- nautobot/project-static/docs/apps/nautobot-apps.html +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.07f07601.min.js → search.6ce7567c.min.js} +3 -3
- nautobot/project-static/docs/assets/javascripts/workers/{search.07f07601.min.js.map → search.6ce7567c.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +4 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +2 -2
- nautobot/project-static/docs/development/apps/api/configuration-view.html +2 -2
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/global-search.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/graphql.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/index.html +4 -4
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +2 -2
- nautobot/project-static/docs/development/apps/api/prometheus.html +2 -2
- nautobot/project-static/docs/development/apps/api/setup.html +2 -2
- nautobot/project-static/docs/development/apps/api/testing.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/base-template.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/index.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/notes.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/urls.html +2 -2
- nautobot/project-static/docs/development/apps/index.html +2 -2
- nautobot/project-static/docs/development/apps/migration/code-updates.html +2 -2
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +2 -2
- nautobot/project-static/docs/development/apps/migration/from-v1.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +2 -2
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +2 -2
- nautobot/project-static/docs/development/core/application-registry.html +2 -2
- nautobot/project-static/docs/development/core/best-practices.html +2 -2
- nautobot/project-static/docs/development/core/bootstrap-ui.html +2 -2
- nautobot/project-static/docs/development/core/caching.html +2 -2
- nautobot/project-static/docs/development/core/controllers.html +2 -2
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +2 -2
- nautobot/project-static/docs/development/core/generic-views.html +2 -2
- nautobot/project-static/docs/development/core/getting-started.html +7 -6
- nautobot/project-static/docs/development/core/homepage.html +2 -2
- nautobot/project-static/docs/development/core/index.html +2 -2
- nautobot/project-static/docs/development/core/model-checklist.html +2 -2
- nautobot/project-static/docs/development/core/model-features.html +2 -2
- nautobot/project-static/docs/development/core/natural-keys.html +2 -2
- nautobot/project-static/docs/development/core/navigation-menu.html +2 -2
- nautobot/project-static/docs/development/core/release-checklist.html +2 -2
- nautobot/project-static/docs/development/core/role-internals.html +2 -2
- nautobot/project-static/docs/development/core/settings.html +2 -2
- nautobot/project-static/docs/development/core/style-guide.html +2 -2
- nautobot/project-static/docs/development/core/templates.html +2 -2
- nautobot/project-static/docs/development/core/testing.html +12 -4
- nautobot/project-static/docs/development/core/user-preferences.html +2 -2
- nautobot/project-static/docs/development/index.html +2 -2
- nautobot/project-static/docs/development/jobs/index.html +2 -2
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +2 -2
- nautobot/project-static/docs/index.html +2 -2
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +2 -2
- nautobot/project-static/docs/overview/design_philosophy.html +2 -2
- nautobot/project-static/docs/release-notes/index.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.3.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.4.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.5.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.0.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.1.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.2.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.3.html +402 -80
- 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 +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/index.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/services.html +2 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +2 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +2 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +2 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +307 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +2 -2
- nautobot/project-static/docs/user-guide/index.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +2 -2
- {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/METADATA +2 -2
- {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/RECORD +327 -325
- {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/NOTICE +0 -0
- {nautobot-2.3.4.dist-info → nautobot-2.3.6.dist-info}/WHEEL +0 -0
- {nautobot-2.3.4.dist-info → nautobot-2.3.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.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.35">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -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">
|
|
@@ -8224,6 +8233,126 @@
|
|
|
8224
8233
|
</ul>
|
|
8225
8234
|
</nav>
|
|
8226
8235
|
|
|
8236
|
+
</li>
|
|
8237
|
+
|
|
8238
|
+
<li class="md-nav__item">
|
|
8239
|
+
<a href="#v236-2024-10-02" class="md-nav__link">
|
|
8240
|
+
<span class="md-ellipsis">
|
|
8241
|
+
v2.3.6 (2024-10-02)
|
|
8242
|
+
</span>
|
|
8243
|
+
</a>
|
|
8244
|
+
|
|
8245
|
+
<nav class="md-nav" aria-label="v2.3.6 (2024-10-02)">
|
|
8246
|
+
<ul class="md-nav__list">
|
|
8247
|
+
|
|
8248
|
+
<li class="md-nav__item">
|
|
8249
|
+
<a href="#added_1" class="md-nav__link">
|
|
8250
|
+
<span class="md-ellipsis">
|
|
8251
|
+
Added
|
|
8252
|
+
</span>
|
|
8253
|
+
</a>
|
|
8254
|
+
|
|
8255
|
+
</li>
|
|
8256
|
+
|
|
8257
|
+
<li class="md-nav__item">
|
|
8258
|
+
<a href="#fixed" class="md-nav__link">
|
|
8259
|
+
<span class="md-ellipsis">
|
|
8260
|
+
Fixed
|
|
8261
|
+
</span>
|
|
8262
|
+
</a>
|
|
8263
|
+
|
|
8264
|
+
</li>
|
|
8265
|
+
|
|
8266
|
+
<li class="md-nav__item">
|
|
8267
|
+
<a href="#documentation" class="md-nav__link">
|
|
8268
|
+
<span class="md-ellipsis">
|
|
8269
|
+
Documentation
|
|
8270
|
+
</span>
|
|
8271
|
+
</a>
|
|
8272
|
+
|
|
8273
|
+
</li>
|
|
8274
|
+
|
|
8275
|
+
<li class="md-nav__item">
|
|
8276
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8277
|
+
<span class="md-ellipsis">
|
|
8278
|
+
Housekeeping
|
|
8279
|
+
</span>
|
|
8280
|
+
</a>
|
|
8281
|
+
|
|
8282
|
+
</li>
|
|
8283
|
+
|
|
8284
|
+
</ul>
|
|
8285
|
+
</nav>
|
|
8286
|
+
|
|
8287
|
+
</li>
|
|
8288
|
+
|
|
8289
|
+
<li class="md-nav__item">
|
|
8290
|
+
<a href="#v235-2024-09-30" class="md-nav__link">
|
|
8291
|
+
<span class="md-ellipsis">
|
|
8292
|
+
v2.3.5 (2024-09-30)
|
|
8293
|
+
</span>
|
|
8294
|
+
</a>
|
|
8295
|
+
|
|
8296
|
+
<nav class="md-nav" aria-label="v2.3.5 (2024-09-30)">
|
|
8297
|
+
<ul class="md-nav__list">
|
|
8298
|
+
|
|
8299
|
+
<li class="md-nav__item">
|
|
8300
|
+
<a href="#added_2" class="md-nav__link">
|
|
8301
|
+
<span class="md-ellipsis">
|
|
8302
|
+
Added
|
|
8303
|
+
</span>
|
|
8304
|
+
</a>
|
|
8305
|
+
|
|
8306
|
+
</li>
|
|
8307
|
+
|
|
8308
|
+
<li class="md-nav__item">
|
|
8309
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8310
|
+
<span class="md-ellipsis">
|
|
8311
|
+
Changed
|
|
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
|
+
|
|
8324
|
+
</li>
|
|
8325
|
+
|
|
8326
|
+
<li class="md-nav__item">
|
|
8327
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8328
|
+
<span class="md-ellipsis">
|
|
8329
|
+
Dependencies
|
|
8330
|
+
</span>
|
|
8331
|
+
</a>
|
|
8332
|
+
|
|
8333
|
+
</li>
|
|
8334
|
+
|
|
8335
|
+
<li class="md-nav__item">
|
|
8336
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8337
|
+
<span class="md-ellipsis">
|
|
8338
|
+
Documentation
|
|
8339
|
+
</span>
|
|
8340
|
+
</a>
|
|
8341
|
+
|
|
8342
|
+
</li>
|
|
8343
|
+
|
|
8344
|
+
<li class="md-nav__item">
|
|
8345
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8346
|
+
<span class="md-ellipsis">
|
|
8347
|
+
Housekeeping
|
|
8348
|
+
</span>
|
|
8349
|
+
</a>
|
|
8350
|
+
|
|
8351
|
+
</li>
|
|
8352
|
+
|
|
8353
|
+
</ul>
|
|
8354
|
+
</nav>
|
|
8355
|
+
|
|
8227
8356
|
</li>
|
|
8228
8357
|
|
|
8229
8358
|
<li class="md-nav__item">
|
|
@@ -8237,7 +8366,7 @@
|
|
|
8237
8366
|
<ul class="md-nav__list">
|
|
8238
8367
|
|
|
8239
8368
|
<li class="md-nav__item">
|
|
8240
|
-
<a href="#
|
|
8369
|
+
<a href="#added_3" class="md-nav__link">
|
|
8241
8370
|
<span class="md-ellipsis">
|
|
8242
8371
|
Added
|
|
8243
8372
|
</span>
|
|
@@ -8246,7 +8375,7 @@
|
|
|
8246
8375
|
</li>
|
|
8247
8376
|
|
|
8248
8377
|
<li class="md-nav__item">
|
|
8249
|
-
<a href="#
|
|
8378
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8250
8379
|
<span class="md-ellipsis">
|
|
8251
8380
|
Changed
|
|
8252
8381
|
</span>
|
|
@@ -8255,7 +8384,7 @@
|
|
|
8255
8384
|
</li>
|
|
8256
8385
|
|
|
8257
8386
|
<li class="md-nav__item">
|
|
8258
|
-
<a href="#
|
|
8387
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8259
8388
|
<span class="md-ellipsis">
|
|
8260
8389
|
Fixed
|
|
8261
8390
|
</span>
|
|
@@ -8264,7 +8393,7 @@
|
|
|
8264
8393
|
</li>
|
|
8265
8394
|
|
|
8266
8395
|
<li class="md-nav__item">
|
|
8267
|
-
<a href="#
|
|
8396
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8268
8397
|
<span class="md-ellipsis">
|
|
8269
8398
|
Documentation
|
|
8270
8399
|
</span>
|
|
@@ -8273,7 +8402,7 @@
|
|
|
8273
8402
|
</li>
|
|
8274
8403
|
|
|
8275
8404
|
<li class="md-nav__item">
|
|
8276
|
-
<a href="#
|
|
8405
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8277
8406
|
<span class="md-ellipsis">
|
|
8278
8407
|
Housekeeping
|
|
8279
8408
|
</span>
|
|
@@ -8306,7 +8435,7 @@
|
|
|
8306
8435
|
</li>
|
|
8307
8436
|
|
|
8308
8437
|
<li class="md-nav__item">
|
|
8309
|
-
<a href="#
|
|
8438
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8310
8439
|
<span class="md-ellipsis">
|
|
8311
8440
|
Fixed
|
|
8312
8441
|
</span>
|
|
@@ -8315,7 +8444,7 @@
|
|
|
8315
8444
|
</li>
|
|
8316
8445
|
|
|
8317
8446
|
<li class="md-nav__item">
|
|
8318
|
-
<a href="#
|
|
8447
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8319
8448
|
<span class="md-ellipsis">
|
|
8320
8449
|
Dependencies
|
|
8321
8450
|
</span>
|
|
@@ -8324,7 +8453,7 @@
|
|
|
8324
8453
|
</li>
|
|
8325
8454
|
|
|
8326
8455
|
<li class="md-nav__item">
|
|
8327
|
-
<a href="#
|
|
8456
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8328
8457
|
<span class="md-ellipsis">
|
|
8329
8458
|
Housekeeping
|
|
8330
8459
|
</span>
|
|
@@ -8357,7 +8486,7 @@
|
|
|
8357
8486
|
</li>
|
|
8358
8487
|
|
|
8359
8488
|
<li class="md-nav__item">
|
|
8360
|
-
<a href="#
|
|
8489
|
+
<a href="#added_4" class="md-nav__link">
|
|
8361
8490
|
<span class="md-ellipsis">
|
|
8362
8491
|
Added
|
|
8363
8492
|
</span>
|
|
@@ -8366,7 +8495,7 @@
|
|
|
8366
8495
|
</li>
|
|
8367
8496
|
|
|
8368
8497
|
<li class="md-nav__item">
|
|
8369
|
-
<a href="#
|
|
8498
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8370
8499
|
<span class="md-ellipsis">
|
|
8371
8500
|
Fixed
|
|
8372
8501
|
</span>
|
|
@@ -8375,7 +8504,7 @@
|
|
|
8375
8504
|
</li>
|
|
8376
8505
|
|
|
8377
8506
|
<li class="md-nav__item">
|
|
8378
|
-
<a href="#
|
|
8507
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8379
8508
|
<span class="md-ellipsis">
|
|
8380
8509
|
Housekeeping
|
|
8381
8510
|
</span>
|
|
@@ -8399,7 +8528,7 @@
|
|
|
8399
8528
|
<ul class="md-nav__list">
|
|
8400
8529
|
|
|
8401
8530
|
<li class="md-nav__item">
|
|
8402
|
-
<a href="#
|
|
8531
|
+
<a href="#added_5" class="md-nav__link">
|
|
8403
8532
|
<span class="md-ellipsis">
|
|
8404
8533
|
Added
|
|
8405
8534
|
</span>
|
|
@@ -8408,7 +8537,7 @@
|
|
|
8408
8537
|
</li>
|
|
8409
8538
|
|
|
8410
8539
|
<li class="md-nav__item">
|
|
8411
|
-
<a href="#
|
|
8540
|
+
<a href="#changed_3" class="md-nav__link">
|
|
8412
8541
|
<span class="md-ellipsis">
|
|
8413
8542
|
Changed
|
|
8414
8543
|
</span>
|
|
@@ -8417,7 +8546,7 @@
|
|
|
8417
8546
|
</li>
|
|
8418
8547
|
|
|
8419
8548
|
<li class="md-nav__item">
|
|
8420
|
-
<a href="#
|
|
8549
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8421
8550
|
<span class="md-ellipsis">
|
|
8422
8551
|
Fixed
|
|
8423
8552
|
</span>
|
|
@@ -8426,7 +8555,7 @@
|
|
|
8426
8555
|
</li>
|
|
8427
8556
|
|
|
8428
8557
|
<li class="md-nav__item">
|
|
8429
|
-
<a href="#
|
|
8558
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8430
8559
|
<span class="md-ellipsis">
|
|
8431
8560
|
Housekeeping
|
|
8432
8561
|
</span>
|
|
@@ -8459,7 +8588,7 @@
|
|
|
8459
8588
|
</li>
|
|
8460
8589
|
|
|
8461
8590
|
<li class="md-nav__item">
|
|
8462
|
-
<a href="#
|
|
8591
|
+
<a href="#added_6" class="md-nav__link">
|
|
8463
8592
|
<span class="md-ellipsis">
|
|
8464
8593
|
Added
|
|
8465
8594
|
</span>
|
|
@@ -8468,7 +8597,7 @@
|
|
|
8468
8597
|
</li>
|
|
8469
8598
|
|
|
8470
8599
|
<li class="md-nav__item">
|
|
8471
|
-
<a href="#
|
|
8600
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8472
8601
|
<span class="md-ellipsis">
|
|
8473
8602
|
Changed
|
|
8474
8603
|
</span>
|
|
@@ -8486,7 +8615,7 @@
|
|
|
8486
8615
|
</li>
|
|
8487
8616
|
|
|
8488
8617
|
<li class="md-nav__item">
|
|
8489
|
-
<a href="#
|
|
8618
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8490
8619
|
<span class="md-ellipsis">
|
|
8491
8620
|
Fixed
|
|
8492
8621
|
</span>
|
|
@@ -8495,7 +8624,7 @@
|
|
|
8495
8624
|
</li>
|
|
8496
8625
|
|
|
8497
8626
|
<li class="md-nav__item">
|
|
8498
|
-
<a href="#
|
|
8627
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8499
8628
|
<span class="md-ellipsis">
|
|
8500
8629
|
Documentation
|
|
8501
8630
|
</span>
|
|
@@ -8504,7 +8633,7 @@
|
|
|
8504
8633
|
</li>
|
|
8505
8634
|
|
|
8506
8635
|
<li class="md-nav__item">
|
|
8507
|
-
<a href="#
|
|
8636
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8508
8637
|
<span class="md-ellipsis">
|
|
8509
8638
|
Housekeeping
|
|
8510
8639
|
</span>
|
|
@@ -8537,7 +8666,7 @@
|
|
|
8537
8666
|
</li>
|
|
8538
8667
|
|
|
8539
8668
|
<li class="md-nav__item">
|
|
8540
|
-
<a href="#
|
|
8669
|
+
<a href="#added_7" class="md-nav__link">
|
|
8541
8670
|
<span class="md-ellipsis">
|
|
8542
8671
|
Added
|
|
8543
8672
|
</span>
|
|
@@ -8546,7 +8675,7 @@
|
|
|
8546
8675
|
</li>
|
|
8547
8676
|
|
|
8548
8677
|
<li class="md-nav__item">
|
|
8549
|
-
<a href="#
|
|
8678
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8550
8679
|
<span class="md-ellipsis">
|
|
8551
8680
|
Changed
|
|
8552
8681
|
</span>
|
|
@@ -8573,7 +8702,7 @@
|
|
|
8573
8702
|
</li>
|
|
8574
8703
|
|
|
8575
8704
|
<li class="md-nav__item">
|
|
8576
|
-
<a href="#
|
|
8705
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8577
8706
|
<span class="md-ellipsis">
|
|
8578
8707
|
Fixed
|
|
8579
8708
|
</span>
|
|
@@ -8582,7 +8711,7 @@
|
|
|
8582
8711
|
</li>
|
|
8583
8712
|
|
|
8584
8713
|
<li class="md-nav__item">
|
|
8585
|
-
<a href="#
|
|
8714
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8586
8715
|
<span class="md-ellipsis">
|
|
8587
8716
|
Dependencies
|
|
8588
8717
|
</span>
|
|
@@ -8591,7 +8720,7 @@
|
|
|
8591
8720
|
</li>
|
|
8592
8721
|
|
|
8593
8722
|
<li class="md-nav__item">
|
|
8594
|
-
<a href="#
|
|
8723
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8595
8724
|
<span class="md-ellipsis">
|
|
8596
8725
|
Documentation
|
|
8597
8726
|
</span>
|
|
@@ -8600,7 +8729,7 @@
|
|
|
8600
8729
|
</li>
|
|
8601
8730
|
|
|
8602
8731
|
<li class="md-nav__item">
|
|
8603
|
-
<a href="#
|
|
8732
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8604
8733
|
<span class="md-ellipsis">
|
|
8605
8734
|
Housekeeping
|
|
8606
8735
|
</span>
|
|
@@ -9299,6 +9428,15 @@
|
|
|
9299
9428
|
</span>
|
|
9300
9429
|
</a>
|
|
9301
9430
|
|
|
9431
|
+
</li>
|
|
9432
|
+
|
|
9433
|
+
<li class="md-nav__item">
|
|
9434
|
+
<a href="#vlangroup-model-enhancement-6309" class="md-nav__link">
|
|
9435
|
+
<span class="md-ellipsis">
|
|
9436
|
+
VLANGroup Model Enhancement (#6309)
|
|
9437
|
+
</span>
|
|
9438
|
+
</a>
|
|
9439
|
+
|
|
9302
9440
|
</li>
|
|
9303
9441
|
|
|
9304
9442
|
<li class="md-nav__item">
|
|
@@ -9402,6 +9540,126 @@
|
|
|
9402
9540
|
</ul>
|
|
9403
9541
|
</nav>
|
|
9404
9542
|
|
|
9543
|
+
</li>
|
|
9544
|
+
|
|
9545
|
+
<li class="md-nav__item">
|
|
9546
|
+
<a href="#v236-2024-10-02" class="md-nav__link">
|
|
9547
|
+
<span class="md-ellipsis">
|
|
9548
|
+
v2.3.6 (2024-10-02)
|
|
9549
|
+
</span>
|
|
9550
|
+
</a>
|
|
9551
|
+
|
|
9552
|
+
<nav class="md-nav" aria-label="v2.3.6 (2024-10-02)">
|
|
9553
|
+
<ul class="md-nav__list">
|
|
9554
|
+
|
|
9555
|
+
<li class="md-nav__item">
|
|
9556
|
+
<a href="#added_1" class="md-nav__link">
|
|
9557
|
+
<span class="md-ellipsis">
|
|
9558
|
+
Added
|
|
9559
|
+
</span>
|
|
9560
|
+
</a>
|
|
9561
|
+
|
|
9562
|
+
</li>
|
|
9563
|
+
|
|
9564
|
+
<li class="md-nav__item">
|
|
9565
|
+
<a href="#fixed" class="md-nav__link">
|
|
9566
|
+
<span class="md-ellipsis">
|
|
9567
|
+
Fixed
|
|
9568
|
+
</span>
|
|
9569
|
+
</a>
|
|
9570
|
+
|
|
9571
|
+
</li>
|
|
9572
|
+
|
|
9573
|
+
<li class="md-nav__item">
|
|
9574
|
+
<a href="#documentation" class="md-nav__link">
|
|
9575
|
+
<span class="md-ellipsis">
|
|
9576
|
+
Documentation
|
|
9577
|
+
</span>
|
|
9578
|
+
</a>
|
|
9579
|
+
|
|
9580
|
+
</li>
|
|
9581
|
+
|
|
9582
|
+
<li class="md-nav__item">
|
|
9583
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
9584
|
+
<span class="md-ellipsis">
|
|
9585
|
+
Housekeeping
|
|
9586
|
+
</span>
|
|
9587
|
+
</a>
|
|
9588
|
+
|
|
9589
|
+
</li>
|
|
9590
|
+
|
|
9591
|
+
</ul>
|
|
9592
|
+
</nav>
|
|
9593
|
+
|
|
9594
|
+
</li>
|
|
9595
|
+
|
|
9596
|
+
<li class="md-nav__item">
|
|
9597
|
+
<a href="#v235-2024-09-30" class="md-nav__link">
|
|
9598
|
+
<span class="md-ellipsis">
|
|
9599
|
+
v2.3.5 (2024-09-30)
|
|
9600
|
+
</span>
|
|
9601
|
+
</a>
|
|
9602
|
+
|
|
9603
|
+
<nav class="md-nav" aria-label="v2.3.5 (2024-09-30)">
|
|
9604
|
+
<ul class="md-nav__list">
|
|
9605
|
+
|
|
9606
|
+
<li class="md-nav__item">
|
|
9607
|
+
<a href="#added_2" class="md-nav__link">
|
|
9608
|
+
<span class="md-ellipsis">
|
|
9609
|
+
Added
|
|
9610
|
+
</span>
|
|
9611
|
+
</a>
|
|
9612
|
+
|
|
9613
|
+
</li>
|
|
9614
|
+
|
|
9615
|
+
<li class="md-nav__item">
|
|
9616
|
+
<a href="#changed_1" class="md-nav__link">
|
|
9617
|
+
<span class="md-ellipsis">
|
|
9618
|
+
Changed
|
|
9619
|
+
</span>
|
|
9620
|
+
</a>
|
|
9621
|
+
|
|
9622
|
+
</li>
|
|
9623
|
+
|
|
9624
|
+
<li class="md-nav__item">
|
|
9625
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9626
|
+
<span class="md-ellipsis">
|
|
9627
|
+
Fixed
|
|
9628
|
+
</span>
|
|
9629
|
+
</a>
|
|
9630
|
+
|
|
9631
|
+
</li>
|
|
9632
|
+
|
|
9633
|
+
<li class="md-nav__item">
|
|
9634
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9635
|
+
<span class="md-ellipsis">
|
|
9636
|
+
Dependencies
|
|
9637
|
+
</span>
|
|
9638
|
+
</a>
|
|
9639
|
+
|
|
9640
|
+
</li>
|
|
9641
|
+
|
|
9642
|
+
<li class="md-nav__item">
|
|
9643
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9644
|
+
<span class="md-ellipsis">
|
|
9645
|
+
Documentation
|
|
9646
|
+
</span>
|
|
9647
|
+
</a>
|
|
9648
|
+
|
|
9649
|
+
</li>
|
|
9650
|
+
|
|
9651
|
+
<li class="md-nav__item">
|
|
9652
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9653
|
+
<span class="md-ellipsis">
|
|
9654
|
+
Housekeeping
|
|
9655
|
+
</span>
|
|
9656
|
+
</a>
|
|
9657
|
+
|
|
9658
|
+
</li>
|
|
9659
|
+
|
|
9660
|
+
</ul>
|
|
9661
|
+
</nav>
|
|
9662
|
+
|
|
9405
9663
|
</li>
|
|
9406
9664
|
|
|
9407
9665
|
<li class="md-nav__item">
|
|
@@ -9415,7 +9673,7 @@
|
|
|
9415
9673
|
<ul class="md-nav__list">
|
|
9416
9674
|
|
|
9417
9675
|
<li class="md-nav__item">
|
|
9418
|
-
<a href="#
|
|
9676
|
+
<a href="#added_3" class="md-nav__link">
|
|
9419
9677
|
<span class="md-ellipsis">
|
|
9420
9678
|
Added
|
|
9421
9679
|
</span>
|
|
@@ -9424,7 +9682,7 @@
|
|
|
9424
9682
|
</li>
|
|
9425
9683
|
|
|
9426
9684
|
<li class="md-nav__item">
|
|
9427
|
-
<a href="#
|
|
9685
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9428
9686
|
<span class="md-ellipsis">
|
|
9429
9687
|
Changed
|
|
9430
9688
|
</span>
|
|
@@ -9433,7 +9691,7 @@
|
|
|
9433
9691
|
</li>
|
|
9434
9692
|
|
|
9435
9693
|
<li class="md-nav__item">
|
|
9436
|
-
<a href="#
|
|
9694
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9437
9695
|
<span class="md-ellipsis">
|
|
9438
9696
|
Fixed
|
|
9439
9697
|
</span>
|
|
@@ -9442,7 +9700,7 @@
|
|
|
9442
9700
|
</li>
|
|
9443
9701
|
|
|
9444
9702
|
<li class="md-nav__item">
|
|
9445
|
-
<a href="#
|
|
9703
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9446
9704
|
<span class="md-ellipsis">
|
|
9447
9705
|
Documentation
|
|
9448
9706
|
</span>
|
|
@@ -9451,7 +9709,7 @@
|
|
|
9451
9709
|
</li>
|
|
9452
9710
|
|
|
9453
9711
|
<li class="md-nav__item">
|
|
9454
|
-
<a href="#
|
|
9712
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9455
9713
|
<span class="md-ellipsis">
|
|
9456
9714
|
Housekeeping
|
|
9457
9715
|
</span>
|
|
@@ -9484,7 +9742,7 @@
|
|
|
9484
9742
|
</li>
|
|
9485
9743
|
|
|
9486
9744
|
<li class="md-nav__item">
|
|
9487
|
-
<a href="#
|
|
9745
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9488
9746
|
<span class="md-ellipsis">
|
|
9489
9747
|
Fixed
|
|
9490
9748
|
</span>
|
|
@@ -9493,7 +9751,7 @@
|
|
|
9493
9751
|
</li>
|
|
9494
9752
|
|
|
9495
9753
|
<li class="md-nav__item">
|
|
9496
|
-
<a href="#
|
|
9754
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9497
9755
|
<span class="md-ellipsis">
|
|
9498
9756
|
Dependencies
|
|
9499
9757
|
</span>
|
|
@@ -9502,7 +9760,7 @@
|
|
|
9502
9760
|
</li>
|
|
9503
9761
|
|
|
9504
9762
|
<li class="md-nav__item">
|
|
9505
|
-
<a href="#
|
|
9763
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9506
9764
|
<span class="md-ellipsis">
|
|
9507
9765
|
Housekeeping
|
|
9508
9766
|
</span>
|
|
@@ -9535,7 +9793,7 @@
|
|
|
9535
9793
|
</li>
|
|
9536
9794
|
|
|
9537
9795
|
<li class="md-nav__item">
|
|
9538
|
-
<a href="#
|
|
9796
|
+
<a href="#added_4" class="md-nav__link">
|
|
9539
9797
|
<span class="md-ellipsis">
|
|
9540
9798
|
Added
|
|
9541
9799
|
</span>
|
|
@@ -9544,7 +9802,7 @@
|
|
|
9544
9802
|
</li>
|
|
9545
9803
|
|
|
9546
9804
|
<li class="md-nav__item">
|
|
9547
|
-
<a href="#
|
|
9805
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9548
9806
|
<span class="md-ellipsis">
|
|
9549
9807
|
Fixed
|
|
9550
9808
|
</span>
|
|
@@ -9553,7 +9811,7 @@
|
|
|
9553
9811
|
</li>
|
|
9554
9812
|
|
|
9555
9813
|
<li class="md-nav__item">
|
|
9556
|
-
<a href="#
|
|
9814
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9557
9815
|
<span class="md-ellipsis">
|
|
9558
9816
|
Housekeeping
|
|
9559
9817
|
</span>
|
|
@@ -9577,7 +9835,7 @@
|
|
|
9577
9835
|
<ul class="md-nav__list">
|
|
9578
9836
|
|
|
9579
9837
|
<li class="md-nav__item">
|
|
9580
|
-
<a href="#
|
|
9838
|
+
<a href="#added_5" class="md-nav__link">
|
|
9581
9839
|
<span class="md-ellipsis">
|
|
9582
9840
|
Added
|
|
9583
9841
|
</span>
|
|
@@ -9586,7 +9844,7 @@
|
|
|
9586
9844
|
</li>
|
|
9587
9845
|
|
|
9588
9846
|
<li class="md-nav__item">
|
|
9589
|
-
<a href="#
|
|
9847
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9590
9848
|
<span class="md-ellipsis">
|
|
9591
9849
|
Changed
|
|
9592
9850
|
</span>
|
|
@@ -9595,7 +9853,7 @@
|
|
|
9595
9853
|
</li>
|
|
9596
9854
|
|
|
9597
9855
|
<li class="md-nav__item">
|
|
9598
|
-
<a href="#
|
|
9856
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9599
9857
|
<span class="md-ellipsis">
|
|
9600
9858
|
Fixed
|
|
9601
9859
|
</span>
|
|
@@ -9604,7 +9862,7 @@
|
|
|
9604
9862
|
</li>
|
|
9605
9863
|
|
|
9606
9864
|
<li class="md-nav__item">
|
|
9607
|
-
<a href="#
|
|
9865
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9608
9866
|
<span class="md-ellipsis">
|
|
9609
9867
|
Housekeeping
|
|
9610
9868
|
</span>
|
|
@@ -9637,7 +9895,7 @@
|
|
|
9637
9895
|
</li>
|
|
9638
9896
|
|
|
9639
9897
|
<li class="md-nav__item">
|
|
9640
|
-
<a href="#
|
|
9898
|
+
<a href="#added_6" class="md-nav__link">
|
|
9641
9899
|
<span class="md-ellipsis">
|
|
9642
9900
|
Added
|
|
9643
9901
|
</span>
|
|
@@ -9646,7 +9904,7 @@
|
|
|
9646
9904
|
</li>
|
|
9647
9905
|
|
|
9648
9906
|
<li class="md-nav__item">
|
|
9649
|
-
<a href="#
|
|
9907
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9650
9908
|
<span class="md-ellipsis">
|
|
9651
9909
|
Changed
|
|
9652
9910
|
</span>
|
|
@@ -9664,7 +9922,7 @@
|
|
|
9664
9922
|
</li>
|
|
9665
9923
|
|
|
9666
9924
|
<li class="md-nav__item">
|
|
9667
|
-
<a href="#
|
|
9925
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9668
9926
|
<span class="md-ellipsis">
|
|
9669
9927
|
Fixed
|
|
9670
9928
|
</span>
|
|
@@ -9673,7 +9931,7 @@
|
|
|
9673
9931
|
</li>
|
|
9674
9932
|
|
|
9675
9933
|
<li class="md-nav__item">
|
|
9676
|
-
<a href="#
|
|
9934
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9677
9935
|
<span class="md-ellipsis">
|
|
9678
9936
|
Documentation
|
|
9679
9937
|
</span>
|
|
@@ -9682,7 +9940,7 @@
|
|
|
9682
9940
|
</li>
|
|
9683
9941
|
|
|
9684
9942
|
<li class="md-nav__item">
|
|
9685
|
-
<a href="#
|
|
9943
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9686
9944
|
<span class="md-ellipsis">
|
|
9687
9945
|
Housekeeping
|
|
9688
9946
|
</span>
|
|
@@ -9715,7 +9973,7 @@
|
|
|
9715
9973
|
</li>
|
|
9716
9974
|
|
|
9717
9975
|
<li class="md-nav__item">
|
|
9718
|
-
<a href="#
|
|
9976
|
+
<a href="#added_7" class="md-nav__link">
|
|
9719
9977
|
<span class="md-ellipsis">
|
|
9720
9978
|
Added
|
|
9721
9979
|
</span>
|
|
@@ -9724,7 +9982,7 @@
|
|
|
9724
9982
|
</li>
|
|
9725
9983
|
|
|
9726
9984
|
<li class="md-nav__item">
|
|
9727
|
-
<a href="#
|
|
9985
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9728
9986
|
<span class="md-ellipsis">
|
|
9729
9987
|
Changed
|
|
9730
9988
|
</span>
|
|
@@ -9751,7 +10009,7 @@
|
|
|
9751
10009
|
</li>
|
|
9752
10010
|
|
|
9753
10011
|
<li class="md-nav__item">
|
|
9754
|
-
<a href="#
|
|
10012
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9755
10013
|
<span class="md-ellipsis">
|
|
9756
10014
|
Fixed
|
|
9757
10015
|
</span>
|
|
@@ -9760,7 +10018,7 @@
|
|
|
9760
10018
|
</li>
|
|
9761
10019
|
|
|
9762
10020
|
<li class="md-nav__item">
|
|
9763
|
-
<a href="#
|
|
10021
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9764
10022
|
<span class="md-ellipsis">
|
|
9765
10023
|
Dependencies
|
|
9766
10024
|
</span>
|
|
@@ -9769,7 +10027,7 @@
|
|
|
9769
10027
|
</li>
|
|
9770
10028
|
|
|
9771
10029
|
<li class="md-nav__item">
|
|
9772
|
-
<a href="#
|
|
10030
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9773
10031
|
<span class="md-ellipsis">
|
|
9774
10032
|
Documentation
|
|
9775
10033
|
</span>
|
|
@@ -9778,7 +10036,7 @@
|
|
|
9778
10036
|
</li>
|
|
9779
10037
|
|
|
9780
10038
|
<li class="md-nav__item">
|
|
9781
|
-
<a href="#
|
|
10039
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9782
10040
|
<span class="md-ellipsis">
|
|
9783
10041
|
Housekeeping
|
|
9784
10042
|
</span>
|
|
@@ -9846,6 +10104,7 @@
|
|
|
9846
10104
|
</div>
|
|
9847
10105
|
<ul>
|
|
9848
10106
|
<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>
|
|
10107
|
+
<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>
|
|
9849
10108
|
</ul>
|
|
9850
10109
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
9851
10110
|
<h3 id="added">Added<a class="headerlink" href="#added" title="Permanent link">¶</a></h3>
|
|
@@ -9863,6 +10122,11 @@
|
|
|
9863
10122
|
<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>
|
|
9864
10123
|
<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>
|
|
9865
10124
|
<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>
|
|
10125
|
+
<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>
|
|
10126
|
+
<details class="version-added">
|
|
10127
|
+
<summary>Added in version 2.3.6</summary>
|
|
10128
|
+
</details>
|
|
10129
|
+
<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>
|
|
9866
10130
|
<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>
|
|
9867
10131
|
<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>
|
|
9868
10132
|
<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>
|
|
@@ -9895,23 +10159,81 @@
|
|
|
9895
10159
|
<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>
|
|
9896
10160
|
<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>
|
|
9897
10161
|
<!-- towncrier release notes start -->
|
|
9898
|
-
<h2 id="
|
|
10162
|
+
<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>
|
|
9899
10163
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
9900
10164
|
<ul>
|
|
10165
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
10166
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
10167
|
+
</ul>
|
|
10168
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10169
|
+
<ul>
|
|
10170
|
+
<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>
|
|
10171
|
+
<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>
|
|
10172
|
+
</ul>
|
|
10173
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10174
|
+
<ul>
|
|
10175
|
+
<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>
|
|
10176
|
+
<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>
|
|
10177
|
+
</ul>
|
|
10178
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10179
|
+
<ul>
|
|
10180
|
+
<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>
|
|
10181
|
+
</ul>
|
|
10182
|
+
<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>
|
|
10183
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10184
|
+
<ul>
|
|
10185
|
+
<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>
|
|
10186
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
10187
|
+
</ul>
|
|
10188
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10189
|
+
<ul>
|
|
10190
|
+
<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>
|
|
10191
|
+
</ul>
|
|
10192
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10193
|
+
<ul>
|
|
10194
|
+
<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>
|
|
10195
|
+
<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>
|
|
10196
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6170">#6170</a> - Fix Prefix IPAddresses not accounting for Child Prefix IPAddresses in the UI.</li>
|
|
10197
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6217">#6217</a> - Fixed SavedView functionality not working in Rack Elevation List View.</li>
|
|
10198
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6233">#6233</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
|
|
10199
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6248">#6248</a> - Fixed Device Type link and count from Device Family Detail View.</li>
|
|
10200
|
+
<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>
|
|
10201
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
10202
|
+
</ul>
|
|
10203
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10204
|
+
<ul>
|
|
10205
|
+
<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>
|
|
10206
|
+
<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>
|
|
10207
|
+
</ul>
|
|
10208
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10209
|
+
<ul>
|
|
10210
|
+
<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>
|
|
10211
|
+
</ul>
|
|
10212
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10213
|
+
<ul>
|
|
10214
|
+
<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>
|
|
10215
|
+
<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>
|
|
10216
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added support for <code>invoke unittest --no-parallel</code>.</li>
|
|
10217
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6285">#6285</a> - Added support for <code>invoke unittest --no-reusedb</code> and <code>nautobot-server test --no-reusedb</code> to streamline testing when switching frequently between branches.</li>
|
|
10218
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
10219
|
+
</ul>
|
|
10220
|
+
<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>
|
|
10221
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10222
|
+
<ul>
|
|
9901
10223
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
9902
10224
|
<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>
|
|
9903
10225
|
</ul>
|
|
9904
|
-
<h3 id="
|
|
10226
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
9905
10227
|
<ul>
|
|
9906
10228
|
<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>
|
|
9907
10229
|
</ul>
|
|
9908
|
-
<h3 id="
|
|
10230
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
9909
10231
|
<ul>
|
|
9910
10232
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
9911
10233
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
9912
10234
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
9913
10235
|
</ul>
|
|
9914
|
-
<h3 id="
|
|
10236
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
9915
10237
|
<ul>
|
|
9916
10238
|
<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>
|
|
9917
10239
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
|
|
@@ -9919,7 +10241,7 @@
|
|
|
9919
10241
|
<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>
|
|
9920
10242
|
<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>
|
|
9921
10243
|
</ul>
|
|
9922
|
-
<h3 id="
|
|
10244
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
9923
10245
|
<ul>
|
|
9924
10246
|
<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>
|
|
9925
10247
|
<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>
|
|
@@ -9931,18 +10253,18 @@
|
|
|
9931
10253
|
<ul>
|
|
9932
10254
|
<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>
|
|
9933
10255
|
</ul>
|
|
9934
|
-
<h3 id="
|
|
10256
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
9935
10257
|
<ul>
|
|
9936
10258
|
<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>
|
|
9937
10259
|
<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>
|
|
9938
10260
|
<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>
|
|
9939
10261
|
<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>
|
|
9940
10262
|
</ul>
|
|
9941
|
-
<h3 id="
|
|
10263
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
9942
10264
|
<ul>
|
|
9943
10265
|
<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>
|
|
9944
10266
|
</ul>
|
|
9945
|
-
<h3 id="
|
|
10267
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
9946
10268
|
<ul>
|
|
9947
10269
|
<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>
|
|
9948
10270
|
<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>
|
|
@@ -9956,14 +10278,14 @@
|
|
|
9956
10278
|
<ul>
|
|
9957
10279
|
<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>
|
|
9958
10280
|
</ul>
|
|
9959
|
-
<h3 id="
|
|
10281
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
9960
10282
|
<ul>
|
|
9961
10283
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
9962
10284
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
9963
10285
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
9964
10286
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
9965
10287
|
</ul>
|
|
9966
|
-
<h3 id="
|
|
10288
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
9967
10289
|
<ul>
|
|
9968
10290
|
<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>
|
|
9969
10291
|
<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>
|
|
@@ -9972,7 +10294,7 @@
|
|
|
9972
10294
|
<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>
|
|
9973
10295
|
<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>
|
|
9974
10296
|
</ul>
|
|
9975
|
-
<h3 id="
|
|
10297
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
9976
10298
|
<ul>
|
|
9977
10299
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
9978
10300
|
<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>
|
|
@@ -9980,24 +10302,24 @@
|
|
|
9980
10302
|
<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>
|
|
9981
10303
|
</ul>
|
|
9982
10304
|
<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>
|
|
9983
|
-
<h3 id="
|
|
10305
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
9984
10306
|
<ul>
|
|
9985
10307
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
9986
10308
|
<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>
|
|
9987
10309
|
<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>
|
|
9988
10310
|
</ul>
|
|
9989
|
-
<h3 id="
|
|
10311
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
9990
10312
|
<ul>
|
|
9991
10313
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
9992
10314
|
</ul>
|
|
9993
|
-
<h3 id="
|
|
10315
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
9994
10316
|
<ul>
|
|
9995
10317
|
<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>
|
|
9996
10318
|
<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>
|
|
9997
10319
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
9998
10320
|
<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>
|
|
9999
10321
|
</ul>
|
|
10000
|
-
<h3 id="
|
|
10322
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
10001
10323
|
<ul>
|
|
10002
10324
|
<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>
|
|
10003
10325
|
</ul>
|
|
@@ -10006,7 +10328,7 @@
|
|
|
10006
10328
|
<ul>
|
|
10007
10329
|
<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>
|
|
10008
10330
|
</ul>
|
|
10009
|
-
<h3 id="
|
|
10331
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
10010
10332
|
<ul>
|
|
10011
10333
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
10012
10334
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -10016,7 +10338,7 @@
|
|
|
10016
10338
|
<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>
|
|
10017
10339
|
<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>
|
|
10018
10340
|
</ul>
|
|
10019
|
-
<h3 id="
|
|
10341
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
10020
10342
|
<ul>
|
|
10021
10343
|
<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>
|
|
10022
10344
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -10030,7 +10352,7 @@
|
|
|
10030
10352
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
10031
10353
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
10032
10354
|
</ul>
|
|
10033
|
-
<h3 id="
|
|
10355
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
10034
10356
|
<ul>
|
|
10035
10357
|
<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>
|
|
10036
10358
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -10046,7 +10368,7 @@
|
|
|
10046
10368
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
10047
10369
|
<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>
|
|
10048
10370
|
</ul>
|
|
10049
|
-
<h3 id="
|
|
10371
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
10050
10372
|
<ul>
|
|
10051
10373
|
<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>
|
|
10052
10374
|
<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>
|
|
@@ -10054,7 +10376,7 @@
|
|
|
10054
10376
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
10055
10377
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
10056
10378
|
</ul>
|
|
10057
|
-
<h3 id="
|
|
10379
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
10058
10380
|
<ul>
|
|
10059
10381
|
<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>
|
|
10060
10382
|
<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>
|
|
@@ -10069,7 +10391,7 @@
|
|
|
10069
10391
|
<ul>
|
|
10070
10392
|
<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>
|
|
10071
10393
|
</ul>
|
|
10072
|
-
<h3 id="
|
|
10394
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
10073
10395
|
<ul>
|
|
10074
10396
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
10075
10397
|
<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>
|
|
@@ -10116,7 +10438,7 @@
|
|
|
10116
10438
|
<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>
|
|
10117
10439
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
10118
10440
|
</ul>
|
|
10119
|
-
<h3 id="
|
|
10441
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
10120
10442
|
<ul>
|
|
10121
10443
|
<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>
|
|
10122
10444
|
<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>
|
|
@@ -10160,7 +10482,7 @@
|
|
|
10160
10482
|
<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>
|
|
10161
10483
|
<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>
|
|
10162
10484
|
</ul>
|
|
10163
|
-
<h3 id="
|
|
10485
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
10164
10486
|
<ul>
|
|
10165
10487
|
<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>
|
|
10166
10488
|
<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>
|
|
@@ -10184,7 +10506,7 @@
|
|
|
10184
10506
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
10185
10507
|
<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>
|
|
10186
10508
|
</ul>
|
|
10187
|
-
<h3 id="
|
|
10509
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
10188
10510
|
<ul>
|
|
10189
10511
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
10190
10512
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -10210,13 +10532,13 @@
|
|
|
10210
10532
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
|
|
10211
10533
|
<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>
|
|
10212
10534
|
</ul>
|
|
10213
|
-
<h3 id="
|
|
10535
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
10214
10536
|
<ul>
|
|
10215
10537
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
10216
10538
|
<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>
|
|
10217
10539
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
10218
10540
|
</ul>
|
|
10219
|
-
<h3 id="
|
|
10541
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
10220
10542
|
<ul>
|
|
10221
10543
|
<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>
|
|
10222
10544
|
<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>
|
|
@@ -10384,7 +10706,7 @@
|
|
|
10384
10706
|
</div>
|
|
10385
10707
|
|
|
10386
10708
|
|
|
10387
|
-
<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.
|
|
10709
|
+
<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>
|
|
10388
10710
|
|
|
10389
10711
|
|
|
10390
10712
|
<script src="../assets/javascripts/bundle.56dfad97.min.js"></script>
|