nautobot 2.3.13__py3-none-any.whl → 2.3.14__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/circuits/tables.py +2 -1
- nautobot/core/filters.py +2 -0
- nautobot/core/jobs/cleanup.py +47 -11
- nautobot/core/templates/search.html +7 -0
- nautobot/core/testing/filters.py +20 -5
- nautobot/dcim/forms.py +6 -5
- nautobot/dcim/models/devices.py +1 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/extras/forms/mixins.py +10 -2
- nautobot/extras/jobs.py +6 -4
- nautobot/ipam/models.py +62 -11
- nautobot/ipam/tables.py +2 -2
- nautobot/ipam/tests/test_api.py +68 -1
- nautobot/ipam/tests/test_models.py +41 -0
- nautobot/project-static/docs/404.html +1 -1
- nautobot/project-static/docs/apps/index.html +1 -1
- nautobot/project-static/docs/apps/nautobot-apps.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +7 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1 -1
- nautobot/project-static/docs/development/apps/api/configuration-view.html +1 -1
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/global-search.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/graphql.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +1 -1
- nautobot/project-static/docs/development/apps/api/prometheus.html +1 -1
- nautobot/project-static/docs/development/apps/api/setup.html +1 -1
- nautobot/project-static/docs/development/apps/api/testing.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/base-template.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/notes.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/urls.html +1 -1
- nautobot/project-static/docs/development/apps/index.html +1 -1
- nautobot/project-static/docs/development/apps/migration/code-updates.html +1 -1
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +1 -1
- nautobot/project-static/docs/development/apps/migration/from-v1.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +1 -1
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +1 -1
- nautobot/project-static/docs/development/core/application-registry.html +1 -1
- nautobot/project-static/docs/development/core/best-practices.html +1 -1
- nautobot/project-static/docs/development/core/bootstrap-ui.html +1 -1
- nautobot/project-static/docs/development/core/caching.html +1 -1
- nautobot/project-static/docs/development/core/controllers.html +1 -1
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +1 -1
- nautobot/project-static/docs/development/core/generic-views.html +1 -1
- nautobot/project-static/docs/development/core/getting-started.html +154 -140
- nautobot/project-static/docs/development/core/homepage.html +1 -1
- nautobot/project-static/docs/development/core/index.html +1 -1
- nautobot/project-static/docs/development/core/model-checklist.html +1 -1
- nautobot/project-static/docs/development/core/model-features.html +1 -1
- nautobot/project-static/docs/development/core/natural-keys.html +1 -1
- nautobot/project-static/docs/development/core/navigation-menu.html +1 -1
- nautobot/project-static/docs/development/core/release-checklist.html +1 -1
- nautobot/project-static/docs/development/core/role-internals.html +1 -1
- nautobot/project-static/docs/development/core/settings.html +1 -1
- nautobot/project-static/docs/development/core/style-guide.html +1 -1
- nautobot/project-static/docs/development/core/templates.html +1 -1
- nautobot/project-static/docs/development/core/testing.html +1 -1
- nautobot/project-static/docs/development/core/user-preferences.html +1 -1
- nautobot/project-static/docs/development/index.html +1 -1
- nautobot/project-static/docs/development/jobs/index.html +142 -118
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +1 -1
- nautobot/project-static/docs/index.html +1 -1
- nautobot/project-static/docs/overview/application_stack.html +1 -1
- nautobot/project-static/docs/overview/design_philosophy.html +1 -1
- nautobot/project-static/docs/release-notes/index.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.0.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.1.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.2.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.3.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.4.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.5.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.6.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.0.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.1.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.2.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.3.html +332 -181
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +270 -270
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/index.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/services.html +1 -1
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +1 -1
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +1 -1
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +1 -1
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +1 -1
- nautobot/project-static/docs/user-guide/index.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +1 -1
- {nautobot-2.3.13.dist-info → nautobot-2.3.14.dist-info}/METADATA +1 -1
- {nautobot-2.3.13.dist-info → nautobot-2.3.14.dist-info}/RECORD +295 -295
- {nautobot-2.3.13.dist-info → nautobot-2.3.14.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.13.dist-info → nautobot-2.3.14.dist-info}/NOTICE +0 -0
- {nautobot-2.3.13.dist-info → nautobot-2.3.14.dist-info}/WHEEL +0 -0
- {nautobot-2.3.13.dist-info → nautobot-2.3.14.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.48">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -8254,6 +8254,66 @@
|
|
|
8254
8254
|
</ul>
|
|
8255
8255
|
</nav>
|
|
8256
8256
|
|
|
8257
|
+
</li>
|
|
8258
|
+
|
|
8259
|
+
<li class="md-nav__item">
|
|
8260
|
+
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
8261
|
+
<span class="md-ellipsis">
|
|
8262
|
+
v2.3.14 (2024-12-19)
|
|
8263
|
+
</span>
|
|
8264
|
+
</a>
|
|
8265
|
+
|
|
8266
|
+
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
8267
|
+
<ul class="md-nav__list">
|
|
8268
|
+
|
|
8269
|
+
<li class="md-nav__item">
|
|
8270
|
+
<a href="#added_1" class="md-nav__link">
|
|
8271
|
+
<span class="md-ellipsis">
|
|
8272
|
+
Added
|
|
8273
|
+
</span>
|
|
8274
|
+
</a>
|
|
8275
|
+
|
|
8276
|
+
</li>
|
|
8277
|
+
|
|
8278
|
+
<li class="md-nav__item">
|
|
8279
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8280
|
+
<span class="md-ellipsis">
|
|
8281
|
+
Changed
|
|
8282
|
+
</span>
|
|
8283
|
+
</a>
|
|
8284
|
+
|
|
8285
|
+
</li>
|
|
8286
|
+
|
|
8287
|
+
<li class="md-nav__item">
|
|
8288
|
+
<a href="#fixed" class="md-nav__link">
|
|
8289
|
+
<span class="md-ellipsis">
|
|
8290
|
+
Fixed
|
|
8291
|
+
</span>
|
|
8292
|
+
</a>
|
|
8293
|
+
|
|
8294
|
+
</li>
|
|
8295
|
+
|
|
8296
|
+
<li class="md-nav__item">
|
|
8297
|
+
<a href="#documentation" class="md-nav__link">
|
|
8298
|
+
<span class="md-ellipsis">
|
|
8299
|
+
Documentation
|
|
8300
|
+
</span>
|
|
8301
|
+
</a>
|
|
8302
|
+
|
|
8303
|
+
</li>
|
|
8304
|
+
|
|
8305
|
+
<li class="md-nav__item">
|
|
8306
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8307
|
+
<span class="md-ellipsis">
|
|
8308
|
+
Housekeeping
|
|
8309
|
+
</span>
|
|
8310
|
+
</a>
|
|
8311
|
+
|
|
8312
|
+
</li>
|
|
8313
|
+
|
|
8314
|
+
</ul>
|
|
8315
|
+
</nav>
|
|
8316
|
+
|
|
8257
8317
|
</li>
|
|
8258
8318
|
|
|
8259
8319
|
<li class="md-nav__item">
|
|
@@ -8276,7 +8336,7 @@
|
|
|
8276
8336
|
</li>
|
|
8277
8337
|
|
|
8278
8338
|
<li class="md-nav__item">
|
|
8279
|
-
<a href="#
|
|
8339
|
+
<a href="#added_2" class="md-nav__link">
|
|
8280
8340
|
<span class="md-ellipsis">
|
|
8281
8341
|
Added
|
|
8282
8342
|
</span>
|
|
@@ -8285,7 +8345,7 @@
|
|
|
8285
8345
|
</li>
|
|
8286
8346
|
|
|
8287
8347
|
<li class="md-nav__item">
|
|
8288
|
-
<a href="#
|
|
8348
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8289
8349
|
<span class="md-ellipsis">
|
|
8290
8350
|
Changed
|
|
8291
8351
|
</span>
|
|
@@ -8294,7 +8354,7 @@
|
|
|
8294
8354
|
</li>
|
|
8295
8355
|
|
|
8296
8356
|
<li class="md-nav__item">
|
|
8297
|
-
<a href="#
|
|
8357
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8298
8358
|
<span class="md-ellipsis">
|
|
8299
8359
|
Fixed
|
|
8300
8360
|
</span>
|
|
@@ -8312,7 +8372,7 @@
|
|
|
8312
8372
|
</li>
|
|
8313
8373
|
|
|
8314
8374
|
<li class="md-nav__item">
|
|
8315
|
-
<a href="#
|
|
8375
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8316
8376
|
<span class="md-ellipsis">
|
|
8317
8377
|
Documentation
|
|
8318
8378
|
</span>
|
|
@@ -8321,7 +8381,7 @@
|
|
|
8321
8381
|
</li>
|
|
8322
8382
|
|
|
8323
8383
|
<li class="md-nav__item">
|
|
8324
|
-
<a href="#
|
|
8384
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8325
8385
|
<span class="md-ellipsis">
|
|
8326
8386
|
Housekeeping
|
|
8327
8387
|
</span>
|
|
@@ -8345,7 +8405,7 @@
|
|
|
8345
8405
|
<ul class="md-nav__list">
|
|
8346
8406
|
|
|
8347
8407
|
<li class="md-nav__item">
|
|
8348
|
-
<a href="#
|
|
8408
|
+
<a href="#added_3" class="md-nav__link">
|
|
8349
8409
|
<span class="md-ellipsis">
|
|
8350
8410
|
Added
|
|
8351
8411
|
</span>
|
|
@@ -8354,7 +8414,7 @@
|
|
|
8354
8414
|
</li>
|
|
8355
8415
|
|
|
8356
8416
|
<li class="md-nav__item">
|
|
8357
|
-
<a href="#
|
|
8417
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8358
8418
|
<span class="md-ellipsis">
|
|
8359
8419
|
Fixed
|
|
8360
8420
|
</span>
|
|
@@ -8372,7 +8432,7 @@
|
|
|
8372
8432
|
</li>
|
|
8373
8433
|
|
|
8374
8434
|
<li class="md-nav__item">
|
|
8375
|
-
<a href="#
|
|
8435
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8376
8436
|
<span class="md-ellipsis">
|
|
8377
8437
|
Documentation
|
|
8378
8438
|
</span>
|
|
@@ -8381,7 +8441,7 @@
|
|
|
8381
8441
|
</li>
|
|
8382
8442
|
|
|
8383
8443
|
<li class="md-nav__item">
|
|
8384
|
-
<a href="#
|
|
8444
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8385
8445
|
<span class="md-ellipsis">
|
|
8386
8446
|
Housekeeping
|
|
8387
8447
|
</span>
|
|
@@ -8405,7 +8465,7 @@
|
|
|
8405
8465
|
<ul class="md-nav__list">
|
|
8406
8466
|
|
|
8407
8467
|
<li class="md-nav__item">
|
|
8408
|
-
<a href="#
|
|
8468
|
+
<a href="#added_4" class="md-nav__link">
|
|
8409
8469
|
<span class="md-ellipsis">
|
|
8410
8470
|
Added
|
|
8411
8471
|
</span>
|
|
@@ -8414,7 +8474,7 @@
|
|
|
8414
8474
|
</li>
|
|
8415
8475
|
|
|
8416
8476
|
<li class="md-nav__item">
|
|
8417
|
-
<a href="#
|
|
8477
|
+
<a href="#changed_3" class="md-nav__link">
|
|
8418
8478
|
<span class="md-ellipsis">
|
|
8419
8479
|
Changed
|
|
8420
8480
|
</span>
|
|
@@ -8423,7 +8483,7 @@
|
|
|
8423
8483
|
</li>
|
|
8424
8484
|
|
|
8425
8485
|
<li class="md-nav__item">
|
|
8426
|
-
<a href="#
|
|
8486
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8427
8487
|
<span class="md-ellipsis">
|
|
8428
8488
|
Fixed
|
|
8429
8489
|
</span>
|
|
@@ -8432,7 +8492,7 @@
|
|
|
8432
8492
|
</li>
|
|
8433
8493
|
|
|
8434
8494
|
<li class="md-nav__item">
|
|
8435
|
-
<a href="#
|
|
8495
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8436
8496
|
<span class="md-ellipsis">
|
|
8437
8497
|
Documentation
|
|
8438
8498
|
</span>
|
|
@@ -8441,7 +8501,7 @@
|
|
|
8441
8501
|
</li>
|
|
8442
8502
|
|
|
8443
8503
|
<li class="md-nav__item">
|
|
8444
|
-
<a href="#
|
|
8504
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8445
8505
|
<span class="md-ellipsis">
|
|
8446
8506
|
Housekeeping
|
|
8447
8507
|
</span>
|
|
@@ -8465,7 +8525,7 @@
|
|
|
8465
8525
|
<ul class="md-nav__list">
|
|
8466
8526
|
|
|
8467
8527
|
<li class="md-nav__item">
|
|
8468
|
-
<a href="#
|
|
8528
|
+
<a href="#added_5" class="md-nav__link">
|
|
8469
8529
|
<span class="md-ellipsis">
|
|
8470
8530
|
Added
|
|
8471
8531
|
</span>
|
|
@@ -8474,7 +8534,7 @@
|
|
|
8474
8534
|
</li>
|
|
8475
8535
|
|
|
8476
8536
|
<li class="md-nav__item">
|
|
8477
|
-
<a href="#
|
|
8537
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8478
8538
|
<span class="md-ellipsis">
|
|
8479
8539
|
Changed
|
|
8480
8540
|
</span>
|
|
@@ -8483,7 +8543,7 @@
|
|
|
8483
8543
|
</li>
|
|
8484
8544
|
|
|
8485
8545
|
<li class="md-nav__item">
|
|
8486
|
-
<a href="#
|
|
8546
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8487
8547
|
<span class="md-ellipsis">
|
|
8488
8548
|
Fixed
|
|
8489
8549
|
</span>
|
|
@@ -8501,7 +8561,7 @@
|
|
|
8501
8561
|
</li>
|
|
8502
8562
|
|
|
8503
8563
|
<li class="md-nav__item">
|
|
8504
|
-
<a href="#
|
|
8564
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8505
8565
|
<span class="md-ellipsis">
|
|
8506
8566
|
Housekeeping
|
|
8507
8567
|
</span>
|
|
@@ -8525,7 +8585,7 @@
|
|
|
8525
8585
|
<ul class="md-nav__list">
|
|
8526
8586
|
|
|
8527
8587
|
<li class="md-nav__item">
|
|
8528
|
-
<a href="#
|
|
8588
|
+
<a href="#added_6" class="md-nav__link">
|
|
8529
8589
|
<span class="md-ellipsis">
|
|
8530
8590
|
Added
|
|
8531
8591
|
</span>
|
|
@@ -8534,7 +8594,7 @@
|
|
|
8534
8594
|
</li>
|
|
8535
8595
|
|
|
8536
8596
|
<li class="md-nav__item">
|
|
8537
|
-
<a href="#
|
|
8597
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8538
8598
|
<span class="md-ellipsis">
|
|
8539
8599
|
Changed
|
|
8540
8600
|
</span>
|
|
@@ -8543,7 +8603,7 @@
|
|
|
8543
8603
|
</li>
|
|
8544
8604
|
|
|
8545
8605
|
<li class="md-nav__item">
|
|
8546
|
-
<a href="#
|
|
8606
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8547
8607
|
<span class="md-ellipsis">
|
|
8548
8608
|
Fixed
|
|
8549
8609
|
</span>
|
|
@@ -8561,7 +8621,7 @@
|
|
|
8561
8621
|
</li>
|
|
8562
8622
|
|
|
8563
8623
|
<li class="md-nav__item">
|
|
8564
|
-
<a href="#
|
|
8624
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8565
8625
|
<span class="md-ellipsis">
|
|
8566
8626
|
Housekeeping
|
|
8567
8627
|
</span>
|
|
@@ -8585,7 +8645,7 @@
|
|
|
8585
8645
|
<ul class="md-nav__list">
|
|
8586
8646
|
|
|
8587
8647
|
<li class="md-nav__item">
|
|
8588
|
-
<a href="#
|
|
8648
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8589
8649
|
<span class="md-ellipsis">
|
|
8590
8650
|
Fixed
|
|
8591
8651
|
</span>
|
|
@@ -8609,7 +8669,7 @@
|
|
|
8609
8669
|
<ul class="md-nav__list">
|
|
8610
8670
|
|
|
8611
8671
|
<li class="md-nav__item">
|
|
8612
|
-
<a href="#
|
|
8672
|
+
<a href="#added_7" class="md-nav__link">
|
|
8613
8673
|
<span class="md-ellipsis">
|
|
8614
8674
|
Added
|
|
8615
8675
|
</span>
|
|
@@ -8618,7 +8678,7 @@
|
|
|
8618
8678
|
</li>
|
|
8619
8679
|
|
|
8620
8680
|
<li class="md-nav__item">
|
|
8621
|
-
<a href="#
|
|
8681
|
+
<a href="#changed_6" class="md-nav__link">
|
|
8622
8682
|
<span class="md-ellipsis">
|
|
8623
8683
|
Changed
|
|
8624
8684
|
</span>
|
|
@@ -8627,7 +8687,7 @@
|
|
|
8627
8687
|
</li>
|
|
8628
8688
|
|
|
8629
8689
|
<li class="md-nav__item">
|
|
8630
|
-
<a href="#
|
|
8690
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8631
8691
|
<span class="md-ellipsis">
|
|
8632
8692
|
Fixed
|
|
8633
8693
|
</span>
|
|
@@ -8645,7 +8705,7 @@
|
|
|
8645
8705
|
</li>
|
|
8646
8706
|
|
|
8647
8707
|
<li class="md-nav__item">
|
|
8648
|
-
<a href="#
|
|
8708
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8649
8709
|
<span class="md-ellipsis">
|
|
8650
8710
|
Housekeeping
|
|
8651
8711
|
</span>
|
|
@@ -8669,7 +8729,7 @@
|
|
|
8669
8729
|
<ul class="md-nav__list">
|
|
8670
8730
|
|
|
8671
8731
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
8732
|
+
<a href="#added_8" class="md-nav__link">
|
|
8673
8733
|
<span class="md-ellipsis">
|
|
8674
8734
|
Added
|
|
8675
8735
|
</span>
|
|
@@ -8678,7 +8738,7 @@
|
|
|
8678
8738
|
</li>
|
|
8679
8739
|
|
|
8680
8740
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
8741
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8682
8742
|
<span class="md-ellipsis">
|
|
8683
8743
|
Fixed
|
|
8684
8744
|
</span>
|
|
@@ -8687,7 +8747,7 @@
|
|
|
8687
8747
|
</li>
|
|
8688
8748
|
|
|
8689
8749
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#
|
|
8750
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8691
8751
|
<span class="md-ellipsis">
|
|
8692
8752
|
Documentation
|
|
8693
8753
|
</span>
|
|
@@ -8696,7 +8756,7 @@
|
|
|
8696
8756
|
</li>
|
|
8697
8757
|
|
|
8698
8758
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#
|
|
8759
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8700
8760
|
<span class="md-ellipsis">
|
|
8701
8761
|
Housekeeping
|
|
8702
8762
|
</span>
|
|
@@ -8720,7 +8780,7 @@
|
|
|
8720
8780
|
<ul class="md-nav__list">
|
|
8721
8781
|
|
|
8722
8782
|
<li class="md-nav__item">
|
|
8723
|
-
<a href="#
|
|
8783
|
+
<a href="#added_9" class="md-nav__link">
|
|
8724
8784
|
<span class="md-ellipsis">
|
|
8725
8785
|
Added
|
|
8726
8786
|
</span>
|
|
@@ -8729,7 +8789,7 @@
|
|
|
8729
8789
|
</li>
|
|
8730
8790
|
|
|
8731
8791
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
8792
|
+
<a href="#changed_7" class="md-nav__link">
|
|
8733
8793
|
<span class="md-ellipsis">
|
|
8734
8794
|
Changed
|
|
8735
8795
|
</span>
|
|
@@ -8738,7 +8798,7 @@
|
|
|
8738
8798
|
</li>
|
|
8739
8799
|
|
|
8740
8800
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
8801
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8742
8802
|
<span class="md-ellipsis">
|
|
8743
8803
|
Fixed
|
|
8744
8804
|
</span>
|
|
@@ -8756,7 +8816,7 @@
|
|
|
8756
8816
|
</li>
|
|
8757
8817
|
|
|
8758
8818
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
8819
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
8760
8820
|
<span class="md-ellipsis">
|
|
8761
8821
|
Documentation
|
|
8762
8822
|
</span>
|
|
@@ -8765,7 +8825,7 @@
|
|
|
8765
8825
|
</li>
|
|
8766
8826
|
|
|
8767
8827
|
<li class="md-nav__item">
|
|
8768
|
-
<a href="#
|
|
8828
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
8769
8829
|
<span class="md-ellipsis">
|
|
8770
8830
|
Housekeeping
|
|
8771
8831
|
</span>
|
|
@@ -8789,7 +8849,7 @@
|
|
|
8789
8849
|
<ul class="md-nav__list">
|
|
8790
8850
|
|
|
8791
8851
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
8852
|
+
<a href="#added_10" class="md-nav__link">
|
|
8793
8853
|
<span class="md-ellipsis">
|
|
8794
8854
|
Added
|
|
8795
8855
|
</span>
|
|
@@ -8798,7 +8858,7 @@
|
|
|
8798
8858
|
</li>
|
|
8799
8859
|
|
|
8800
8860
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
8861
|
+
<a href="#changed_8" class="md-nav__link">
|
|
8802
8862
|
<span class="md-ellipsis">
|
|
8803
8863
|
Changed
|
|
8804
8864
|
</span>
|
|
@@ -8807,7 +8867,7 @@
|
|
|
8807
8867
|
</li>
|
|
8808
8868
|
|
|
8809
8869
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
8870
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
8811
8871
|
<span class="md-ellipsis">
|
|
8812
8872
|
Fixed
|
|
8813
8873
|
</span>
|
|
@@ -8816,7 +8876,7 @@
|
|
|
8816
8876
|
</li>
|
|
8817
8877
|
|
|
8818
8878
|
<li class="md-nav__item">
|
|
8819
|
-
<a href="#
|
|
8879
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
8820
8880
|
<span class="md-ellipsis">
|
|
8821
8881
|
Documentation
|
|
8822
8882
|
</span>
|
|
@@ -8825,7 +8885,7 @@
|
|
|
8825
8885
|
</li>
|
|
8826
8886
|
|
|
8827
8887
|
<li class="md-nav__item">
|
|
8828
|
-
<a href="#
|
|
8888
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
8829
8889
|
<span class="md-ellipsis">
|
|
8830
8890
|
Housekeeping
|
|
8831
8891
|
</span>
|
|
@@ -8858,7 +8918,7 @@
|
|
|
8858
8918
|
</li>
|
|
8859
8919
|
|
|
8860
8920
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
8921
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
8862
8922
|
<span class="md-ellipsis">
|
|
8863
8923
|
Fixed
|
|
8864
8924
|
</span>
|
|
@@ -8876,7 +8936,7 @@
|
|
|
8876
8936
|
</li>
|
|
8877
8937
|
|
|
8878
8938
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#
|
|
8939
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
8880
8940
|
<span class="md-ellipsis">
|
|
8881
8941
|
Housekeeping
|
|
8882
8942
|
</span>
|
|
@@ -8909,7 +8969,7 @@
|
|
|
8909
8969
|
</li>
|
|
8910
8970
|
|
|
8911
8971
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
8972
|
+
<a href="#added_11" class="md-nav__link">
|
|
8913
8973
|
<span class="md-ellipsis">
|
|
8914
8974
|
Added
|
|
8915
8975
|
</span>
|
|
@@ -8918,7 +8978,7 @@
|
|
|
8918
8978
|
</li>
|
|
8919
8979
|
|
|
8920
8980
|
<li class="md-nav__item">
|
|
8921
|
-
<a href="#
|
|
8981
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
8922
8982
|
<span class="md-ellipsis">
|
|
8923
8983
|
Fixed
|
|
8924
8984
|
</span>
|
|
@@ -8927,7 +8987,7 @@
|
|
|
8927
8987
|
</li>
|
|
8928
8988
|
|
|
8929
8989
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
8990
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
8931
8991
|
<span class="md-ellipsis">
|
|
8932
8992
|
Housekeeping
|
|
8933
8993
|
</span>
|
|
@@ -8951,7 +9011,7 @@
|
|
|
8951
9011
|
<ul class="md-nav__list">
|
|
8952
9012
|
|
|
8953
9013
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9014
|
+
<a href="#added_12" class="md-nav__link">
|
|
8955
9015
|
<span class="md-ellipsis">
|
|
8956
9016
|
Added
|
|
8957
9017
|
</span>
|
|
@@ -8960,7 +9020,7 @@
|
|
|
8960
9020
|
</li>
|
|
8961
9021
|
|
|
8962
9022
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9023
|
+
<a href="#changed_9" class="md-nav__link">
|
|
8964
9024
|
<span class="md-ellipsis">
|
|
8965
9025
|
Changed
|
|
8966
9026
|
</span>
|
|
@@ -8969,7 +9029,7 @@
|
|
|
8969
9029
|
</li>
|
|
8970
9030
|
|
|
8971
9031
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9032
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
8973
9033
|
<span class="md-ellipsis">
|
|
8974
9034
|
Fixed
|
|
8975
9035
|
</span>
|
|
@@ -8978,7 +9038,7 @@
|
|
|
8978
9038
|
</li>
|
|
8979
9039
|
|
|
8980
9040
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#
|
|
9041
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
8982
9042
|
<span class="md-ellipsis">
|
|
8983
9043
|
Housekeeping
|
|
8984
9044
|
</span>
|
|
@@ -9011,7 +9071,7 @@
|
|
|
9011
9071
|
</li>
|
|
9012
9072
|
|
|
9013
9073
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9074
|
+
<a href="#added_13" class="md-nav__link">
|
|
9015
9075
|
<span class="md-ellipsis">
|
|
9016
9076
|
Added
|
|
9017
9077
|
</span>
|
|
@@ -9020,7 +9080,7 @@
|
|
|
9020
9080
|
</li>
|
|
9021
9081
|
|
|
9022
9082
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9083
|
+
<a href="#changed_10" class="md-nav__link">
|
|
9024
9084
|
<span class="md-ellipsis">
|
|
9025
9085
|
Changed
|
|
9026
9086
|
</span>
|
|
@@ -9038,7 +9098,7 @@
|
|
|
9038
9098
|
</li>
|
|
9039
9099
|
|
|
9040
9100
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9101
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
9042
9102
|
<span class="md-ellipsis">
|
|
9043
9103
|
Fixed
|
|
9044
9104
|
</span>
|
|
@@ -9047,7 +9107,7 @@
|
|
|
9047
9107
|
</li>
|
|
9048
9108
|
|
|
9049
9109
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
9110
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
9051
9111
|
<span class="md-ellipsis">
|
|
9052
9112
|
Documentation
|
|
9053
9113
|
</span>
|
|
@@ -9056,7 +9116,7 @@
|
|
|
9056
9116
|
</li>
|
|
9057
9117
|
|
|
9058
9118
|
<li class="md-nav__item">
|
|
9059
|
-
<a href="#
|
|
9119
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
9060
9120
|
<span class="md-ellipsis">
|
|
9061
9121
|
Housekeeping
|
|
9062
9122
|
</span>
|
|
@@ -9089,7 +9149,7 @@
|
|
|
9089
9149
|
</li>
|
|
9090
9150
|
|
|
9091
9151
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9152
|
+
<a href="#added_14" class="md-nav__link">
|
|
9093
9153
|
<span class="md-ellipsis">
|
|
9094
9154
|
Added
|
|
9095
9155
|
</span>
|
|
@@ -9098,7 +9158,7 @@
|
|
|
9098
9158
|
</li>
|
|
9099
9159
|
|
|
9100
9160
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
9161
|
+
<a href="#changed_11" class="md-nav__link">
|
|
9102
9162
|
<span class="md-ellipsis">
|
|
9103
9163
|
Changed
|
|
9104
9164
|
</span>
|
|
@@ -9125,7 +9185,7 @@
|
|
|
9125
9185
|
</li>
|
|
9126
9186
|
|
|
9127
9187
|
<li class="md-nav__item">
|
|
9128
|
-
<a href="#
|
|
9188
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
9129
9189
|
<span class="md-ellipsis">
|
|
9130
9190
|
Fixed
|
|
9131
9191
|
</span>
|
|
@@ -9143,7 +9203,7 @@
|
|
|
9143
9203
|
</li>
|
|
9144
9204
|
|
|
9145
9205
|
<li class="md-nav__item">
|
|
9146
|
-
<a href="#
|
|
9206
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
9147
9207
|
<span class="md-ellipsis">
|
|
9148
9208
|
Documentation
|
|
9149
9209
|
</span>
|
|
@@ -9152,7 +9212,7 @@
|
|
|
9152
9212
|
</li>
|
|
9153
9213
|
|
|
9154
9214
|
<li class="md-nav__item">
|
|
9155
|
-
<a href="#
|
|
9215
|
+
<a href="#housekeeping_14" class="md-nav__link">
|
|
9156
9216
|
<span class="md-ellipsis">
|
|
9157
9217
|
Housekeeping
|
|
9158
9218
|
</span>
|
|
@@ -9963,6 +10023,66 @@
|
|
|
9963
10023
|
</ul>
|
|
9964
10024
|
</nav>
|
|
9965
10025
|
|
|
10026
|
+
</li>
|
|
10027
|
+
|
|
10028
|
+
<li class="md-nav__item">
|
|
10029
|
+
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
10030
|
+
<span class="md-ellipsis">
|
|
10031
|
+
v2.3.14 (2024-12-19)
|
|
10032
|
+
</span>
|
|
10033
|
+
</a>
|
|
10034
|
+
|
|
10035
|
+
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
10036
|
+
<ul class="md-nav__list">
|
|
10037
|
+
|
|
10038
|
+
<li class="md-nav__item">
|
|
10039
|
+
<a href="#added_1" class="md-nav__link">
|
|
10040
|
+
<span class="md-ellipsis">
|
|
10041
|
+
Added
|
|
10042
|
+
</span>
|
|
10043
|
+
</a>
|
|
10044
|
+
|
|
10045
|
+
</li>
|
|
10046
|
+
|
|
10047
|
+
<li class="md-nav__item">
|
|
10048
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10049
|
+
<span class="md-ellipsis">
|
|
10050
|
+
Changed
|
|
10051
|
+
</span>
|
|
10052
|
+
</a>
|
|
10053
|
+
|
|
10054
|
+
</li>
|
|
10055
|
+
|
|
10056
|
+
<li class="md-nav__item">
|
|
10057
|
+
<a href="#fixed" class="md-nav__link">
|
|
10058
|
+
<span class="md-ellipsis">
|
|
10059
|
+
Fixed
|
|
10060
|
+
</span>
|
|
10061
|
+
</a>
|
|
10062
|
+
|
|
10063
|
+
</li>
|
|
10064
|
+
|
|
10065
|
+
<li class="md-nav__item">
|
|
10066
|
+
<a href="#documentation" class="md-nav__link">
|
|
10067
|
+
<span class="md-ellipsis">
|
|
10068
|
+
Documentation
|
|
10069
|
+
</span>
|
|
10070
|
+
</a>
|
|
10071
|
+
|
|
10072
|
+
</li>
|
|
10073
|
+
|
|
10074
|
+
<li class="md-nav__item">
|
|
10075
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10076
|
+
<span class="md-ellipsis">
|
|
10077
|
+
Housekeeping
|
|
10078
|
+
</span>
|
|
10079
|
+
</a>
|
|
10080
|
+
|
|
10081
|
+
</li>
|
|
10082
|
+
|
|
10083
|
+
</ul>
|
|
10084
|
+
</nav>
|
|
10085
|
+
|
|
9966
10086
|
</li>
|
|
9967
10087
|
|
|
9968
10088
|
<li class="md-nav__item">
|
|
@@ -9985,7 +10105,7 @@
|
|
|
9985
10105
|
</li>
|
|
9986
10106
|
|
|
9987
10107
|
<li class="md-nav__item">
|
|
9988
|
-
<a href="#
|
|
10108
|
+
<a href="#added_2" class="md-nav__link">
|
|
9989
10109
|
<span class="md-ellipsis">
|
|
9990
10110
|
Added
|
|
9991
10111
|
</span>
|
|
@@ -9994,7 +10114,7 @@
|
|
|
9994
10114
|
</li>
|
|
9995
10115
|
|
|
9996
10116
|
<li class="md-nav__item">
|
|
9997
|
-
<a href="#
|
|
10117
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9998
10118
|
<span class="md-ellipsis">
|
|
9999
10119
|
Changed
|
|
10000
10120
|
</span>
|
|
@@ -10003,7 +10123,7 @@
|
|
|
10003
10123
|
</li>
|
|
10004
10124
|
|
|
10005
10125
|
<li class="md-nav__item">
|
|
10006
|
-
<a href="#
|
|
10126
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10007
10127
|
<span class="md-ellipsis">
|
|
10008
10128
|
Fixed
|
|
10009
10129
|
</span>
|
|
@@ -10021,7 +10141,7 @@
|
|
|
10021
10141
|
</li>
|
|
10022
10142
|
|
|
10023
10143
|
<li class="md-nav__item">
|
|
10024
|
-
<a href="#
|
|
10144
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10025
10145
|
<span class="md-ellipsis">
|
|
10026
10146
|
Documentation
|
|
10027
10147
|
</span>
|
|
@@ -10030,7 +10150,7 @@
|
|
|
10030
10150
|
</li>
|
|
10031
10151
|
|
|
10032
10152
|
<li class="md-nav__item">
|
|
10033
|
-
<a href="#
|
|
10153
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10034
10154
|
<span class="md-ellipsis">
|
|
10035
10155
|
Housekeeping
|
|
10036
10156
|
</span>
|
|
@@ -10054,7 +10174,7 @@
|
|
|
10054
10174
|
<ul class="md-nav__list">
|
|
10055
10175
|
|
|
10056
10176
|
<li class="md-nav__item">
|
|
10057
|
-
<a href="#
|
|
10177
|
+
<a href="#added_3" class="md-nav__link">
|
|
10058
10178
|
<span class="md-ellipsis">
|
|
10059
10179
|
Added
|
|
10060
10180
|
</span>
|
|
@@ -10063,7 +10183,7 @@
|
|
|
10063
10183
|
</li>
|
|
10064
10184
|
|
|
10065
10185
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#
|
|
10186
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10067
10187
|
<span class="md-ellipsis">
|
|
10068
10188
|
Fixed
|
|
10069
10189
|
</span>
|
|
@@ -10081,7 +10201,7 @@
|
|
|
10081
10201
|
</li>
|
|
10082
10202
|
|
|
10083
10203
|
<li class="md-nav__item">
|
|
10084
|
-
<a href="#
|
|
10204
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10085
10205
|
<span class="md-ellipsis">
|
|
10086
10206
|
Documentation
|
|
10087
10207
|
</span>
|
|
@@ -10090,7 +10210,7 @@
|
|
|
10090
10210
|
</li>
|
|
10091
10211
|
|
|
10092
10212
|
<li class="md-nav__item">
|
|
10093
|
-
<a href="#
|
|
10213
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10094
10214
|
<span class="md-ellipsis">
|
|
10095
10215
|
Housekeeping
|
|
10096
10216
|
</span>
|
|
@@ -10114,7 +10234,7 @@
|
|
|
10114
10234
|
<ul class="md-nav__list">
|
|
10115
10235
|
|
|
10116
10236
|
<li class="md-nav__item">
|
|
10117
|
-
<a href="#
|
|
10237
|
+
<a href="#added_4" class="md-nav__link">
|
|
10118
10238
|
<span class="md-ellipsis">
|
|
10119
10239
|
Added
|
|
10120
10240
|
</span>
|
|
@@ -10123,7 +10243,7 @@
|
|
|
10123
10243
|
</li>
|
|
10124
10244
|
|
|
10125
10245
|
<li class="md-nav__item">
|
|
10126
|
-
<a href="#
|
|
10246
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10127
10247
|
<span class="md-ellipsis">
|
|
10128
10248
|
Changed
|
|
10129
10249
|
</span>
|
|
@@ -10132,7 +10252,7 @@
|
|
|
10132
10252
|
</li>
|
|
10133
10253
|
|
|
10134
10254
|
<li class="md-nav__item">
|
|
10135
|
-
<a href="#
|
|
10255
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10136
10256
|
<span class="md-ellipsis">
|
|
10137
10257
|
Fixed
|
|
10138
10258
|
</span>
|
|
@@ -10141,7 +10261,7 @@
|
|
|
10141
10261
|
</li>
|
|
10142
10262
|
|
|
10143
10263
|
<li class="md-nav__item">
|
|
10144
|
-
<a href="#
|
|
10264
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10145
10265
|
<span class="md-ellipsis">
|
|
10146
10266
|
Documentation
|
|
10147
10267
|
</span>
|
|
@@ -10150,7 +10270,7 @@
|
|
|
10150
10270
|
</li>
|
|
10151
10271
|
|
|
10152
10272
|
<li class="md-nav__item">
|
|
10153
|
-
<a href="#
|
|
10273
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10154
10274
|
<span class="md-ellipsis">
|
|
10155
10275
|
Housekeeping
|
|
10156
10276
|
</span>
|
|
@@ -10174,7 +10294,7 @@
|
|
|
10174
10294
|
<ul class="md-nav__list">
|
|
10175
10295
|
|
|
10176
10296
|
<li class="md-nav__item">
|
|
10177
|
-
<a href="#
|
|
10297
|
+
<a href="#added_5" class="md-nav__link">
|
|
10178
10298
|
<span class="md-ellipsis">
|
|
10179
10299
|
Added
|
|
10180
10300
|
</span>
|
|
@@ -10183,7 +10303,7 @@
|
|
|
10183
10303
|
</li>
|
|
10184
10304
|
|
|
10185
10305
|
<li class="md-nav__item">
|
|
10186
|
-
<a href="#
|
|
10306
|
+
<a href="#changed_4" class="md-nav__link">
|
|
10187
10307
|
<span class="md-ellipsis">
|
|
10188
10308
|
Changed
|
|
10189
10309
|
</span>
|
|
@@ -10192,7 +10312,7 @@
|
|
|
10192
10312
|
</li>
|
|
10193
10313
|
|
|
10194
10314
|
<li class="md-nav__item">
|
|
10195
|
-
<a href="#
|
|
10315
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10196
10316
|
<span class="md-ellipsis">
|
|
10197
10317
|
Fixed
|
|
10198
10318
|
</span>
|
|
@@ -10210,7 +10330,7 @@
|
|
|
10210
10330
|
</li>
|
|
10211
10331
|
|
|
10212
10332
|
<li class="md-nav__item">
|
|
10213
|
-
<a href="#
|
|
10333
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10214
10334
|
<span class="md-ellipsis">
|
|
10215
10335
|
Housekeeping
|
|
10216
10336
|
</span>
|
|
@@ -10234,7 +10354,7 @@
|
|
|
10234
10354
|
<ul class="md-nav__list">
|
|
10235
10355
|
|
|
10236
10356
|
<li class="md-nav__item">
|
|
10237
|
-
<a href="#
|
|
10357
|
+
<a href="#added_6" class="md-nav__link">
|
|
10238
10358
|
<span class="md-ellipsis">
|
|
10239
10359
|
Added
|
|
10240
10360
|
</span>
|
|
@@ -10243,7 +10363,7 @@
|
|
|
10243
10363
|
</li>
|
|
10244
10364
|
|
|
10245
10365
|
<li class="md-nav__item">
|
|
10246
|
-
<a href="#
|
|
10366
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10247
10367
|
<span class="md-ellipsis">
|
|
10248
10368
|
Changed
|
|
10249
10369
|
</span>
|
|
@@ -10252,7 +10372,7 @@
|
|
|
10252
10372
|
</li>
|
|
10253
10373
|
|
|
10254
10374
|
<li class="md-nav__item">
|
|
10255
|
-
<a href="#
|
|
10375
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10256
10376
|
<span class="md-ellipsis">
|
|
10257
10377
|
Fixed
|
|
10258
10378
|
</span>
|
|
@@ -10270,7 +10390,7 @@
|
|
|
10270
10390
|
</li>
|
|
10271
10391
|
|
|
10272
10392
|
<li class="md-nav__item">
|
|
10273
|
-
<a href="#
|
|
10393
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10274
10394
|
<span class="md-ellipsis">
|
|
10275
10395
|
Housekeeping
|
|
10276
10396
|
</span>
|
|
@@ -10294,7 +10414,7 @@
|
|
|
10294
10414
|
<ul class="md-nav__list">
|
|
10295
10415
|
|
|
10296
10416
|
<li class="md-nav__item">
|
|
10297
|
-
<a href="#
|
|
10417
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10298
10418
|
<span class="md-ellipsis">
|
|
10299
10419
|
Fixed
|
|
10300
10420
|
</span>
|
|
@@ -10318,7 +10438,7 @@
|
|
|
10318
10438
|
<ul class="md-nav__list">
|
|
10319
10439
|
|
|
10320
10440
|
<li class="md-nav__item">
|
|
10321
|
-
<a href="#
|
|
10441
|
+
<a href="#added_7" class="md-nav__link">
|
|
10322
10442
|
<span class="md-ellipsis">
|
|
10323
10443
|
Added
|
|
10324
10444
|
</span>
|
|
@@ -10327,7 +10447,7 @@
|
|
|
10327
10447
|
</li>
|
|
10328
10448
|
|
|
10329
10449
|
<li class="md-nav__item">
|
|
10330
|
-
<a href="#
|
|
10450
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10331
10451
|
<span class="md-ellipsis">
|
|
10332
10452
|
Changed
|
|
10333
10453
|
</span>
|
|
@@ -10336,7 +10456,7 @@
|
|
|
10336
10456
|
</li>
|
|
10337
10457
|
|
|
10338
10458
|
<li class="md-nav__item">
|
|
10339
|
-
<a href="#
|
|
10459
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10340
10460
|
<span class="md-ellipsis">
|
|
10341
10461
|
Fixed
|
|
10342
10462
|
</span>
|
|
@@ -10354,7 +10474,7 @@
|
|
|
10354
10474
|
</li>
|
|
10355
10475
|
|
|
10356
10476
|
<li class="md-nav__item">
|
|
10357
|
-
<a href="#
|
|
10477
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10358
10478
|
<span class="md-ellipsis">
|
|
10359
10479
|
Housekeeping
|
|
10360
10480
|
</span>
|
|
@@ -10378,7 +10498,7 @@
|
|
|
10378
10498
|
<ul class="md-nav__list">
|
|
10379
10499
|
|
|
10380
10500
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#
|
|
10501
|
+
<a href="#added_8" class="md-nav__link">
|
|
10382
10502
|
<span class="md-ellipsis">
|
|
10383
10503
|
Added
|
|
10384
10504
|
</span>
|
|
@@ -10387,7 +10507,7 @@
|
|
|
10387
10507
|
</li>
|
|
10388
10508
|
|
|
10389
10509
|
<li class="md-nav__item">
|
|
10390
|
-
<a href="#
|
|
10510
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10391
10511
|
<span class="md-ellipsis">
|
|
10392
10512
|
Fixed
|
|
10393
10513
|
</span>
|
|
@@ -10396,7 +10516,7 @@
|
|
|
10396
10516
|
</li>
|
|
10397
10517
|
|
|
10398
10518
|
<li class="md-nav__item">
|
|
10399
|
-
<a href="#
|
|
10519
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10400
10520
|
<span class="md-ellipsis">
|
|
10401
10521
|
Documentation
|
|
10402
10522
|
</span>
|
|
@@ -10405,7 +10525,7 @@
|
|
|
10405
10525
|
</li>
|
|
10406
10526
|
|
|
10407
10527
|
<li class="md-nav__item">
|
|
10408
|
-
<a href="#
|
|
10528
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10409
10529
|
<span class="md-ellipsis">
|
|
10410
10530
|
Housekeeping
|
|
10411
10531
|
</span>
|
|
@@ -10429,7 +10549,7 @@
|
|
|
10429
10549
|
<ul class="md-nav__list">
|
|
10430
10550
|
|
|
10431
10551
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
10552
|
+
<a href="#added_9" class="md-nav__link">
|
|
10433
10553
|
<span class="md-ellipsis">
|
|
10434
10554
|
Added
|
|
10435
10555
|
</span>
|
|
@@ -10438,7 +10558,7 @@
|
|
|
10438
10558
|
</li>
|
|
10439
10559
|
|
|
10440
10560
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10561
|
+
<a href="#changed_7" class="md-nav__link">
|
|
10442
10562
|
<span class="md-ellipsis">
|
|
10443
10563
|
Changed
|
|
10444
10564
|
</span>
|
|
@@ -10447,7 +10567,7 @@
|
|
|
10447
10567
|
</li>
|
|
10448
10568
|
|
|
10449
10569
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10570
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10451
10571
|
<span class="md-ellipsis">
|
|
10452
10572
|
Fixed
|
|
10453
10573
|
</span>
|
|
@@ -10465,7 +10585,7 @@
|
|
|
10465
10585
|
</li>
|
|
10466
10586
|
|
|
10467
10587
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10588
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
10469
10589
|
<span class="md-ellipsis">
|
|
10470
10590
|
Documentation
|
|
10471
10591
|
</span>
|
|
@@ -10474,7 +10594,7 @@
|
|
|
10474
10594
|
</li>
|
|
10475
10595
|
|
|
10476
10596
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10597
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10478
10598
|
<span class="md-ellipsis">
|
|
10479
10599
|
Housekeeping
|
|
10480
10600
|
</span>
|
|
@@ -10498,7 +10618,7 @@
|
|
|
10498
10618
|
<ul class="md-nav__list">
|
|
10499
10619
|
|
|
10500
10620
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10621
|
+
<a href="#added_10" class="md-nav__link">
|
|
10502
10622
|
<span class="md-ellipsis">
|
|
10503
10623
|
Added
|
|
10504
10624
|
</span>
|
|
@@ -10507,7 +10627,7 @@
|
|
|
10507
10627
|
</li>
|
|
10508
10628
|
|
|
10509
10629
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
10630
|
+
<a href="#changed_8" class="md-nav__link">
|
|
10511
10631
|
<span class="md-ellipsis">
|
|
10512
10632
|
Changed
|
|
10513
10633
|
</span>
|
|
@@ -10516,7 +10636,7 @@
|
|
|
10516
10636
|
</li>
|
|
10517
10637
|
|
|
10518
10638
|
<li class="md-nav__item">
|
|
10519
|
-
<a href="#
|
|
10639
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10520
10640
|
<span class="md-ellipsis">
|
|
10521
10641
|
Fixed
|
|
10522
10642
|
</span>
|
|
@@ -10525,7 +10645,7 @@
|
|
|
10525
10645
|
</li>
|
|
10526
10646
|
|
|
10527
10647
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
10648
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10529
10649
|
<span class="md-ellipsis">
|
|
10530
10650
|
Documentation
|
|
10531
10651
|
</span>
|
|
@@ -10534,7 +10654,7 @@
|
|
|
10534
10654
|
</li>
|
|
10535
10655
|
|
|
10536
10656
|
<li class="md-nav__item">
|
|
10537
|
-
<a href="#
|
|
10657
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
10538
10658
|
<span class="md-ellipsis">
|
|
10539
10659
|
Housekeeping
|
|
10540
10660
|
</span>
|
|
@@ -10567,7 +10687,7 @@
|
|
|
10567
10687
|
</li>
|
|
10568
10688
|
|
|
10569
10689
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10690
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
10571
10691
|
<span class="md-ellipsis">
|
|
10572
10692
|
Fixed
|
|
10573
10693
|
</span>
|
|
@@ -10585,7 +10705,7 @@
|
|
|
10585
10705
|
</li>
|
|
10586
10706
|
|
|
10587
10707
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
10708
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
10589
10709
|
<span class="md-ellipsis">
|
|
10590
10710
|
Housekeeping
|
|
10591
10711
|
</span>
|
|
@@ -10618,7 +10738,7 @@
|
|
|
10618
10738
|
</li>
|
|
10619
10739
|
|
|
10620
10740
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10741
|
+
<a href="#added_11" class="md-nav__link">
|
|
10622
10742
|
<span class="md-ellipsis">
|
|
10623
10743
|
Added
|
|
10624
10744
|
</span>
|
|
@@ -10627,7 +10747,7 @@
|
|
|
10627
10747
|
</li>
|
|
10628
10748
|
|
|
10629
10749
|
<li class="md-nav__item">
|
|
10630
|
-
<a href="#
|
|
10750
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
10631
10751
|
<span class="md-ellipsis">
|
|
10632
10752
|
Fixed
|
|
10633
10753
|
</span>
|
|
@@ -10636,7 +10756,7 @@
|
|
|
10636
10756
|
</li>
|
|
10637
10757
|
|
|
10638
10758
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
10759
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
10640
10760
|
<span class="md-ellipsis">
|
|
10641
10761
|
Housekeeping
|
|
10642
10762
|
</span>
|
|
@@ -10660,7 +10780,7 @@
|
|
|
10660
10780
|
<ul class="md-nav__list">
|
|
10661
10781
|
|
|
10662
10782
|
<li class="md-nav__item">
|
|
10663
|
-
<a href="#
|
|
10783
|
+
<a href="#added_12" class="md-nav__link">
|
|
10664
10784
|
<span class="md-ellipsis">
|
|
10665
10785
|
Added
|
|
10666
10786
|
</span>
|
|
@@ -10669,7 +10789,7 @@
|
|
|
10669
10789
|
</li>
|
|
10670
10790
|
|
|
10671
10791
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10792
|
+
<a href="#changed_9" class="md-nav__link">
|
|
10673
10793
|
<span class="md-ellipsis">
|
|
10674
10794
|
Changed
|
|
10675
10795
|
</span>
|
|
@@ -10678,7 +10798,7 @@
|
|
|
10678
10798
|
</li>
|
|
10679
10799
|
|
|
10680
10800
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10801
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
10682
10802
|
<span class="md-ellipsis">
|
|
10683
10803
|
Fixed
|
|
10684
10804
|
</span>
|
|
@@ -10687,7 +10807,7 @@
|
|
|
10687
10807
|
</li>
|
|
10688
10808
|
|
|
10689
10809
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#
|
|
10810
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
10691
10811
|
<span class="md-ellipsis">
|
|
10692
10812
|
Housekeeping
|
|
10693
10813
|
</span>
|
|
@@ -10720,7 +10840,7 @@
|
|
|
10720
10840
|
</li>
|
|
10721
10841
|
|
|
10722
10842
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
10843
|
+
<a href="#added_13" class="md-nav__link">
|
|
10724
10844
|
<span class="md-ellipsis">
|
|
10725
10845
|
Added
|
|
10726
10846
|
</span>
|
|
@@ -10729,7 +10849,7 @@
|
|
|
10729
10849
|
</li>
|
|
10730
10850
|
|
|
10731
10851
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#
|
|
10852
|
+
<a href="#changed_10" class="md-nav__link">
|
|
10733
10853
|
<span class="md-ellipsis">
|
|
10734
10854
|
Changed
|
|
10735
10855
|
</span>
|
|
@@ -10747,7 +10867,7 @@
|
|
|
10747
10867
|
</li>
|
|
10748
10868
|
|
|
10749
10869
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10870
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
10751
10871
|
<span class="md-ellipsis">
|
|
10752
10872
|
Fixed
|
|
10753
10873
|
</span>
|
|
@@ -10756,7 +10876,7 @@
|
|
|
10756
10876
|
</li>
|
|
10757
10877
|
|
|
10758
10878
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
10879
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10760
10880
|
<span class="md-ellipsis">
|
|
10761
10881
|
Documentation
|
|
10762
10882
|
</span>
|
|
@@ -10765,7 +10885,7 @@
|
|
|
10765
10885
|
</li>
|
|
10766
10886
|
|
|
10767
10887
|
<li class="md-nav__item">
|
|
10768
|
-
<a href="#
|
|
10888
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
10769
10889
|
<span class="md-ellipsis">
|
|
10770
10890
|
Housekeeping
|
|
10771
10891
|
</span>
|
|
@@ -10798,7 +10918,7 @@
|
|
|
10798
10918
|
</li>
|
|
10799
10919
|
|
|
10800
10920
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
10921
|
+
<a href="#added_14" class="md-nav__link">
|
|
10802
10922
|
<span class="md-ellipsis">
|
|
10803
10923
|
Added
|
|
10804
10924
|
</span>
|
|
@@ -10807,7 +10927,7 @@
|
|
|
10807
10927
|
</li>
|
|
10808
10928
|
|
|
10809
10929
|
<li class="md-nav__item">
|
|
10810
|
-
<a href="#
|
|
10930
|
+
<a href="#changed_11" class="md-nav__link">
|
|
10811
10931
|
<span class="md-ellipsis">
|
|
10812
10932
|
Changed
|
|
10813
10933
|
</span>
|
|
@@ -10834,7 +10954,7 @@
|
|
|
10834
10954
|
</li>
|
|
10835
10955
|
|
|
10836
10956
|
<li class="md-nav__item">
|
|
10837
|
-
<a href="#
|
|
10957
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
10838
10958
|
<span class="md-ellipsis">
|
|
10839
10959
|
Fixed
|
|
10840
10960
|
</span>
|
|
@@ -10852,7 +10972,7 @@
|
|
|
10852
10972
|
</li>
|
|
10853
10973
|
|
|
10854
10974
|
<li class="md-nav__item">
|
|
10855
|
-
<a href="#
|
|
10975
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
10856
10976
|
<span class="md-ellipsis">
|
|
10857
10977
|
Documentation
|
|
10858
10978
|
</span>
|
|
@@ -10861,7 +10981,7 @@
|
|
|
10861
10981
|
</li>
|
|
10862
10982
|
|
|
10863
10983
|
<li class="md-nav__item">
|
|
10864
|
-
<a href="#
|
|
10984
|
+
<a href="#housekeeping_14" class="md-nav__link">
|
|
10865
10985
|
<span class="md-ellipsis">
|
|
10866
10986
|
Housekeeping
|
|
10867
10987
|
</span>
|
|
@@ -10984,12 +11104,43 @@
|
|
|
10984
11104
|
<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>
|
|
10985
11105
|
<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>
|
|
10986
11106
|
<!-- towncrier release notes start -->
|
|
11107
|
+
<h2 id="v2314-2024-12-19">v2.3.14 (2024-12-19)<a class="headerlink" href="#v2314-2024-12-19" title="Permanent link">¶</a></h2>
|
|
11108
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
11109
|
+
<ul>
|
|
11110
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Added logic to set the <code>parent</code> in the <code>clean()</code> method of the Prefix model, ensuring correct assignment during validation.</li>
|
|
11111
|
+
</ul>
|
|
11112
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
11113
|
+
<ul>
|
|
11114
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6518">#6518</a> - Added VRFs column to Prefixes and Child Prefixes tables.</li>
|
|
11115
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6531">#6531</a> - Restrict the <code>id</code> filter field to use to only the <code>__n</code> (negation) lookup filter.</li>
|
|
11116
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Changed the save method of the <code>Prefix</code> model to reparent subnets and IPs only when the <code>network</code>, <code>namespace</code>, or <code>prefix_length</code> fields are updated.</li>
|
|
11117
|
+
</ul>
|
|
11118
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11119
|
+
<ul>
|
|
11120
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4056">#4056</a> - Fixed filter of add_tags and remove_tags of bulkedit based on content type</li>
|
|
11121
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6204">#6204</a> - Fixed out-of-memory errors when <code>LogsCleanup</code> system job resulted in cascade deletion of many related objects (such as <code>JobLogEntry</code> or <code>nautobot_ssot.SyncLogEntry</code> records).</li>
|
|
11122
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6470">#6470</a> - Fixed untagged VLAN dropdown options mismatch in InterfaceEditForm and in InterfaceBulkEditForm.</li>
|
|
11123
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6496">#6496</a> - Fixed <code>/ipam/prefixes/<UUID>/available-ips/</code> to correctly consider IPs under child Prefixes.</li>
|
|
11124
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6496">#6496</a> - Fixed <code>Prefix.get_first_available_ip()</code> method to not return IP taken by child Prefixes.</li>
|
|
11125
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6664">#6664</a> - Fixed <code>circuit_type</code> column not included correctly in CircuitTable default columns.</li>
|
|
11126
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6678">#6678</a> - Fixed incorrect copy button behavior on global search page.</li>
|
|
11127
|
+
</ul>
|
|
11128
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11129
|
+
<ul>
|
|
11130
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6590">#6590</a> - Added an <code>ExampleEverythingJob</code> to the Example App and updated Job developer documentation to reference it as an example.</li>
|
|
11131
|
+
</ul>
|
|
11132
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11133
|
+
<ul>
|
|
11134
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6657">#6657</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.48</code>.</li>
|
|
11135
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6659">#6659</a> - Enhanced development environment and associated <code>invoke</code> tasks to be Nautobot major/minor version aware, such that a different Docker compose <code>project-name</code> (and different local Docker image label) will be used for containers in a <code>develop</code>-based branch versus a <code>next</code>-based branch.</li>
|
|
11136
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6679">#6679</a> - Added <code>logs</code> task to <code>tasks.py</code> to view the logs of a docker compose service.</li>
|
|
11137
|
+
</ul>
|
|
10987
11138
|
<h2 id="v2313-2024-12-10">v2.3.13 (2024-12-10)<a class="headerlink" href="#v2313-2024-12-10" title="Permanent link">¶</a></h2>
|
|
10988
11139
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10989
11140
|
<ul>
|
|
10990
11141
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>Django</code> to <code>~4.2.17</code> due to <code>CVE-2024-53907</code> and <code>CVE-2024-53908</code>.</li>
|
|
10991
11142
|
</ul>
|
|
10992
|
-
<h3 id="
|
|
11143
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10993
11144
|
<ul>
|
|
10994
11145
|
<li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
|
|
10995
11146
|
<li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
|
|
@@ -11001,11 +11152,11 @@
|
|
|
11001
11152
|
<li><a href="https://github.com/nautobot/nautobot/issues/6613">#6613</a> - Enhanced Prefix detail view "Child Prefixes" table to render associated Locations more intelligently.</li>
|
|
11002
11153
|
<li><a href="https://github.com/nautobot/nautobot/issues/6614">#6614</a> - Enhanced IP Address tables to show the name of the associated Interface or VM Interface if only a single such association is present for a given IP Address.</li>
|
|
11003
11154
|
</ul>
|
|
11004
|
-
<h3 id="
|
|
11155
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11005
11156
|
<ul>
|
|
11006
11157
|
<li><a href="https://github.com/nautobot/nautobot/issues/6166">#6166</a> - Enhanced the REST API to generally make it possible to create objects with known ids on request.</li>
|
|
11007
11158
|
</ul>
|
|
11008
|
-
<h3 id="
|
|
11159
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11009
11160
|
<ul>
|
|
11010
11161
|
<li><a href="https://github.com/nautobot/nautobot/issues/3124">#3124</a> - Fixed inability of ImageAttachment and DeviceType API endpoints to accept <code>multipart/form-data</code> file uploads.</li>
|
|
11011
11162
|
<li><a href="https://github.com/nautobot/nautobot/issues/5166">#5166</a> - Fixed a <code>ProgrammingError</code> when applying permissions containing network-address-based constraints.</li>
|
|
@@ -11021,23 +11172,23 @@
|
|
|
11021
11172
|
<ul>
|
|
11022
11173
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
|
|
11023
11174
|
</ul>
|
|
11024
|
-
<h3 id="
|
|
11175
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
11025
11176
|
<ul>
|
|
11026
11177
|
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11027
11178
|
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed group_sync path in the SSO documentation.</li>
|
|
11028
11179
|
</ul>
|
|
11029
|
-
<h3 id="
|
|
11180
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11030
11181
|
<ul>
|
|
11031
11182
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.47</code>.</li>
|
|
11032
11183
|
</ul>
|
|
11033
11184
|
<h2 id="v2312-2024-11-25">v2.3.12 (2024-11-25)<a class="headerlink" href="#v2312-2024-11-25" title="Permanent link">¶</a></h2>
|
|
11034
|
-
<h3 id="
|
|
11185
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11035
11186
|
<ul>
|
|
11036
11187
|
<li><a href="https://github.com/nautobot/nautobot/issues/6532">#6532</a> - Added a keyboard shortcut (⌘+enter or ctrl+enter) to submit forms when typing in a textarea.</li>
|
|
11037
11188
|
<li><a href="https://github.com/nautobot/nautobot/issues/6543">#6543</a> - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.</li>
|
|
11038
11189
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11039
11190
|
</ul>
|
|
11040
|
-
<h3 id="
|
|
11191
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11041
11192
|
<ul>
|
|
11042
11193
|
<li><a href="https://github.com/nautobot/nautobot/issues/6242">#6242</a> - Fixed "copy" button on Device tabbed views to now only copy the device name.</li>
|
|
11043
11194
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11053,30 +11204,30 @@
|
|
|
11053
11204
|
<ul>
|
|
11054
11205
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated <code>mysqlclient</code> dependency to <code>~2.2.6</code>.</li>
|
|
11055
11206
|
</ul>
|
|
11056
|
-
<h3 id="
|
|
11207
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
11057
11208
|
<ul>
|
|
11058
11209
|
<li><a href="https://github.com/nautobot/nautobot/issues/6516">#6516</a> - Updated release notes to make it clearer which are model changes.</li>
|
|
11059
11210
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11060
11211
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11061
11212
|
</ul>
|
|
11062
|
-
<h3 id="
|
|
11213
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11063
11214
|
<ul>
|
|
11064
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated documentation dependencies <code>mkdocs-redirects</code> to <code>1.2.2</code> and <code>mkdocs-material</code> to <code>9.5.46</code>.</li>
|
|
11065
11216
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11066
11217
|
</ul>
|
|
11067
11218
|
<h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">¶</a></h2>
|
|
11068
|
-
<h3 id="
|
|
11219
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11069
11220
|
<ul>
|
|
11070
11221
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added <code>nautobot.apps.utils.get_related_field_for_models()</code> helper function.</li>
|
|
11071
11222
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11072
11223
|
</ul>
|
|
11073
|
-
<h3 id="
|
|
11224
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11074
11225
|
<ul>
|
|
11075
11226
|
<li><a href="https://github.com/nautobot/nautobot/issues/5321">#5321</a> - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.</li>
|
|
11076
11227
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying <code>1</code>.</li>
|
|
11077
11228
|
<li><a href="https://github.com/nautobot/nautobot/issues/6465">#6465</a> - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.</li>
|
|
11078
11229
|
</ul>
|
|
11079
|
-
<h3 id="
|
|
11230
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11080
11231
|
<ul>
|
|
11081
11232
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11082
11233
|
<li><a href="https://github.com/nautobot/nautobot/issues/6442">#6442</a> - Fixed an issue where GitLab CI pipelines fail using all versions of official Docker images.</li>
|
|
@@ -11087,11 +11238,11 @@
|
|
|
11087
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/6491">#6491</a> - Added missing <code>vrf</code> field to <code>VMInterfaceForm</code> and <code>VMInterfaceCreateForm</code>.</li>
|
|
11088
11239
|
<li><a href="https://github.com/nautobot/nautobot/issues/6492">#6492</a> - Fixed <code>vlan_group</code> field is not filtered by <code>locations</code> field input on VLANForm.</li>
|
|
11089
11240
|
</ul>
|
|
11090
|
-
<h3 id="
|
|
11241
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
11091
11242
|
<ul>
|
|
11092
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11093
11244
|
</ul>
|
|
11094
|
-
<h3 id="
|
|
11245
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11095
11246
|
<ul>
|
|
11096
11247
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.</li>
|
|
11097
11248
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11100,18 +11251,18 @@
|
|
|
11100
11251
|
<li><a href="https://github.com/nautobot/nautobot/issues/6497">#6497</a> - Added support for <code>--no-reusedb</code> option to <code>invoke integration-test</code> task.</li>
|
|
11101
11252
|
</ul>
|
|
11102
11253
|
<h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">¶</a></h2>
|
|
11103
|
-
<h3 id="
|
|
11254
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11104
11255
|
<ul>
|
|
11105
11256
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
|
|
11106
11257
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
|
|
11107
11258
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11108
11259
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
|
|
11109
11260
|
</ul>
|
|
11110
|
-
<h3 id="
|
|
11261
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11111
11262
|
<ul>
|
|
11112
11263
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
|
|
11113
11264
|
</ul>
|
|
11114
|
-
<h3 id="
|
|
11265
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11115
11266
|
<ul>
|
|
11116
11267
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
|
|
11117
11268
|
<li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
|
|
@@ -11120,24 +11271,24 @@
|
|
|
11120
11271
|
<ul>
|
|
11121
11272
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11122
11273
|
</ul>
|
|
11123
|
-
<h3 id="
|
|
11274
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11124
11275
|
<ul>
|
|
11125
11276
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
|
|
11126
11277
|
</ul>
|
|
11127
11278
|
<h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">¶</a></h2>
|
|
11128
|
-
<h3 id="
|
|
11279
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11129
11280
|
<ul>
|
|
11130
11281
|
<li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
|
|
11131
11282
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
|
|
11132
11283
|
<li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
|
|
11133
11284
|
</ul>
|
|
11134
|
-
<h3 id="
|
|
11285
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11135
11286
|
<ul>
|
|
11136
11287
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
|
|
11137
11288
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
|
|
11138
11289
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
|
|
11139
11290
|
</ul>
|
|
11140
|
-
<h3 id="
|
|
11291
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11141
11292
|
<ul>
|
|
11142
11293
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
|
|
11143
11294
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.</li>
|
|
@@ -11150,12 +11301,12 @@
|
|
|
11150
11301
|
<ul>
|
|
11151
11302
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
|
|
11152
11303
|
</ul>
|
|
11153
|
-
<h3 id="
|
|
11304
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11154
11305
|
<ul>
|
|
11155
11306
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
|
|
11156
11307
|
</ul>
|
|
11157
11308
|
<h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">¶</a></h2>
|
|
11158
|
-
<h3 id="
|
|
11309
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11159
11310
|
<ul>
|
|
11160
11311
|
<li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
|
|
11161
11312
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
|
|
@@ -11164,16 +11315,16 @@
|
|
|
11164
11315
|
<li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
|
|
11165
11316
|
</ul>
|
|
11166
11317
|
<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>
|
|
11167
|
-
<h3 id="
|
|
11318
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11168
11319
|
<ul>
|
|
11169
11320
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
11170
11321
|
</ul>
|
|
11171
|
-
<h3 id="
|
|
11322
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11172
11323
|
<ul>
|
|
11173
11324
|
<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>
|
|
11174
11325
|
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
|
|
11175
11326
|
</ul>
|
|
11176
|
-
<h3 id="
|
|
11327
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11177
11328
|
<ul>
|
|
11178
11329
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11179
11330
|
<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>
|
|
@@ -11184,7 +11335,7 @@
|
|
|
11184
11335
|
<ul>
|
|
11185
11336
|
<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>
|
|
11186
11337
|
</ul>
|
|
11187
|
-
<h3 id="
|
|
11338
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11188
11339
|
<ul>
|
|
11189
11340
|
<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>
|
|
11190
11341
|
<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>
|
|
@@ -11195,36 +11346,36 @@
|
|
|
11195
11346
|
<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>
|
|
11196
11347
|
</ul>
|
|
11197
11348
|
<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>
|
|
11198
|
-
<h3 id="
|
|
11349
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
11199
11350
|
<ul>
|
|
11200
11351
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11201
11352
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11202
11353
|
</ul>
|
|
11203
|
-
<h3 id="
|
|
11354
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11204
11355
|
<ul>
|
|
11205
11356
|
<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>
|
|
11206
11357
|
<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>
|
|
11207
11358
|
</ul>
|
|
11208
|
-
<h3 id="
|
|
11359
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11209
11360
|
<ul>
|
|
11210
11361
|
<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>
|
|
11211
11362
|
<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>
|
|
11212
11363
|
</ul>
|
|
11213
|
-
<h3 id="
|
|
11364
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11214
11365
|
<ul>
|
|
11215
11366
|
<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>
|
|
11216
11367
|
</ul>
|
|
11217
11368
|
<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>
|
|
11218
|
-
<h3 id="
|
|
11369
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
11219
11370
|
<ul>
|
|
11220
11371
|
<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>
|
|
11221
11372
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
11222
11373
|
</ul>
|
|
11223
|
-
<h3 id="
|
|
11374
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
11224
11375
|
<ul>
|
|
11225
11376
|
<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>
|
|
11226
11377
|
</ul>
|
|
11227
|
-
<h3 id="
|
|
11378
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11228
11379
|
<ul>
|
|
11229
11380
|
<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>
|
|
11230
11381
|
<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>
|
|
@@ -11240,11 +11391,11 @@
|
|
|
11240
11391
|
<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>
|
|
11241
11392
|
<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>
|
|
11242
11393
|
</ul>
|
|
11243
|
-
<h3 id="
|
|
11394
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11244
11395
|
<ul>
|
|
11245
11396
|
<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>
|
|
11246
11397
|
</ul>
|
|
11247
|
-
<h3 id="
|
|
11398
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11248
11399
|
<ul>
|
|
11249
11400
|
<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>
|
|
11250
11401
|
<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>
|
|
@@ -11253,22 +11404,22 @@
|
|
|
11253
11404
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
11254
11405
|
</ul>
|
|
11255
11406
|
<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>
|
|
11256
|
-
<h3 id="
|
|
11407
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
11257
11408
|
<ul>
|
|
11258
11409
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
11259
11410
|
<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>
|
|
11260
11411
|
</ul>
|
|
11261
|
-
<h3 id="
|
|
11412
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
11262
11413
|
<ul>
|
|
11263
11414
|
<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>
|
|
11264
11415
|
</ul>
|
|
11265
|
-
<h3 id="
|
|
11416
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11266
11417
|
<ul>
|
|
11267
11418
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11268
11419
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
11269
11420
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
11270
11421
|
</ul>
|
|
11271
|
-
<h3 id="
|
|
11422
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
11272
11423
|
<ul>
|
|
11273
11424
|
<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>
|
|
11274
11425
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
|
|
@@ -11276,7 +11427,7 @@
|
|
|
11276
11427
|
<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>
|
|
11277
11428
|
<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>
|
|
11278
11429
|
</ul>
|
|
11279
|
-
<h3 id="
|
|
11430
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
11280
11431
|
<ul>
|
|
11281
11432
|
<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>
|
|
11282
11433
|
<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>
|
|
@@ -11288,7 +11439,7 @@
|
|
|
11288
11439
|
<ul>
|
|
11289
11440
|
<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>
|
|
11290
11441
|
</ul>
|
|
11291
|
-
<h3 id="
|
|
11442
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11292
11443
|
<ul>
|
|
11293
11444
|
<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>
|
|
11294
11445
|
<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>
|
|
@@ -11299,7 +11450,7 @@
|
|
|
11299
11450
|
<ul>
|
|
11300
11451
|
<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>
|
|
11301
11452
|
</ul>
|
|
11302
|
-
<h3 id="
|
|
11453
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
11303
11454
|
<ul>
|
|
11304
11455
|
<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>
|
|
11305
11456
|
<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>
|
|
@@ -11313,14 +11464,14 @@
|
|
|
11313
11464
|
<ul>
|
|
11314
11465
|
<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>
|
|
11315
11466
|
</ul>
|
|
11316
|
-
<h3 id="
|
|
11467
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
11317
11468
|
<ul>
|
|
11318
11469
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
11319
11470
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
11320
11471
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11321
11472
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11322
11473
|
</ul>
|
|
11323
|
-
<h3 id="
|
|
11474
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
11324
11475
|
<ul>
|
|
11325
11476
|
<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>
|
|
11326
11477
|
<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>
|
|
@@ -11329,7 +11480,7 @@
|
|
|
11329
11480
|
<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>
|
|
11330
11481
|
<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>
|
|
11331
11482
|
</ul>
|
|
11332
|
-
<h3 id="
|
|
11483
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
11333
11484
|
<ul>
|
|
11334
11485
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
11335
11486
|
<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>
|
|
@@ -11337,24 +11488,24 @@
|
|
|
11337
11488
|
<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>
|
|
11338
11489
|
</ul>
|
|
11339
11490
|
<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>
|
|
11340
|
-
<h3 id="
|
|
11491
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
11341
11492
|
<ul>
|
|
11342
11493
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
11343
11494
|
<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>
|
|
11344
11495
|
<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>
|
|
11345
11496
|
</ul>
|
|
11346
|
-
<h3 id="
|
|
11497
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
11347
11498
|
<ul>
|
|
11348
11499
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11349
11500
|
</ul>
|
|
11350
|
-
<h3 id="
|
|
11501
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
11351
11502
|
<ul>
|
|
11352
11503
|
<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>
|
|
11353
11504
|
<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>
|
|
11354
11505
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11355
11506
|
<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>
|
|
11356
11507
|
</ul>
|
|
11357
|
-
<h3 id="
|
|
11508
|
+
<h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">¶</a></h3>
|
|
11358
11509
|
<ul>
|
|
11359
11510
|
<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>
|
|
11360
11511
|
</ul>
|
|
@@ -11363,7 +11514,7 @@
|
|
|
11363
11514
|
<ul>
|
|
11364
11515
|
<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>
|
|
11365
11516
|
</ul>
|
|
11366
|
-
<h3 id="
|
|
11517
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
11367
11518
|
<ul>
|
|
11368
11519
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
11369
11520
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -11373,7 +11524,7 @@
|
|
|
11373
11524
|
<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>
|
|
11374
11525
|
<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>
|
|
11375
11526
|
</ul>
|
|
11376
|
-
<h3 id="
|
|
11527
|
+
<h3 id="changed_10">Changed<a class="headerlink" href="#changed_10" title="Permanent link">¶</a></h3>
|
|
11377
11528
|
<ul>
|
|
11378
11529
|
<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>
|
|
11379
11530
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -11387,7 +11538,7 @@
|
|
|
11387
11538
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11388
11539
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11389
11540
|
</ul>
|
|
11390
|
-
<h3 id="
|
|
11541
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
11391
11542
|
<ul>
|
|
11392
11543
|
<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>
|
|
11393
11544
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -11403,7 +11554,7 @@
|
|
|
11403
11554
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
11404
11555
|
<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>
|
|
11405
11556
|
</ul>
|
|
11406
|
-
<h3 id="
|
|
11557
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
11407
11558
|
<ul>
|
|
11408
11559
|
<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>
|
|
11409
11560
|
<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>
|
|
@@ -11411,7 +11562,7 @@
|
|
|
11411
11562
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11412
11563
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
11413
11564
|
</ul>
|
|
11414
|
-
<h3 id="
|
|
11565
|
+
<h3 id="housekeeping_13">Housekeeping<a class="headerlink" href="#housekeeping_13" title="Permanent link">¶</a></h3>
|
|
11415
11566
|
<ul>
|
|
11416
11567
|
<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>
|
|
11417
11568
|
<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>
|
|
@@ -11426,7 +11577,7 @@
|
|
|
11426
11577
|
<ul>
|
|
11427
11578
|
<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>
|
|
11428
11579
|
</ul>
|
|
11429
|
-
<h3 id="
|
|
11580
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
11430
11581
|
<ul>
|
|
11431
11582
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
11432
11583
|
<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>
|
|
@@ -11473,7 +11624,7 @@
|
|
|
11473
11624
|
<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>
|
|
11474
11625
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
11475
11626
|
</ul>
|
|
11476
|
-
<h3 id="
|
|
11627
|
+
<h3 id="changed_11">Changed<a class="headerlink" href="#changed_11" title="Permanent link">¶</a></h3>
|
|
11477
11628
|
<ul>
|
|
11478
11629
|
<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>
|
|
11479
11630
|
<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>
|
|
@@ -11517,7 +11668,7 @@
|
|
|
11517
11668
|
<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>
|
|
11518
11669
|
<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>
|
|
11519
11670
|
</ul>
|
|
11520
|
-
<h3 id="
|
|
11671
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
11521
11672
|
<ul>
|
|
11522
11673
|
<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>
|
|
11523
11674
|
<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>
|
|
@@ -11567,13 +11718,13 @@
|
|
|
11567
11718
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
|
|
11568
11719
|
<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>
|
|
11569
11720
|
</ul>
|
|
11570
|
-
<h3 id="
|
|
11721
|
+
<h3 id="documentation_8">Documentation<a class="headerlink" href="#documentation_8" title="Permanent link">¶</a></h3>
|
|
11571
11722
|
<ul>
|
|
11572
11723
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
11573
11724
|
<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>
|
|
11574
11725
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11575
11726
|
</ul>
|
|
11576
|
-
<h3 id="
|
|
11727
|
+
<h3 id="housekeeping_14">Housekeeping<a class="headerlink" href="#housekeeping_14" title="Permanent link">¶</a></h3>
|
|
11577
11728
|
<ul>
|
|
11578
11729
|
<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>
|
|
11579
11730
|
<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>
|