nautobot 2.3.8__py3-none-any.whl → 2.3.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/tables.py +2 -0
- nautobot/core/forms/__init__.py +4 -0
- nautobot/core/forms/fields.py +32 -0
- nautobot/core/jobs/__init__.py +24 -8
- nautobot/core/models/query_functions.py +147 -1
- nautobot/core/models/tree_queries.py +8 -0
- nautobot/core/settings.py +7 -0
- nautobot/core/settings.yaml +10 -0
- nautobot/core/signals.py +5 -4
- nautobot/core/templates/nautobot_config.py.j2 +4 -0
- nautobot/core/tests/test_models_query_functions.py +108 -0
- nautobot/dcim/forms.py +30 -27
- nautobot/dcim/models/device_components.py +5 -0
- nautobot/dcim/tables/devices.py +4 -2
- nautobot/dcim/templates/dcim/modulebay_create.html +39 -0
- nautobot/dcim/templates/dcim/modulebay_update.html +39 -0
- nautobot/dcim/tests/test_models.py +16 -0
- nautobot/dcim/views.py +1 -1
- nautobot/extras/api/customfields.py +3 -10
- nautobot/extras/context_managers.py +28 -9
- nautobot/extras/datasources/__init__.py +2 -0
- nautobot/extras/datasources/git.py +30 -49
- nautobot/extras/datasources/registry.py +2 -2
- nautobot/extras/jobs.py +30 -12
- nautobot/extras/models/customfields.py +12 -0
- nautobot/extras/models/datasources.py +6 -0
- nautobot/extras/models/groups.py +47 -33
- nautobot/extras/models/jobs.py +1 -1
- nautobot/extras/plugins/__init__.py +165 -0
- nautobot/extras/signals.py +2 -0
- nautobot/extras/tasks.py +88 -69
- nautobot/extras/templates/extras/plugin_detail.html +33 -0
- nautobot/extras/tests/test_context_managers.py +23 -9
- nautobot/extras/tests/test_datasources.py +88 -1
- nautobot/extras/tests/test_dynamicgroups.py +12 -0
- nautobot/extras/tests/test_plugins.py +94 -0
- nautobot/extras/tests/test_webhooks.py +1 -1
- nautobot/extras/views.py +3 -1
- nautobot/extras/webhooks.py +16 -7
- nautobot/project-static/docs/404.html +24 -3
- nautobot/project-static/docs/apps/index.html +24 -3
- nautobot/project-static/docs/apps/nautobot-apps.html +24 -3
- nautobot/project-static/docs/assets/javascripts/{bundle.525ec568.min.js → bundle.83f73b43.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.525ec568.min.js.map → bundle.83f73b43.min.js.map} +3 -3
- nautobot/project-static/docs/assets/stylesheets/main.0253249f.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.0253249f.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +106 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +138 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +24 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +24 -3
- nautobot/project-static/docs/development/apps/api/configuration-view.html +24 -3
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +24 -3
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +24 -3
- nautobot/project-static/docs/development/apps/api/models/global-search.html +24 -3
- nautobot/project-static/docs/development/apps/api/models/graphql.html +24 -3
- nautobot/project-static/docs/development/apps/api/models/index.html +24 -3
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +24 -3
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +27 -6
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +8823 -0
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +27 -6
- nautobot/project-static/docs/development/apps/api/prometheus.html +24 -3
- nautobot/project-static/docs/development/apps/api/setup.html +33 -11
- nautobot/project-static/docs/development/apps/api/testing.html +24 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +24 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +24 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +24 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +24 -3
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/base-template.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/index.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/notes.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +24 -3
- nautobot/project-static/docs/development/apps/api/views/urls.html +24 -3
- nautobot/project-static/docs/development/apps/index.html +24 -3
- nautobot/project-static/docs/development/apps/migration/code-updates.html +24 -3
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +24 -3
- nautobot/project-static/docs/development/apps/migration/from-v1.html +24 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +24 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +24 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +24 -3
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +24 -3
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +24 -3
- nautobot/project-static/docs/development/core/application-registry.html +24 -3
- nautobot/project-static/docs/development/core/best-practices.html +24 -3
- nautobot/project-static/docs/development/core/bootstrap-ui.html +24 -3
- nautobot/project-static/docs/development/core/caching.html +24 -3
- nautobot/project-static/docs/development/core/controllers.html +24 -3
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +24 -3
- nautobot/project-static/docs/development/core/generic-views.html +24 -3
- nautobot/project-static/docs/development/core/getting-started.html +24 -3
- nautobot/project-static/docs/development/core/homepage.html +24 -3
- nautobot/project-static/docs/development/core/index.html +24 -3
- nautobot/project-static/docs/development/core/model-checklist.html +24 -3
- nautobot/project-static/docs/development/core/model-features.html +24 -3
- nautobot/project-static/docs/development/core/natural-keys.html +24 -3
- nautobot/project-static/docs/development/core/navigation-menu.html +24 -3
- nautobot/project-static/docs/development/core/release-checklist.html +24 -3
- nautobot/project-static/docs/development/core/role-internals.html +24 -3
- nautobot/project-static/docs/development/core/settings.html +24 -3
- nautobot/project-static/docs/development/core/style-guide.html +24 -3
- nautobot/project-static/docs/development/core/templates.html +24 -3
- nautobot/project-static/docs/development/core/testing.html +24 -3
- nautobot/project-static/docs/development/core/user-preferences.html +24 -3
- nautobot/project-static/docs/development/index.html +24 -3
- nautobot/project-static/docs/development/jobs/index.html +24 -3
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +24 -3
- nautobot/project-static/docs/index.html +24 -3
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +24 -3
- nautobot/project-static/docs/overview/design_philosophy.html +24 -3
- nautobot/project-static/docs/release-notes/index.html +24 -3
- nautobot/project-static/docs/release-notes/version-1.0.html +24 -3
- nautobot/project-static/docs/release-notes/version-1.1.html +24 -3
- nautobot/project-static/docs/release-notes/version-1.2.html +24 -3
- nautobot/project-static/docs/release-notes/version-1.3.html +24 -3
- nautobot/project-static/docs/release-notes/version-1.4.html +24 -3
- nautobot/project-static/docs/release-notes/version-1.5.html +24 -3
- nautobot/project-static/docs/release-notes/version-1.6.html +24 -3
- nautobot/project-static/docs/release-notes/version-2.0.html +24 -3
- nautobot/project-static/docs/release-notes/version-2.1.html +24 -3
- nautobot/project-static/docs/release-notes/version-2.2.html +24 -3
- nautobot/project-static/docs/release-notes/version-2.3.html +430 -114
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +273 -269
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +24 -3
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +24 -3
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +24 -3
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +24 -3
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +24 -3
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +29 -4
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +24 -3
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +24 -3
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +24 -3
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +24 -3
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +24 -3
- nautobot/project-static/docs/user-guide/administration/installation/index.html +24 -3
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +24 -3
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +24 -3
- nautobot/project-static/docs/user-guide/administration/installation/services.html +24 -3
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +24 -3
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +24 -3
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +24 -3
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +24 -3
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +24 -3
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +24 -3
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +24 -3
- nautobot/project-static/docs/user-guide/index.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +24 -3
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +24 -3
- nautobot/project-static/js/forms.js +3 -5
- nautobot/virtualization/tables.py +1 -1
- {nautobot-2.3.8.dist-info → nautobot-2.3.10.dist-info}/METADATA +3 -3
- {nautobot-2.3.8.dist-info → nautobot-2.3.10.dist-info}/RECORD +327 -323
- nautobot/project-static/docs/assets/stylesheets/main.8c3ca2c6.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.8c3ca2c6.min.css.map +0 -1
- {nautobot-2.3.8.dist-info → nautobot-2.3.10.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.8.dist-info → nautobot-2.3.10.dist-info}/NOTICE +0 -0
- {nautobot-2.3.8.dist-info → nautobot-2.3.10.dist-info}/WHEEL +0 -0
- {nautobot-2.3.8.dist-info → nautobot-2.3.10.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.42">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../assets/stylesheets/main.0253249f.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -6386,6 +6386,27 @@
|
|
|
6386
6386
|
|
|
6387
6387
|
|
|
6388
6388
|
|
|
6389
|
+
<li class="md-nav__item">
|
|
6390
|
+
<a href="../development/apps/api/platform-features/table-extensions.html" class="md-nav__link">
|
|
6391
|
+
|
|
6392
|
+
|
|
6393
|
+
<span class="md-ellipsis">
|
|
6394
|
+
Table Extensions
|
|
6395
|
+
</span>
|
|
6396
|
+
|
|
6397
|
+
|
|
6398
|
+
</a>
|
|
6399
|
+
</li>
|
|
6400
|
+
|
|
6401
|
+
|
|
6402
|
+
|
|
6403
|
+
|
|
6404
|
+
|
|
6405
|
+
|
|
6406
|
+
|
|
6407
|
+
|
|
6408
|
+
|
|
6409
|
+
|
|
6389
6410
|
<li class="md-nav__item">
|
|
6390
6411
|
<a href="../development/apps/api/platform-features/uniquely-identify-objects.html" class="md-nav__link">
|
|
6391
6412
|
|
|
@@ -8233,6 +8254,126 @@
|
|
|
8233
8254
|
</ul>
|
|
8234
8255
|
</nav>
|
|
8235
8256
|
|
|
8257
|
+
</li>
|
|
8258
|
+
|
|
8259
|
+
<li class="md-nav__item">
|
|
8260
|
+
<a href="#v2310-2024-10-29" class="md-nav__link">
|
|
8261
|
+
<span class="md-ellipsis">
|
|
8262
|
+
v2.3.10 (2024-10-29)
|
|
8263
|
+
</span>
|
|
8264
|
+
</a>
|
|
8265
|
+
|
|
8266
|
+
<nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
|
|
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="#dependencies_1" class="md-nav__link">
|
|
8298
|
+
<span class="md-ellipsis">
|
|
8299
|
+
Dependencies
|
|
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
|
+
|
|
8317
|
+
</li>
|
|
8318
|
+
|
|
8319
|
+
<li class="md-nav__item">
|
|
8320
|
+
<a href="#v239-2024-10-28" class="md-nav__link">
|
|
8321
|
+
<span class="md-ellipsis">
|
|
8322
|
+
v2.3.9 (2024-10-28)
|
|
8323
|
+
</span>
|
|
8324
|
+
</a>
|
|
8325
|
+
|
|
8326
|
+
<nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
|
|
8327
|
+
<ul class="md-nav__list">
|
|
8328
|
+
|
|
8329
|
+
<li class="md-nav__item">
|
|
8330
|
+
<a href="#added_2" class="md-nav__link">
|
|
8331
|
+
<span class="md-ellipsis">
|
|
8332
|
+
Added
|
|
8333
|
+
</span>
|
|
8334
|
+
</a>
|
|
8335
|
+
|
|
8336
|
+
</li>
|
|
8337
|
+
|
|
8338
|
+
<li class="md-nav__item">
|
|
8339
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8340
|
+
<span class="md-ellipsis">
|
|
8341
|
+
Changed
|
|
8342
|
+
</span>
|
|
8343
|
+
</a>
|
|
8344
|
+
|
|
8345
|
+
</li>
|
|
8346
|
+
|
|
8347
|
+
<li class="md-nav__item">
|
|
8348
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8349
|
+
<span class="md-ellipsis">
|
|
8350
|
+
Fixed
|
|
8351
|
+
</span>
|
|
8352
|
+
</a>
|
|
8353
|
+
|
|
8354
|
+
</li>
|
|
8355
|
+
|
|
8356
|
+
<li class="md-nav__item">
|
|
8357
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8358
|
+
<span class="md-ellipsis">
|
|
8359
|
+
Dependencies
|
|
8360
|
+
</span>
|
|
8361
|
+
</a>
|
|
8362
|
+
|
|
8363
|
+
</li>
|
|
8364
|
+
|
|
8365
|
+
<li class="md-nav__item">
|
|
8366
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8367
|
+
<span class="md-ellipsis">
|
|
8368
|
+
Housekeeping
|
|
8369
|
+
</span>
|
|
8370
|
+
</a>
|
|
8371
|
+
|
|
8372
|
+
</li>
|
|
8373
|
+
|
|
8374
|
+
</ul>
|
|
8375
|
+
</nav>
|
|
8376
|
+
|
|
8236
8377
|
</li>
|
|
8237
8378
|
|
|
8238
8379
|
<li class="md-nav__item">
|
|
@@ -8246,7 +8387,7 @@
|
|
|
8246
8387
|
<ul class="md-nav__list">
|
|
8247
8388
|
|
|
8248
8389
|
<li class="md-nav__item">
|
|
8249
|
-
<a href="#
|
|
8390
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8250
8391
|
<span class="md-ellipsis">
|
|
8251
8392
|
Fixed
|
|
8252
8393
|
</span>
|
|
@@ -8270,7 +8411,7 @@
|
|
|
8270
8411
|
<ul class="md-nav__list">
|
|
8271
8412
|
|
|
8272
8413
|
<li class="md-nav__item">
|
|
8273
|
-
<a href="#
|
|
8414
|
+
<a href="#added_3" class="md-nav__link">
|
|
8274
8415
|
<span class="md-ellipsis">
|
|
8275
8416
|
Added
|
|
8276
8417
|
</span>
|
|
@@ -8279,7 +8420,7 @@
|
|
|
8279
8420
|
</li>
|
|
8280
8421
|
|
|
8281
8422
|
<li class="md-nav__item">
|
|
8282
|
-
<a href="#
|
|
8423
|
+
<a href="#changed_3" class="md-nav__link">
|
|
8283
8424
|
<span class="md-ellipsis">
|
|
8284
8425
|
Changed
|
|
8285
8426
|
</span>
|
|
@@ -8288,7 +8429,7 @@
|
|
|
8288
8429
|
</li>
|
|
8289
8430
|
|
|
8290
8431
|
<li class="md-nav__item">
|
|
8291
|
-
<a href="#
|
|
8432
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8292
8433
|
<span class="md-ellipsis">
|
|
8293
8434
|
Fixed
|
|
8294
8435
|
</span>
|
|
@@ -8297,7 +8438,7 @@
|
|
|
8297
8438
|
</li>
|
|
8298
8439
|
|
|
8299
8440
|
<li class="md-nav__item">
|
|
8300
|
-
<a href="#
|
|
8441
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8301
8442
|
<span class="md-ellipsis">
|
|
8302
8443
|
Dependencies
|
|
8303
8444
|
</span>
|
|
@@ -8306,7 +8447,7 @@
|
|
|
8306
8447
|
</li>
|
|
8307
8448
|
|
|
8308
8449
|
<li class="md-nav__item">
|
|
8309
|
-
<a href="#
|
|
8450
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8310
8451
|
<span class="md-ellipsis">
|
|
8311
8452
|
Housekeeping
|
|
8312
8453
|
</span>
|
|
@@ -8330,7 +8471,7 @@
|
|
|
8330
8471
|
<ul class="md-nav__list">
|
|
8331
8472
|
|
|
8332
8473
|
<li class="md-nav__item">
|
|
8333
|
-
<a href="#
|
|
8474
|
+
<a href="#added_4" class="md-nav__link">
|
|
8334
8475
|
<span class="md-ellipsis">
|
|
8335
8476
|
Added
|
|
8336
8477
|
</span>
|
|
@@ -8339,7 +8480,7 @@
|
|
|
8339
8480
|
</li>
|
|
8340
8481
|
|
|
8341
8482
|
<li class="md-nav__item">
|
|
8342
|
-
<a href="#
|
|
8483
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8343
8484
|
<span class="md-ellipsis">
|
|
8344
8485
|
Fixed
|
|
8345
8486
|
</span>
|
|
@@ -8357,7 +8498,7 @@
|
|
|
8357
8498
|
</li>
|
|
8358
8499
|
|
|
8359
8500
|
<li class="md-nav__item">
|
|
8360
|
-
<a href="#
|
|
8501
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8361
8502
|
<span class="md-ellipsis">
|
|
8362
8503
|
Housekeeping
|
|
8363
8504
|
</span>
|
|
@@ -8381,7 +8522,7 @@
|
|
|
8381
8522
|
<ul class="md-nav__list">
|
|
8382
8523
|
|
|
8383
8524
|
<li class="md-nav__item">
|
|
8384
|
-
<a href="#
|
|
8525
|
+
<a href="#added_5" class="md-nav__link">
|
|
8385
8526
|
<span class="md-ellipsis">
|
|
8386
8527
|
Added
|
|
8387
8528
|
</span>
|
|
@@ -8390,7 +8531,7 @@
|
|
|
8390
8531
|
</li>
|
|
8391
8532
|
|
|
8392
8533
|
<li class="md-nav__item">
|
|
8393
|
-
<a href="#
|
|
8534
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8394
8535
|
<span class="md-ellipsis">
|
|
8395
8536
|
Changed
|
|
8396
8537
|
</span>
|
|
@@ -8399,7 +8540,7 @@
|
|
|
8399
8540
|
</li>
|
|
8400
8541
|
|
|
8401
8542
|
<li class="md-nav__item">
|
|
8402
|
-
<a href="#
|
|
8543
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8403
8544
|
<span class="md-ellipsis">
|
|
8404
8545
|
Fixed
|
|
8405
8546
|
</span>
|
|
@@ -8408,7 +8549,7 @@
|
|
|
8408
8549
|
</li>
|
|
8409
8550
|
|
|
8410
8551
|
<li class="md-nav__item">
|
|
8411
|
-
<a href="#
|
|
8552
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
8412
8553
|
<span class="md-ellipsis">
|
|
8413
8554
|
Dependencies
|
|
8414
8555
|
</span>
|
|
@@ -8426,7 +8567,7 @@
|
|
|
8426
8567
|
</li>
|
|
8427
8568
|
|
|
8428
8569
|
<li class="md-nav__item">
|
|
8429
|
-
<a href="#
|
|
8570
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8430
8571
|
<span class="md-ellipsis">
|
|
8431
8572
|
Housekeeping
|
|
8432
8573
|
</span>
|
|
@@ -8450,7 +8591,7 @@
|
|
|
8450
8591
|
<ul class="md-nav__list">
|
|
8451
8592
|
|
|
8452
8593
|
<li class="md-nav__item">
|
|
8453
|
-
<a href="#
|
|
8594
|
+
<a href="#added_6" class="md-nav__link">
|
|
8454
8595
|
<span class="md-ellipsis">
|
|
8455
8596
|
Added
|
|
8456
8597
|
</span>
|
|
@@ -8459,7 +8600,7 @@
|
|
|
8459
8600
|
</li>
|
|
8460
8601
|
|
|
8461
8602
|
<li class="md-nav__item">
|
|
8462
|
-
<a href="#
|
|
8603
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8463
8604
|
<span class="md-ellipsis">
|
|
8464
8605
|
Changed
|
|
8465
8606
|
</span>
|
|
@@ -8468,7 +8609,7 @@
|
|
|
8468
8609
|
</li>
|
|
8469
8610
|
|
|
8470
8611
|
<li class="md-nav__item">
|
|
8471
|
-
<a href="#
|
|
8612
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8472
8613
|
<span class="md-ellipsis">
|
|
8473
8614
|
Fixed
|
|
8474
8615
|
</span>
|
|
@@ -8486,7 +8627,7 @@
|
|
|
8486
8627
|
</li>
|
|
8487
8628
|
|
|
8488
8629
|
<li class="md-nav__item">
|
|
8489
|
-
<a href="#
|
|
8630
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8490
8631
|
<span class="md-ellipsis">
|
|
8491
8632
|
Housekeeping
|
|
8492
8633
|
</span>
|
|
@@ -8519,7 +8660,7 @@
|
|
|
8519
8660
|
</li>
|
|
8520
8661
|
|
|
8521
8662
|
<li class="md-nav__item">
|
|
8522
|
-
<a href="#
|
|
8663
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8523
8664
|
<span class="md-ellipsis">
|
|
8524
8665
|
Fixed
|
|
8525
8666
|
</span>
|
|
@@ -8528,7 +8669,7 @@
|
|
|
8528
8669
|
</li>
|
|
8529
8670
|
|
|
8530
8671
|
<li class="md-nav__item">
|
|
8531
|
-
<a href="#
|
|
8672
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
8532
8673
|
<span class="md-ellipsis">
|
|
8533
8674
|
Dependencies
|
|
8534
8675
|
</span>
|
|
@@ -8537,7 +8678,7 @@
|
|
|
8537
8678
|
</li>
|
|
8538
8679
|
|
|
8539
8680
|
<li class="md-nav__item">
|
|
8540
|
-
<a href="#
|
|
8681
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8541
8682
|
<span class="md-ellipsis">
|
|
8542
8683
|
Housekeeping
|
|
8543
8684
|
</span>
|
|
@@ -8570,7 +8711,7 @@
|
|
|
8570
8711
|
</li>
|
|
8571
8712
|
|
|
8572
8713
|
<li class="md-nav__item">
|
|
8573
|
-
<a href="#
|
|
8714
|
+
<a href="#added_7" class="md-nav__link">
|
|
8574
8715
|
<span class="md-ellipsis">
|
|
8575
8716
|
Added
|
|
8576
8717
|
</span>
|
|
@@ -8579,7 +8720,7 @@
|
|
|
8579
8720
|
</li>
|
|
8580
8721
|
|
|
8581
8722
|
<li class="md-nav__item">
|
|
8582
|
-
<a href="#
|
|
8723
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8583
8724
|
<span class="md-ellipsis">
|
|
8584
8725
|
Fixed
|
|
8585
8726
|
</span>
|
|
@@ -8588,7 +8729,7 @@
|
|
|
8588
8729
|
</li>
|
|
8589
8730
|
|
|
8590
8731
|
<li class="md-nav__item">
|
|
8591
|
-
<a href="#
|
|
8732
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8592
8733
|
<span class="md-ellipsis">
|
|
8593
8734
|
Housekeeping
|
|
8594
8735
|
</span>
|
|
@@ -8612,7 +8753,7 @@
|
|
|
8612
8753
|
<ul class="md-nav__list">
|
|
8613
8754
|
|
|
8614
8755
|
<li class="md-nav__item">
|
|
8615
|
-
<a href="#
|
|
8756
|
+
<a href="#added_8" class="md-nav__link">
|
|
8616
8757
|
<span class="md-ellipsis">
|
|
8617
8758
|
Added
|
|
8618
8759
|
</span>
|
|
@@ -8621,7 +8762,7 @@
|
|
|
8621
8762
|
</li>
|
|
8622
8763
|
|
|
8623
8764
|
<li class="md-nav__item">
|
|
8624
|
-
<a href="#
|
|
8765
|
+
<a href="#changed_6" class="md-nav__link">
|
|
8625
8766
|
<span class="md-ellipsis">
|
|
8626
8767
|
Changed
|
|
8627
8768
|
</span>
|
|
@@ -8630,7 +8771,7 @@
|
|
|
8630
8771
|
</li>
|
|
8631
8772
|
|
|
8632
8773
|
<li class="md-nav__item">
|
|
8633
|
-
<a href="#
|
|
8774
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8634
8775
|
<span class="md-ellipsis">
|
|
8635
8776
|
Fixed
|
|
8636
8777
|
</span>
|
|
@@ -8639,7 +8780,7 @@
|
|
|
8639
8780
|
</li>
|
|
8640
8781
|
|
|
8641
8782
|
<li class="md-nav__item">
|
|
8642
|
-
<a href="#
|
|
8783
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
8643
8784
|
<span class="md-ellipsis">
|
|
8644
8785
|
Housekeeping
|
|
8645
8786
|
</span>
|
|
@@ -8672,7 +8813,7 @@
|
|
|
8672
8813
|
</li>
|
|
8673
8814
|
|
|
8674
8815
|
<li class="md-nav__item">
|
|
8675
|
-
<a href="#
|
|
8816
|
+
<a href="#added_9" class="md-nav__link">
|
|
8676
8817
|
<span class="md-ellipsis">
|
|
8677
8818
|
Added
|
|
8678
8819
|
</span>
|
|
@@ -8681,7 +8822,7 @@
|
|
|
8681
8822
|
</li>
|
|
8682
8823
|
|
|
8683
8824
|
<li class="md-nav__item">
|
|
8684
|
-
<a href="#
|
|
8825
|
+
<a href="#changed_7" class="md-nav__link">
|
|
8685
8826
|
<span class="md-ellipsis">
|
|
8686
8827
|
Changed
|
|
8687
8828
|
</span>
|
|
@@ -8699,7 +8840,7 @@
|
|
|
8699
8840
|
</li>
|
|
8700
8841
|
|
|
8701
8842
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#
|
|
8843
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
8703
8844
|
<span class="md-ellipsis">
|
|
8704
8845
|
Fixed
|
|
8705
8846
|
</span>
|
|
@@ -8717,7 +8858,7 @@
|
|
|
8717
8858
|
</li>
|
|
8718
8859
|
|
|
8719
8860
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
8861
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
8721
8862
|
<span class="md-ellipsis">
|
|
8722
8863
|
Housekeeping
|
|
8723
8864
|
</span>
|
|
@@ -8750,7 +8891,7 @@
|
|
|
8750
8891
|
</li>
|
|
8751
8892
|
|
|
8752
8893
|
<li class="md-nav__item">
|
|
8753
|
-
<a href="#
|
|
8894
|
+
<a href="#added_10" class="md-nav__link">
|
|
8754
8895
|
<span class="md-ellipsis">
|
|
8755
8896
|
Added
|
|
8756
8897
|
</span>
|
|
@@ -8759,7 +8900,7 @@
|
|
|
8759
8900
|
</li>
|
|
8760
8901
|
|
|
8761
8902
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
8903
|
+
<a href="#changed_8" class="md-nav__link">
|
|
8763
8904
|
<span class="md-ellipsis">
|
|
8764
8905
|
Changed
|
|
8765
8906
|
</span>
|
|
@@ -8786,7 +8927,7 @@
|
|
|
8786
8927
|
</li>
|
|
8787
8928
|
|
|
8788
8929
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#
|
|
8930
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
8790
8931
|
<span class="md-ellipsis">
|
|
8791
8932
|
Fixed
|
|
8792
8933
|
</span>
|
|
@@ -8795,7 +8936,7 @@
|
|
|
8795
8936
|
</li>
|
|
8796
8937
|
|
|
8797
8938
|
<li class="md-nav__item">
|
|
8798
|
-
<a href="#
|
|
8939
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
8799
8940
|
<span class="md-ellipsis">
|
|
8800
8941
|
Dependencies
|
|
8801
8942
|
</span>
|
|
@@ -8813,7 +8954,7 @@
|
|
|
8813
8954
|
</li>
|
|
8814
8955
|
|
|
8815
8956
|
<li class="md-nav__item">
|
|
8816
|
-
<a href="#
|
|
8957
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
8817
8958
|
<span class="md-ellipsis">
|
|
8818
8959
|
Housekeeping
|
|
8819
8960
|
</span>
|
|
@@ -9624,6 +9765,126 @@
|
|
|
9624
9765
|
</ul>
|
|
9625
9766
|
</nav>
|
|
9626
9767
|
|
|
9768
|
+
</li>
|
|
9769
|
+
|
|
9770
|
+
<li class="md-nav__item">
|
|
9771
|
+
<a href="#v2310-2024-10-29" class="md-nav__link">
|
|
9772
|
+
<span class="md-ellipsis">
|
|
9773
|
+
v2.3.10 (2024-10-29)
|
|
9774
|
+
</span>
|
|
9775
|
+
</a>
|
|
9776
|
+
|
|
9777
|
+
<nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
|
|
9778
|
+
<ul class="md-nav__list">
|
|
9779
|
+
|
|
9780
|
+
<li class="md-nav__item">
|
|
9781
|
+
<a href="#added_1" class="md-nav__link">
|
|
9782
|
+
<span class="md-ellipsis">
|
|
9783
|
+
Added
|
|
9784
|
+
</span>
|
|
9785
|
+
</a>
|
|
9786
|
+
|
|
9787
|
+
</li>
|
|
9788
|
+
|
|
9789
|
+
<li class="md-nav__item">
|
|
9790
|
+
<a href="#changed_1" class="md-nav__link">
|
|
9791
|
+
<span class="md-ellipsis">
|
|
9792
|
+
Changed
|
|
9793
|
+
</span>
|
|
9794
|
+
</a>
|
|
9795
|
+
|
|
9796
|
+
</li>
|
|
9797
|
+
|
|
9798
|
+
<li class="md-nav__item">
|
|
9799
|
+
<a href="#fixed" class="md-nav__link">
|
|
9800
|
+
<span class="md-ellipsis">
|
|
9801
|
+
Fixed
|
|
9802
|
+
</span>
|
|
9803
|
+
</a>
|
|
9804
|
+
|
|
9805
|
+
</li>
|
|
9806
|
+
|
|
9807
|
+
<li class="md-nav__item">
|
|
9808
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9809
|
+
<span class="md-ellipsis">
|
|
9810
|
+
Dependencies
|
|
9811
|
+
</span>
|
|
9812
|
+
</a>
|
|
9813
|
+
|
|
9814
|
+
</li>
|
|
9815
|
+
|
|
9816
|
+
<li class="md-nav__item">
|
|
9817
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
9818
|
+
<span class="md-ellipsis">
|
|
9819
|
+
Housekeeping
|
|
9820
|
+
</span>
|
|
9821
|
+
</a>
|
|
9822
|
+
|
|
9823
|
+
</li>
|
|
9824
|
+
|
|
9825
|
+
</ul>
|
|
9826
|
+
</nav>
|
|
9827
|
+
|
|
9828
|
+
</li>
|
|
9829
|
+
|
|
9830
|
+
<li class="md-nav__item">
|
|
9831
|
+
<a href="#v239-2024-10-28" class="md-nav__link">
|
|
9832
|
+
<span class="md-ellipsis">
|
|
9833
|
+
v2.3.9 (2024-10-28)
|
|
9834
|
+
</span>
|
|
9835
|
+
</a>
|
|
9836
|
+
|
|
9837
|
+
<nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
|
|
9838
|
+
<ul class="md-nav__list">
|
|
9839
|
+
|
|
9840
|
+
<li class="md-nav__item">
|
|
9841
|
+
<a href="#added_2" class="md-nav__link">
|
|
9842
|
+
<span class="md-ellipsis">
|
|
9843
|
+
Added
|
|
9844
|
+
</span>
|
|
9845
|
+
</a>
|
|
9846
|
+
|
|
9847
|
+
</li>
|
|
9848
|
+
|
|
9849
|
+
<li class="md-nav__item">
|
|
9850
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9851
|
+
<span class="md-ellipsis">
|
|
9852
|
+
Changed
|
|
9853
|
+
</span>
|
|
9854
|
+
</a>
|
|
9855
|
+
|
|
9856
|
+
</li>
|
|
9857
|
+
|
|
9858
|
+
<li class="md-nav__item">
|
|
9859
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9860
|
+
<span class="md-ellipsis">
|
|
9861
|
+
Fixed
|
|
9862
|
+
</span>
|
|
9863
|
+
</a>
|
|
9864
|
+
|
|
9865
|
+
</li>
|
|
9866
|
+
|
|
9867
|
+
<li class="md-nav__item">
|
|
9868
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9869
|
+
<span class="md-ellipsis">
|
|
9870
|
+
Dependencies
|
|
9871
|
+
</span>
|
|
9872
|
+
</a>
|
|
9873
|
+
|
|
9874
|
+
</li>
|
|
9875
|
+
|
|
9876
|
+
<li class="md-nav__item">
|
|
9877
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9878
|
+
<span class="md-ellipsis">
|
|
9879
|
+
Housekeeping
|
|
9880
|
+
</span>
|
|
9881
|
+
</a>
|
|
9882
|
+
|
|
9883
|
+
</li>
|
|
9884
|
+
|
|
9885
|
+
</ul>
|
|
9886
|
+
</nav>
|
|
9887
|
+
|
|
9627
9888
|
</li>
|
|
9628
9889
|
|
|
9629
9890
|
<li class="md-nav__item">
|
|
@@ -9637,7 +9898,7 @@
|
|
|
9637
9898
|
<ul class="md-nav__list">
|
|
9638
9899
|
|
|
9639
9900
|
<li class="md-nav__item">
|
|
9640
|
-
<a href="#
|
|
9901
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9641
9902
|
<span class="md-ellipsis">
|
|
9642
9903
|
Fixed
|
|
9643
9904
|
</span>
|
|
@@ -9661,7 +9922,7 @@
|
|
|
9661
9922
|
<ul class="md-nav__list">
|
|
9662
9923
|
|
|
9663
9924
|
<li class="md-nav__item">
|
|
9664
|
-
<a href="#
|
|
9925
|
+
<a href="#added_3" class="md-nav__link">
|
|
9665
9926
|
<span class="md-ellipsis">
|
|
9666
9927
|
Added
|
|
9667
9928
|
</span>
|
|
@@ -9670,7 +9931,7 @@
|
|
|
9670
9931
|
</li>
|
|
9671
9932
|
|
|
9672
9933
|
<li class="md-nav__item">
|
|
9673
|
-
<a href="#
|
|
9934
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9674
9935
|
<span class="md-ellipsis">
|
|
9675
9936
|
Changed
|
|
9676
9937
|
</span>
|
|
@@ -9679,7 +9940,7 @@
|
|
|
9679
9940
|
</li>
|
|
9680
9941
|
|
|
9681
9942
|
<li class="md-nav__item">
|
|
9682
|
-
<a href="#
|
|
9943
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9683
9944
|
<span class="md-ellipsis">
|
|
9684
9945
|
Fixed
|
|
9685
9946
|
</span>
|
|
@@ -9688,7 +9949,7 @@
|
|
|
9688
9949
|
</li>
|
|
9689
9950
|
|
|
9690
9951
|
<li class="md-nav__item">
|
|
9691
|
-
<a href="#
|
|
9952
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9692
9953
|
<span class="md-ellipsis">
|
|
9693
9954
|
Dependencies
|
|
9694
9955
|
</span>
|
|
@@ -9697,7 +9958,7 @@
|
|
|
9697
9958
|
</li>
|
|
9698
9959
|
|
|
9699
9960
|
<li class="md-nav__item">
|
|
9700
|
-
<a href="#
|
|
9961
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9701
9962
|
<span class="md-ellipsis">
|
|
9702
9963
|
Housekeeping
|
|
9703
9964
|
</span>
|
|
@@ -9721,7 +9982,7 @@
|
|
|
9721
9982
|
<ul class="md-nav__list">
|
|
9722
9983
|
|
|
9723
9984
|
<li class="md-nav__item">
|
|
9724
|
-
<a href="#
|
|
9985
|
+
<a href="#added_4" class="md-nav__link">
|
|
9725
9986
|
<span class="md-ellipsis">
|
|
9726
9987
|
Added
|
|
9727
9988
|
</span>
|
|
@@ -9730,7 +9991,7 @@
|
|
|
9730
9991
|
</li>
|
|
9731
9992
|
|
|
9732
9993
|
<li class="md-nav__item">
|
|
9733
|
-
<a href="#
|
|
9994
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9734
9995
|
<span class="md-ellipsis">
|
|
9735
9996
|
Fixed
|
|
9736
9997
|
</span>
|
|
@@ -9748,7 +10009,7 @@
|
|
|
9748
10009
|
</li>
|
|
9749
10010
|
|
|
9750
10011
|
<li class="md-nav__item">
|
|
9751
|
-
<a href="#
|
|
10012
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9752
10013
|
<span class="md-ellipsis">
|
|
9753
10014
|
Housekeeping
|
|
9754
10015
|
</span>
|
|
@@ -9772,7 +10033,7 @@
|
|
|
9772
10033
|
<ul class="md-nav__list">
|
|
9773
10034
|
|
|
9774
10035
|
<li class="md-nav__item">
|
|
9775
|
-
<a href="#
|
|
10036
|
+
<a href="#added_5" class="md-nav__link">
|
|
9776
10037
|
<span class="md-ellipsis">
|
|
9777
10038
|
Added
|
|
9778
10039
|
</span>
|
|
@@ -9781,7 +10042,7 @@
|
|
|
9781
10042
|
</li>
|
|
9782
10043
|
|
|
9783
10044
|
<li class="md-nav__item">
|
|
9784
|
-
<a href="#
|
|
10045
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9785
10046
|
<span class="md-ellipsis">
|
|
9786
10047
|
Changed
|
|
9787
10048
|
</span>
|
|
@@ -9790,7 +10051,7 @@
|
|
|
9790
10051
|
</li>
|
|
9791
10052
|
|
|
9792
10053
|
<li class="md-nav__item">
|
|
9793
|
-
<a href="#
|
|
10054
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9794
10055
|
<span class="md-ellipsis">
|
|
9795
10056
|
Fixed
|
|
9796
10057
|
</span>
|
|
@@ -9799,7 +10060,7 @@
|
|
|
9799
10060
|
</li>
|
|
9800
10061
|
|
|
9801
10062
|
<li class="md-nav__item">
|
|
9802
|
-
<a href="#
|
|
10063
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9803
10064
|
<span class="md-ellipsis">
|
|
9804
10065
|
Dependencies
|
|
9805
10066
|
</span>
|
|
@@ -9817,7 +10078,7 @@
|
|
|
9817
10078
|
</li>
|
|
9818
10079
|
|
|
9819
10080
|
<li class="md-nav__item">
|
|
9820
|
-
<a href="#
|
|
10081
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9821
10082
|
<span class="md-ellipsis">
|
|
9822
10083
|
Housekeeping
|
|
9823
10084
|
</span>
|
|
@@ -9841,7 +10102,7 @@
|
|
|
9841
10102
|
<ul class="md-nav__list">
|
|
9842
10103
|
|
|
9843
10104
|
<li class="md-nav__item">
|
|
9844
|
-
<a href="#
|
|
10105
|
+
<a href="#added_6" class="md-nav__link">
|
|
9845
10106
|
<span class="md-ellipsis">
|
|
9846
10107
|
Added
|
|
9847
10108
|
</span>
|
|
@@ -9850,7 +10111,7 @@
|
|
|
9850
10111
|
</li>
|
|
9851
10112
|
|
|
9852
10113
|
<li class="md-nav__item">
|
|
9853
|
-
<a href="#
|
|
10114
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9854
10115
|
<span class="md-ellipsis">
|
|
9855
10116
|
Changed
|
|
9856
10117
|
</span>
|
|
@@ -9859,7 +10120,7 @@
|
|
|
9859
10120
|
</li>
|
|
9860
10121
|
|
|
9861
10122
|
<li class="md-nav__item">
|
|
9862
|
-
<a href="#
|
|
10123
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9863
10124
|
<span class="md-ellipsis">
|
|
9864
10125
|
Fixed
|
|
9865
10126
|
</span>
|
|
@@ -9877,7 +10138,7 @@
|
|
|
9877
10138
|
</li>
|
|
9878
10139
|
|
|
9879
10140
|
<li class="md-nav__item">
|
|
9880
|
-
<a href="#
|
|
10141
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9881
10142
|
<span class="md-ellipsis">
|
|
9882
10143
|
Housekeeping
|
|
9883
10144
|
</span>
|
|
@@ -9910,7 +10171,7 @@
|
|
|
9910
10171
|
</li>
|
|
9911
10172
|
|
|
9912
10173
|
<li class="md-nav__item">
|
|
9913
|
-
<a href="#
|
|
10174
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9914
10175
|
<span class="md-ellipsis">
|
|
9915
10176
|
Fixed
|
|
9916
10177
|
</span>
|
|
@@ -9919,7 +10180,7 @@
|
|
|
9919
10180
|
</li>
|
|
9920
10181
|
|
|
9921
10182
|
<li class="md-nav__item">
|
|
9922
|
-
<a href="#
|
|
10183
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
9923
10184
|
<span class="md-ellipsis">
|
|
9924
10185
|
Dependencies
|
|
9925
10186
|
</span>
|
|
@@ -9928,7 +10189,7 @@
|
|
|
9928
10189
|
</li>
|
|
9929
10190
|
|
|
9930
10191
|
<li class="md-nav__item">
|
|
9931
|
-
<a href="#
|
|
10192
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9932
10193
|
<span class="md-ellipsis">
|
|
9933
10194
|
Housekeeping
|
|
9934
10195
|
</span>
|
|
@@ -9961,7 +10222,7 @@
|
|
|
9961
10222
|
</li>
|
|
9962
10223
|
|
|
9963
10224
|
<li class="md-nav__item">
|
|
9964
|
-
<a href="#
|
|
10225
|
+
<a href="#added_7" class="md-nav__link">
|
|
9965
10226
|
<span class="md-ellipsis">
|
|
9966
10227
|
Added
|
|
9967
10228
|
</span>
|
|
@@ -9970,7 +10231,7 @@
|
|
|
9970
10231
|
</li>
|
|
9971
10232
|
|
|
9972
10233
|
<li class="md-nav__item">
|
|
9973
|
-
<a href="#
|
|
10234
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9974
10235
|
<span class="md-ellipsis">
|
|
9975
10236
|
Fixed
|
|
9976
10237
|
</span>
|
|
@@ -9979,7 +10240,7 @@
|
|
|
9979
10240
|
</li>
|
|
9980
10241
|
|
|
9981
10242
|
<li class="md-nav__item">
|
|
9982
|
-
<a href="#
|
|
10243
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9983
10244
|
<span class="md-ellipsis">
|
|
9984
10245
|
Housekeeping
|
|
9985
10246
|
</span>
|
|
@@ -10003,7 +10264,7 @@
|
|
|
10003
10264
|
<ul class="md-nav__list">
|
|
10004
10265
|
|
|
10005
10266
|
<li class="md-nav__item">
|
|
10006
|
-
<a href="#
|
|
10267
|
+
<a href="#added_8" class="md-nav__link">
|
|
10007
10268
|
<span class="md-ellipsis">
|
|
10008
10269
|
Added
|
|
10009
10270
|
</span>
|
|
@@ -10012,7 +10273,7 @@
|
|
|
10012
10273
|
</li>
|
|
10013
10274
|
|
|
10014
10275
|
<li class="md-nav__item">
|
|
10015
|
-
<a href="#
|
|
10276
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10016
10277
|
<span class="md-ellipsis">
|
|
10017
10278
|
Changed
|
|
10018
10279
|
</span>
|
|
@@ -10021,7 +10282,7 @@
|
|
|
10021
10282
|
</li>
|
|
10022
10283
|
|
|
10023
10284
|
<li class="md-nav__item">
|
|
10024
|
-
<a href="#
|
|
10285
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10025
10286
|
<span class="md-ellipsis">
|
|
10026
10287
|
Fixed
|
|
10027
10288
|
</span>
|
|
@@ -10030,7 +10291,7 @@
|
|
|
10030
10291
|
</li>
|
|
10031
10292
|
|
|
10032
10293
|
<li class="md-nav__item">
|
|
10033
|
-
<a href="#
|
|
10294
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10034
10295
|
<span class="md-ellipsis">
|
|
10035
10296
|
Housekeeping
|
|
10036
10297
|
</span>
|
|
@@ -10063,7 +10324,7 @@
|
|
|
10063
10324
|
</li>
|
|
10064
10325
|
|
|
10065
10326
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#
|
|
10327
|
+
<a href="#added_9" class="md-nav__link">
|
|
10067
10328
|
<span class="md-ellipsis">
|
|
10068
10329
|
Added
|
|
10069
10330
|
</span>
|
|
@@ -10072,7 +10333,7 @@
|
|
|
10072
10333
|
</li>
|
|
10073
10334
|
|
|
10074
10335
|
<li class="md-nav__item">
|
|
10075
|
-
<a href="#
|
|
10336
|
+
<a href="#changed_7" class="md-nav__link">
|
|
10076
10337
|
<span class="md-ellipsis">
|
|
10077
10338
|
Changed
|
|
10078
10339
|
</span>
|
|
@@ -10090,7 +10351,7 @@
|
|
|
10090
10351
|
</li>
|
|
10091
10352
|
|
|
10092
10353
|
<li class="md-nav__item">
|
|
10093
|
-
<a href="#
|
|
10354
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10094
10355
|
<span class="md-ellipsis">
|
|
10095
10356
|
Fixed
|
|
10096
10357
|
</span>
|
|
@@ -10108,7 +10369,7 @@
|
|
|
10108
10369
|
</li>
|
|
10109
10370
|
|
|
10110
10371
|
<li class="md-nav__item">
|
|
10111
|
-
<a href="#
|
|
10372
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
10112
10373
|
<span class="md-ellipsis">
|
|
10113
10374
|
Housekeeping
|
|
10114
10375
|
</span>
|
|
@@ -10141,7 +10402,7 @@
|
|
|
10141
10402
|
</li>
|
|
10142
10403
|
|
|
10143
10404
|
<li class="md-nav__item">
|
|
10144
|
-
<a href="#
|
|
10405
|
+
<a href="#added_10" class="md-nav__link">
|
|
10145
10406
|
<span class="md-ellipsis">
|
|
10146
10407
|
Added
|
|
10147
10408
|
</span>
|
|
@@ -10150,7 +10411,7 @@
|
|
|
10150
10411
|
</li>
|
|
10151
10412
|
|
|
10152
10413
|
<li class="md-nav__item">
|
|
10153
|
-
<a href="#
|
|
10414
|
+
<a href="#changed_8" class="md-nav__link">
|
|
10154
10415
|
<span class="md-ellipsis">
|
|
10155
10416
|
Changed
|
|
10156
10417
|
</span>
|
|
@@ -10177,7 +10438,7 @@
|
|
|
10177
10438
|
</li>
|
|
10178
10439
|
|
|
10179
10440
|
<li class="md-nav__item">
|
|
10180
|
-
<a href="#
|
|
10441
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
10181
10442
|
<span class="md-ellipsis">
|
|
10182
10443
|
Fixed
|
|
10183
10444
|
</span>
|
|
@@ -10186,7 +10447,7 @@
|
|
|
10186
10447
|
</li>
|
|
10187
10448
|
|
|
10188
10449
|
<li class="md-nav__item">
|
|
10189
|
-
<a href="#
|
|
10450
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
10190
10451
|
<span class="md-ellipsis">
|
|
10191
10452
|
Dependencies
|
|
10192
10453
|
</span>
|
|
@@ -10204,7 +10465,7 @@
|
|
|
10204
10465
|
</li>
|
|
10205
10466
|
|
|
10206
10467
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#
|
|
10468
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
10208
10469
|
<span class="md-ellipsis">
|
|
10209
10470
|
Housekeeping
|
|
10210
10471
|
</span>
|
|
@@ -10327,9 +10588,64 @@
|
|
|
10327
10588
|
<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>
|
|
10328
10589
|
<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>
|
|
10329
10590
|
<!-- towncrier release notes start -->
|
|
10330
|
-
<h2 id="
|
|
10591
|
+
<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>
|
|
10592
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10593
|
+
<ul>
|
|
10594
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
|
|
10595
|
+
<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>
|
|
10596
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
10597
|
+
<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>
|
|
10598
|
+
</ul>
|
|
10599
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10600
|
+
<ul>
|
|
10601
|
+
<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>
|
|
10602
|
+
</ul>
|
|
10331
10603
|
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10332
10604
|
<ul>
|
|
10605
|
+
<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>
|
|
10606
|
+
<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>
|
|
10607
|
+
</ul>
|
|
10608
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10609
|
+
<ul>
|
|
10610
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
10611
|
+
</ul>
|
|
10612
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10613
|
+
<ul>
|
|
10614
|
+
<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>
|
|
10615
|
+
</ul>
|
|
10616
|
+
<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>
|
|
10617
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10618
|
+
<ul>
|
|
10619
|
+
<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>
|
|
10620
|
+
<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>
|
|
10621
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
|
|
10622
|
+
</ul>
|
|
10623
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
10624
|
+
<ul>
|
|
10625
|
+
<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>
|
|
10626
|
+
<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>
|
|
10627
|
+
<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>
|
|
10628
|
+
</ul>
|
|
10629
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10630
|
+
<ul>
|
|
10631
|
+
<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>
|
|
10632
|
+
<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>
|
|
10633
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Fixed reversed chronological ordering of JobHooks and Webhooks sent from a single <code>web_request_context</code> session.</li>
|
|
10634
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6400">#6400</a> - Removed misleading help text from ModularComponentForm, as the <code>{module}</code> auto-substitution in names only applies through component <em>templates</em> at present.</li>
|
|
10635
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6415">#6415</a> - Added missing column <code>software_version</code> to the Device Table in Device List View.</li>
|
|
10636
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the `role' column on Device/VM interfaces.</li>
|
|
10637
|
+
</ul>
|
|
10638
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
10639
|
+
<ul>
|
|
10640
|
+
<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>
|
|
10641
|
+
</ul>
|
|
10642
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10643
|
+
<ul>
|
|
10644
|
+
<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>
|
|
10645
|
+
</ul>
|
|
10646
|
+
<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>
|
|
10647
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10648
|
+
<ul>
|
|
10333
10649
|
<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>
|
|
10334
10650
|
<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>
|
|
10335
10651
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Added pagination of related-object tables to many IPAM views to avoid errors when very large quantities of related records are present.</li>
|
|
@@ -10337,27 +10653,27 @@
|
|
|
10337
10653
|
<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>
|
|
10338
10654
|
</ul>
|
|
10339
10655
|
<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>
|
|
10340
|
-
<h3 id="
|
|
10656
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10341
10657
|
<ul>
|
|
10342
10658
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
10343
10659
|
</ul>
|
|
10344
|
-
<h3 id="
|
|
10660
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
10345
10661
|
<ul>
|
|
10346
10662
|
<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>
|
|
10347
10663
|
<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>
|
|
10348
10664
|
</ul>
|
|
10349
|
-
<h3 id="
|
|
10665
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10350
10666
|
<ul>
|
|
10351
10667
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
10352
10668
|
<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>
|
|
10353
10669
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
|
|
10354
10670
|
<li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
|
|
10355
10671
|
</ul>
|
|
10356
|
-
<h3 id="
|
|
10672
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
10357
10673
|
<ul>
|
|
10358
10674
|
<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>
|
|
10359
10675
|
</ul>
|
|
10360
|
-
<h3 id="
|
|
10676
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
10361
10677
|
<ul>
|
|
10362
10678
|
<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>
|
|
10363
10679
|
<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>
|
|
@@ -10368,12 +10684,12 @@
|
|
|
10368
10684
|
<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>
|
|
10369
10685
|
</ul>
|
|
10370
10686
|
<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>
|
|
10371
|
-
<h3 id="
|
|
10687
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
10372
10688
|
<ul>
|
|
10373
10689
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
10374
10690
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
10375
10691
|
</ul>
|
|
10376
|
-
<h3 id="
|
|
10692
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10377
10693
|
<ul>
|
|
10378
10694
|
<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>
|
|
10379
10695
|
<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>
|
|
@@ -10383,21 +10699,21 @@
|
|
|
10383
10699
|
<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>
|
|
10384
10700
|
<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>
|
|
10385
10701
|
</ul>
|
|
10386
|
-
<h3 id="
|
|
10702
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
10387
10703
|
<ul>
|
|
10388
10704
|
<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>
|
|
10389
10705
|
</ul>
|
|
10390
10706
|
<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>
|
|
10391
|
-
<h3 id="
|
|
10707
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
10392
10708
|
<ul>
|
|
10393
10709
|
<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>
|
|
10394
10710
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
10395
10711
|
</ul>
|
|
10396
|
-
<h3 id="
|
|
10712
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
10397
10713
|
<ul>
|
|
10398
10714
|
<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>
|
|
10399
10715
|
</ul>
|
|
10400
|
-
<h3 id="
|
|
10716
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
10401
10717
|
<ul>
|
|
10402
10718
|
<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>
|
|
10403
10719
|
<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>
|
|
@@ -10408,7 +10724,7 @@
|
|
|
10408
10724
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
|
|
10409
10725
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
10410
10726
|
</ul>
|
|
10411
|
-
<h3 id="
|
|
10727
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
10412
10728
|
<ul>
|
|
10413
10729
|
<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>
|
|
10414
10730
|
<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>
|
|
@@ -10417,7 +10733,7 @@
|
|
|
10417
10733
|
<ul>
|
|
10418
10734
|
<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>
|
|
10419
10735
|
</ul>
|
|
10420
|
-
<h3 id="
|
|
10736
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
10421
10737
|
<ul>
|
|
10422
10738
|
<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>
|
|
10423
10739
|
<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>
|
|
@@ -10426,16 +10742,16 @@
|
|
|
10426
10742
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
10427
10743
|
</ul>
|
|
10428
10744
|
<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>
|
|
10429
|
-
<h3 id="
|
|
10745
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
10430
10746
|
<ul>
|
|
10431
10747
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
10432
10748
|
<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>
|
|
10433
10749
|
</ul>
|
|
10434
|
-
<h3 id="
|
|
10750
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
10435
10751
|
<ul>
|
|
10436
10752
|
<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>
|
|
10437
10753
|
</ul>
|
|
10438
|
-
<h3 id="
|
|
10754
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
10439
10755
|
<ul>
|
|
10440
10756
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
10441
10757
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
@@ -10449,7 +10765,7 @@
|
|
|
10449
10765
|
<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>
|
|
10450
10766
|
<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>
|
|
10451
10767
|
</ul>
|
|
10452
|
-
<h3 id="
|
|
10768
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
10453
10769
|
<ul>
|
|
10454
10770
|
<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>
|
|
10455
10771
|
<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>
|
|
@@ -10461,18 +10777,18 @@
|
|
|
10461
10777
|
<ul>
|
|
10462
10778
|
<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>
|
|
10463
10779
|
</ul>
|
|
10464
|
-
<h3 id="
|
|
10780
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
10465
10781
|
<ul>
|
|
10466
10782
|
<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>
|
|
10467
10783
|
<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>
|
|
10468
10784
|
<li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
|
|
10469
10785
|
<li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
|
|
10470
10786
|
</ul>
|
|
10471
|
-
<h3 id="
|
|
10787
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
10472
10788
|
<ul>
|
|
10473
10789
|
<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>
|
|
10474
10790
|
</ul>
|
|
10475
|
-
<h3 id="
|
|
10791
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
10476
10792
|
<ul>
|
|
10477
10793
|
<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>
|
|
10478
10794
|
<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>
|
|
@@ -10486,14 +10802,14 @@
|
|
|
10486
10802
|
<ul>
|
|
10487
10803
|
<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>
|
|
10488
10804
|
</ul>
|
|
10489
|
-
<h3 id="
|
|
10805
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
10490
10806
|
<ul>
|
|
10491
10807
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
10492
10808
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
10493
10809
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
10494
10810
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
10495
10811
|
</ul>
|
|
10496
|
-
<h3 id="
|
|
10812
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
10497
10813
|
<ul>
|
|
10498
10814
|
<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>
|
|
10499
10815
|
<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>
|
|
@@ -10502,7 +10818,7 @@
|
|
|
10502
10818
|
<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>
|
|
10503
10819
|
<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>
|
|
10504
10820
|
</ul>
|
|
10505
|
-
<h3 id="
|
|
10821
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
10506
10822
|
<ul>
|
|
10507
10823
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
10508
10824
|
<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>
|
|
@@ -10510,24 +10826,24 @@
|
|
|
10510
10826
|
<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>
|
|
10511
10827
|
</ul>
|
|
10512
10828
|
<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>
|
|
10513
|
-
<h3 id="
|
|
10829
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
10514
10830
|
<ul>
|
|
10515
10831
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
10516
10832
|
<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>
|
|
10517
10833
|
<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>
|
|
10518
10834
|
</ul>
|
|
10519
|
-
<h3 id="
|
|
10835
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
10520
10836
|
<ul>
|
|
10521
10837
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
10522
10838
|
</ul>
|
|
10523
|
-
<h3 id="
|
|
10839
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
10524
10840
|
<ul>
|
|
10525
10841
|
<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>
|
|
10526
10842
|
<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>
|
|
10527
10843
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
10528
10844
|
<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>
|
|
10529
10845
|
</ul>
|
|
10530
|
-
<h3 id="
|
|
10846
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
10531
10847
|
<ul>
|
|
10532
10848
|
<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>
|
|
10533
10849
|
</ul>
|
|
@@ -10536,7 +10852,7 @@
|
|
|
10536
10852
|
<ul>
|
|
10537
10853
|
<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>
|
|
10538
10854
|
</ul>
|
|
10539
|
-
<h3 id="
|
|
10855
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
10540
10856
|
<ul>
|
|
10541
10857
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
10542
10858
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -10546,7 +10862,7 @@
|
|
|
10546
10862
|
<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>
|
|
10547
10863
|
<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>
|
|
10548
10864
|
</ul>
|
|
10549
|
-
<h3 id="
|
|
10865
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
10550
10866
|
<ul>
|
|
10551
10867
|
<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>
|
|
10552
10868
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -10560,7 +10876,7 @@
|
|
|
10560
10876
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
10561
10877
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
10562
10878
|
</ul>
|
|
10563
|
-
<h3 id="
|
|
10879
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
10564
10880
|
<ul>
|
|
10565
10881
|
<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>
|
|
10566
10882
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -10584,7 +10900,7 @@
|
|
|
10584
10900
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
10585
10901
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
10586
10902
|
</ul>
|
|
10587
|
-
<h3 id="
|
|
10903
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
10588
10904
|
<ul>
|
|
10589
10905
|
<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>
|
|
10590
10906
|
<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>
|
|
@@ -10599,7 +10915,7 @@
|
|
|
10599
10915
|
<ul>
|
|
10600
10916
|
<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>
|
|
10601
10917
|
</ul>
|
|
10602
|
-
<h3 id="
|
|
10918
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
10603
10919
|
<ul>
|
|
10604
10920
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
10605
10921
|
<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>
|
|
@@ -10646,7 +10962,7 @@
|
|
|
10646
10962
|
<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>
|
|
10647
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
10648
10964
|
</ul>
|
|
10649
|
-
<h3 id="
|
|
10965
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
10650
10966
|
<ul>
|
|
10651
10967
|
<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>
|
|
10652
10968
|
<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>
|
|
@@ -10690,7 +11006,7 @@
|
|
|
10690
11006
|
<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>
|
|
10691
11007
|
<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>
|
|
10692
11008
|
</ul>
|
|
10693
|
-
<h3 id="
|
|
11009
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
10694
11010
|
<ul>
|
|
10695
11011
|
<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>
|
|
10696
11012
|
<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>
|
|
@@ -10714,7 +11030,7 @@
|
|
|
10714
11030
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
10715
11031
|
<li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
|
|
10716
11032
|
</ul>
|
|
10717
|
-
<h3 id="
|
|
11033
|
+
<h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">¶</a></h3>
|
|
10718
11034
|
<ul>
|
|
10719
11035
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
10720
11036
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -10746,7 +11062,7 @@
|
|
|
10746
11062
|
<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>
|
|
10747
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
10748
11064
|
</ul>
|
|
10749
|
-
<h3 id="
|
|
11065
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
10750
11066
|
<ul>
|
|
10751
11067
|
<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>
|
|
10752
11068
|
<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>
|
|
@@ -10917,7 +11233,7 @@
|
|
|
10917
11233
|
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
10918
11234
|
|
|
10919
11235
|
|
|
10920
|
-
<script src="../assets/javascripts/bundle.
|
|
11236
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
10921
11237
|
|
|
10922
11238
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10923
11239
|
|