nautobot 2.1.7__py3-none-any.whl → 2.1.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/api.py +1 -2
- nautobot/apps/utils.py +4 -0
- nautobot/apps/views.py +2 -0
- nautobot/circuits/api/urls.py +1 -2
- nautobot/circuits/api/views.py +0 -12
- nautobot/circuits/tests/integration/test_relationships.py +0 -4
- nautobot/core/api/routers.py +25 -3
- nautobot/core/api/utils.py +4 -0
- nautobot/core/api/views.py +21 -15
- nautobot/core/celery/schedulers.py +13 -0
- nautobot/core/choices.py +0 -21
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/tree_queries.py +29 -7
- nautobot/core/releases.py +1 -1
- nautobot/core/settings.py +9 -0
- nautobot/core/settings_funcs.py +0 -18
- nautobot/core/signals.py +5 -5
- nautobot/core/tasks.py +7 -3
- nautobot/core/templates/admin/base.html +23 -94
- nautobot/core/templates/generic/object_list.html +2 -0
- nautobot/core/templates/graphene/graphiql.html +18 -47
- nautobot/core/templates/inc/footer.html +5 -5
- nautobot/core/templates/inc/nav_menu.html +0 -7
- nautobot/core/templates/nautobot_config.py.j2 +6 -0
- nautobot/core/templates/rest_framework/api.html +12 -5
- nautobot/core/testing/mixins.py +13 -5
- nautobot/core/tests/integration/test_plugin_navbar.py +7 -21
- nautobot/core/tests/integration/test_view_authentication.py +67 -0
- nautobot/core/tests/runner.py +25 -2
- nautobot/core/tests/test_graphql.py +2 -14
- nautobot/core/tests/test_models.py +3 -3
- nautobot/core/tests/test_navigations.py +67 -10
- nautobot/core/tests/test_releases.py +9 -3
- nautobot/core/tests/test_views.py +23 -16
- nautobot/core/utils/lookup.py +124 -0
- nautobot/core/views/__init__.py +3 -7
- nautobot/core/views/generic.py +9 -0
- nautobot/dcim/api/urls.py +1 -2
- nautobot/dcim/api/views.py +1 -12
- nautobot/dcim/choices.py +56 -0
- nautobot/dcim/models/racks.py +1 -3
- nautobot/dcim/navigation.py +1 -1
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +67 -43
- nautobot/dcim/tests/test_api.py +3 -0
- nautobot/dcim/tests/test_filters.py +0 -28
- nautobot/dcim/views.py +5 -2
- nautobot/extras/api/urls.py +1 -2
- nautobot/extras/api/views.py +0 -10
- nautobot/extras/choices.py +14 -0
- nautobot/extras/models/customfields.py +93 -34
- nautobot/extras/models/groups.py +1 -1
- nautobot/extras/models/relationships.py +32 -19
- nautobot/extras/navigation.py +3 -2
- nautobot/extras/plugins/__init__.py +8 -0
- nautobot/extras/plugins/views.py +6 -9
- nautobot/extras/querysets.py +1 -1
- nautobot/extras/signals.py +12 -6
- nautobot/extras/templates/extras/customfield.html +22 -14
- nautobot/extras/templatetags/job_buttons.py +7 -0
- nautobot/extras/templatetags/plugins.py +5 -1
- nautobot/extras/tests/test_customfields.py +323 -287
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_jobs.py +2 -2
- nautobot/extras/tests/test_plugins.py +41 -0
- nautobot/extras/tests/test_relationships.py +31 -14
- nautobot/extras/tests/test_views.py +124 -1
- nautobot/extras/utils.py +7 -3
- nautobot/extras/views.py +10 -10
- nautobot/ipam/api/urls.py +1 -2
- nautobot/ipam/api/views.py +6 -13
- nautobot/ipam/tables.py +0 -1
- nautobot/ipam/tests/test_graphql.py +2 -3
- nautobot/ipam/views.py +12 -10
- nautobot/project-static/css/base.css +1 -0
- nautobot/project-static/docs/404.html +30 -2
- nautobot/project-static/docs/apps/index.html +30 -2
- nautobot/project-static/docs/apps/nautobot-apps.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +410 -410
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +386 -358
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +759 -602
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +528 -467
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +205 -109
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1265 -785
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1827 -1746
- nautobot/project-static/docs/development/apps/api/configuration-view.html +30 -2
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/global-search.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/graphql.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +31 -3
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +30 -2
- nautobot/project-static/docs/development/apps/api/prometheus.html +30 -2
- nautobot/project-static/docs/development/apps/api/setup.html +30 -2
- nautobot/project-static/docs/development/apps/api/testing.html +33 -5
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +33 -5
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +13 -5559
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +5594 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/base-template.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +44 -11
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +47 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/notes.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/urls.html +30 -2
- nautobot/project-static/docs/development/apps/index.html +30 -2
- nautobot/project-static/docs/development/apps/migration/code-updates.html +30 -2
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +30 -2
- nautobot/project-static/docs/development/apps/migration/from-v1.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +30 -2
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +30 -2
- nautobot/project-static/docs/development/core/application-registry.html +30 -2
- nautobot/project-static/docs/development/core/best-practices.html +33 -5
- nautobot/project-static/docs/development/core/bootstrap-ui.html +30 -2
- nautobot/project-static/docs/development/core/caching.html +5481 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +30 -2
- nautobot/project-static/docs/development/core/extending-models.html +33 -5
- nautobot/project-static/docs/development/core/generic-views.html +30 -2
- nautobot/project-static/docs/development/core/getting-started.html +49 -12
- nautobot/project-static/docs/development/core/homepage.html +30 -2
- nautobot/project-static/docs/development/core/index.html +30 -2
- nautobot/project-static/docs/development/core/model-features.html +30 -2
- nautobot/project-static/docs/development/core/natural-keys.html +30 -2
- nautobot/project-static/docs/development/core/navigation-menu.html +30 -2
- nautobot/project-static/docs/development/core/release-checklist.html +30 -2
- nautobot/project-static/docs/development/core/role-internals.html +30 -2
- nautobot/project-static/docs/development/core/style-guide.html +30 -2
- nautobot/project-static/docs/development/core/templates.html +30 -2
- nautobot/project-static/docs/development/core/testing.html +30 -2
- nautobot/project-static/docs/development/core/user-preferences.html +30 -2
- nautobot/project-static/docs/development/index.html +30 -2
- nautobot/project-static/docs/development/jobs/index.html +30 -2
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +30 -2
- nautobot/project-static/docs/index.html +30 -2
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.3.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.4.html +31 -3
- nautobot/project-static/docs/release-notes/version-1.5.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +573 -134
- nautobot/project-static/docs/release-notes/version-2.0.html +30 -2
- nautobot/project-static/docs/release-notes/version-2.1.html +539 -170
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +250 -240
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +49 -2
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +37 -5
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +6019 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +33 -5
- nautobot/project-static/docs/user-guide/administration/installation/services.html +30 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +30 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +30 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +30 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +33 -5
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +30 -2
- nautobot/project-static/docs/user-guide/index.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +111 -15
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +30 -2
- nautobot/tenancy/api/urls.py +1 -2
- nautobot/tenancy/api/views.py +0 -12
- nautobot/tenancy/navigation.py +1 -1
- nautobot/tenancy/tests/test_filters.py +0 -168
- nautobot/users/api/urls.py +1 -2
- nautobot/users/api/views.py +2 -65
- nautobot/users/views.py +8 -8
- nautobot/virtualization/api/urls.py +1 -2
- nautobot/virtualization/api/views.py +0 -12
- nautobot/virtualization/tests/test_filters.py +0 -28
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/METADATA +2 -2
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/RECORD +338 -334
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/NOTICE +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/WHEEL +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/entry_points.txt +0 -0
|
@@ -550,6 +550,20 @@
|
|
|
550
550
|
|
|
551
551
|
|
|
552
552
|
|
|
553
|
+
<li class="md-nav__item">
|
|
554
|
+
<a href="../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
555
|
+
Health Checks
|
|
556
|
+
</a>
|
|
557
|
+
</li>
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
553
567
|
<li class="md-nav__item">
|
|
554
568
|
<a href="../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
555
569
|
SELinux Troubleshooting
|
|
@@ -3884,8 +3898,8 @@
|
|
|
3884
3898
|
|
|
3885
3899
|
|
|
3886
3900
|
<li class="md-nav__item">
|
|
3887
|
-
<a href="../development/apps/api/ui-extensions/object-
|
|
3888
|
-
Object Detail
|
|
3901
|
+
<a href="../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3902
|
+
Object Detail & List Views
|
|
3889
3903
|
</a>
|
|
3890
3904
|
</li>
|
|
3891
3905
|
|
|
@@ -4584,6 +4598,20 @@
|
|
|
4584
4598
|
|
|
4585
4599
|
|
|
4586
4600
|
|
|
4601
|
+
<li class="md-nav__item">
|
|
4602
|
+
<a href="../development/core/caching.html" class="md-nav__link">
|
|
4603
|
+
Caching
|
|
4604
|
+
</a>
|
|
4605
|
+
</li>
|
|
4606
|
+
|
|
4607
|
+
|
|
4608
|
+
|
|
4609
|
+
|
|
4610
|
+
|
|
4611
|
+
|
|
4612
|
+
|
|
4613
|
+
|
|
4614
|
+
|
|
4587
4615
|
<li class="md-nav__item">
|
|
4588
4616
|
<a href="../development/core/extending-models.html" class="md-nav__link">
|
|
4589
4617
|
Extending Models
|
|
@@ -4984,6 +5012,176 @@
|
|
|
4984
5012
|
</ul>
|
|
4985
5013
|
</nav>
|
|
4986
5014
|
|
|
5015
|
+
</li>
|
|
5016
|
+
|
|
5017
|
+
<li class="md-nav__item">
|
|
5018
|
+
<a href="#v1615-2024-03-18" class="md-nav__link">
|
|
5019
|
+
v1.6.15 (2024-03-18)
|
|
5020
|
+
</a>
|
|
5021
|
+
|
|
5022
|
+
<nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
|
|
5023
|
+
<ul class="md-nav__list">
|
|
5024
|
+
|
|
5025
|
+
<li class="md-nav__item">
|
|
5026
|
+
<a href="#added_1" class="md-nav__link">
|
|
5027
|
+
Added
|
|
5028
|
+
</a>
|
|
5029
|
+
|
|
5030
|
+
</li>
|
|
5031
|
+
|
|
5032
|
+
<li class="md-nav__item">
|
|
5033
|
+
<a href="#fixed" class="md-nav__link">
|
|
5034
|
+
Fixed
|
|
5035
|
+
</a>
|
|
5036
|
+
|
|
5037
|
+
</li>
|
|
5038
|
+
|
|
5039
|
+
<li class="md-nav__item">
|
|
5040
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
5041
|
+
Housekeeping
|
|
5042
|
+
</a>
|
|
5043
|
+
|
|
5044
|
+
</li>
|
|
5045
|
+
|
|
5046
|
+
</ul>
|
|
5047
|
+
</nav>
|
|
5048
|
+
|
|
5049
|
+
</li>
|
|
5050
|
+
|
|
5051
|
+
<li class="md-nav__item">
|
|
5052
|
+
<a href="#v1614-2024-03-05" class="md-nav__link">
|
|
5053
|
+
v1.6.14 (2024-03-05)
|
|
5054
|
+
</a>
|
|
5055
|
+
|
|
5056
|
+
<nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
|
|
5057
|
+
<ul class="md-nav__list">
|
|
5058
|
+
|
|
5059
|
+
<li class="md-nav__item">
|
|
5060
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
5061
|
+
Fixed
|
|
5062
|
+
</a>
|
|
5063
|
+
|
|
5064
|
+
</li>
|
|
5065
|
+
|
|
5066
|
+
</ul>
|
|
5067
|
+
</nav>
|
|
5068
|
+
|
|
5069
|
+
</li>
|
|
5070
|
+
|
|
5071
|
+
<li class="md-nav__item">
|
|
5072
|
+
<a href="#v1613-2024-03-04" class="md-nav__link">
|
|
5073
|
+
v1.6.13 (2024-03-04)
|
|
5074
|
+
</a>
|
|
5075
|
+
|
|
5076
|
+
<nav class="md-nav" aria-label="v1.6.13 (2024-03-04)">
|
|
5077
|
+
<ul class="md-nav__list">
|
|
5078
|
+
|
|
5079
|
+
<li class="md-nav__item">
|
|
5080
|
+
<a href="#added_2" class="md-nav__link">
|
|
5081
|
+
Added
|
|
5082
|
+
</a>
|
|
5083
|
+
|
|
5084
|
+
</li>
|
|
5085
|
+
|
|
5086
|
+
<li class="md-nav__item">
|
|
5087
|
+
<a href="#added_3" class="md-nav__link">
|
|
5088
|
+
Added
|
|
5089
|
+
</a>
|
|
5090
|
+
|
|
5091
|
+
</li>
|
|
5092
|
+
|
|
5093
|
+
<li class="md-nav__item">
|
|
5094
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
5095
|
+
Fixed
|
|
5096
|
+
</a>
|
|
5097
|
+
|
|
5098
|
+
</li>
|
|
5099
|
+
|
|
5100
|
+
<li class="md-nav__item">
|
|
5101
|
+
<a href="#documentation" class="md-nav__link">
|
|
5102
|
+
Documentation
|
|
5103
|
+
</a>
|
|
5104
|
+
|
|
5105
|
+
</li>
|
|
5106
|
+
|
|
5107
|
+
</ul>
|
|
5108
|
+
</nav>
|
|
5109
|
+
|
|
5110
|
+
</li>
|
|
5111
|
+
|
|
5112
|
+
<li class="md-nav__item">
|
|
5113
|
+
<a href="#v1612-2024-02-20" class="md-nav__link">
|
|
5114
|
+
v1.6.12 (2024-02-20)
|
|
5115
|
+
</a>
|
|
5116
|
+
|
|
5117
|
+
<nav class="md-nav" aria-label="v1.6.12 (2024-02-20)">
|
|
5118
|
+
<ul class="md-nav__list">
|
|
5119
|
+
|
|
5120
|
+
<li class="md-nav__item">
|
|
5121
|
+
<a href="#added_4" class="md-nav__link">
|
|
5122
|
+
Added
|
|
5123
|
+
</a>
|
|
5124
|
+
|
|
5125
|
+
</li>
|
|
5126
|
+
|
|
5127
|
+
<li class="md-nav__item">
|
|
5128
|
+
<a href="#security" class="md-nav__link">
|
|
5129
|
+
Security
|
|
5130
|
+
</a>
|
|
5131
|
+
|
|
5132
|
+
</li>
|
|
5133
|
+
|
|
5134
|
+
<li class="md-nav__item">
|
|
5135
|
+
<a href="#changed_1" class="md-nav__link">
|
|
5136
|
+
Changed
|
|
5137
|
+
</a>
|
|
5138
|
+
|
|
5139
|
+
</li>
|
|
5140
|
+
|
|
5141
|
+
<li class="md-nav__item">
|
|
5142
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
5143
|
+
Fixed
|
|
5144
|
+
</a>
|
|
5145
|
+
|
|
5146
|
+
</li>
|
|
5147
|
+
|
|
5148
|
+
</ul>
|
|
5149
|
+
</nav>
|
|
5150
|
+
|
|
5151
|
+
</li>
|
|
5152
|
+
|
|
5153
|
+
<li class="md-nav__item">
|
|
5154
|
+
<a href="#v1611-2024-02-05" class="md-nav__link">
|
|
5155
|
+
v1.6.11 (2024-02-05)
|
|
5156
|
+
</a>
|
|
5157
|
+
|
|
5158
|
+
<nav class="md-nav" aria-label="v1.6.11 (2024-02-05)">
|
|
5159
|
+
<ul class="md-nav__list">
|
|
5160
|
+
|
|
5161
|
+
<li class="md-nav__item">
|
|
5162
|
+
<a href="#security_1" class="md-nav__link">
|
|
5163
|
+
Security
|
|
5164
|
+
</a>
|
|
5165
|
+
|
|
5166
|
+
</li>
|
|
5167
|
+
|
|
5168
|
+
<li class="md-nav__item">
|
|
5169
|
+
<a href="#added_5" class="md-nav__link">
|
|
5170
|
+
Added
|
|
5171
|
+
</a>
|
|
5172
|
+
|
|
5173
|
+
</li>
|
|
5174
|
+
|
|
5175
|
+
<li class="md-nav__item">
|
|
5176
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
5177
|
+
Fixed
|
|
5178
|
+
</a>
|
|
5179
|
+
|
|
5180
|
+
</li>
|
|
5181
|
+
|
|
5182
|
+
</ul>
|
|
5183
|
+
</nav>
|
|
5184
|
+
|
|
4987
5185
|
</li>
|
|
4988
5186
|
|
|
4989
5187
|
<li class="md-nav__item">
|
|
@@ -4995,21 +5193,21 @@
|
|
|
4995
5193
|
<ul class="md-nav__list">
|
|
4996
5194
|
|
|
4997
5195
|
<li class="md-nav__item">
|
|
4998
|
-
<a href="#
|
|
5196
|
+
<a href="#security_2" class="md-nav__link">
|
|
4999
5197
|
Security
|
|
5000
5198
|
</a>
|
|
5001
5199
|
|
|
5002
5200
|
</li>
|
|
5003
5201
|
|
|
5004
5202
|
<li class="md-nav__item">
|
|
5005
|
-
<a href="#
|
|
5203
|
+
<a href="#added_6" class="md-nav__link">
|
|
5006
5204
|
Added
|
|
5007
5205
|
</a>
|
|
5008
5206
|
|
|
5009
5207
|
</li>
|
|
5010
5208
|
|
|
5011
5209
|
<li class="md-nav__item">
|
|
5012
|
-
<a href="#
|
|
5210
|
+
<a href="#changed_2" class="md-nav__link">
|
|
5013
5211
|
Changed
|
|
5014
5212
|
</a>
|
|
5015
5213
|
|
|
@@ -5036,7 +5234,7 @@
|
|
|
5036
5234
|
<ul class="md-nav__list">
|
|
5037
5235
|
|
|
5038
5236
|
<li class="md-nav__item">
|
|
5039
|
-
<a href="#
|
|
5237
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
5040
5238
|
Fixed
|
|
5041
5239
|
</a>
|
|
5042
5240
|
|
|
@@ -5056,14 +5254,14 @@
|
|
|
5056
5254
|
<ul class="md-nav__list">
|
|
5057
5255
|
|
|
5058
5256
|
<li class="md-nav__item">
|
|
5059
|
-
<a href="#
|
|
5257
|
+
<a href="#security_3" class="md-nav__link">
|
|
5060
5258
|
Security
|
|
5061
5259
|
</a>
|
|
5062
5260
|
|
|
5063
5261
|
</li>
|
|
5064
5262
|
|
|
5065
5263
|
<li class="md-nav__item">
|
|
5066
|
-
<a href="#
|
|
5264
|
+
<a href="#added_7" class="md-nav__link">
|
|
5067
5265
|
Added
|
|
5068
5266
|
</a>
|
|
5069
5267
|
|
|
@@ -5077,14 +5275,14 @@
|
|
|
5077
5275
|
</li>
|
|
5078
5276
|
|
|
5079
5277
|
<li class="md-nav__item">
|
|
5080
|
-
<a href="#
|
|
5278
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
5081
5279
|
Fixed
|
|
5082
5280
|
</a>
|
|
5083
5281
|
|
|
5084
5282
|
</li>
|
|
5085
5283
|
|
|
5086
5284
|
<li class="md-nav__item">
|
|
5087
|
-
<a href="#
|
|
5285
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
5088
5286
|
Housekeeping
|
|
5089
5287
|
</a>
|
|
5090
5288
|
|
|
@@ -5104,14 +5302,14 @@
|
|
|
5104
5302
|
<ul class="md-nav__list">
|
|
5105
5303
|
|
|
5106
5304
|
<li class="md-nav__item">
|
|
5107
|
-
<a href="#
|
|
5305
|
+
<a href="#security_4" class="md-nav__link">
|
|
5108
5306
|
Security
|
|
5109
5307
|
</a>
|
|
5110
5308
|
|
|
5111
5309
|
</li>
|
|
5112
5310
|
|
|
5113
5311
|
<li class="md-nav__item">
|
|
5114
|
-
<a href="#
|
|
5312
|
+
<a href="#added_8" class="md-nav__link">
|
|
5115
5313
|
Added
|
|
5116
5314
|
</a>
|
|
5117
5315
|
|
|
@@ -5125,7 +5323,7 @@
|
|
|
5125
5323
|
</li>
|
|
5126
5324
|
|
|
5127
5325
|
<li class="md-nav__item">
|
|
5128
|
-
<a href="#
|
|
5326
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
5129
5327
|
Fixed
|
|
5130
5328
|
</a>
|
|
5131
5329
|
|
|
@@ -5145,21 +5343,21 @@
|
|
|
5145
5343
|
<ul class="md-nav__list">
|
|
5146
5344
|
|
|
5147
5345
|
<li class="md-nav__item">
|
|
5148
|
-
<a href="#
|
|
5346
|
+
<a href="#security_5" class="md-nav__link">
|
|
5149
5347
|
Security
|
|
5150
5348
|
</a>
|
|
5151
5349
|
|
|
5152
5350
|
</li>
|
|
5153
5351
|
|
|
5154
5352
|
<li class="md-nav__item">
|
|
5155
|
-
<a href="#
|
|
5353
|
+
<a href="#changed_3" class="md-nav__link">
|
|
5156
5354
|
Changed
|
|
5157
5355
|
</a>
|
|
5158
5356
|
|
|
5159
5357
|
</li>
|
|
5160
5358
|
|
|
5161
5359
|
<li class="md-nav__item">
|
|
5162
|
-
<a href="#
|
|
5360
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
5163
5361
|
Fixed
|
|
5164
5362
|
</a>
|
|
5165
5363
|
|
|
@@ -5173,7 +5371,7 @@
|
|
|
5173
5371
|
</li>
|
|
5174
5372
|
|
|
5175
5373
|
<li class="md-nav__item">
|
|
5176
|
-
<a href="#
|
|
5374
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
5177
5375
|
Housekeeping
|
|
5178
5376
|
</a>
|
|
5179
5377
|
|
|
@@ -5193,35 +5391,35 @@
|
|
|
5193
5391
|
<ul class="md-nav__list">
|
|
5194
5392
|
|
|
5195
5393
|
<li class="md-nav__item">
|
|
5196
|
-
<a href="#
|
|
5394
|
+
<a href="#security_6" class="md-nav__link">
|
|
5197
5395
|
Security
|
|
5198
5396
|
</a>
|
|
5199
5397
|
|
|
5200
5398
|
</li>
|
|
5201
5399
|
|
|
5202
5400
|
<li class="md-nav__item">
|
|
5203
|
-
<a href="#
|
|
5401
|
+
<a href="#added_9" class="md-nav__link">
|
|
5204
5402
|
Added
|
|
5205
5403
|
</a>
|
|
5206
5404
|
|
|
5207
5405
|
</li>
|
|
5208
5406
|
|
|
5209
5407
|
<li class="md-nav__item">
|
|
5210
|
-
<a href="#
|
|
5408
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
5211
5409
|
Fixed
|
|
5212
5410
|
</a>
|
|
5213
5411
|
|
|
5214
5412
|
</li>
|
|
5215
5413
|
|
|
5216
5414
|
<li class="md-nav__item">
|
|
5217
|
-
<a href="#
|
|
5415
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
5218
5416
|
Documentation
|
|
5219
5417
|
</a>
|
|
5220
5418
|
|
|
5221
5419
|
</li>
|
|
5222
5420
|
|
|
5223
5421
|
<li class="md-nav__item">
|
|
5224
|
-
<a href="#
|
|
5422
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
5225
5423
|
Housekeeping
|
|
5226
5424
|
</a>
|
|
5227
5425
|
|
|
@@ -5241,14 +5439,14 @@
|
|
|
5241
5439
|
<ul class="md-nav__list">
|
|
5242
5440
|
|
|
5243
5441
|
<li class="md-nav__item">
|
|
5244
|
-
<a href="#
|
|
5442
|
+
<a href="#added_10" class="md-nav__link">
|
|
5245
5443
|
Added
|
|
5246
5444
|
</a>
|
|
5247
5445
|
|
|
5248
5446
|
</li>
|
|
5249
5447
|
|
|
5250
5448
|
<li class="md-nav__item">
|
|
5251
|
-
<a href="#
|
|
5449
|
+
<a href="#changed_4" class="md-nav__link">
|
|
5252
5450
|
Changed
|
|
5253
5451
|
</a>
|
|
5254
5452
|
|
|
@@ -5262,7 +5460,7 @@
|
|
|
5262
5460
|
</li>
|
|
5263
5461
|
|
|
5264
5462
|
<li class="md-nav__item">
|
|
5265
|
-
<a href="#
|
|
5463
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
5266
5464
|
Housekeeping
|
|
5267
5465
|
</a>
|
|
5268
5466
|
|
|
@@ -5282,28 +5480,28 @@
|
|
|
5282
5480
|
<ul class="md-nav__list">
|
|
5283
5481
|
|
|
5284
5482
|
<li class="md-nav__item">
|
|
5285
|
-
<a href="#
|
|
5483
|
+
<a href="#security_7" class="md-nav__link">
|
|
5286
5484
|
Security
|
|
5287
5485
|
</a>
|
|
5288
5486
|
|
|
5289
5487
|
</li>
|
|
5290
5488
|
|
|
5291
5489
|
<li class="md-nav__item">
|
|
5292
|
-
<a href="#
|
|
5490
|
+
<a href="#added_11" class="md-nav__link">
|
|
5293
5491
|
Added
|
|
5294
5492
|
</a>
|
|
5295
5493
|
|
|
5296
5494
|
</li>
|
|
5297
5495
|
|
|
5298
5496
|
<li class="md-nav__item">
|
|
5299
|
-
<a href="#
|
|
5497
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
5300
5498
|
Fixed
|
|
5301
5499
|
</a>
|
|
5302
5500
|
|
|
5303
5501
|
</li>
|
|
5304
5502
|
|
|
5305
5503
|
<li class="md-nav__item">
|
|
5306
|
-
<a href="#
|
|
5504
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
5307
5505
|
Housekeeping
|
|
5308
5506
|
</a>
|
|
5309
5507
|
|
|
@@ -5323,35 +5521,35 @@
|
|
|
5323
5521
|
<ul class="md-nav__list">
|
|
5324
5522
|
|
|
5325
5523
|
<li class="md-nav__item">
|
|
5326
|
-
<a href="#
|
|
5524
|
+
<a href="#added_12" class="md-nav__link">
|
|
5327
5525
|
Added
|
|
5328
5526
|
</a>
|
|
5329
5527
|
|
|
5330
5528
|
</li>
|
|
5331
5529
|
|
|
5332
5530
|
<li class="md-nav__item">
|
|
5333
|
-
<a href="#
|
|
5531
|
+
<a href="#changed_5" class="md-nav__link">
|
|
5334
5532
|
Changed
|
|
5335
5533
|
</a>
|
|
5336
5534
|
|
|
5337
5535
|
</li>
|
|
5338
5536
|
|
|
5339
5537
|
<li class="md-nav__item">
|
|
5340
|
-
<a href="#
|
|
5538
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
5341
5539
|
Fixed
|
|
5342
5540
|
</a>
|
|
5343
5541
|
|
|
5344
5542
|
</li>
|
|
5345
5543
|
|
|
5346
5544
|
<li class="md-nav__item">
|
|
5347
|
-
<a href="#
|
|
5545
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
5348
5546
|
Documentation
|
|
5349
5547
|
</a>
|
|
5350
5548
|
|
|
5351
5549
|
</li>
|
|
5352
5550
|
|
|
5353
5551
|
<li class="md-nav__item">
|
|
5354
|
-
<a href="#
|
|
5552
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
5355
5553
|
Housekeeping
|
|
5356
5554
|
</a>
|
|
5357
5555
|
|
|
@@ -5371,28 +5569,28 @@
|
|
|
5371
5569
|
<ul class="md-nav__list">
|
|
5372
5570
|
|
|
5373
5571
|
<li class="md-nav__item">
|
|
5374
|
-
<a href="#
|
|
5572
|
+
<a href="#changed_6" class="md-nav__link">
|
|
5375
5573
|
Changed
|
|
5376
5574
|
</a>
|
|
5377
5575
|
|
|
5378
5576
|
</li>
|
|
5379
5577
|
|
|
5380
5578
|
<li class="md-nav__item">
|
|
5381
|
-
<a href="#
|
|
5579
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
5382
5580
|
Fixed
|
|
5383
5581
|
</a>
|
|
5384
5582
|
|
|
5385
5583
|
</li>
|
|
5386
5584
|
|
|
5387
5585
|
<li class="md-nav__item">
|
|
5388
|
-
<a href="#
|
|
5586
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
5389
5587
|
Documentation
|
|
5390
5588
|
</a>
|
|
5391
5589
|
|
|
5392
5590
|
</li>
|
|
5393
5591
|
|
|
5394
5592
|
<li class="md-nav__item">
|
|
5395
|
-
<a href="#
|
|
5593
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
5396
5594
|
Housekeeping
|
|
5397
5595
|
</a>
|
|
5398
5596
|
|
|
@@ -5412,14 +5610,14 @@
|
|
|
5412
5610
|
<ul class="md-nav__list">
|
|
5413
5611
|
|
|
5414
5612
|
<li class="md-nav__item">
|
|
5415
|
-
<a href="#
|
|
5613
|
+
<a href="#added_13" class="md-nav__link">
|
|
5416
5614
|
Added
|
|
5417
5615
|
</a>
|
|
5418
5616
|
|
|
5419
5617
|
</li>
|
|
5420
5618
|
|
|
5421
5619
|
<li class="md-nav__item">
|
|
5422
|
-
<a href="#
|
|
5620
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
5423
5621
|
Fixed
|
|
5424
5622
|
</a>
|
|
5425
5623
|
|
|
@@ -5433,7 +5631,7 @@
|
|
|
5433
5631
|
</li>
|
|
5434
5632
|
|
|
5435
5633
|
<li class="md-nav__item">
|
|
5436
|
-
<a href="#
|
|
5634
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
5437
5635
|
Documentation
|
|
5438
5636
|
</a>
|
|
5439
5637
|
|
|
@@ -5453,14 +5651,14 @@
|
|
|
5453
5651
|
<ul class="md-nav__list">
|
|
5454
5652
|
|
|
5455
5653
|
<li class="md-nav__item">
|
|
5456
|
-
<a href="#
|
|
5654
|
+
<a href="#added_14" class="md-nav__link">
|
|
5457
5655
|
Added
|
|
5458
5656
|
</a>
|
|
5459
5657
|
|
|
5460
5658
|
</li>
|
|
5461
5659
|
|
|
5462
5660
|
<li class="md-nav__item">
|
|
5463
|
-
<a href="#
|
|
5661
|
+
<a href="#changed_7" class="md-nav__link">
|
|
5464
5662
|
Changed
|
|
5465
5663
|
</a>
|
|
5466
5664
|
|
|
@@ -5474,7 +5672,7 @@
|
|
|
5474
5672
|
</li>
|
|
5475
5673
|
|
|
5476
5674
|
<li class="md-nav__item">
|
|
5477
|
-
<a href="#
|
|
5675
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
5478
5676
|
Fixed
|
|
5479
5677
|
</a>
|
|
5480
5678
|
|
|
@@ -5488,7 +5686,7 @@
|
|
|
5488
5686
|
</li>
|
|
5489
5687
|
|
|
5490
5688
|
<li class="md-nav__item">
|
|
5491
|
-
<a href="#
|
|
5689
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
5492
5690
|
Documentation
|
|
5493
5691
|
</a>
|
|
5494
5692
|
|
|
@@ -5977,25 +6175,120 @@
|
|
|
5977
6175
|
</li>
|
|
5978
6176
|
|
|
5979
6177
|
<li class="md-nav__item">
|
|
5980
|
-
<a href="#
|
|
5981
|
-
v1.6.
|
|
6178
|
+
<a href="#v1615-2024-03-18" class="md-nav__link">
|
|
6179
|
+
v1.6.15 (2024-03-18)
|
|
5982
6180
|
</a>
|
|
5983
6181
|
|
|
5984
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
6182
|
+
<nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
|
|
5985
6183
|
<ul class="md-nav__list">
|
|
5986
6184
|
|
|
5987
6185
|
<li class="md-nav__item">
|
|
5988
|
-
<a href="#
|
|
5989
|
-
|
|
6186
|
+
<a href="#added_1" class="md-nav__link">
|
|
6187
|
+
Added
|
|
5990
6188
|
</a>
|
|
5991
6189
|
|
|
5992
6190
|
</li>
|
|
5993
6191
|
|
|
5994
6192
|
<li class="md-nav__item">
|
|
5995
|
-
<a href="#
|
|
6193
|
+
<a href="#fixed" class="md-nav__link">
|
|
6194
|
+
Fixed
|
|
6195
|
+
</a>
|
|
6196
|
+
|
|
6197
|
+
</li>
|
|
6198
|
+
|
|
6199
|
+
<li class="md-nav__item">
|
|
6200
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
6201
|
+
Housekeeping
|
|
6202
|
+
</a>
|
|
6203
|
+
|
|
6204
|
+
</li>
|
|
6205
|
+
|
|
6206
|
+
</ul>
|
|
6207
|
+
</nav>
|
|
6208
|
+
|
|
6209
|
+
</li>
|
|
6210
|
+
|
|
6211
|
+
<li class="md-nav__item">
|
|
6212
|
+
<a href="#v1614-2024-03-05" class="md-nav__link">
|
|
6213
|
+
v1.6.14 (2024-03-05)
|
|
6214
|
+
</a>
|
|
6215
|
+
|
|
6216
|
+
<nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
|
|
6217
|
+
<ul class="md-nav__list">
|
|
6218
|
+
|
|
6219
|
+
<li class="md-nav__item">
|
|
6220
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
6221
|
+
Fixed
|
|
6222
|
+
</a>
|
|
6223
|
+
|
|
6224
|
+
</li>
|
|
6225
|
+
|
|
6226
|
+
</ul>
|
|
6227
|
+
</nav>
|
|
6228
|
+
|
|
6229
|
+
</li>
|
|
6230
|
+
|
|
6231
|
+
<li class="md-nav__item">
|
|
6232
|
+
<a href="#v1613-2024-03-04" class="md-nav__link">
|
|
6233
|
+
v1.6.13 (2024-03-04)
|
|
6234
|
+
</a>
|
|
6235
|
+
|
|
6236
|
+
<nav class="md-nav" aria-label="v1.6.13 (2024-03-04)">
|
|
6237
|
+
<ul class="md-nav__list">
|
|
6238
|
+
|
|
6239
|
+
<li class="md-nav__item">
|
|
6240
|
+
<a href="#added_2" class="md-nav__link">
|
|
5996
6241
|
Added
|
|
5997
6242
|
</a>
|
|
5998
6243
|
|
|
6244
|
+
</li>
|
|
6245
|
+
|
|
6246
|
+
<li class="md-nav__item">
|
|
6247
|
+
<a href="#added_3" class="md-nav__link">
|
|
6248
|
+
Added
|
|
6249
|
+
</a>
|
|
6250
|
+
|
|
6251
|
+
</li>
|
|
6252
|
+
|
|
6253
|
+
<li class="md-nav__item">
|
|
6254
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
6255
|
+
Fixed
|
|
6256
|
+
</a>
|
|
6257
|
+
|
|
6258
|
+
</li>
|
|
6259
|
+
|
|
6260
|
+
<li class="md-nav__item">
|
|
6261
|
+
<a href="#documentation" class="md-nav__link">
|
|
6262
|
+
Documentation
|
|
6263
|
+
</a>
|
|
6264
|
+
|
|
6265
|
+
</li>
|
|
6266
|
+
|
|
6267
|
+
</ul>
|
|
6268
|
+
</nav>
|
|
6269
|
+
|
|
6270
|
+
</li>
|
|
6271
|
+
|
|
6272
|
+
<li class="md-nav__item">
|
|
6273
|
+
<a href="#v1612-2024-02-20" class="md-nav__link">
|
|
6274
|
+
v1.6.12 (2024-02-20)
|
|
6275
|
+
</a>
|
|
6276
|
+
|
|
6277
|
+
<nav class="md-nav" aria-label="v1.6.12 (2024-02-20)">
|
|
6278
|
+
<ul class="md-nav__list">
|
|
6279
|
+
|
|
6280
|
+
<li class="md-nav__item">
|
|
6281
|
+
<a href="#added_4" class="md-nav__link">
|
|
6282
|
+
Added
|
|
6283
|
+
</a>
|
|
6284
|
+
|
|
6285
|
+
</li>
|
|
6286
|
+
|
|
6287
|
+
<li class="md-nav__item">
|
|
6288
|
+
<a href="#security" class="md-nav__link">
|
|
6289
|
+
Security
|
|
6290
|
+
</a>
|
|
6291
|
+
|
|
5999
6292
|
</li>
|
|
6000
6293
|
|
|
6001
6294
|
<li class="md-nav__item">
|
|
@@ -6003,6 +6296,81 @@
|
|
|
6003
6296
|
Changed
|
|
6004
6297
|
</a>
|
|
6005
6298
|
|
|
6299
|
+
</li>
|
|
6300
|
+
|
|
6301
|
+
<li class="md-nav__item">
|
|
6302
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
6303
|
+
Fixed
|
|
6304
|
+
</a>
|
|
6305
|
+
|
|
6306
|
+
</li>
|
|
6307
|
+
|
|
6308
|
+
</ul>
|
|
6309
|
+
</nav>
|
|
6310
|
+
|
|
6311
|
+
</li>
|
|
6312
|
+
|
|
6313
|
+
<li class="md-nav__item">
|
|
6314
|
+
<a href="#v1611-2024-02-05" class="md-nav__link">
|
|
6315
|
+
v1.6.11 (2024-02-05)
|
|
6316
|
+
</a>
|
|
6317
|
+
|
|
6318
|
+
<nav class="md-nav" aria-label="v1.6.11 (2024-02-05)">
|
|
6319
|
+
<ul class="md-nav__list">
|
|
6320
|
+
|
|
6321
|
+
<li class="md-nav__item">
|
|
6322
|
+
<a href="#security_1" class="md-nav__link">
|
|
6323
|
+
Security
|
|
6324
|
+
</a>
|
|
6325
|
+
|
|
6326
|
+
</li>
|
|
6327
|
+
|
|
6328
|
+
<li class="md-nav__item">
|
|
6329
|
+
<a href="#added_5" class="md-nav__link">
|
|
6330
|
+
Added
|
|
6331
|
+
</a>
|
|
6332
|
+
|
|
6333
|
+
</li>
|
|
6334
|
+
|
|
6335
|
+
<li class="md-nav__item">
|
|
6336
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
6337
|
+
Fixed
|
|
6338
|
+
</a>
|
|
6339
|
+
|
|
6340
|
+
</li>
|
|
6341
|
+
|
|
6342
|
+
</ul>
|
|
6343
|
+
</nav>
|
|
6344
|
+
|
|
6345
|
+
</li>
|
|
6346
|
+
|
|
6347
|
+
<li class="md-nav__item">
|
|
6348
|
+
<a href="#v1610-2024-01-22" class="md-nav__link">
|
|
6349
|
+
v1.6.10 (2024-01-22)
|
|
6350
|
+
</a>
|
|
6351
|
+
|
|
6352
|
+
<nav class="md-nav" aria-label="v1.6.10 (2024-01-22)">
|
|
6353
|
+
<ul class="md-nav__list">
|
|
6354
|
+
|
|
6355
|
+
<li class="md-nav__item">
|
|
6356
|
+
<a href="#security_2" class="md-nav__link">
|
|
6357
|
+
Security
|
|
6358
|
+
</a>
|
|
6359
|
+
|
|
6360
|
+
</li>
|
|
6361
|
+
|
|
6362
|
+
<li class="md-nav__item">
|
|
6363
|
+
<a href="#added_6" class="md-nav__link">
|
|
6364
|
+
Added
|
|
6365
|
+
</a>
|
|
6366
|
+
|
|
6367
|
+
</li>
|
|
6368
|
+
|
|
6369
|
+
<li class="md-nav__item">
|
|
6370
|
+
<a href="#changed_2" class="md-nav__link">
|
|
6371
|
+
Changed
|
|
6372
|
+
</a>
|
|
6373
|
+
|
|
6006
6374
|
</li>
|
|
6007
6375
|
|
|
6008
6376
|
<li class="md-nav__item">
|
|
@@ -6026,7 +6394,7 @@
|
|
|
6026
6394
|
<ul class="md-nav__list">
|
|
6027
6395
|
|
|
6028
6396
|
<li class="md-nav__item">
|
|
6029
|
-
<a href="#
|
|
6397
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
6030
6398
|
Fixed
|
|
6031
6399
|
</a>
|
|
6032
6400
|
|
|
@@ -6046,14 +6414,14 @@
|
|
|
6046
6414
|
<ul class="md-nav__list">
|
|
6047
6415
|
|
|
6048
6416
|
<li class="md-nav__item">
|
|
6049
|
-
<a href="#
|
|
6417
|
+
<a href="#security_3" class="md-nav__link">
|
|
6050
6418
|
Security
|
|
6051
6419
|
</a>
|
|
6052
6420
|
|
|
6053
6421
|
</li>
|
|
6054
6422
|
|
|
6055
6423
|
<li class="md-nav__item">
|
|
6056
|
-
<a href="#
|
|
6424
|
+
<a href="#added_7" class="md-nav__link">
|
|
6057
6425
|
Added
|
|
6058
6426
|
</a>
|
|
6059
6427
|
|
|
@@ -6067,14 +6435,14 @@
|
|
|
6067
6435
|
</li>
|
|
6068
6436
|
|
|
6069
6437
|
<li class="md-nav__item">
|
|
6070
|
-
<a href="#
|
|
6438
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
6071
6439
|
Fixed
|
|
6072
6440
|
</a>
|
|
6073
6441
|
|
|
6074
6442
|
</li>
|
|
6075
6443
|
|
|
6076
6444
|
<li class="md-nav__item">
|
|
6077
|
-
<a href="#
|
|
6445
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
6078
6446
|
Housekeeping
|
|
6079
6447
|
</a>
|
|
6080
6448
|
|
|
@@ -6094,14 +6462,14 @@
|
|
|
6094
6462
|
<ul class="md-nav__list">
|
|
6095
6463
|
|
|
6096
6464
|
<li class="md-nav__item">
|
|
6097
|
-
<a href="#
|
|
6465
|
+
<a href="#security_4" class="md-nav__link">
|
|
6098
6466
|
Security
|
|
6099
6467
|
</a>
|
|
6100
6468
|
|
|
6101
6469
|
</li>
|
|
6102
6470
|
|
|
6103
6471
|
<li class="md-nav__item">
|
|
6104
|
-
<a href="#
|
|
6472
|
+
<a href="#added_8" class="md-nav__link">
|
|
6105
6473
|
Added
|
|
6106
6474
|
</a>
|
|
6107
6475
|
|
|
@@ -6115,7 +6483,7 @@
|
|
|
6115
6483
|
</li>
|
|
6116
6484
|
|
|
6117
6485
|
<li class="md-nav__item">
|
|
6118
|
-
<a href="#
|
|
6486
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
6119
6487
|
Fixed
|
|
6120
6488
|
</a>
|
|
6121
6489
|
|
|
@@ -6135,21 +6503,21 @@
|
|
|
6135
6503
|
<ul class="md-nav__list">
|
|
6136
6504
|
|
|
6137
6505
|
<li class="md-nav__item">
|
|
6138
|
-
<a href="#
|
|
6506
|
+
<a href="#security_5" class="md-nav__link">
|
|
6139
6507
|
Security
|
|
6140
6508
|
</a>
|
|
6141
6509
|
|
|
6142
6510
|
</li>
|
|
6143
6511
|
|
|
6144
6512
|
<li class="md-nav__item">
|
|
6145
|
-
<a href="#
|
|
6513
|
+
<a href="#changed_3" class="md-nav__link">
|
|
6146
6514
|
Changed
|
|
6147
6515
|
</a>
|
|
6148
6516
|
|
|
6149
6517
|
</li>
|
|
6150
6518
|
|
|
6151
6519
|
<li class="md-nav__item">
|
|
6152
|
-
<a href="#
|
|
6520
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
6153
6521
|
Fixed
|
|
6154
6522
|
</a>
|
|
6155
6523
|
|
|
@@ -6163,7 +6531,7 @@
|
|
|
6163
6531
|
</li>
|
|
6164
6532
|
|
|
6165
6533
|
<li class="md-nav__item">
|
|
6166
|
-
<a href="#
|
|
6534
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
6167
6535
|
Housekeeping
|
|
6168
6536
|
</a>
|
|
6169
6537
|
|
|
@@ -6183,35 +6551,35 @@
|
|
|
6183
6551
|
<ul class="md-nav__list">
|
|
6184
6552
|
|
|
6185
6553
|
<li class="md-nav__item">
|
|
6186
|
-
<a href="#
|
|
6554
|
+
<a href="#security_6" class="md-nav__link">
|
|
6187
6555
|
Security
|
|
6188
6556
|
</a>
|
|
6189
6557
|
|
|
6190
6558
|
</li>
|
|
6191
6559
|
|
|
6192
6560
|
<li class="md-nav__item">
|
|
6193
|
-
<a href="#
|
|
6561
|
+
<a href="#added_9" class="md-nav__link">
|
|
6194
6562
|
Added
|
|
6195
6563
|
</a>
|
|
6196
6564
|
|
|
6197
6565
|
</li>
|
|
6198
6566
|
|
|
6199
6567
|
<li class="md-nav__item">
|
|
6200
|
-
<a href="#
|
|
6568
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
6201
6569
|
Fixed
|
|
6202
6570
|
</a>
|
|
6203
6571
|
|
|
6204
6572
|
</li>
|
|
6205
6573
|
|
|
6206
6574
|
<li class="md-nav__item">
|
|
6207
|
-
<a href="#
|
|
6575
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
6208
6576
|
Documentation
|
|
6209
6577
|
</a>
|
|
6210
6578
|
|
|
6211
6579
|
</li>
|
|
6212
6580
|
|
|
6213
6581
|
<li class="md-nav__item">
|
|
6214
|
-
<a href="#
|
|
6582
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
6215
6583
|
Housekeeping
|
|
6216
6584
|
</a>
|
|
6217
6585
|
|
|
@@ -6231,14 +6599,14 @@
|
|
|
6231
6599
|
<ul class="md-nav__list">
|
|
6232
6600
|
|
|
6233
6601
|
<li class="md-nav__item">
|
|
6234
|
-
<a href="#
|
|
6602
|
+
<a href="#added_10" class="md-nav__link">
|
|
6235
6603
|
Added
|
|
6236
6604
|
</a>
|
|
6237
6605
|
|
|
6238
6606
|
</li>
|
|
6239
6607
|
|
|
6240
6608
|
<li class="md-nav__item">
|
|
6241
|
-
<a href="#
|
|
6609
|
+
<a href="#changed_4" class="md-nav__link">
|
|
6242
6610
|
Changed
|
|
6243
6611
|
</a>
|
|
6244
6612
|
|
|
@@ -6252,7 +6620,7 @@
|
|
|
6252
6620
|
</li>
|
|
6253
6621
|
|
|
6254
6622
|
<li class="md-nav__item">
|
|
6255
|
-
<a href="#
|
|
6623
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
6256
6624
|
Housekeeping
|
|
6257
6625
|
</a>
|
|
6258
6626
|
|
|
@@ -6272,28 +6640,28 @@
|
|
|
6272
6640
|
<ul class="md-nav__list">
|
|
6273
6641
|
|
|
6274
6642
|
<li class="md-nav__item">
|
|
6275
|
-
<a href="#
|
|
6643
|
+
<a href="#security_7" class="md-nav__link">
|
|
6276
6644
|
Security
|
|
6277
6645
|
</a>
|
|
6278
6646
|
|
|
6279
6647
|
</li>
|
|
6280
6648
|
|
|
6281
6649
|
<li class="md-nav__item">
|
|
6282
|
-
<a href="#
|
|
6650
|
+
<a href="#added_11" class="md-nav__link">
|
|
6283
6651
|
Added
|
|
6284
6652
|
</a>
|
|
6285
6653
|
|
|
6286
6654
|
</li>
|
|
6287
6655
|
|
|
6288
6656
|
<li class="md-nav__item">
|
|
6289
|
-
<a href="#
|
|
6657
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
6290
6658
|
Fixed
|
|
6291
6659
|
</a>
|
|
6292
6660
|
|
|
6293
6661
|
</li>
|
|
6294
6662
|
|
|
6295
6663
|
<li class="md-nav__item">
|
|
6296
|
-
<a href="#
|
|
6664
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
6297
6665
|
Housekeeping
|
|
6298
6666
|
</a>
|
|
6299
6667
|
|
|
@@ -6313,35 +6681,35 @@
|
|
|
6313
6681
|
<ul class="md-nav__list">
|
|
6314
6682
|
|
|
6315
6683
|
<li class="md-nav__item">
|
|
6316
|
-
<a href="#
|
|
6684
|
+
<a href="#added_12" class="md-nav__link">
|
|
6317
6685
|
Added
|
|
6318
6686
|
</a>
|
|
6319
6687
|
|
|
6320
6688
|
</li>
|
|
6321
6689
|
|
|
6322
6690
|
<li class="md-nav__item">
|
|
6323
|
-
<a href="#
|
|
6691
|
+
<a href="#changed_5" class="md-nav__link">
|
|
6324
6692
|
Changed
|
|
6325
6693
|
</a>
|
|
6326
6694
|
|
|
6327
6695
|
</li>
|
|
6328
6696
|
|
|
6329
6697
|
<li class="md-nav__item">
|
|
6330
|
-
<a href="#
|
|
6698
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
6331
6699
|
Fixed
|
|
6332
6700
|
</a>
|
|
6333
6701
|
|
|
6334
6702
|
</li>
|
|
6335
6703
|
|
|
6336
6704
|
<li class="md-nav__item">
|
|
6337
|
-
<a href="#
|
|
6705
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
6338
6706
|
Documentation
|
|
6339
6707
|
</a>
|
|
6340
6708
|
|
|
6341
6709
|
</li>
|
|
6342
6710
|
|
|
6343
6711
|
<li class="md-nav__item">
|
|
6344
|
-
<a href="#
|
|
6712
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
6345
6713
|
Housekeeping
|
|
6346
6714
|
</a>
|
|
6347
6715
|
|
|
@@ -6361,28 +6729,28 @@
|
|
|
6361
6729
|
<ul class="md-nav__list">
|
|
6362
6730
|
|
|
6363
6731
|
<li class="md-nav__item">
|
|
6364
|
-
<a href="#
|
|
6732
|
+
<a href="#changed_6" class="md-nav__link">
|
|
6365
6733
|
Changed
|
|
6366
6734
|
</a>
|
|
6367
6735
|
|
|
6368
6736
|
</li>
|
|
6369
6737
|
|
|
6370
6738
|
<li class="md-nav__item">
|
|
6371
|
-
<a href="#
|
|
6739
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
6372
6740
|
Fixed
|
|
6373
6741
|
</a>
|
|
6374
6742
|
|
|
6375
6743
|
</li>
|
|
6376
6744
|
|
|
6377
6745
|
<li class="md-nav__item">
|
|
6378
|
-
<a href="#
|
|
6746
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
6379
6747
|
Documentation
|
|
6380
6748
|
</a>
|
|
6381
6749
|
|
|
6382
6750
|
</li>
|
|
6383
6751
|
|
|
6384
6752
|
<li class="md-nav__item">
|
|
6385
|
-
<a href="#
|
|
6753
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
6386
6754
|
Housekeeping
|
|
6387
6755
|
</a>
|
|
6388
6756
|
|
|
@@ -6402,14 +6770,14 @@
|
|
|
6402
6770
|
<ul class="md-nav__list">
|
|
6403
6771
|
|
|
6404
6772
|
<li class="md-nav__item">
|
|
6405
|
-
<a href="#
|
|
6773
|
+
<a href="#added_13" class="md-nav__link">
|
|
6406
6774
|
Added
|
|
6407
6775
|
</a>
|
|
6408
6776
|
|
|
6409
6777
|
</li>
|
|
6410
6778
|
|
|
6411
6779
|
<li class="md-nav__item">
|
|
6412
|
-
<a href="#
|
|
6780
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
6413
6781
|
Fixed
|
|
6414
6782
|
</a>
|
|
6415
6783
|
|
|
@@ -6423,7 +6791,7 @@
|
|
|
6423
6791
|
</li>
|
|
6424
6792
|
|
|
6425
6793
|
<li class="md-nav__item">
|
|
6426
|
-
<a href="#
|
|
6794
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
6427
6795
|
Documentation
|
|
6428
6796
|
</a>
|
|
6429
6797
|
|
|
@@ -6443,14 +6811,14 @@
|
|
|
6443
6811
|
<ul class="md-nav__list">
|
|
6444
6812
|
|
|
6445
6813
|
<li class="md-nav__item">
|
|
6446
|
-
<a href="#
|
|
6814
|
+
<a href="#added_14" class="md-nav__link">
|
|
6447
6815
|
Added
|
|
6448
6816
|
</a>
|
|
6449
6817
|
|
|
6450
6818
|
</li>
|
|
6451
6819
|
|
|
6452
6820
|
<li class="md-nav__item">
|
|
6453
|
-
<a href="#
|
|
6821
|
+
<a href="#changed_7" class="md-nav__link">
|
|
6454
6822
|
Changed
|
|
6455
6823
|
</a>
|
|
6456
6824
|
|
|
@@ -6464,7 +6832,7 @@
|
|
|
6464
6832
|
</li>
|
|
6465
6833
|
|
|
6466
6834
|
<li class="md-nav__item">
|
|
6467
|
-
<a href="#
|
|
6835
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
6468
6836
|
Fixed
|
|
6469
6837
|
</a>
|
|
6470
6838
|
|
|
@@ -6478,7 +6846,7 @@
|
|
|
6478
6846
|
</li>
|
|
6479
6847
|
|
|
6480
6848
|
<li class="md-nav__item">
|
|
6481
|
-
<a href="#
|
|
6849
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
6482
6850
|
Documentation
|
|
6483
6851
|
</a>
|
|
6484
6852
|
|
|
@@ -6550,17 +6918,88 @@
|
|
|
6550
6918
|
<h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">¶</a></h4>
|
|
6551
6919
|
<p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
|
|
6552
6920
|
<!-- towncrier release notes start -->
|
|
6553
|
-
<h2 id="
|
|
6921
|
+
<h2 id="v1615-2024-03-18">v1.6.15 (2024-03-18)<a class="headerlink" href="#v1615-2024-03-18" title="Permanent link">¶</a></h2>
|
|
6922
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
6923
|
+
<ul>
|
|
6924
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
6925
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
6926
|
+
</ul>
|
|
6927
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
6928
|
+
<ul>
|
|
6929
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
6930
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
6931
|
+
</ul>
|
|
6932
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
6933
|
+
<ul>
|
|
6934
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
6935
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
6936
|
+
</ul>
|
|
6937
|
+
<h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">¶</a></h2>
|
|
6938
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
6939
|
+
<ul>
|
|
6940
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
6941
|
+
</ul>
|
|
6942
|
+
<h2 id="v1613-2024-03-04">v1.6.13 (2024-03-04)<a class="headerlink" href="#v1613-2024-03-04" title="Permanent link">¶</a></h2>
|
|
6943
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
6944
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
6945
|
+
<ul>
|
|
6946
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
|
|
6947
|
+
</ul>
|
|
6948
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
6949
|
+
<ul>
|
|
6950
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
|
|
6951
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
6952
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Fixed intermittent 405 errors when using the Docker image with SAML authentication.</li>
|
|
6953
|
+
</ul>
|
|
6954
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
6955
|
+
<ul>
|
|
6956
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the Nautobot installation documentation about the need to do <code>pip3 install --no-binary=pyuwsgi</code> in order to have SSL support in <code>pyuwsgi</code>.</li>
|
|
6957
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
|
|
6958
|
+
</ul>
|
|
6959
|
+
<h2 id="v1612-2024-02-20">v1.6.12 (2024-02-20)<a class="headerlink" href="#v1612-2024-02-20" title="Permanent link">¶</a></h2>
|
|
6960
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
6961
|
+
<ul>
|
|
6962
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
6963
|
+
</ul>
|
|
6554
6964
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
6555
6965
|
<ul>
|
|
6966
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
6967
|
+
</ul>
|
|
6968
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
6969
|
+
<ul>
|
|
6970
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
6971
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
6972
|
+
</ul>
|
|
6973
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
6974
|
+
<ul>
|
|
6975
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
|
|
6976
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
|
|
6977
|
+
</ul>
|
|
6978
|
+
<h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">¶</a></h2>
|
|
6979
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
6980
|
+
<ul>
|
|
6981
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
6982
|
+
</ul>
|
|
6983
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
6984
|
+
<ul>
|
|
6985
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
6986
|
+
</ul>
|
|
6987
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
6988
|
+
<ul>
|
|
6989
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
6990
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
6991
|
+
</ul>
|
|
6992
|
+
<h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">¶</a></h2>
|
|
6993
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
6994
|
+
<ul>
|
|
6556
6995
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
6557
6996
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
6558
6997
|
</ul>
|
|
6559
|
-
<h3 id="
|
|
6998
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
6560
6999
|
<ul>
|
|
6561
7000
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
|
|
6562
7001
|
</ul>
|
|
6563
|
-
<h3 id="
|
|
7002
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
6564
7003
|
<ul>
|
|
6565
7004
|
<li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
|
|
6566
7005
|
</ul>
|
|
@@ -6571,19 +7010,19 @@
|
|
|
6571
7010
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
6572
7011
|
</ul>
|
|
6573
7012
|
<h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">¶</a></h2>
|
|
6574
|
-
<h3 id="
|
|
7013
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
6575
7014
|
<ul>
|
|
6576
7015
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6577
7016
|
</ul>
|
|
6578
7017
|
<h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">¶</a></h2>
|
|
6579
|
-
<h3 id="
|
|
7018
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
6580
7019
|
<ul>
|
|
6581
7020
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6582
7021
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
6583
7022
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
|
|
6584
7023
|
<li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6585
7024
|
</ul>
|
|
6586
|
-
<h3 id="
|
|
7025
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
6587
7026
|
<ul>
|
|
6588
7027
|
<li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
|
|
6589
7028
|
</ul>
|
|
@@ -6591,20 +7030,20 @@
|
|
|
6591
7030
|
<ul>
|
|
6592
7031
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
6593
7032
|
</ul>
|
|
6594
|
-
<h3 id="
|
|
7033
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
6595
7034
|
<ul>
|
|
6596
7035
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6597
7036
|
</ul>
|
|
6598
|
-
<h3 id="
|
|
7037
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
6599
7038
|
<ul>
|
|
6600
7039
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
6601
7040
|
</ul>
|
|
6602
7041
|
<h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">¶</a></h2>
|
|
6603
|
-
<h3 id="
|
|
7042
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
6604
7043
|
<ul>
|
|
6605
7044
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
6606
7045
|
</ul>
|
|
6607
|
-
<h3 id="
|
|
7046
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
6608
7047
|
<ul>
|
|
6609
7048
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
6610
7049
|
</ul>
|
|
@@ -6613,22 +7052,22 @@
|
|
|
6613
7052
|
<li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
|
|
6614
7053
|
<li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
6615
7054
|
</ul>
|
|
6616
|
-
<h3 id="
|
|
7055
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
6617
7056
|
<ul>
|
|
6618
7057
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
6619
7058
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
6620
7059
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
6621
7060
|
</ul>
|
|
6622
7061
|
<h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">¶</a></h2>
|
|
6623
|
-
<h3 id="
|
|
7062
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
6624
7063
|
<ul>
|
|
6625
7064
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
6626
7065
|
</ul>
|
|
6627
|
-
<h3 id="
|
|
7066
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
6628
7067
|
<ul>
|
|
6629
7068
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
6630
7069
|
</ul>
|
|
6631
|
-
<h3 id="
|
|
7070
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
6632
7071
|
<ul>
|
|
6633
7072
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
|
|
6634
7073
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
|
|
@@ -6637,22 +7076,22 @@
|
|
|
6637
7076
|
<ul>
|
|
6638
7077
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
6639
7078
|
</ul>
|
|
6640
|
-
<h3 id="
|
|
7079
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
6641
7080
|
<ul>
|
|
6642
7081
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
6643
7082
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
6644
7083
|
</ul>
|
|
6645
7084
|
<h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">¶</a></h2>
|
|
6646
|
-
<h3 id="
|
|
7085
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
6647
7086
|
<ul>
|
|
6648
7087
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6649
7088
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
6650
7089
|
</ul>
|
|
6651
|
-
<h3 id="
|
|
7090
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
6652
7091
|
<ul>
|
|
6653
7092
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
6654
7093
|
</ul>
|
|
6655
|
-
<h3 id="
|
|
7094
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
6656
7095
|
<ul>
|
|
6657
7096
|
<li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group API.</li>
|
|
6658
7097
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -6660,21 +7099,21 @@
|
|
|
6660
7099
|
<li><a href="https://github.com/nautobot/nautobot/issues/4728">#4728</a> - Fixed bug with JobResultFilterSet and ScheduledJobFilterSet using <code>django_filters.DateTimeFilter</code> for only exact date matches.</li>
|
|
6661
7100
|
<li><a href="https://github.com/nautobot/nautobot/issues/4733">#4733</a> - Fixed the bug that prevents retrieval of IPAddress using its address args if it was created using <code>host</code> and <code>prefix_length</code>.</li>
|
|
6662
7101
|
</ul>
|
|
6663
|
-
<h3 id="
|
|
7102
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
6664
7103
|
<ul>
|
|
6665
7104
|
<li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
|
|
6666
7105
|
</ul>
|
|
6667
|
-
<h3 id="
|
|
7106
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
6668
7107
|
<ul>
|
|
6669
7108
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
|
|
6670
7109
|
</ul>
|
|
6671
7110
|
<h2 id="v164-2023-10-17">v1.6.4 (2023-10-17)<a class="headerlink" href="#v164-2023-10-17" title="Permanent link">¶</a></h2>
|
|
6672
|
-
<h3 id="
|
|
7111
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
6673
7112
|
<ul>
|
|
6674
7113
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
6675
7114
|
<li><a href="https://github.com/nautobot/nautobot/issues/4573">#4573</a> - Added caching for <code>display</code> property of <code>Location</code> and <code>LocationType</code>, mitigating duplicated SQL queries in the related API views.</li>
|
|
6676
7115
|
</ul>
|
|
6677
|
-
<h3 id="
|
|
7116
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
6678
7117
|
<ul>
|
|
6679
7118
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
6680
7119
|
</ul>
|
|
@@ -6682,86 +7121,86 @@
|
|
|
6682
7121
|
<ul>
|
|
6683
7122
|
<li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
|
|
6684
7123
|
</ul>
|
|
6685
|
-
<h3 id="
|
|
7124
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
6686
7125
|
<ul>
|
|
6687
7126
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
6688
7127
|
</ul>
|
|
6689
7128
|
<h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">¶</a></h2>
|
|
6690
|
-
<h3 id="
|
|
7129
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
6691
7130
|
<ul>
|
|
6692
7131
|
<li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
6693
7132
|
</ul>
|
|
6694
|
-
<h3 id="
|
|
7133
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
6695
7134
|
<ul>
|
|
6696
7135
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
|
|
6697
7136
|
</ul>
|
|
6698
|
-
<h3 id="
|
|
7137
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
6699
7138
|
<ul>
|
|
6700
7139
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
6701
7140
|
</ul>
|
|
6702
|
-
<h3 id="
|
|
7141
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
6703
7142
|
<ul>
|
|
6704
7143
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
|
|
6705
7144
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
|
|
6706
7145
|
</ul>
|
|
6707
7146
|
<h2 id="v162-2023-09-01">v1.6.2 (2023-09-01)<a class="headerlink" href="#v162-2023-09-01" title="Permanent link">¶</a></h2>
|
|
6708
|
-
<h3 id="
|
|
7147
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
6709
7148
|
<ul>
|
|
6710
7149
|
<li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
|
|
6711
7150
|
<li><a href="https://github.com/nautobot/nautobot/issues/4316">#4316</a> - Added management command <code>nautobot-server populate_platform_network_driver</code> to help update the <code>Platform.network_driver</code> field in bulk.</li>
|
|
6712
7151
|
</ul>
|
|
6713
|
-
<h3 id="
|
|
7152
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
6714
7153
|
<ul>
|
|
6715
7154
|
<li><a href="https://github.com/nautobot/nautobot/issues/3212">#3212</a> - Updated Dynamic Group field filter/child group exclusivity error to be more noticeable.</li>
|
|
6716
7155
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Moved DynamicGroup <code>clean_filter()</code> call from <code>clean()</code> to <code>clean_fields()</code>, which has the impact that it will still be called by <code>full_clean()</code> and <code>validated_save()</code> but no longer called on a simple <code>clean()</code>.</li>
|
|
6717
7156
|
<li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
|
|
6718
7157
|
<li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
|
|
6719
7158
|
</ul>
|
|
6720
|
-
<h3 id="
|
|
7159
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
6721
7160
|
<ul>
|
|
6722
7161
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
|
|
6723
7162
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
|
|
6724
7163
|
<li><a href="https://github.com/nautobot/nautobot/issues/4262">#4262</a> - Fixed warning message when trying to use bulk edit with no items selected.</li>
|
|
6725
7164
|
</ul>
|
|
6726
|
-
<h3 id="
|
|
7165
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
6727
7166
|
<ul>
|
|
6728
7167
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
6729
7168
|
<li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
|
|
6730
7169
|
</ul>
|
|
6731
|
-
<h3 id="
|
|
7170
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
6732
7171
|
<ul>
|
|
6733
7172
|
<li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
|
|
6734
7173
|
<li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
|
|
6735
7174
|
</ul>
|
|
6736
7175
|
<h2 id="v161-2023-08-21">v1.6.1 (2023-08-21)<a class="headerlink" href="#v161-2023-08-21" title="Permanent link">¶</a></h2>
|
|
6737
|
-
<h3 id="
|
|
7176
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
6738
7177
|
<ul>
|
|
6739
7178
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
6740
7179
|
</ul>
|
|
6741
|
-
<h3 id="
|
|
7180
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
6742
7181
|
<ul>
|
|
6743
7182
|
<li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
|
|
6744
7183
|
<li><a href="https://github.com/nautobot/nautobot/issues/4149">#4149</a> - Fixed a bug that prevented renaming a <code>Rack</code> if it contained any devices whose names were not globally unique.</li>
|
|
6745
7184
|
<li><a href="https://github.com/nautobot/nautobot/issues/4241">#4241</a> - Added a timeout and exception handling to the <code>nautobot-server send_installation_metrics</code> command.</li>
|
|
6746
7185
|
</ul>
|
|
6747
|
-
<h3 id="
|
|
7186
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
6748
7187
|
<ul>
|
|
6749
7188
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Introduced new <code>mkdocs</code> setting of <code>tabbed</code>.</li>
|
|
6750
7189
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Updated docs at <code>nautobot/docs/installation/nautobot.md</code> and <code>nautobot/docs/installation/http-server.md</code> to adopt tabbed interfaces.</li>
|
|
6751
7190
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
6752
7191
|
</ul>
|
|
6753
|
-
<h3 id="
|
|
7192
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
6754
7193
|
<ul>
|
|
6755
7194
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
6756
7195
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
6757
7196
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed <code>development/nautobot_config.py</code> to disable installation metrics for developer environments by default.</li>
|
|
6758
7197
|
</ul>
|
|
6759
7198
|
<h2 id="v160-2023-08-08">v1.6.0 (2023-08-08)<a class="headerlink" href="#v160-2023-08-08" title="Permanent link">¶</a></h2>
|
|
6760
|
-
<h3 id="
|
|
7199
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
6761
7200
|
<ul>
|
|
6762
7201
|
<li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
|
|
6763
7202
|
</ul>
|
|
6764
|
-
<h3 id="
|
|
7203
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
6765
7204
|
<ul>
|
|
6766
7205
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
|
|
6767
7206
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
|
|
@@ -6778,12 +7217,12 @@
|
|
|
6778
7217
|
<li><a href="https://github.com/nautobot/nautobot/issues/4199">#4199</a> - Updated <code>cryptography</code> to <code>~41.0.3</code>. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
6779
7218
|
<li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
|
|
6780
7219
|
</ul>
|
|
6781
|
-
<h3 id="
|
|
7220
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
6782
7221
|
<ul>
|
|
6783
7222
|
<li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
|
|
6784
7223
|
</ul>
|
|
6785
7224
|
<h2 id="v160-rc1-2023-08-02">v1.6.0-rc.1 (2023-08-02)<a class="headerlink" href="#v160-rc1-2023-08-02" title="Permanent link">¶</a></h2>
|
|
6786
|
-
<h3 id="
|
|
7225
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
6787
7226
|
<ul>
|
|
6788
7227
|
<li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
|
|
6789
7228
|
<li><a href="https://github.com/nautobot/nautobot/issues/3269">#3269</a> - Added ability to cache <code>DynamicGroup</code> memberships in Redis to improve reverse lookup performance.</li>
|
|
@@ -6798,7 +7237,7 @@
|
|
|
6798
7237
|
<li><a href="https://github.com/nautobot/nautobot/issues/4136">#4136</a> - Added support for <code>NETWORK_DRIVERS</code> config setting to override or extend default network driver mappings from <code>netutils</code> library.</li>
|
|
6799
7238
|
<li><a href="https://github.com/nautobot/nautobot/issues/4161">#4161</a> - Enhanced <code>NautobotUIViewSet</code> to allow Create and Update methods to have their own form classes.</li>
|
|
6800
7239
|
</ul>
|
|
6801
|
-
<h3 id="
|
|
7240
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
6802
7241
|
<ul>
|
|
6803
7242
|
<li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Redirect unauthenticated users on all views to login page if <code>HIDE_RESTRICTED_UI</code> is True.</li>
|
|
6804
7243
|
<li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Only time is shown on the footer if a user is unauthenticated and <code>HIDE_RESTRICTED_UI</code> is True.</li>
|
|
@@ -6811,7 +7250,7 @@
|
|
|
6811
7250
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
|
|
6812
7251
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>pycryptodome</code> as Nautobot does not currently use this library and hasn't for some time.</li>
|
|
6813
7252
|
</ul>
|
|
6814
|
-
<h3 id="
|
|
7253
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
6815
7254
|
<ul>
|
|
6816
7255
|
<li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
|
|
6817
7256
|
</ul>
|
|
@@ -6848,7 +7287,7 @@
|
|
|
6848
7287
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
|
|
6849
7288
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
6850
7289
|
</ul>
|
|
6851
|
-
<h3 id="
|
|
7290
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
6852
7291
|
<ul>
|
|
6853
7292
|
<li><a href="https://github.com/nautobot/nautobot/issues/4118">#4118</a> - Added documentation for troubleshooting integration test failures via VNC.</li>
|
|
6854
7293
|
</ul>
|