nautobot 2.2.0b1__py3-none-any.whl → 2.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/__init__.py +31 -0
- 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/apps.py +1 -1
- nautobot/circuits/tests/test_filters.py +1 -1
- nautobot/core/api/routers.py +50 -3
- nautobot/core/api/utils.py +4 -0
- nautobot/core/api/views.py +21 -15
- nautobot/core/cli/__init__.py +18 -11
- nautobot/core/constants.py +85 -0
- nautobot/core/filters.py +7 -1
- nautobot/core/forms/widgets.py +1 -2
- nautobot/core/graphql/schema.py +1 -0
- nautobot/core/management/commands/generate_test_data.py +4 -4
- nautobot/core/models/__init__.py +1 -0
- nautobot/core/settings.py +24 -3
- nautobot/core/settings.yaml +20 -0
- nautobot/core/signals.py +1 -0
- nautobot/core/tables.py +2 -1
- nautobot/core/templates/admin/base.html +23 -94
- nautobot/core/templates/generic/object_retrieve.html +2 -2
- nautobot/core/templates/graphene/graphiql.html +18 -47
- nautobot/core/templates/inc/footer.html +5 -5
- nautobot/core/templates/inc/javascript.html +4 -4
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/inc/nav_menu.html +0 -7
- nautobot/core/templates/nautobot_config.py.j2 +14 -1
- nautobot/core/templates/rest_framework/api.html +12 -5
- nautobot/core/templatetags/helpers.py +2 -2
- nautobot/core/testing/__init__.py +1 -1
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/testing/views.py +30 -0
- nautobot/core/tests/integration/test_view_authentication.py +68 -0
- nautobot/core/tests/test_api.py +13 -6
- nautobot/core/tests/test_csv.py +5 -4
- nautobot/core/tests/test_filters.py +2 -1
- nautobot/core/tests/test_graphql.py +4 -14
- nautobot/core/tests/test_navigations.py +3 -0
- nautobot/core/tests/test_views.py +45 -16
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/lookup.py +126 -0
- nautobot/core/views/__init__.py +3 -7
- nautobot/core/views/generic.py +24 -10
- nautobot/core/views/mixins.py +11 -4
- nautobot/core/views/renderers.py +11 -6
- nautobot/core/wsgi.py +9 -2
- nautobot/dcim/api/serializers.py +4 -4
- nautobot/dcim/api/urls.py +2 -3
- nautobot/dcim/api/views.py +7 -18
- nautobot/dcim/apps.py +8 -4
- nautobot/dcim/elevations.py +5 -1
- nautobot/dcim/factory.py +7 -7
- nautobot/dcim/filters/__init__.py +16 -17
- nautobot/dcim/forms.py +69 -48
- nautobot/dcim/homepage.py +11 -3
- nautobot/dcim/management/commands/migrate_location_contacts.py +218 -0
- nautobot/dcim/migrations/0057_controller_models.py +11 -70
- nautobot/dcim/models/__init__.py +2 -2
- nautobot/dcim/models/devices.py +14 -16
- nautobot/dcim/models/racks.py +1 -3
- nautobot/dcim/navigation.py +23 -31
- nautobot/dcim/signals.py +6 -6
- nautobot/dcim/tables/__init__.py +2 -2
- nautobot/dcim/tables/devices.py +13 -16
- nautobot/dcim/tables/template_code.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +70 -0
- nautobot/dcim/templates/dcim/controller_retrieve.html +35 -18
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +88 -0
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +74 -42
- nautobot/dcim/templates/dcim/device.html +11 -3
- nautobot/dcim/templates/dcim/device_edit.html +1 -1
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
- nautobot/dcim/tests/test_api.py +47 -6
- nautobot/dcim/tests/test_filters.py +92 -81
- nautobot/dcim/tests/test_forms.py +49 -2
- nautobot/dcim/tests/test_graphql.py +11 -1
- nautobot/dcim/tests/test_models.py +15 -15
- nautobot/dcim/tests/test_signals.py +3 -1
- nautobot/dcim/tests/test_views.py +24 -12
- nautobot/dcim/urls.py +1 -1
- nautobot/dcim/views.py +25 -15
- nautobot/extras/api/serializers.py +20 -1
- nautobot/extras/api/urls.py +1 -2
- nautobot/extras/api/views.py +0 -10
- nautobot/extras/apps.py +7 -0
- nautobot/extras/context_managers.py +71 -4
- nautobot/extras/filters/__init__.py +53 -2
- nautobot/extras/filters/customfields.py +14 -9
- nautobot/extras/filters/mixins.py +6 -1
- nautobot/extras/forms/contacts.py +7 -0
- nautobot/extras/health_checks.py +1 -0
- nautobot/extras/jobs.py +1 -0
- nautobot/extras/managers.py +15 -2
- nautobot/extras/models/contacts.py +1 -0
- nautobot/extras/models/customfields.py +25 -2
- nautobot/extras/models/datasources.py +1 -0
- nautobot/extras/models/mixins.py +1 -0
- nautobot/extras/navigation.py +71 -65
- nautobot/extras/plugins/__init__.py +2 -1
- nautobot/extras/plugins/views.py +7 -11
- nautobot/extras/querysets.py +1 -2
- nautobot/extras/secrets/providers.py +1 -0
- nautobot/extras/signals.py +95 -51
- nautobot/extras/tasks.py +70 -17
- nautobot/extras/tests/test_api.py +2 -4
- nautobot/extras/tests/test_context_managers.py +98 -1
- nautobot/extras/tests/test_customfields.py +72 -9
- nautobot/extras/tests/test_dynamicgroups.py +2 -0
- nautobot/extras/tests/test_filters.py +89 -4
- nautobot/extras/tests/test_models.py +9 -0
- nautobot/extras/tests/test_relationships.py +10 -1
- nautobot/extras/tests/test_views.py +112 -1
- nautobot/extras/utils.py +37 -0
- nautobot/extras/views.py +18 -17
- nautobot/ipam/api/serializers.py +10 -0
- nautobot/ipam/api/urls.py +1 -2
- nautobot/ipam/api/views.py +0 -11
- nautobot/ipam/apps.py +3 -2
- nautobot/ipam/tables.py +3 -23
- nautobot/ipam/tests/test_graphql.py +2 -3
- nautobot/ipam/tests/test_tables.py +42 -0
- nautobot/ipam/tests/test_views.py +1 -0
- nautobot/ipam/views.py +9 -9
- nautobot/project-static/css/base.css +1 -0
- nautobot/project-static/docs/404.html +126 -73
- nautobot/project-static/docs/apps/index.html +127 -71
- nautobot/project-static/docs/apps/nautobot-apps.html +127 -71
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +167 -73
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +165 -72
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +128 -72
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +127 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +345 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +172 -73
- nautobot/project-static/docs/development/apps/api/configuration-view.html +127 -71
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/global-search.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/graphql.html +127 -71
- nautobot/project-static/docs/development/apps/api/models/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +127 -71
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +127 -71
- nautobot/project-static/docs/development/apps/api/prometheus.html +127 -71
- nautobot/project-static/docs/development/apps/api/setup.html +127 -71
- nautobot/project-static/docs/development/apps/api/testing.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +127 -71
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/base-template.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +141 -80
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +144 -83
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/index.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/notes.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +127 -71
- nautobot/project-static/docs/development/apps/api/views/urls.html +127 -71
- nautobot/project-static/docs/development/apps/index.html +127 -71
- nautobot/project-static/docs/development/apps/migration/code-updates.html +127 -71
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +127 -71
- nautobot/project-static/docs/development/apps/migration/from-v1.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +127 -71
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +127 -71
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +127 -71
- nautobot/project-static/docs/development/core/application-registry.html +127 -71
- nautobot/project-static/docs/development/core/best-practices.html +145 -79
- nautobot/project-static/docs/development/core/bootstrap-ui.html +127 -71
- nautobot/project-static/docs/development/core/caching.html +127 -71
- nautobot/project-static/docs/development/core/controllers.html +141 -275
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +127 -71
- nautobot/project-static/docs/development/core/extending-models.html +13 -8166
- nautobot/project-static/docs/development/core/generic-views.html +142 -86
- nautobot/project-static/docs/development/core/getting-started.html +146 -81
- nautobot/project-static/docs/development/core/homepage.html +145 -89
- nautobot/project-static/docs/development/core/index.html +127 -71
- nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
- nautobot/project-static/docs/development/core/model-features.html +130 -74
- nautobot/project-static/docs/development/core/natural-keys.html +127 -71
- nautobot/project-static/docs/development/core/navigation-menu.html +127 -71
- nautobot/project-static/docs/development/core/release-checklist.html +127 -71
- nautobot/project-static/docs/development/core/role-internals.html +127 -71
- nautobot/project-static/docs/development/core/settings.html +127 -71
- nautobot/project-static/docs/development/core/style-guide.html +127 -71
- nautobot/project-static/docs/development/core/templates.html +127 -71
- nautobot/project-static/docs/development/core/testing.html +127 -71
- nautobot/project-static/docs/development/core/user-preferences.html +127 -71
- nautobot/project-static/docs/development/extending-models.html +3 -3
- nautobot/project-static/docs/development/index.html +127 -71
- nautobot/project-static/docs/development/jobs/index.html +128 -72
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +127 -71
- nautobot/project-static/docs/index.html +126 -73
- nautobot/project-static/docs/models/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +3 -3
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.0.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.1.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.2.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.3.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.4.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.5.html +127 -71
- nautobot/project-static/docs/release-notes/version-1.6.html +663 -304
- nautobot/project-static/docs/release-notes/version-2.0.html +127 -71
- nautobot/project-static/docs/release-notes/version-2.1.html +538 -254
- nautobot/project-static/docs/release-notes/version-2.2.html +711 -125
- nautobot/project-static/docs/requirements.txt +3 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +264 -259
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +192 -71
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +127 -71
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -71
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +127 -71
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +130 -74
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +134 -74
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +8616 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/index.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +127 -71
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +130 -74
- nautobot/project-static/docs/user-guide/administration/installation/services.html +127 -71
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +127 -71
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +127 -71
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +127 -71
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +127 -71
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +362 -79
- nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +210 -85
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +130 -74
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +138 -71
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +138 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +127 -71
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/{contact-and-team.html → contacts-and-teams.html} +128 -72
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +129 -73
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +129 -73
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +127 -71
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +127 -71
- nautobot/project-static/docs/user-guide/index.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +127 -71
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +127 -71
- nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
- nautobot/tenancy/api/urls.py +1 -2
- nautobot/tenancy/api/views.py +0 -12
- nautobot/tenancy/tables.py +1 -1
- nautobot/tenancy/tests/test_views.py +1 -0
- 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-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/METADATA +24 -24
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/RECORD +422 -416
- nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +0 -43
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
- nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
- /nautobot/dcim/templates/dcim/{controllerdevicegroup_retrieve.html → controllermanageddevicegroup_retrieve.html} +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../assets/stylesheets/main.bcfcd587.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -399,16 +399,14 @@
|
|
|
399
399
|
|
|
400
400
|
|
|
401
401
|
|
|
402
|
-
|
|
403
|
-
|
|
404
402
|
|
|
405
403
|
|
|
406
404
|
|
|
407
|
-
|
|
405
|
+
|
|
406
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
408
407
|
|
|
409
408
|
|
|
410
409
|
|
|
411
|
-
|
|
412
410
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" >
|
|
413
411
|
|
|
414
412
|
|
|
@@ -425,7 +423,7 @@
|
|
|
425
423
|
</a>
|
|
426
424
|
|
|
427
425
|
|
|
428
|
-
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="">
|
|
426
|
+
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="0">
|
|
429
427
|
<span class="md-nav__icon md-icon"></span>
|
|
430
428
|
</label>
|
|
431
429
|
|
|
@@ -447,13 +445,14 @@
|
|
|
447
445
|
|
|
448
446
|
|
|
449
447
|
|
|
448
|
+
|
|
449
|
+
|
|
450
450
|
|
|
451
451
|
|
|
452
452
|
<li class="md-nav__item md-nav__item--nested">
|
|
453
453
|
|
|
454
454
|
|
|
455
455
|
|
|
456
|
-
|
|
457
456
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" >
|
|
458
457
|
|
|
459
458
|
|
|
@@ -484,13 +483,14 @@
|
|
|
484
483
|
|
|
485
484
|
|
|
486
485
|
|
|
486
|
+
|
|
487
|
+
|
|
487
488
|
|
|
488
489
|
|
|
489
490
|
<li class="md-nav__item md-nav__item--nested">
|
|
490
491
|
|
|
491
492
|
|
|
492
493
|
|
|
493
|
-
|
|
494
494
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
495
495
|
|
|
496
496
|
|
|
@@ -686,6 +686,27 @@
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
|
|
689
|
+
<li class="md-nav__item">
|
|
690
|
+
<a href="../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
<span class="md-ellipsis">
|
|
694
|
+
Health Checks
|
|
695
|
+
</span>
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
</a>
|
|
699
|
+
</li>
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
|
|
689
710
|
<li class="md-nav__item">
|
|
690
711
|
<a href="../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
691
712
|
|
|
@@ -718,13 +739,14 @@
|
|
|
718
739
|
|
|
719
740
|
|
|
720
741
|
|
|
742
|
+
|
|
743
|
+
|
|
721
744
|
|
|
722
745
|
|
|
723
746
|
<li class="md-nav__item md-nav__item--nested">
|
|
724
747
|
|
|
725
748
|
|
|
726
749
|
|
|
727
|
-
|
|
728
750
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
|
|
729
751
|
|
|
730
752
|
|
|
@@ -797,13 +819,14 @@
|
|
|
797
819
|
|
|
798
820
|
|
|
799
821
|
|
|
822
|
+
|
|
823
|
+
|
|
800
824
|
|
|
801
825
|
|
|
802
826
|
<li class="md-nav__item md-nav__item--nested">
|
|
803
827
|
|
|
804
828
|
|
|
805
829
|
|
|
806
|
-
|
|
807
830
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
|
|
808
831
|
|
|
809
832
|
|
|
@@ -863,13 +886,14 @@
|
|
|
863
886
|
|
|
864
887
|
|
|
865
888
|
|
|
889
|
+
|
|
890
|
+
|
|
866
891
|
|
|
867
892
|
|
|
868
893
|
<li class="md-nav__item md-nav__item--nested">
|
|
869
894
|
|
|
870
895
|
|
|
871
896
|
|
|
872
|
-
|
|
873
897
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
874
898
|
|
|
875
899
|
|
|
@@ -1016,13 +1040,14 @@
|
|
|
1016
1040
|
|
|
1017
1041
|
|
|
1018
1042
|
|
|
1043
|
+
|
|
1044
|
+
|
|
1019
1045
|
|
|
1020
1046
|
|
|
1021
1047
|
<li class="md-nav__item md-nav__item--nested">
|
|
1022
1048
|
|
|
1023
1049
|
|
|
1024
1050
|
|
|
1025
|
-
|
|
1026
1051
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1027
1052
|
|
|
1028
1053
|
|
|
@@ -1103,13 +1128,14 @@
|
|
|
1103
1128
|
|
|
1104
1129
|
|
|
1105
1130
|
|
|
1131
|
+
|
|
1132
|
+
|
|
1106
1133
|
|
|
1107
1134
|
|
|
1108
1135
|
<li class="md-nav__item md-nav__item--nested">
|
|
1109
1136
|
|
|
1110
1137
|
|
|
1111
1138
|
|
|
1112
|
-
|
|
1113
1139
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1114
1140
|
|
|
1115
1141
|
|
|
@@ -1211,13 +1237,14 @@
|
|
|
1211
1237
|
|
|
1212
1238
|
|
|
1213
1239
|
|
|
1240
|
+
|
|
1241
|
+
|
|
1214
1242
|
|
|
1215
1243
|
|
|
1216
1244
|
<li class="md-nav__item md-nav__item--nested">
|
|
1217
1245
|
|
|
1218
1246
|
|
|
1219
1247
|
|
|
1220
|
-
|
|
1221
1248
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1222
1249
|
|
|
1223
1250
|
|
|
@@ -1327,13 +1354,14 @@
|
|
|
1327
1354
|
|
|
1328
1355
|
|
|
1329
1356
|
|
|
1357
|
+
|
|
1358
|
+
|
|
1330
1359
|
|
|
1331
1360
|
|
|
1332
1361
|
<li class="md-nav__item md-nav__item--nested">
|
|
1333
1362
|
|
|
1334
1363
|
|
|
1335
1364
|
|
|
1336
|
-
|
|
1337
1365
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1338
1366
|
|
|
1339
1367
|
|
|
@@ -1414,13 +1442,14 @@
|
|
|
1414
1442
|
|
|
1415
1443
|
|
|
1416
1444
|
|
|
1445
|
+
|
|
1446
|
+
|
|
1417
1447
|
|
|
1418
1448
|
|
|
1419
1449
|
<li class="md-nav__item md-nav__item--nested">
|
|
1420
1450
|
|
|
1421
1451
|
|
|
1422
1452
|
|
|
1423
|
-
|
|
1424
1453
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1425
1454
|
|
|
1426
1455
|
|
|
@@ -1635,13 +1664,14 @@
|
|
|
1635
1664
|
|
|
1636
1665
|
|
|
1637
1666
|
|
|
1667
|
+
|
|
1668
|
+
|
|
1638
1669
|
|
|
1639
1670
|
|
|
1640
1671
|
<li class="md-nav__item md-nav__item--nested">
|
|
1641
1672
|
|
|
1642
1673
|
|
|
1643
1674
|
|
|
1644
|
-
|
|
1645
1675
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1646
1676
|
|
|
1647
1677
|
|
|
@@ -1672,13 +1702,14 @@
|
|
|
1672
1702
|
|
|
1673
1703
|
|
|
1674
1704
|
|
|
1705
|
+
|
|
1706
|
+
|
|
1675
1707
|
|
|
1676
1708
|
|
|
1677
1709
|
<li class="md-nav__item md-nav__item--nested">
|
|
1678
1710
|
|
|
1679
1711
|
|
|
1680
1712
|
|
|
1681
|
-
|
|
1682
1713
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1683
1714
|
|
|
1684
1715
|
|
|
@@ -1891,7 +1922,7 @@
|
|
|
1891
1922
|
|
|
1892
1923
|
|
|
1893
1924
|
<li class="md-nav__item">
|
|
1894
|
-
<a href="../user-guide/feature-guides/
|
|
1925
|
+
<a href="../user-guide/feature-guides/contacts-and-teams.html" class="md-nav__link">
|
|
1895
1926
|
|
|
1896
1927
|
|
|
1897
1928
|
<span class="md-ellipsis">
|
|
@@ -2048,13 +2079,14 @@
|
|
|
2048
2079
|
|
|
2049
2080
|
|
|
2050
2081
|
|
|
2082
|
+
|
|
2083
|
+
|
|
2051
2084
|
|
|
2052
2085
|
|
|
2053
2086
|
<li class="md-nav__item md-nav__item--nested">
|
|
2054
2087
|
|
|
2055
2088
|
|
|
2056
2089
|
|
|
2057
|
-
|
|
2058
2090
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2059
2091
|
|
|
2060
2092
|
|
|
@@ -2085,13 +2117,14 @@
|
|
|
2085
2117
|
|
|
2086
2118
|
|
|
2087
2119
|
|
|
2120
|
+
|
|
2121
|
+
|
|
2088
2122
|
|
|
2089
2123
|
|
|
2090
2124
|
<li class="md-nav__item md-nav__item--nested">
|
|
2091
2125
|
|
|
2092
2126
|
|
|
2093
2127
|
|
|
2094
|
-
|
|
2095
2128
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2096
2129
|
|
|
2097
2130
|
|
|
@@ -2151,13 +2184,14 @@
|
|
|
2151
2184
|
|
|
2152
2185
|
|
|
2153
2186
|
|
|
2187
|
+
|
|
2188
|
+
|
|
2154
2189
|
|
|
2155
2190
|
|
|
2156
2191
|
<li class="md-nav__item md-nav__item--nested">
|
|
2157
2192
|
|
|
2158
2193
|
|
|
2159
2194
|
|
|
2160
|
-
|
|
2161
2195
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2162
2196
|
|
|
2163
2197
|
|
|
@@ -2301,13 +2335,14 @@
|
|
|
2301
2335
|
|
|
2302
2336
|
|
|
2303
2337
|
|
|
2338
|
+
|
|
2339
|
+
|
|
2304
2340
|
|
|
2305
2341
|
|
|
2306
2342
|
<li class="md-nav__item md-nav__item--nested">
|
|
2307
2343
|
|
|
2308
2344
|
|
|
2309
2345
|
|
|
2310
|
-
|
|
2311
2346
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2312
2347
|
|
|
2313
2348
|
|
|
@@ -2485,13 +2520,14 @@
|
|
|
2485
2520
|
|
|
2486
2521
|
|
|
2487
2522
|
|
|
2523
|
+
|
|
2524
|
+
|
|
2488
2525
|
|
|
2489
2526
|
|
|
2490
2527
|
<li class="md-nav__item md-nav__item--nested">
|
|
2491
2528
|
|
|
2492
2529
|
|
|
2493
2530
|
|
|
2494
|
-
|
|
2495
2531
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2496
2532
|
|
|
2497
2533
|
|
|
@@ -2706,13 +2742,14 @@
|
|
|
2706
2742
|
|
|
2707
2743
|
|
|
2708
2744
|
|
|
2745
|
+
|
|
2746
|
+
|
|
2709
2747
|
|
|
2710
2748
|
|
|
2711
2749
|
<li class="md-nav__item md-nav__item--nested">
|
|
2712
2750
|
|
|
2713
2751
|
|
|
2714
2752
|
|
|
2715
|
-
|
|
2716
2753
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2717
2754
|
|
|
2718
2755
|
|
|
@@ -3156,11 +3193,11 @@
|
|
|
3156
3193
|
|
|
3157
3194
|
|
|
3158
3195
|
<li class="md-nav__item">
|
|
3159
|
-
<a href="../user-guide/core-data-model/dcim/
|
|
3196
|
+
<a href="../user-guide/core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
|
|
3160
3197
|
|
|
3161
3198
|
|
|
3162
3199
|
<span class="md-ellipsis">
|
|
3163
|
-
Controller Device Group
|
|
3200
|
+
Controller Managed Device Group
|
|
3164
3201
|
</span>
|
|
3165
3202
|
|
|
3166
3203
|
|
|
@@ -3187,13 +3224,14 @@
|
|
|
3187
3224
|
|
|
3188
3225
|
|
|
3189
3226
|
|
|
3227
|
+
|
|
3228
|
+
|
|
3190
3229
|
|
|
3191
3230
|
|
|
3192
3231
|
<li class="md-nav__item md-nav__item--nested">
|
|
3193
3232
|
|
|
3194
3233
|
|
|
3195
3234
|
|
|
3196
|
-
|
|
3197
3235
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3198
3236
|
|
|
3199
3237
|
|
|
@@ -3316,13 +3354,14 @@
|
|
|
3316
3354
|
|
|
3317
3355
|
|
|
3318
3356
|
|
|
3357
|
+
|
|
3358
|
+
|
|
3319
3359
|
|
|
3320
3360
|
|
|
3321
3361
|
<li class="md-nav__item md-nav__item--nested">
|
|
3322
3362
|
|
|
3323
3363
|
|
|
3324
3364
|
|
|
3325
|
-
|
|
3326
3365
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3327
3366
|
|
|
3328
3367
|
|
|
@@ -3550,13 +3589,14 @@
|
|
|
3550
3589
|
|
|
3551
3590
|
|
|
3552
3591
|
|
|
3592
|
+
|
|
3593
|
+
|
|
3553
3594
|
|
|
3554
3595
|
|
|
3555
3596
|
<li class="md-nav__item md-nav__item--nested">
|
|
3556
3597
|
|
|
3557
3598
|
|
|
3558
3599
|
|
|
3559
|
-
|
|
3560
3600
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3561
3601
|
|
|
3562
3602
|
|
|
@@ -3637,13 +3677,14 @@
|
|
|
3637
3677
|
|
|
3638
3678
|
|
|
3639
3679
|
|
|
3680
|
+
|
|
3681
|
+
|
|
3640
3682
|
|
|
3641
3683
|
|
|
3642
3684
|
<li class="md-nav__item md-nav__item--nested">
|
|
3643
3685
|
|
|
3644
3686
|
|
|
3645
3687
|
|
|
3646
|
-
|
|
3647
3688
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3648
3689
|
|
|
3649
3690
|
|
|
@@ -3795,13 +3836,14 @@
|
|
|
3795
3836
|
|
|
3796
3837
|
|
|
3797
3838
|
|
|
3839
|
+
|
|
3840
|
+
|
|
3798
3841
|
|
|
3799
3842
|
|
|
3800
3843
|
<li class="md-nav__item md-nav__item--nested">
|
|
3801
3844
|
|
|
3802
3845
|
|
|
3803
3846
|
|
|
3804
|
-
|
|
3805
3847
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3806
3848
|
|
|
3807
3849
|
|
|
@@ -4000,13 +4042,14 @@
|
|
|
4000
4042
|
|
|
4001
4043
|
|
|
4002
4044
|
|
|
4045
|
+
|
|
4046
|
+
|
|
4003
4047
|
|
|
4004
4048
|
|
|
4005
4049
|
<li class="md-nav__item md-nav__item--nested">
|
|
4006
4050
|
|
|
4007
4051
|
|
|
4008
4052
|
|
|
4009
|
-
|
|
4010
4053
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4011
4054
|
|
|
4012
4055
|
|
|
@@ -4095,13 +4138,14 @@
|
|
|
4095
4138
|
|
|
4096
4139
|
|
|
4097
4140
|
|
|
4141
|
+
|
|
4142
|
+
|
|
4098
4143
|
|
|
4099
4144
|
|
|
4100
4145
|
<li class="md-nav__item md-nav__item--nested">
|
|
4101
4146
|
|
|
4102
4147
|
|
|
4103
4148
|
|
|
4104
|
-
|
|
4105
4149
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4106
4150
|
|
|
4107
4151
|
|
|
@@ -4295,13 +4339,14 @@
|
|
|
4295
4339
|
|
|
4296
4340
|
|
|
4297
4341
|
|
|
4342
|
+
|
|
4343
|
+
|
|
4298
4344
|
|
|
4299
4345
|
|
|
4300
4346
|
<li class="md-nav__item md-nav__item--nested">
|
|
4301
4347
|
|
|
4302
4348
|
|
|
4303
4349
|
|
|
4304
|
-
|
|
4305
4350
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4306
4351
|
|
|
4307
4352
|
|
|
@@ -4516,13 +4561,14 @@
|
|
|
4516
4561
|
|
|
4517
4562
|
|
|
4518
4563
|
|
|
4564
|
+
|
|
4565
|
+
|
|
4519
4566
|
|
|
4520
4567
|
|
|
4521
4568
|
<li class="md-nav__item md-nav__item--nested">
|
|
4522
4569
|
|
|
4523
4570
|
|
|
4524
4571
|
|
|
4525
|
-
|
|
4526
4572
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4527
4573
|
|
|
4528
4574
|
|
|
@@ -4639,16 +4685,14 @@
|
|
|
4639
4685
|
|
|
4640
4686
|
|
|
4641
4687
|
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
4688
|
|
|
4645
4689
|
|
|
4646
4690
|
|
|
4647
|
-
|
|
4691
|
+
|
|
4692
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4648
4693
|
|
|
4649
4694
|
|
|
4650
4695
|
|
|
4651
|
-
|
|
4652
4696
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4653
4697
|
|
|
4654
4698
|
|
|
@@ -4665,7 +4709,7 @@
|
|
|
4665
4709
|
</a>
|
|
4666
4710
|
|
|
4667
4711
|
|
|
4668
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4712
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4669
4713
|
<span class="md-nav__icon md-icon"></span>
|
|
4670
4714
|
</label>
|
|
4671
4715
|
|
|
@@ -4687,13 +4731,14 @@
|
|
|
4687
4731
|
|
|
4688
4732
|
|
|
4689
4733
|
|
|
4734
|
+
|
|
4735
|
+
|
|
4690
4736
|
|
|
4691
4737
|
|
|
4692
4738
|
<li class="md-nav__item md-nav__item--nested">
|
|
4693
4739
|
|
|
4694
4740
|
|
|
4695
4741
|
|
|
4696
|
-
|
|
4697
4742
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4698
4743
|
|
|
4699
4744
|
|
|
@@ -4761,13 +4806,14 @@
|
|
|
4761
4806
|
|
|
4762
4807
|
|
|
4763
4808
|
|
|
4809
|
+
|
|
4810
|
+
|
|
4764
4811
|
|
|
4765
4812
|
|
|
4766
4813
|
<li class="md-nav__item md-nav__item--nested">
|
|
4767
4814
|
|
|
4768
4815
|
|
|
4769
4816
|
|
|
4770
|
-
|
|
4771
4817
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4772
4818
|
|
|
4773
4819
|
|
|
@@ -4848,13 +4894,14 @@
|
|
|
4848
4894
|
|
|
4849
4895
|
|
|
4850
4896
|
|
|
4897
|
+
|
|
4898
|
+
|
|
4851
4899
|
|
|
4852
4900
|
|
|
4853
4901
|
<li class="md-nav__item md-nav__item--nested">
|
|
4854
4902
|
|
|
4855
4903
|
|
|
4856
4904
|
|
|
4857
|
-
|
|
4858
4905
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
4859
4906
|
|
|
4860
4907
|
|
|
@@ -4964,13 +5011,14 @@
|
|
|
4964
5011
|
|
|
4965
5012
|
|
|
4966
5013
|
|
|
5014
|
+
|
|
5015
|
+
|
|
4967
5016
|
|
|
4968
5017
|
|
|
4969
5018
|
<li class="md-nav__item md-nav__item--nested">
|
|
4970
5019
|
|
|
4971
5020
|
|
|
4972
5021
|
|
|
4973
|
-
|
|
4974
5022
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
4975
5023
|
|
|
4976
5024
|
|
|
@@ -5156,13 +5204,14 @@
|
|
|
5156
5204
|
|
|
5157
5205
|
|
|
5158
5206
|
|
|
5207
|
+
|
|
5208
|
+
|
|
5159
5209
|
|
|
5160
5210
|
|
|
5161
5211
|
<li class="md-nav__item md-nav__item--nested">
|
|
5162
5212
|
|
|
5163
5213
|
|
|
5164
5214
|
|
|
5165
|
-
|
|
5166
5215
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5167
5216
|
|
|
5168
5217
|
|
|
@@ -5272,13 +5321,14 @@
|
|
|
5272
5321
|
|
|
5273
5322
|
|
|
5274
5323
|
|
|
5324
|
+
|
|
5325
|
+
|
|
5275
5326
|
|
|
5276
5327
|
|
|
5277
5328
|
<li class="md-nav__item md-nav__item--nested">
|
|
5278
5329
|
|
|
5279
5330
|
|
|
5280
5331
|
|
|
5281
|
-
|
|
5282
5332
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5283
5333
|
|
|
5284
5334
|
|
|
@@ -5535,13 +5585,14 @@
|
|
|
5535
5585
|
|
|
5536
5586
|
|
|
5537
5587
|
|
|
5588
|
+
|
|
5589
|
+
|
|
5538
5590
|
|
|
5539
5591
|
|
|
5540
5592
|
<li class="md-nav__item md-nav__item--nested">
|
|
5541
5593
|
|
|
5542
5594
|
|
|
5543
5595
|
|
|
5544
|
-
|
|
5545
5596
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5546
5597
|
|
|
5547
5598
|
|
|
@@ -5714,13 +5765,14 @@
|
|
|
5714
5765
|
|
|
5715
5766
|
|
|
5716
5767
|
|
|
5768
|
+
|
|
5769
|
+
|
|
5717
5770
|
|
|
5718
5771
|
|
|
5719
5772
|
<li class="md-nav__item md-nav__item--nested">
|
|
5720
5773
|
|
|
5721
5774
|
|
|
5722
5775
|
|
|
5723
|
-
|
|
5724
5776
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5725
5777
|
|
|
5726
5778
|
|
|
@@ -6242,13 +6294,14 @@
|
|
|
6242
6294
|
|
|
6243
6295
|
|
|
6244
6296
|
|
|
6297
|
+
|
|
6298
|
+
|
|
6245
6299
|
|
|
6246
6300
|
|
|
6247
6301
|
<li class="md-nav__item md-nav__item--nested">
|
|
6248
6302
|
|
|
6249
6303
|
|
|
6250
6304
|
|
|
6251
|
-
|
|
6252
6305
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6253
6306
|
|
|
6254
6307
|
|
|
@@ -6342,13 +6395,14 @@
|
|
|
6342
6395
|
|
|
6343
6396
|
|
|
6344
6397
|
|
|
6398
|
+
|
|
6399
|
+
|
|
6345
6400
|
|
|
6346
6401
|
|
|
6347
6402
|
<li class="md-nav__item md-nav__item--nested">
|
|
6348
6403
|
|
|
6349
6404
|
|
|
6350
6405
|
|
|
6351
|
-
|
|
6352
6406
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6353
6407
|
|
|
6354
6408
|
|
|
@@ -6479,13 +6533,14 @@
|
|
|
6479
6533
|
|
|
6480
6534
|
|
|
6481
6535
|
|
|
6536
|
+
|
|
6537
|
+
|
|
6482
6538
|
|
|
6483
6539
|
|
|
6484
6540
|
<li class="md-nav__item md-nav__item--nested">
|
|
6485
6541
|
|
|
6486
6542
|
|
|
6487
6543
|
|
|
6488
|
-
|
|
6489
6544
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6490
6545
|
|
|
6491
6546
|
|
|
@@ -6553,13 +6608,14 @@
|
|
|
6553
6608
|
|
|
6554
6609
|
|
|
6555
6610
|
|
|
6611
|
+
|
|
6612
|
+
|
|
6556
6613
|
|
|
6557
6614
|
|
|
6558
6615
|
<li class="md-nav__item md-nav__item--nested">
|
|
6559
6616
|
|
|
6560
6617
|
|
|
6561
6618
|
|
|
6562
|
-
|
|
6563
6619
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6564
6620
|
|
|
6565
6621
|
|
|
@@ -6764,11 +6820,11 @@
|
|
|
6764
6820
|
|
|
6765
6821
|
|
|
6766
6822
|
<li class="md-nav__item">
|
|
6767
|
-
<a href="../development/core/
|
|
6823
|
+
<a href="../development/core/generic-views.html" class="md-nav__link">
|
|
6768
6824
|
|
|
6769
6825
|
|
|
6770
6826
|
<span class="md-ellipsis">
|
|
6771
|
-
|
|
6827
|
+
Generic Views
|
|
6772
6828
|
</span>
|
|
6773
6829
|
|
|
6774
6830
|
|
|
@@ -6785,11 +6841,11 @@
|
|
|
6785
6841
|
|
|
6786
6842
|
|
|
6787
6843
|
<li class="md-nav__item">
|
|
6788
|
-
<a href="../development/core/
|
|
6844
|
+
<a href="../development/core/homepage.html" class="md-nav__link">
|
|
6789
6845
|
|
|
6790
6846
|
|
|
6791
6847
|
<span class="md-ellipsis">
|
|
6792
|
-
|
|
6848
|
+
Home Page Panels
|
|
6793
6849
|
</span>
|
|
6794
6850
|
|
|
6795
6851
|
|
|
@@ -6806,11 +6862,11 @@
|
|
|
6806
6862
|
|
|
6807
6863
|
|
|
6808
6864
|
<li class="md-nav__item">
|
|
6809
|
-
<a href="../development/core/
|
|
6865
|
+
<a href="../development/core/model-checklist.html" class="md-nav__link">
|
|
6810
6866
|
|
|
6811
6867
|
|
|
6812
6868
|
<span class="md-ellipsis">
|
|
6813
|
-
|
|
6869
|
+
Model Development Checklist
|
|
6814
6870
|
</span>
|
|
6815
6871
|
|
|
6816
6872
|
|
|
@@ -7035,16 +7091,17 @@
|
|
|
7035
7091
|
|
|
7036
7092
|
|
|
7037
7093
|
|
|
7038
|
-
|
|
7039
|
-
|
|
7040
7094
|
|
|
7095
|
+
|
|
7096
|
+
|
|
7041
7097
|
|
|
7098
|
+
|
|
7099
|
+
|
|
7042
7100
|
|
|
7043
7101
|
<li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
|
|
7044
7102
|
|
|
7045
7103
|
|
|
7046
7104
|
|
|
7047
|
-
|
|
7048
7105
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" checked>
|
|
7049
7106
|
|
|
7050
7107
|
|
|
@@ -7340,37 +7397,28 @@
|
|
|
7340
7397
|
</li>
|
|
7341
7398
|
|
|
7342
7399
|
<li class="md-nav__item">
|
|
7343
|
-
<a href="#
|
|
7400
|
+
<a href="#v1618-2024-04-15" class="md-nav__link">
|
|
7344
7401
|
<span class="md-ellipsis">
|
|
7345
|
-
v1.6.
|
|
7402
|
+
v1.6.18 (2024-04-15)
|
|
7346
7403
|
</span>
|
|
7347
7404
|
</a>
|
|
7348
7405
|
|
|
7349
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
7406
|
+
<nav class="md-nav" aria-label="v1.6.18 (2024-04-15)">
|
|
7350
7407
|
<ul class="md-nav__list">
|
|
7351
7408
|
|
|
7352
7409
|
<li class="md-nav__item">
|
|
7353
|
-
<a href="#
|
|
7354
|
-
<span class="md-ellipsis">
|
|
7355
|
-
Added
|
|
7356
|
-
</span>
|
|
7357
|
-
</a>
|
|
7358
|
-
|
|
7359
|
-
</li>
|
|
7360
|
-
|
|
7361
|
-
<li class="md-nav__item">
|
|
7362
|
-
<a href="#fixed" class="md-nav__link">
|
|
7410
|
+
<a href="#security" class="md-nav__link">
|
|
7363
7411
|
<span class="md-ellipsis">
|
|
7364
|
-
|
|
7412
|
+
Security
|
|
7365
7413
|
</span>
|
|
7366
7414
|
</a>
|
|
7367
7415
|
|
|
7368
7416
|
</li>
|
|
7369
7417
|
|
|
7370
7418
|
<li class="md-nav__item">
|
|
7371
|
-
<a href="#
|
|
7419
|
+
<a href="#dependencies" class="md-nav__link">
|
|
7372
7420
|
<span class="md-ellipsis">
|
|
7373
|
-
|
|
7421
|
+
Dependencies
|
|
7374
7422
|
</span>
|
|
7375
7423
|
</a>
|
|
7376
7424
|
|
|
@@ -7382,19 +7430,19 @@
|
|
|
7382
7430
|
</li>
|
|
7383
7431
|
|
|
7384
7432
|
<li class="md-nav__item">
|
|
7385
|
-
<a href="#
|
|
7433
|
+
<a href="#v1617-2024-04-01" class="md-nav__link">
|
|
7386
7434
|
<span class="md-ellipsis">
|
|
7387
|
-
v1.6.
|
|
7435
|
+
v1.6.17 (2024-04-01)
|
|
7388
7436
|
</span>
|
|
7389
7437
|
</a>
|
|
7390
7438
|
|
|
7391
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
7439
|
+
<nav class="md-nav" aria-label="v1.6.17 (2024-04-01)">
|
|
7392
7440
|
<ul class="md-nav__list">
|
|
7393
7441
|
|
|
7394
7442
|
<li class="md-nav__item">
|
|
7395
|
-
<a href="#
|
|
7443
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
7396
7444
|
<span class="md-ellipsis">
|
|
7397
|
-
|
|
7445
|
+
Dependencies
|
|
7398
7446
|
</span>
|
|
7399
7447
|
</a>
|
|
7400
7448
|
|
|
@@ -7406,26 +7454,26 @@
|
|
|
7406
7454
|
</li>
|
|
7407
7455
|
|
|
7408
7456
|
<li class="md-nav__item">
|
|
7409
|
-
<a href="#
|
|
7457
|
+
<a href="#v1616-2024-03-25" class="md-nav__link">
|
|
7410
7458
|
<span class="md-ellipsis">
|
|
7411
|
-
v1.6.
|
|
7459
|
+
v1.6.16 (2024-03-25)
|
|
7412
7460
|
</span>
|
|
7413
7461
|
</a>
|
|
7414
7462
|
|
|
7415
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
7463
|
+
<nav class="md-nav" aria-label="v1.6.16 (2024-03-25)">
|
|
7416
7464
|
<ul class="md-nav__list">
|
|
7417
7465
|
|
|
7418
7466
|
<li class="md-nav__item">
|
|
7419
|
-
<a href="#
|
|
7467
|
+
<a href="#security_1" class="md-nav__link">
|
|
7420
7468
|
<span class="md-ellipsis">
|
|
7421
|
-
|
|
7469
|
+
Security
|
|
7422
7470
|
</span>
|
|
7423
7471
|
</a>
|
|
7424
7472
|
|
|
7425
7473
|
</li>
|
|
7426
7474
|
|
|
7427
7475
|
<li class="md-nav__item">
|
|
7428
|
-
<a href="#
|
|
7476
|
+
<a href="#added_1" class="md-nav__link">
|
|
7429
7477
|
<span class="md-ellipsis">
|
|
7430
7478
|
Added
|
|
7431
7479
|
</span>
|
|
@@ -7434,7 +7482,16 @@
|
|
|
7434
7482
|
</li>
|
|
7435
7483
|
|
|
7436
7484
|
<li class="md-nav__item">
|
|
7437
|
-
<a href="#
|
|
7485
|
+
<a href="#changed_1" class="md-nav__link">
|
|
7486
|
+
<span class="md-ellipsis">
|
|
7487
|
+
Changed
|
|
7488
|
+
</span>
|
|
7489
|
+
</a>
|
|
7490
|
+
|
|
7491
|
+
</li>
|
|
7492
|
+
|
|
7493
|
+
<li class="md-nav__item">
|
|
7494
|
+
<a href="#fixed" class="md-nav__link">
|
|
7438
7495
|
<span class="md-ellipsis">
|
|
7439
7496
|
Fixed
|
|
7440
7497
|
</span>
|
|
@@ -7449,6 +7506,15 @@
|
|
|
7449
7506
|
</span>
|
|
7450
7507
|
</a>
|
|
7451
7508
|
|
|
7509
|
+
</li>
|
|
7510
|
+
|
|
7511
|
+
<li class="md-nav__item">
|
|
7512
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
7513
|
+
<span class="md-ellipsis">
|
|
7514
|
+
Housekeeping
|
|
7515
|
+
</span>
|
|
7516
|
+
</a>
|
|
7517
|
+
|
|
7452
7518
|
</li>
|
|
7453
7519
|
|
|
7454
7520
|
</ul>
|
|
@@ -7457,17 +7523,17 @@
|
|
|
7457
7523
|
</li>
|
|
7458
7524
|
|
|
7459
7525
|
<li class="md-nav__item">
|
|
7460
|
-
<a href="#
|
|
7526
|
+
<a href="#v1615-2024-03-18" class="md-nav__link">
|
|
7461
7527
|
<span class="md-ellipsis">
|
|
7462
|
-
v1.6.
|
|
7528
|
+
v1.6.15 (2024-03-18)
|
|
7463
7529
|
</span>
|
|
7464
7530
|
</a>
|
|
7465
7531
|
|
|
7466
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
7532
|
+
<nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
|
|
7467
7533
|
<ul class="md-nav__list">
|
|
7468
7534
|
|
|
7469
7535
|
<li class="md-nav__item">
|
|
7470
|
-
<a href="#
|
|
7536
|
+
<a href="#added_2" class="md-nav__link">
|
|
7471
7537
|
<span class="md-ellipsis">
|
|
7472
7538
|
Added
|
|
7473
7539
|
</span>
|
|
@@ -7476,25 +7542,40 @@
|
|
|
7476
7542
|
</li>
|
|
7477
7543
|
|
|
7478
7544
|
<li class="md-nav__item">
|
|
7479
|
-
<a href="#
|
|
7545
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
7480
7546
|
<span class="md-ellipsis">
|
|
7481
|
-
|
|
7547
|
+
Fixed
|
|
7482
7548
|
</span>
|
|
7483
7549
|
</a>
|
|
7484
7550
|
|
|
7485
7551
|
</li>
|
|
7486
7552
|
|
|
7487
7553
|
<li class="md-nav__item">
|
|
7488
|
-
<a href="#
|
|
7554
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
7489
7555
|
<span class="md-ellipsis">
|
|
7490
|
-
|
|
7556
|
+
Housekeeping
|
|
7491
7557
|
</span>
|
|
7492
7558
|
</a>
|
|
7493
7559
|
|
|
7494
7560
|
</li>
|
|
7495
7561
|
|
|
7562
|
+
</ul>
|
|
7563
|
+
</nav>
|
|
7564
|
+
|
|
7565
|
+
</li>
|
|
7566
|
+
|
|
7567
|
+
<li class="md-nav__item">
|
|
7568
|
+
<a href="#v1614-2024-03-05" class="md-nav__link">
|
|
7569
|
+
<span class="md-ellipsis">
|
|
7570
|
+
v1.6.14 (2024-03-05)
|
|
7571
|
+
</span>
|
|
7572
|
+
</a>
|
|
7573
|
+
|
|
7574
|
+
<nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
|
|
7575
|
+
<ul class="md-nav__list">
|
|
7576
|
+
|
|
7496
7577
|
<li class="md-nav__item">
|
|
7497
|
-
<a href="#
|
|
7578
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
7498
7579
|
<span class="md-ellipsis">
|
|
7499
7580
|
Fixed
|
|
7500
7581
|
</span>
|
|
@@ -7508,24 +7589,66 @@
|
|
|
7508
7589
|
</li>
|
|
7509
7590
|
|
|
7510
7591
|
<li class="md-nav__item">
|
|
7511
|
-
<a href="#
|
|
7592
|
+
<a href="#v1613-2024-03-04" class="md-nav__link">
|
|
7512
7593
|
<span class="md-ellipsis">
|
|
7513
|
-
v1.6.
|
|
7594
|
+
v1.6.13 (2024-03-04)
|
|
7514
7595
|
</span>
|
|
7515
7596
|
</a>
|
|
7516
7597
|
|
|
7517
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
7598
|
+
<nav class="md-nav" aria-label="v1.6.13 (2024-03-04)">
|
|
7518
7599
|
<ul class="md-nav__list">
|
|
7519
7600
|
|
|
7520
7601
|
<li class="md-nav__item">
|
|
7521
|
-
<a href="#
|
|
7602
|
+
<a href="#added_3" class="md-nav__link">
|
|
7522
7603
|
<span class="md-ellipsis">
|
|
7523
|
-
|
|
7604
|
+
Added
|
|
7605
|
+
</span>
|
|
7606
|
+
</a>
|
|
7607
|
+
|
|
7608
|
+
</li>
|
|
7609
|
+
|
|
7610
|
+
<li class="md-nav__item">
|
|
7611
|
+
<a href="#added_4" class="md-nav__link">
|
|
7612
|
+
<span class="md-ellipsis">
|
|
7613
|
+
Added
|
|
7614
|
+
</span>
|
|
7615
|
+
</a>
|
|
7616
|
+
|
|
7617
|
+
</li>
|
|
7618
|
+
|
|
7619
|
+
<li class="md-nav__item">
|
|
7620
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
7621
|
+
<span class="md-ellipsis">
|
|
7622
|
+
Fixed
|
|
7623
|
+
</span>
|
|
7624
|
+
</a>
|
|
7625
|
+
|
|
7626
|
+
</li>
|
|
7627
|
+
|
|
7628
|
+
<li class="md-nav__item">
|
|
7629
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
7630
|
+
<span class="md-ellipsis">
|
|
7631
|
+
Documentation
|
|
7524
7632
|
</span>
|
|
7525
7633
|
</a>
|
|
7526
7634
|
|
|
7527
7635
|
</li>
|
|
7528
7636
|
|
|
7637
|
+
</ul>
|
|
7638
|
+
</nav>
|
|
7639
|
+
|
|
7640
|
+
</li>
|
|
7641
|
+
|
|
7642
|
+
<li class="md-nav__item">
|
|
7643
|
+
<a href="#v1612-2024-02-20" class="md-nav__link">
|
|
7644
|
+
<span class="md-ellipsis">
|
|
7645
|
+
v1.6.12 (2024-02-20)
|
|
7646
|
+
</span>
|
|
7647
|
+
</a>
|
|
7648
|
+
|
|
7649
|
+
<nav class="md-nav" aria-label="v1.6.12 (2024-02-20)">
|
|
7650
|
+
<ul class="md-nav__list">
|
|
7651
|
+
|
|
7529
7652
|
<li class="md-nav__item">
|
|
7530
7653
|
<a href="#added_5" class="md-nav__link">
|
|
7531
7654
|
<span class="md-ellipsis">
|
|
@@ -7533,6 +7656,24 @@
|
|
|
7533
7656
|
</span>
|
|
7534
7657
|
</a>
|
|
7535
7658
|
|
|
7659
|
+
</li>
|
|
7660
|
+
|
|
7661
|
+
<li class="md-nav__item">
|
|
7662
|
+
<a href="#security_2" class="md-nav__link">
|
|
7663
|
+
<span class="md-ellipsis">
|
|
7664
|
+
Security
|
|
7665
|
+
</span>
|
|
7666
|
+
</a>
|
|
7667
|
+
|
|
7668
|
+
</li>
|
|
7669
|
+
|
|
7670
|
+
<li class="md-nav__item">
|
|
7671
|
+
<a href="#changed_2" class="md-nav__link">
|
|
7672
|
+
<span class="md-ellipsis">
|
|
7673
|
+
Changed
|
|
7674
|
+
</span>
|
|
7675
|
+
</a>
|
|
7676
|
+
|
|
7536
7677
|
</li>
|
|
7537
7678
|
|
|
7538
7679
|
<li class="md-nav__item">
|
|
@@ -7547,6 +7688,48 @@
|
|
|
7547
7688
|
</ul>
|
|
7548
7689
|
</nav>
|
|
7549
7690
|
|
|
7691
|
+
</li>
|
|
7692
|
+
|
|
7693
|
+
<li class="md-nav__item">
|
|
7694
|
+
<a href="#v1611-2024-02-05" class="md-nav__link">
|
|
7695
|
+
<span class="md-ellipsis">
|
|
7696
|
+
v1.6.11 (2024-02-05)
|
|
7697
|
+
</span>
|
|
7698
|
+
</a>
|
|
7699
|
+
|
|
7700
|
+
<nav class="md-nav" aria-label="v1.6.11 (2024-02-05)">
|
|
7701
|
+
<ul class="md-nav__list">
|
|
7702
|
+
|
|
7703
|
+
<li class="md-nav__item">
|
|
7704
|
+
<a href="#security_3" class="md-nav__link">
|
|
7705
|
+
<span class="md-ellipsis">
|
|
7706
|
+
Security
|
|
7707
|
+
</span>
|
|
7708
|
+
</a>
|
|
7709
|
+
|
|
7710
|
+
</li>
|
|
7711
|
+
|
|
7712
|
+
<li class="md-nav__item">
|
|
7713
|
+
<a href="#added_6" class="md-nav__link">
|
|
7714
|
+
<span class="md-ellipsis">
|
|
7715
|
+
Added
|
|
7716
|
+
</span>
|
|
7717
|
+
</a>
|
|
7718
|
+
|
|
7719
|
+
</li>
|
|
7720
|
+
|
|
7721
|
+
<li class="md-nav__item">
|
|
7722
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
7723
|
+
<span class="md-ellipsis">
|
|
7724
|
+
Fixed
|
|
7725
|
+
</span>
|
|
7726
|
+
</a>
|
|
7727
|
+
|
|
7728
|
+
</li>
|
|
7729
|
+
|
|
7730
|
+
</ul>
|
|
7731
|
+
</nav>
|
|
7732
|
+
|
|
7550
7733
|
</li>
|
|
7551
7734
|
|
|
7552
7735
|
<li class="md-nav__item">
|
|
@@ -7560,7 +7743,7 @@
|
|
|
7560
7743
|
<ul class="md-nav__list">
|
|
7561
7744
|
|
|
7562
7745
|
<li class="md-nav__item">
|
|
7563
|
-
<a href="#
|
|
7746
|
+
<a href="#security_4" class="md-nav__link">
|
|
7564
7747
|
<span class="md-ellipsis">
|
|
7565
7748
|
Security
|
|
7566
7749
|
</span>
|
|
@@ -7569,7 +7752,7 @@
|
|
|
7569
7752
|
</li>
|
|
7570
7753
|
|
|
7571
7754
|
<li class="md-nav__item">
|
|
7572
|
-
<a href="#
|
|
7755
|
+
<a href="#added_7" class="md-nav__link">
|
|
7573
7756
|
<span class="md-ellipsis">
|
|
7574
7757
|
Added
|
|
7575
7758
|
</span>
|
|
@@ -7578,7 +7761,7 @@
|
|
|
7578
7761
|
</li>
|
|
7579
7762
|
|
|
7580
7763
|
<li class="md-nav__item">
|
|
7581
|
-
<a href="#
|
|
7764
|
+
<a href="#changed_3" class="md-nav__link">
|
|
7582
7765
|
<span class="md-ellipsis">
|
|
7583
7766
|
Changed
|
|
7584
7767
|
</span>
|
|
@@ -7587,7 +7770,7 @@
|
|
|
7587
7770
|
</li>
|
|
7588
7771
|
|
|
7589
7772
|
<li class="md-nav__item">
|
|
7590
|
-
<a href="#
|
|
7773
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
7591
7774
|
<span class="md-ellipsis">
|
|
7592
7775
|
Dependencies
|
|
7593
7776
|
</span>
|
|
@@ -7611,7 +7794,7 @@
|
|
|
7611
7794
|
<ul class="md-nav__list">
|
|
7612
7795
|
|
|
7613
7796
|
<li class="md-nav__item">
|
|
7614
|
-
<a href="#
|
|
7797
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
7615
7798
|
<span class="md-ellipsis">
|
|
7616
7799
|
Fixed
|
|
7617
7800
|
</span>
|
|
@@ -7635,7 +7818,7 @@
|
|
|
7635
7818
|
<ul class="md-nav__list">
|
|
7636
7819
|
|
|
7637
7820
|
<li class="md-nav__item">
|
|
7638
|
-
<a href="#
|
|
7821
|
+
<a href="#security_5" class="md-nav__link">
|
|
7639
7822
|
<span class="md-ellipsis">
|
|
7640
7823
|
Security
|
|
7641
7824
|
</span>
|
|
@@ -7644,7 +7827,7 @@
|
|
|
7644
7827
|
</li>
|
|
7645
7828
|
|
|
7646
7829
|
<li class="md-nav__item">
|
|
7647
|
-
<a href="#
|
|
7830
|
+
<a href="#added_8" class="md-nav__link">
|
|
7648
7831
|
<span class="md-ellipsis">
|
|
7649
7832
|
Added
|
|
7650
7833
|
</span>
|
|
@@ -7662,7 +7845,7 @@
|
|
|
7662
7845
|
</li>
|
|
7663
7846
|
|
|
7664
7847
|
<li class="md-nav__item">
|
|
7665
|
-
<a href="#
|
|
7848
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
7666
7849
|
<span class="md-ellipsis">
|
|
7667
7850
|
Fixed
|
|
7668
7851
|
</span>
|
|
@@ -7671,7 +7854,7 @@
|
|
|
7671
7854
|
</li>
|
|
7672
7855
|
|
|
7673
7856
|
<li class="md-nav__item">
|
|
7674
|
-
<a href="#
|
|
7857
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
7675
7858
|
<span class="md-ellipsis">
|
|
7676
7859
|
Housekeeping
|
|
7677
7860
|
</span>
|
|
@@ -7695,7 +7878,7 @@
|
|
|
7695
7878
|
<ul class="md-nav__list">
|
|
7696
7879
|
|
|
7697
7880
|
<li class="md-nav__item">
|
|
7698
|
-
<a href="#
|
|
7881
|
+
<a href="#security_6" class="md-nav__link">
|
|
7699
7882
|
<span class="md-ellipsis">
|
|
7700
7883
|
Security
|
|
7701
7884
|
</span>
|
|
@@ -7704,7 +7887,7 @@
|
|
|
7704
7887
|
</li>
|
|
7705
7888
|
|
|
7706
7889
|
<li class="md-nav__item">
|
|
7707
|
-
<a href="#
|
|
7890
|
+
<a href="#added_9" class="md-nav__link">
|
|
7708
7891
|
<span class="md-ellipsis">
|
|
7709
7892
|
Added
|
|
7710
7893
|
</span>
|
|
@@ -7722,7 +7905,7 @@
|
|
|
7722
7905
|
</li>
|
|
7723
7906
|
|
|
7724
7907
|
<li class="md-nav__item">
|
|
7725
|
-
<a href="#
|
|
7908
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
7726
7909
|
<span class="md-ellipsis">
|
|
7727
7910
|
Fixed
|
|
7728
7911
|
</span>
|
|
@@ -7746,7 +7929,7 @@
|
|
|
7746
7929
|
<ul class="md-nav__list">
|
|
7747
7930
|
|
|
7748
7931
|
<li class="md-nav__item">
|
|
7749
|
-
<a href="#
|
|
7932
|
+
<a href="#security_7" class="md-nav__link">
|
|
7750
7933
|
<span class="md-ellipsis">
|
|
7751
7934
|
Security
|
|
7752
7935
|
</span>
|
|
@@ -7755,7 +7938,7 @@
|
|
|
7755
7938
|
</li>
|
|
7756
7939
|
|
|
7757
7940
|
<li class="md-nav__item">
|
|
7758
|
-
<a href="#
|
|
7941
|
+
<a href="#changed_4" class="md-nav__link">
|
|
7759
7942
|
<span class="md-ellipsis">
|
|
7760
7943
|
Changed
|
|
7761
7944
|
</span>
|
|
@@ -7764,7 +7947,7 @@
|
|
|
7764
7947
|
</li>
|
|
7765
7948
|
|
|
7766
7949
|
<li class="md-nav__item">
|
|
7767
|
-
<a href="#
|
|
7950
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
7768
7951
|
<span class="md-ellipsis">
|
|
7769
7952
|
Fixed
|
|
7770
7953
|
</span>
|
|
@@ -7773,7 +7956,7 @@
|
|
|
7773
7956
|
</li>
|
|
7774
7957
|
|
|
7775
7958
|
<li class="md-nav__item">
|
|
7776
|
-
<a href="#
|
|
7959
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
7777
7960
|
<span class="md-ellipsis">
|
|
7778
7961
|
Dependencies
|
|
7779
7962
|
</span>
|
|
@@ -7782,7 +7965,7 @@
|
|
|
7782
7965
|
</li>
|
|
7783
7966
|
|
|
7784
7967
|
<li class="md-nav__item">
|
|
7785
|
-
<a href="#
|
|
7968
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
7786
7969
|
<span class="md-ellipsis">
|
|
7787
7970
|
Housekeeping
|
|
7788
7971
|
</span>
|
|
@@ -7806,7 +7989,7 @@
|
|
|
7806
7989
|
<ul class="md-nav__list">
|
|
7807
7990
|
|
|
7808
7991
|
<li class="md-nav__item">
|
|
7809
|
-
<a href="#
|
|
7992
|
+
<a href="#security_8" class="md-nav__link">
|
|
7810
7993
|
<span class="md-ellipsis">
|
|
7811
7994
|
Security
|
|
7812
7995
|
</span>
|
|
@@ -7815,7 +7998,7 @@
|
|
|
7815
7998
|
</li>
|
|
7816
7999
|
|
|
7817
8000
|
<li class="md-nav__item">
|
|
7818
|
-
<a href="#
|
|
8001
|
+
<a href="#added_10" class="md-nav__link">
|
|
7819
8002
|
<span class="md-ellipsis">
|
|
7820
8003
|
Added
|
|
7821
8004
|
</span>
|
|
@@ -7824,7 +8007,7 @@
|
|
|
7824
8007
|
</li>
|
|
7825
8008
|
|
|
7826
8009
|
<li class="md-nav__item">
|
|
7827
|
-
<a href="#
|
|
8010
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
7828
8011
|
<span class="md-ellipsis">
|
|
7829
8012
|
Fixed
|
|
7830
8013
|
</span>
|
|
@@ -7833,7 +8016,7 @@
|
|
|
7833
8016
|
</li>
|
|
7834
8017
|
|
|
7835
8018
|
<li class="md-nav__item">
|
|
7836
|
-
<a href="#
|
|
8019
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
7837
8020
|
<span class="md-ellipsis">
|
|
7838
8021
|
Documentation
|
|
7839
8022
|
</span>
|
|
@@ -7842,7 +8025,7 @@
|
|
|
7842
8025
|
</li>
|
|
7843
8026
|
|
|
7844
8027
|
<li class="md-nav__item">
|
|
7845
|
-
<a href="#
|
|
8028
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
7846
8029
|
<span class="md-ellipsis">
|
|
7847
8030
|
Housekeeping
|
|
7848
8031
|
</span>
|
|
@@ -7866,7 +8049,7 @@
|
|
|
7866
8049
|
<ul class="md-nav__list">
|
|
7867
8050
|
|
|
7868
8051
|
<li class="md-nav__item">
|
|
7869
|
-
<a href="#
|
|
8052
|
+
<a href="#added_11" class="md-nav__link">
|
|
7870
8053
|
<span class="md-ellipsis">
|
|
7871
8054
|
Added
|
|
7872
8055
|
</span>
|
|
@@ -7875,7 +8058,7 @@
|
|
|
7875
8058
|
</li>
|
|
7876
8059
|
|
|
7877
8060
|
<li class="md-nav__item">
|
|
7878
|
-
<a href="#
|
|
8061
|
+
<a href="#changed_5" class="md-nav__link">
|
|
7879
8062
|
<span class="md-ellipsis">
|
|
7880
8063
|
Changed
|
|
7881
8064
|
</span>
|
|
@@ -7893,7 +8076,7 @@
|
|
|
7893
8076
|
</li>
|
|
7894
8077
|
|
|
7895
8078
|
<li class="md-nav__item">
|
|
7896
|
-
<a href="#
|
|
8079
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
7897
8080
|
<span class="md-ellipsis">
|
|
7898
8081
|
Housekeeping
|
|
7899
8082
|
</span>
|
|
@@ -7917,7 +8100,7 @@
|
|
|
7917
8100
|
<ul class="md-nav__list">
|
|
7918
8101
|
|
|
7919
8102
|
<li class="md-nav__item">
|
|
7920
|
-
<a href="#
|
|
8103
|
+
<a href="#security_9" class="md-nav__link">
|
|
7921
8104
|
<span class="md-ellipsis">
|
|
7922
8105
|
Security
|
|
7923
8106
|
</span>
|
|
@@ -7926,7 +8109,7 @@
|
|
|
7926
8109
|
</li>
|
|
7927
8110
|
|
|
7928
8111
|
<li class="md-nav__item">
|
|
7929
|
-
<a href="#
|
|
8112
|
+
<a href="#added_12" class="md-nav__link">
|
|
7930
8113
|
<span class="md-ellipsis">
|
|
7931
8114
|
Added
|
|
7932
8115
|
</span>
|
|
@@ -7935,7 +8118,7 @@
|
|
|
7935
8118
|
</li>
|
|
7936
8119
|
|
|
7937
8120
|
<li class="md-nav__item">
|
|
7938
|
-
<a href="#
|
|
8121
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
7939
8122
|
<span class="md-ellipsis">
|
|
7940
8123
|
Fixed
|
|
7941
8124
|
</span>
|
|
@@ -7944,7 +8127,7 @@
|
|
|
7944
8127
|
</li>
|
|
7945
8128
|
|
|
7946
8129
|
<li class="md-nav__item">
|
|
7947
|
-
<a href="#
|
|
8130
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
7948
8131
|
<span class="md-ellipsis">
|
|
7949
8132
|
Housekeeping
|
|
7950
8133
|
</span>
|
|
@@ -7968,7 +8151,7 @@
|
|
|
7968
8151
|
<ul class="md-nav__list">
|
|
7969
8152
|
|
|
7970
8153
|
<li class="md-nav__item">
|
|
7971
|
-
<a href="#
|
|
8154
|
+
<a href="#added_13" class="md-nav__link">
|
|
7972
8155
|
<span class="md-ellipsis">
|
|
7973
8156
|
Added
|
|
7974
8157
|
</span>
|
|
@@ -7977,7 +8160,7 @@
|
|
|
7977
8160
|
</li>
|
|
7978
8161
|
|
|
7979
8162
|
<li class="md-nav__item">
|
|
7980
|
-
<a href="#
|
|
8163
|
+
<a href="#changed_6" class="md-nav__link">
|
|
7981
8164
|
<span class="md-ellipsis">
|
|
7982
8165
|
Changed
|
|
7983
8166
|
</span>
|
|
@@ -7986,7 +8169,7 @@
|
|
|
7986
8169
|
</li>
|
|
7987
8170
|
|
|
7988
8171
|
<li class="md-nav__item">
|
|
7989
|
-
<a href="#
|
|
8172
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
7990
8173
|
<span class="md-ellipsis">
|
|
7991
8174
|
Fixed
|
|
7992
8175
|
</span>
|
|
@@ -7995,7 +8178,7 @@
|
|
|
7995
8178
|
</li>
|
|
7996
8179
|
|
|
7997
8180
|
<li class="md-nav__item">
|
|
7998
|
-
<a href="#
|
|
8181
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
7999
8182
|
<span class="md-ellipsis">
|
|
8000
8183
|
Documentation
|
|
8001
8184
|
</span>
|
|
@@ -8004,7 +8187,7 @@
|
|
|
8004
8187
|
</li>
|
|
8005
8188
|
|
|
8006
8189
|
<li class="md-nav__item">
|
|
8007
|
-
<a href="#
|
|
8190
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8008
8191
|
<span class="md-ellipsis">
|
|
8009
8192
|
Housekeeping
|
|
8010
8193
|
</span>
|
|
@@ -8028,7 +8211,7 @@
|
|
|
8028
8211
|
<ul class="md-nav__list">
|
|
8029
8212
|
|
|
8030
8213
|
<li class="md-nav__item">
|
|
8031
|
-
<a href="#
|
|
8214
|
+
<a href="#changed_7" class="md-nav__link">
|
|
8032
8215
|
<span class="md-ellipsis">
|
|
8033
8216
|
Changed
|
|
8034
8217
|
</span>
|
|
@@ -8037,7 +8220,7 @@
|
|
|
8037
8220
|
</li>
|
|
8038
8221
|
|
|
8039
8222
|
<li class="md-nav__item">
|
|
8040
|
-
<a href="#
|
|
8223
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
8041
8224
|
<span class="md-ellipsis">
|
|
8042
8225
|
Fixed
|
|
8043
8226
|
</span>
|
|
@@ -8046,7 +8229,7 @@
|
|
|
8046
8229
|
</li>
|
|
8047
8230
|
|
|
8048
8231
|
<li class="md-nav__item">
|
|
8049
|
-
<a href="#
|
|
8232
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8050
8233
|
<span class="md-ellipsis">
|
|
8051
8234
|
Documentation
|
|
8052
8235
|
</span>
|
|
@@ -8055,7 +8238,7 @@
|
|
|
8055
8238
|
</li>
|
|
8056
8239
|
|
|
8057
8240
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="#
|
|
8241
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
8059
8242
|
<span class="md-ellipsis">
|
|
8060
8243
|
Housekeeping
|
|
8061
8244
|
</span>
|
|
@@ -8079,7 +8262,7 @@
|
|
|
8079
8262
|
<ul class="md-nav__list">
|
|
8080
8263
|
|
|
8081
8264
|
<li class="md-nav__item">
|
|
8082
|
-
<a href="#
|
|
8265
|
+
<a href="#added_14" class="md-nav__link">
|
|
8083
8266
|
<span class="md-ellipsis">
|
|
8084
8267
|
Added
|
|
8085
8268
|
</span>
|
|
@@ -8088,7 +8271,7 @@
|
|
|
8088
8271
|
</li>
|
|
8089
8272
|
|
|
8090
8273
|
<li class="md-nav__item">
|
|
8091
|
-
<a href="#
|
|
8274
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
8092
8275
|
<span class="md-ellipsis">
|
|
8093
8276
|
Fixed
|
|
8094
8277
|
</span>
|
|
@@ -8097,7 +8280,7 @@
|
|
|
8097
8280
|
</li>
|
|
8098
8281
|
|
|
8099
8282
|
<li class="md-nav__item">
|
|
8100
|
-
<a href="#
|
|
8283
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
8101
8284
|
<span class="md-ellipsis">
|
|
8102
8285
|
Dependencies
|
|
8103
8286
|
</span>
|
|
@@ -8106,7 +8289,7 @@
|
|
|
8106
8289
|
</li>
|
|
8107
8290
|
|
|
8108
8291
|
<li class="md-nav__item">
|
|
8109
|
-
<a href="#
|
|
8292
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
8110
8293
|
<span class="md-ellipsis">
|
|
8111
8294
|
Documentation
|
|
8112
8295
|
</span>
|
|
@@ -8130,7 +8313,7 @@
|
|
|
8130
8313
|
<ul class="md-nav__list">
|
|
8131
8314
|
|
|
8132
8315
|
<li class="md-nav__item">
|
|
8133
|
-
<a href="#
|
|
8316
|
+
<a href="#added_15" class="md-nav__link">
|
|
8134
8317
|
<span class="md-ellipsis">
|
|
8135
8318
|
Added
|
|
8136
8319
|
</span>
|
|
@@ -8139,7 +8322,7 @@
|
|
|
8139
8322
|
</li>
|
|
8140
8323
|
|
|
8141
8324
|
<li class="md-nav__item">
|
|
8142
|
-
<a href="#
|
|
8325
|
+
<a href="#changed_8" class="md-nav__link">
|
|
8143
8326
|
<span class="md-ellipsis">
|
|
8144
8327
|
Changed
|
|
8145
8328
|
</span>
|
|
@@ -8157,7 +8340,7 @@
|
|
|
8157
8340
|
</li>
|
|
8158
8341
|
|
|
8159
8342
|
<li class="md-nav__item">
|
|
8160
|
-
<a href="#
|
|
8343
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
8161
8344
|
<span class="md-ellipsis">
|
|
8162
8345
|
Fixed
|
|
8163
8346
|
</span>
|
|
@@ -8166,7 +8349,7 @@
|
|
|
8166
8349
|
</li>
|
|
8167
8350
|
|
|
8168
8351
|
<li class="md-nav__item">
|
|
8169
|
-
<a href="#
|
|
8352
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
8170
8353
|
<span class="md-ellipsis">
|
|
8171
8354
|
Dependencies
|
|
8172
8355
|
</span>
|
|
@@ -8175,7 +8358,7 @@
|
|
|
8175
8358
|
</li>
|
|
8176
8359
|
|
|
8177
8360
|
<li class="md-nav__item">
|
|
8178
|
-
<a href="#
|
|
8361
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
8179
8362
|
<span class="md-ellipsis">
|
|
8180
8363
|
Documentation
|
|
8181
8364
|
</span>
|
|
@@ -8339,16 +8522,14 @@
|
|
|
8339
8522
|
|
|
8340
8523
|
|
|
8341
8524
|
|
|
8342
|
-
|
|
8343
|
-
|
|
8344
8525
|
|
|
8345
8526
|
|
|
8346
8527
|
|
|
8347
|
-
|
|
8528
|
+
|
|
8529
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
8348
8530
|
|
|
8349
8531
|
|
|
8350
8532
|
|
|
8351
|
-
|
|
8352
8533
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
8353
8534
|
|
|
8354
8535
|
|
|
@@ -8365,7 +8546,7 @@
|
|
|
8365
8546
|
</a>
|
|
8366
8547
|
|
|
8367
8548
|
|
|
8368
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
8549
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
8369
8550
|
<span class="md-nav__icon md-icon"></span>
|
|
8370
8551
|
</label>
|
|
8371
8552
|
|
|
@@ -8387,13 +8568,14 @@
|
|
|
8387
8568
|
|
|
8388
8569
|
|
|
8389
8570
|
|
|
8571
|
+
|
|
8572
|
+
|
|
8390
8573
|
|
|
8391
8574
|
|
|
8392
8575
|
<li class="md-nav__item md-nav__item--nested">
|
|
8393
8576
|
|
|
8394
8577
|
|
|
8395
8578
|
|
|
8396
|
-
|
|
8397
8579
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
8398
8580
|
|
|
8399
8581
|
|
|
@@ -8837,37 +9019,28 @@
|
|
|
8837
9019
|
</li>
|
|
8838
9020
|
|
|
8839
9021
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
9022
|
+
<a href="#v1618-2024-04-15" class="md-nav__link">
|
|
8841
9023
|
<span class="md-ellipsis">
|
|
8842
|
-
v1.6.
|
|
9024
|
+
v1.6.18 (2024-04-15)
|
|
8843
9025
|
</span>
|
|
8844
9026
|
</a>
|
|
8845
9027
|
|
|
8846
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
9028
|
+
<nav class="md-nav" aria-label="v1.6.18 (2024-04-15)">
|
|
8847
9029
|
<ul class="md-nav__list">
|
|
8848
9030
|
|
|
8849
9031
|
<li class="md-nav__item">
|
|
8850
|
-
<a href="#
|
|
8851
|
-
<span class="md-ellipsis">
|
|
8852
|
-
Added
|
|
8853
|
-
</span>
|
|
8854
|
-
</a>
|
|
8855
|
-
|
|
8856
|
-
</li>
|
|
8857
|
-
|
|
8858
|
-
<li class="md-nav__item">
|
|
8859
|
-
<a href="#fixed" class="md-nav__link">
|
|
9032
|
+
<a href="#security" class="md-nav__link">
|
|
8860
9033
|
<span class="md-ellipsis">
|
|
8861
|
-
|
|
9034
|
+
Security
|
|
8862
9035
|
</span>
|
|
8863
9036
|
</a>
|
|
8864
9037
|
|
|
8865
9038
|
</li>
|
|
8866
9039
|
|
|
8867
9040
|
<li class="md-nav__item">
|
|
8868
|
-
<a href="#
|
|
9041
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8869
9042
|
<span class="md-ellipsis">
|
|
8870
|
-
|
|
9043
|
+
Dependencies
|
|
8871
9044
|
</span>
|
|
8872
9045
|
</a>
|
|
8873
9046
|
|
|
@@ -8879,19 +9052,19 @@
|
|
|
8879
9052
|
</li>
|
|
8880
9053
|
|
|
8881
9054
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
9055
|
+
<a href="#v1617-2024-04-01" class="md-nav__link">
|
|
8883
9056
|
<span class="md-ellipsis">
|
|
8884
|
-
v1.6.
|
|
9057
|
+
v1.6.17 (2024-04-01)
|
|
8885
9058
|
</span>
|
|
8886
9059
|
</a>
|
|
8887
9060
|
|
|
8888
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
9061
|
+
<nav class="md-nav" aria-label="v1.6.17 (2024-04-01)">
|
|
8889
9062
|
<ul class="md-nav__list">
|
|
8890
9063
|
|
|
8891
9064
|
<li class="md-nav__item">
|
|
8892
|
-
<a href="#
|
|
9065
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8893
9066
|
<span class="md-ellipsis">
|
|
8894
|
-
|
|
9067
|
+
Dependencies
|
|
8895
9068
|
</span>
|
|
8896
9069
|
</a>
|
|
8897
9070
|
|
|
@@ -8903,26 +9076,26 @@
|
|
|
8903
9076
|
</li>
|
|
8904
9077
|
|
|
8905
9078
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#
|
|
9079
|
+
<a href="#v1616-2024-03-25" class="md-nav__link">
|
|
8907
9080
|
<span class="md-ellipsis">
|
|
8908
|
-
v1.6.
|
|
9081
|
+
v1.6.16 (2024-03-25)
|
|
8909
9082
|
</span>
|
|
8910
9083
|
</a>
|
|
8911
9084
|
|
|
8912
|
-
<nav class="md-nav" aria-label="v1.6.
|
|
9085
|
+
<nav class="md-nav" aria-label="v1.6.16 (2024-03-25)">
|
|
8913
9086
|
<ul class="md-nav__list">
|
|
8914
9087
|
|
|
8915
9088
|
<li class="md-nav__item">
|
|
8916
|
-
<a href="#
|
|
9089
|
+
<a href="#security_1" class="md-nav__link">
|
|
8917
9090
|
<span class="md-ellipsis">
|
|
8918
|
-
|
|
9091
|
+
Security
|
|
8919
9092
|
</span>
|
|
8920
9093
|
</a>
|
|
8921
9094
|
|
|
8922
9095
|
</li>
|
|
8923
9096
|
|
|
8924
9097
|
<li class="md-nav__item">
|
|
8925
|
-
<a href="#
|
|
9098
|
+
<a href="#added_1" class="md-nav__link">
|
|
8926
9099
|
<span class="md-ellipsis">
|
|
8927
9100
|
Added
|
|
8928
9101
|
</span>
|
|
@@ -8931,7 +9104,16 @@
|
|
|
8931
9104
|
</li>
|
|
8932
9105
|
|
|
8933
9106
|
<li class="md-nav__item">
|
|
8934
|
-
<a href="#
|
|
9107
|
+
<a href="#changed_1" class="md-nav__link">
|
|
9108
|
+
<span class="md-ellipsis">
|
|
9109
|
+
Changed
|
|
9110
|
+
</span>
|
|
9111
|
+
</a>
|
|
9112
|
+
|
|
9113
|
+
</li>
|
|
9114
|
+
|
|
9115
|
+
<li class="md-nav__item">
|
|
9116
|
+
<a href="#fixed" class="md-nav__link">
|
|
8935
9117
|
<span class="md-ellipsis">
|
|
8936
9118
|
Fixed
|
|
8937
9119
|
</span>
|
|
@@ -8946,6 +9128,15 @@
|
|
|
8946
9128
|
</span>
|
|
8947
9129
|
</a>
|
|
8948
9130
|
|
|
9131
|
+
</li>
|
|
9132
|
+
|
|
9133
|
+
<li class="md-nav__item">
|
|
9134
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
9135
|
+
<span class="md-ellipsis">
|
|
9136
|
+
Housekeeping
|
|
9137
|
+
</span>
|
|
9138
|
+
</a>
|
|
9139
|
+
|
|
8949
9140
|
</li>
|
|
8950
9141
|
|
|
8951
9142
|
</ul>
|
|
@@ -8954,7 +9145,124 @@
|
|
|
8954
9145
|
</li>
|
|
8955
9146
|
|
|
8956
9147
|
<li class="md-nav__item">
|
|
8957
|
-
<a href="#
|
|
9148
|
+
<a href="#v1615-2024-03-18" class="md-nav__link">
|
|
9149
|
+
<span class="md-ellipsis">
|
|
9150
|
+
v1.6.15 (2024-03-18)
|
|
9151
|
+
</span>
|
|
9152
|
+
</a>
|
|
9153
|
+
|
|
9154
|
+
<nav class="md-nav" aria-label="v1.6.15 (2024-03-18)">
|
|
9155
|
+
<ul class="md-nav__list">
|
|
9156
|
+
|
|
9157
|
+
<li class="md-nav__item">
|
|
9158
|
+
<a href="#added_2" class="md-nav__link">
|
|
9159
|
+
<span class="md-ellipsis">
|
|
9160
|
+
Added
|
|
9161
|
+
</span>
|
|
9162
|
+
</a>
|
|
9163
|
+
|
|
9164
|
+
</li>
|
|
9165
|
+
|
|
9166
|
+
<li class="md-nav__item">
|
|
9167
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9168
|
+
<span class="md-ellipsis">
|
|
9169
|
+
Fixed
|
|
9170
|
+
</span>
|
|
9171
|
+
</a>
|
|
9172
|
+
|
|
9173
|
+
</li>
|
|
9174
|
+
|
|
9175
|
+
<li class="md-nav__item">
|
|
9176
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9177
|
+
<span class="md-ellipsis">
|
|
9178
|
+
Housekeeping
|
|
9179
|
+
</span>
|
|
9180
|
+
</a>
|
|
9181
|
+
|
|
9182
|
+
</li>
|
|
9183
|
+
|
|
9184
|
+
</ul>
|
|
9185
|
+
</nav>
|
|
9186
|
+
|
|
9187
|
+
</li>
|
|
9188
|
+
|
|
9189
|
+
<li class="md-nav__item">
|
|
9190
|
+
<a href="#v1614-2024-03-05" class="md-nav__link">
|
|
9191
|
+
<span class="md-ellipsis">
|
|
9192
|
+
v1.6.14 (2024-03-05)
|
|
9193
|
+
</span>
|
|
9194
|
+
</a>
|
|
9195
|
+
|
|
9196
|
+
<nav class="md-nav" aria-label="v1.6.14 (2024-03-05)">
|
|
9197
|
+
<ul class="md-nav__list">
|
|
9198
|
+
|
|
9199
|
+
<li class="md-nav__item">
|
|
9200
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9201
|
+
<span class="md-ellipsis">
|
|
9202
|
+
Fixed
|
|
9203
|
+
</span>
|
|
9204
|
+
</a>
|
|
9205
|
+
|
|
9206
|
+
</li>
|
|
9207
|
+
|
|
9208
|
+
</ul>
|
|
9209
|
+
</nav>
|
|
9210
|
+
|
|
9211
|
+
</li>
|
|
9212
|
+
|
|
9213
|
+
<li class="md-nav__item">
|
|
9214
|
+
<a href="#v1613-2024-03-04" class="md-nav__link">
|
|
9215
|
+
<span class="md-ellipsis">
|
|
9216
|
+
v1.6.13 (2024-03-04)
|
|
9217
|
+
</span>
|
|
9218
|
+
</a>
|
|
9219
|
+
|
|
9220
|
+
<nav class="md-nav" aria-label="v1.6.13 (2024-03-04)">
|
|
9221
|
+
<ul class="md-nav__list">
|
|
9222
|
+
|
|
9223
|
+
<li class="md-nav__item">
|
|
9224
|
+
<a href="#added_3" class="md-nav__link">
|
|
9225
|
+
<span class="md-ellipsis">
|
|
9226
|
+
Added
|
|
9227
|
+
</span>
|
|
9228
|
+
</a>
|
|
9229
|
+
|
|
9230
|
+
</li>
|
|
9231
|
+
|
|
9232
|
+
<li class="md-nav__item">
|
|
9233
|
+
<a href="#added_4" class="md-nav__link">
|
|
9234
|
+
<span class="md-ellipsis">
|
|
9235
|
+
Added
|
|
9236
|
+
</span>
|
|
9237
|
+
</a>
|
|
9238
|
+
|
|
9239
|
+
</li>
|
|
9240
|
+
|
|
9241
|
+
<li class="md-nav__item">
|
|
9242
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9243
|
+
<span class="md-ellipsis">
|
|
9244
|
+
Fixed
|
|
9245
|
+
</span>
|
|
9246
|
+
</a>
|
|
9247
|
+
|
|
9248
|
+
</li>
|
|
9249
|
+
|
|
9250
|
+
<li class="md-nav__item">
|
|
9251
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9252
|
+
<span class="md-ellipsis">
|
|
9253
|
+
Documentation
|
|
9254
|
+
</span>
|
|
9255
|
+
</a>
|
|
9256
|
+
|
|
9257
|
+
</li>
|
|
9258
|
+
|
|
9259
|
+
</ul>
|
|
9260
|
+
</nav>
|
|
9261
|
+
|
|
9262
|
+
</li>
|
|
9263
|
+
|
|
9264
|
+
<li class="md-nav__item">
|
|
9265
|
+
<a href="#v1612-2024-02-20" class="md-nav__link">
|
|
8958
9266
|
<span class="md-ellipsis">
|
|
8959
9267
|
v1.6.12 (2024-02-20)
|
|
8960
9268
|
</span>
|
|
@@ -8964,7 +9272,7 @@
|
|
|
8964
9272
|
<ul class="md-nav__list">
|
|
8965
9273
|
|
|
8966
9274
|
<li class="md-nav__item">
|
|
8967
|
-
<a href="#
|
|
9275
|
+
<a href="#added_5" class="md-nav__link">
|
|
8968
9276
|
<span class="md-ellipsis">
|
|
8969
9277
|
Added
|
|
8970
9278
|
</span>
|
|
@@ -8973,7 +9281,7 @@
|
|
|
8973
9281
|
</li>
|
|
8974
9282
|
|
|
8975
9283
|
<li class="md-nav__item">
|
|
8976
|
-
<a href="#
|
|
9284
|
+
<a href="#security_2" class="md-nav__link">
|
|
8977
9285
|
<span class="md-ellipsis">
|
|
8978
9286
|
Security
|
|
8979
9287
|
</span>
|
|
@@ -8982,7 +9290,7 @@
|
|
|
8982
9290
|
</li>
|
|
8983
9291
|
|
|
8984
9292
|
<li class="md-nav__item">
|
|
8985
|
-
<a href="#
|
|
9293
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8986
9294
|
<span class="md-ellipsis">
|
|
8987
9295
|
Changed
|
|
8988
9296
|
</span>
|
|
@@ -8991,7 +9299,7 @@
|
|
|
8991
9299
|
</li>
|
|
8992
9300
|
|
|
8993
9301
|
<li class="md-nav__item">
|
|
8994
|
-
<a href="#
|
|
9302
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8995
9303
|
<span class="md-ellipsis">
|
|
8996
9304
|
Fixed
|
|
8997
9305
|
</span>
|
|
@@ -9015,7 +9323,7 @@
|
|
|
9015
9323
|
<ul class="md-nav__list">
|
|
9016
9324
|
|
|
9017
9325
|
<li class="md-nav__item">
|
|
9018
|
-
<a href="#
|
|
9326
|
+
<a href="#security_3" class="md-nav__link">
|
|
9019
9327
|
<span class="md-ellipsis">
|
|
9020
9328
|
Security
|
|
9021
9329
|
</span>
|
|
@@ -9024,7 +9332,7 @@
|
|
|
9024
9332
|
</li>
|
|
9025
9333
|
|
|
9026
9334
|
<li class="md-nav__item">
|
|
9027
|
-
<a href="#
|
|
9335
|
+
<a href="#added_6" class="md-nav__link">
|
|
9028
9336
|
<span class="md-ellipsis">
|
|
9029
9337
|
Added
|
|
9030
9338
|
</span>
|
|
@@ -9033,7 +9341,7 @@
|
|
|
9033
9341
|
</li>
|
|
9034
9342
|
|
|
9035
9343
|
<li class="md-nav__item">
|
|
9036
|
-
<a href="#
|
|
9344
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9037
9345
|
<span class="md-ellipsis">
|
|
9038
9346
|
Fixed
|
|
9039
9347
|
</span>
|
|
@@ -9057,7 +9365,7 @@
|
|
|
9057
9365
|
<ul class="md-nav__list">
|
|
9058
9366
|
|
|
9059
9367
|
<li class="md-nav__item">
|
|
9060
|
-
<a href="#
|
|
9368
|
+
<a href="#security_4" class="md-nav__link">
|
|
9061
9369
|
<span class="md-ellipsis">
|
|
9062
9370
|
Security
|
|
9063
9371
|
</span>
|
|
@@ -9066,7 +9374,7 @@
|
|
|
9066
9374
|
</li>
|
|
9067
9375
|
|
|
9068
9376
|
<li class="md-nav__item">
|
|
9069
|
-
<a href="#
|
|
9377
|
+
<a href="#added_7" class="md-nav__link">
|
|
9070
9378
|
<span class="md-ellipsis">
|
|
9071
9379
|
Added
|
|
9072
9380
|
</span>
|
|
@@ -9075,7 +9383,7 @@
|
|
|
9075
9383
|
</li>
|
|
9076
9384
|
|
|
9077
9385
|
<li class="md-nav__item">
|
|
9078
|
-
<a href="#
|
|
9386
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9079
9387
|
<span class="md-ellipsis">
|
|
9080
9388
|
Changed
|
|
9081
9389
|
</span>
|
|
@@ -9084,7 +9392,7 @@
|
|
|
9084
9392
|
</li>
|
|
9085
9393
|
|
|
9086
9394
|
<li class="md-nav__item">
|
|
9087
|
-
<a href="#
|
|
9395
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9088
9396
|
<span class="md-ellipsis">
|
|
9089
9397
|
Dependencies
|
|
9090
9398
|
</span>
|
|
@@ -9108,7 +9416,7 @@
|
|
|
9108
9416
|
<ul class="md-nav__list">
|
|
9109
9417
|
|
|
9110
9418
|
<li class="md-nav__item">
|
|
9111
|
-
<a href="#
|
|
9419
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9112
9420
|
<span class="md-ellipsis">
|
|
9113
9421
|
Fixed
|
|
9114
9422
|
</span>
|
|
@@ -9132,7 +9440,7 @@
|
|
|
9132
9440
|
<ul class="md-nav__list">
|
|
9133
9441
|
|
|
9134
9442
|
<li class="md-nav__item">
|
|
9135
|
-
<a href="#
|
|
9443
|
+
<a href="#security_5" class="md-nav__link">
|
|
9136
9444
|
<span class="md-ellipsis">
|
|
9137
9445
|
Security
|
|
9138
9446
|
</span>
|
|
@@ -9141,7 +9449,7 @@
|
|
|
9141
9449
|
</li>
|
|
9142
9450
|
|
|
9143
9451
|
<li class="md-nav__item">
|
|
9144
|
-
<a href="#
|
|
9452
|
+
<a href="#added_8" class="md-nav__link">
|
|
9145
9453
|
<span class="md-ellipsis">
|
|
9146
9454
|
Added
|
|
9147
9455
|
</span>
|
|
@@ -9159,7 +9467,7 @@
|
|
|
9159
9467
|
</li>
|
|
9160
9468
|
|
|
9161
9469
|
<li class="md-nav__item">
|
|
9162
|
-
<a href="#
|
|
9470
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9163
9471
|
<span class="md-ellipsis">
|
|
9164
9472
|
Fixed
|
|
9165
9473
|
</span>
|
|
@@ -9168,7 +9476,7 @@
|
|
|
9168
9476
|
</li>
|
|
9169
9477
|
|
|
9170
9478
|
<li class="md-nav__item">
|
|
9171
|
-
<a href="#
|
|
9479
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9172
9480
|
<span class="md-ellipsis">
|
|
9173
9481
|
Housekeeping
|
|
9174
9482
|
</span>
|
|
@@ -9192,7 +9500,7 @@
|
|
|
9192
9500
|
<ul class="md-nav__list">
|
|
9193
9501
|
|
|
9194
9502
|
<li class="md-nav__item">
|
|
9195
|
-
<a href="#
|
|
9503
|
+
<a href="#security_6" class="md-nav__link">
|
|
9196
9504
|
<span class="md-ellipsis">
|
|
9197
9505
|
Security
|
|
9198
9506
|
</span>
|
|
@@ -9201,7 +9509,7 @@
|
|
|
9201
9509
|
</li>
|
|
9202
9510
|
|
|
9203
9511
|
<li class="md-nav__item">
|
|
9204
|
-
<a href="#
|
|
9512
|
+
<a href="#added_9" class="md-nav__link">
|
|
9205
9513
|
<span class="md-ellipsis">
|
|
9206
9514
|
Added
|
|
9207
9515
|
</span>
|
|
@@ -9219,7 +9527,7 @@
|
|
|
9219
9527
|
</li>
|
|
9220
9528
|
|
|
9221
9529
|
<li class="md-nav__item">
|
|
9222
|
-
<a href="#
|
|
9530
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9223
9531
|
<span class="md-ellipsis">
|
|
9224
9532
|
Fixed
|
|
9225
9533
|
</span>
|
|
@@ -9243,7 +9551,7 @@
|
|
|
9243
9551
|
<ul class="md-nav__list">
|
|
9244
9552
|
|
|
9245
9553
|
<li class="md-nav__item">
|
|
9246
|
-
<a href="#
|
|
9554
|
+
<a href="#security_7" class="md-nav__link">
|
|
9247
9555
|
<span class="md-ellipsis">
|
|
9248
9556
|
Security
|
|
9249
9557
|
</span>
|
|
@@ -9252,7 +9560,7 @@
|
|
|
9252
9560
|
</li>
|
|
9253
9561
|
|
|
9254
9562
|
<li class="md-nav__item">
|
|
9255
|
-
<a href="#
|
|
9563
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9256
9564
|
<span class="md-ellipsis">
|
|
9257
9565
|
Changed
|
|
9258
9566
|
</span>
|
|
@@ -9261,7 +9569,7 @@
|
|
|
9261
9569
|
</li>
|
|
9262
9570
|
|
|
9263
9571
|
<li class="md-nav__item">
|
|
9264
|
-
<a href="#
|
|
9572
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9265
9573
|
<span class="md-ellipsis">
|
|
9266
9574
|
Fixed
|
|
9267
9575
|
</span>
|
|
@@ -9270,7 +9578,7 @@
|
|
|
9270
9578
|
</li>
|
|
9271
9579
|
|
|
9272
9580
|
<li class="md-nav__item">
|
|
9273
|
-
<a href="#
|
|
9581
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9274
9582
|
<span class="md-ellipsis">
|
|
9275
9583
|
Dependencies
|
|
9276
9584
|
</span>
|
|
@@ -9279,7 +9587,7 @@
|
|
|
9279
9587
|
</li>
|
|
9280
9588
|
|
|
9281
9589
|
<li class="md-nav__item">
|
|
9282
|
-
<a href="#
|
|
9590
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9283
9591
|
<span class="md-ellipsis">
|
|
9284
9592
|
Housekeeping
|
|
9285
9593
|
</span>
|
|
@@ -9303,7 +9611,7 @@
|
|
|
9303
9611
|
<ul class="md-nav__list">
|
|
9304
9612
|
|
|
9305
9613
|
<li class="md-nav__item">
|
|
9306
|
-
<a href="#
|
|
9614
|
+
<a href="#security_8" class="md-nav__link">
|
|
9307
9615
|
<span class="md-ellipsis">
|
|
9308
9616
|
Security
|
|
9309
9617
|
</span>
|
|
@@ -9312,7 +9620,7 @@
|
|
|
9312
9620
|
</li>
|
|
9313
9621
|
|
|
9314
9622
|
<li class="md-nav__item">
|
|
9315
|
-
<a href="#
|
|
9623
|
+
<a href="#added_10" class="md-nav__link">
|
|
9316
9624
|
<span class="md-ellipsis">
|
|
9317
9625
|
Added
|
|
9318
9626
|
</span>
|
|
@@ -9321,7 +9629,7 @@
|
|
|
9321
9629
|
</li>
|
|
9322
9630
|
|
|
9323
9631
|
<li class="md-nav__item">
|
|
9324
|
-
<a href="#
|
|
9632
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9325
9633
|
<span class="md-ellipsis">
|
|
9326
9634
|
Fixed
|
|
9327
9635
|
</span>
|
|
@@ -9330,7 +9638,7 @@
|
|
|
9330
9638
|
</li>
|
|
9331
9639
|
|
|
9332
9640
|
<li class="md-nav__item">
|
|
9333
|
-
<a href="#
|
|
9641
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9334
9642
|
<span class="md-ellipsis">
|
|
9335
9643
|
Documentation
|
|
9336
9644
|
</span>
|
|
@@ -9339,7 +9647,7 @@
|
|
|
9339
9647
|
</li>
|
|
9340
9648
|
|
|
9341
9649
|
<li class="md-nav__item">
|
|
9342
|
-
<a href="#
|
|
9650
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9343
9651
|
<span class="md-ellipsis">
|
|
9344
9652
|
Housekeeping
|
|
9345
9653
|
</span>
|
|
@@ -9363,7 +9671,7 @@
|
|
|
9363
9671
|
<ul class="md-nav__list">
|
|
9364
9672
|
|
|
9365
9673
|
<li class="md-nav__item">
|
|
9366
|
-
<a href="#
|
|
9674
|
+
<a href="#added_11" class="md-nav__link">
|
|
9367
9675
|
<span class="md-ellipsis">
|
|
9368
9676
|
Added
|
|
9369
9677
|
</span>
|
|
@@ -9372,7 +9680,7 @@
|
|
|
9372
9680
|
</li>
|
|
9373
9681
|
|
|
9374
9682
|
<li class="md-nav__item">
|
|
9375
|
-
<a href="#
|
|
9683
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9376
9684
|
<span class="md-ellipsis">
|
|
9377
9685
|
Changed
|
|
9378
9686
|
</span>
|
|
@@ -9390,7 +9698,7 @@
|
|
|
9390
9698
|
</li>
|
|
9391
9699
|
|
|
9392
9700
|
<li class="md-nav__item">
|
|
9393
|
-
<a href="#
|
|
9701
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9394
9702
|
<span class="md-ellipsis">
|
|
9395
9703
|
Housekeeping
|
|
9396
9704
|
</span>
|
|
@@ -9414,7 +9722,7 @@
|
|
|
9414
9722
|
<ul class="md-nav__list">
|
|
9415
9723
|
|
|
9416
9724
|
<li class="md-nav__item">
|
|
9417
|
-
<a href="#
|
|
9725
|
+
<a href="#security_9" class="md-nav__link">
|
|
9418
9726
|
<span class="md-ellipsis">
|
|
9419
9727
|
Security
|
|
9420
9728
|
</span>
|
|
@@ -9423,7 +9731,7 @@
|
|
|
9423
9731
|
</li>
|
|
9424
9732
|
|
|
9425
9733
|
<li class="md-nav__item">
|
|
9426
|
-
<a href="#
|
|
9734
|
+
<a href="#added_12" class="md-nav__link">
|
|
9427
9735
|
<span class="md-ellipsis">
|
|
9428
9736
|
Added
|
|
9429
9737
|
</span>
|
|
@@ -9432,7 +9740,7 @@
|
|
|
9432
9740
|
</li>
|
|
9433
9741
|
|
|
9434
9742
|
<li class="md-nav__item">
|
|
9435
|
-
<a href="#
|
|
9743
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
9436
9744
|
<span class="md-ellipsis">
|
|
9437
9745
|
Fixed
|
|
9438
9746
|
</span>
|
|
@@ -9441,7 +9749,7 @@
|
|
|
9441
9749
|
</li>
|
|
9442
9750
|
|
|
9443
9751
|
<li class="md-nav__item">
|
|
9444
|
-
<a href="#
|
|
9752
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9445
9753
|
<span class="md-ellipsis">
|
|
9446
9754
|
Housekeeping
|
|
9447
9755
|
</span>
|
|
@@ -9465,7 +9773,7 @@
|
|
|
9465
9773
|
<ul class="md-nav__list">
|
|
9466
9774
|
|
|
9467
9775
|
<li class="md-nav__item">
|
|
9468
|
-
<a href="#
|
|
9776
|
+
<a href="#added_13" class="md-nav__link">
|
|
9469
9777
|
<span class="md-ellipsis">
|
|
9470
9778
|
Added
|
|
9471
9779
|
</span>
|
|
@@ -9474,7 +9782,7 @@
|
|
|
9474
9782
|
</li>
|
|
9475
9783
|
|
|
9476
9784
|
<li class="md-nav__item">
|
|
9477
|
-
<a href="#
|
|
9785
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9478
9786
|
<span class="md-ellipsis">
|
|
9479
9787
|
Changed
|
|
9480
9788
|
</span>
|
|
@@ -9483,7 +9791,7 @@
|
|
|
9483
9791
|
</li>
|
|
9484
9792
|
|
|
9485
9793
|
<li class="md-nav__item">
|
|
9486
|
-
<a href="#
|
|
9794
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
9487
9795
|
<span class="md-ellipsis">
|
|
9488
9796
|
Fixed
|
|
9489
9797
|
</span>
|
|
@@ -9492,7 +9800,7 @@
|
|
|
9492
9800
|
</li>
|
|
9493
9801
|
|
|
9494
9802
|
<li class="md-nav__item">
|
|
9495
|
-
<a href="#
|
|
9803
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9496
9804
|
<span class="md-ellipsis">
|
|
9497
9805
|
Documentation
|
|
9498
9806
|
</span>
|
|
@@ -9501,7 +9809,7 @@
|
|
|
9501
9809
|
</li>
|
|
9502
9810
|
|
|
9503
9811
|
<li class="md-nav__item">
|
|
9504
|
-
<a href="#
|
|
9812
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9505
9813
|
<span class="md-ellipsis">
|
|
9506
9814
|
Housekeeping
|
|
9507
9815
|
</span>
|
|
@@ -9525,7 +9833,7 @@
|
|
|
9525
9833
|
<ul class="md-nav__list">
|
|
9526
9834
|
|
|
9527
9835
|
<li class="md-nav__item">
|
|
9528
|
-
<a href="#
|
|
9836
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9529
9837
|
<span class="md-ellipsis">
|
|
9530
9838
|
Changed
|
|
9531
9839
|
</span>
|
|
@@ -9534,7 +9842,7 @@
|
|
|
9534
9842
|
</li>
|
|
9535
9843
|
|
|
9536
9844
|
<li class="md-nav__item">
|
|
9537
|
-
<a href="#
|
|
9845
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
9538
9846
|
<span class="md-ellipsis">
|
|
9539
9847
|
Fixed
|
|
9540
9848
|
</span>
|
|
@@ -9543,7 +9851,7 @@
|
|
|
9543
9851
|
</li>
|
|
9544
9852
|
|
|
9545
9853
|
<li class="md-nav__item">
|
|
9546
|
-
<a href="#
|
|
9854
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9547
9855
|
<span class="md-ellipsis">
|
|
9548
9856
|
Documentation
|
|
9549
9857
|
</span>
|
|
@@ -9552,7 +9860,7 @@
|
|
|
9552
9860
|
</li>
|
|
9553
9861
|
|
|
9554
9862
|
<li class="md-nav__item">
|
|
9555
|
-
<a href="#
|
|
9863
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9556
9864
|
<span class="md-ellipsis">
|
|
9557
9865
|
Housekeeping
|
|
9558
9866
|
</span>
|
|
@@ -9576,7 +9884,7 @@
|
|
|
9576
9884
|
<ul class="md-nav__list">
|
|
9577
9885
|
|
|
9578
9886
|
<li class="md-nav__item">
|
|
9579
|
-
<a href="#
|
|
9887
|
+
<a href="#added_14" class="md-nav__link">
|
|
9580
9888
|
<span class="md-ellipsis">
|
|
9581
9889
|
Added
|
|
9582
9890
|
</span>
|
|
@@ -9585,7 +9893,7 @@
|
|
|
9585
9893
|
</li>
|
|
9586
9894
|
|
|
9587
9895
|
<li class="md-nav__item">
|
|
9588
|
-
<a href="#
|
|
9896
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
9589
9897
|
<span class="md-ellipsis">
|
|
9590
9898
|
Fixed
|
|
9591
9899
|
</span>
|
|
@@ -9594,7 +9902,7 @@
|
|
|
9594
9902
|
</li>
|
|
9595
9903
|
|
|
9596
9904
|
<li class="md-nav__item">
|
|
9597
|
-
<a href="#
|
|
9905
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9598
9906
|
<span class="md-ellipsis">
|
|
9599
9907
|
Dependencies
|
|
9600
9908
|
</span>
|
|
@@ -9603,7 +9911,7 @@
|
|
|
9603
9911
|
</li>
|
|
9604
9912
|
|
|
9605
9913
|
<li class="md-nav__item">
|
|
9606
|
-
<a href="#
|
|
9914
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9607
9915
|
<span class="md-ellipsis">
|
|
9608
9916
|
Documentation
|
|
9609
9917
|
</span>
|
|
@@ -9627,7 +9935,7 @@
|
|
|
9627
9935
|
<ul class="md-nav__list">
|
|
9628
9936
|
|
|
9629
9937
|
<li class="md-nav__item">
|
|
9630
|
-
<a href="#
|
|
9938
|
+
<a href="#added_15" class="md-nav__link">
|
|
9631
9939
|
<span class="md-ellipsis">
|
|
9632
9940
|
Added
|
|
9633
9941
|
</span>
|
|
@@ -9636,7 +9944,7 @@
|
|
|
9636
9944
|
</li>
|
|
9637
9945
|
|
|
9638
9946
|
<li class="md-nav__item">
|
|
9639
|
-
<a href="#
|
|
9947
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9640
9948
|
<span class="md-ellipsis">
|
|
9641
9949
|
Changed
|
|
9642
9950
|
</span>
|
|
@@ -9654,7 +9962,7 @@
|
|
|
9654
9962
|
</li>
|
|
9655
9963
|
|
|
9656
9964
|
<li class="md-nav__item">
|
|
9657
|
-
<a href="#
|
|
9965
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
9658
9966
|
<span class="md-ellipsis">
|
|
9659
9967
|
Fixed
|
|
9660
9968
|
</span>
|
|
@@ -9663,7 +9971,7 @@
|
|
|
9663
9971
|
</li>
|
|
9664
9972
|
|
|
9665
9973
|
<li class="md-nav__item">
|
|
9666
|
-
<a href="#
|
|
9974
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
9667
9975
|
<span class="md-ellipsis">
|
|
9668
9976
|
Dependencies
|
|
9669
9977
|
</span>
|
|
@@ -9672,7 +9980,7 @@
|
|
|
9672
9980
|
</li>
|
|
9673
9981
|
|
|
9674
9982
|
<li class="md-nav__item">
|
|
9675
|
-
<a href="#
|
|
9983
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9676
9984
|
<span class="md-ellipsis">
|
|
9677
9985
|
Documentation
|
|
9678
9986
|
</span>
|
|
@@ -9746,111 +10054,162 @@
|
|
|
9746
10054
|
<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>
|
|
9747
10055
|
<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>
|
|
9748
10056
|
<!-- towncrier release notes start -->
|
|
9749
|
-
<h2 id="
|
|
10057
|
+
<h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">¶</a></h2>
|
|
10058
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10059
|
+
<ul>
|
|
10060
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
10061
|
+
</ul>
|
|
10062
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10063
|
+
<ul>
|
|
10064
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
10065
|
+
</ul>
|
|
10066
|
+
<h2 id="v1617-2024-04-01">v1.6.17 (2024-04-01)<a class="headerlink" href="#v1617-2024-04-01" title="Permanent link">¶</a></h2>
|
|
10067
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10068
|
+
<ul>
|
|
10069
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & its dependency on <code>ecdsa</code>.</li>
|
|
10070
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>>=4.7.0,<4.18.0</code> to <code>^4.7.0</code>.</li>
|
|
10071
|
+
</ul>
|
|
10072
|
+
<h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">¶</a></h2>
|
|
10073
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
10074
|
+
<ul>
|
|
10075
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
10076
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10077
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added narrower permissions enforcement on the endpoints <code>/extras/git-repositories/<str:slug>/sync/</code> and <code>/extras/git-repositories/<str:slug>/dry-run/</code>; a user who has <code>change</code> permissions for a subset of Git repositories is no longer permitted to sync or dry-run other repositories for which they lack the appropriate permissions. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10078
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added narrower permissions enforcement on the <code>/api/dcim/connected-device/?peer_device=...&?peer_interface=...</code> REST API endpoint; a user who has <code>view</code> permissions for a subset of interfaces is no longer permitted to query other interfaces for which they lack permissions. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10079
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added narrower permissions enforcement on all <code><app>/<model>/<lookup>/notes/</code> UI endpoints; a user must now have the appropriate <code>extras.view_note</code> permissions to view existing notes. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10080
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the REST API endpoints <code>/api/redoc/</code>, <code>/api/swagger/</code>, <code>/api/swagger.json</code>, and <code>/api/swagger.yaml</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10081
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the <code>/api/graphql</code> REST API endpoint, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10082
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/<uuid>/dynamic-groups/</code>, <code>/dcim/devices/<uuid>/dynamic-groups/</code>, <code>/ipam/prefixes/<uuid>/dynamic-groups/</code>, <code>/ipam/ip-addresses/<uuid>/dynamic-groups/</code>, <code>/virtualization/clusters/<uuid>/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/<uuid>/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10083
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/<str:provider_slug>/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10084
|
+
</ul>
|
|
9750
10085
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
9751
10086
|
<ul>
|
|
10087
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
10088
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
10089
|
+
</ul>
|
|
10090
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10091
|
+
<ul>
|
|
10092
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
|
|
10093
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
10094
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
|
|
10095
|
+
</ul>
|
|
10096
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10097
|
+
<ul>
|
|
10098
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
10099
|
+
</ul>
|
|
10100
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10101
|
+
<ul>
|
|
10102
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
10103
|
+
</ul>
|
|
10104
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10105
|
+
<ul>
|
|
10106
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
10107
|
+
</ul>
|
|
10108
|
+
<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>
|
|
10109
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10110
|
+
<ul>
|
|
9752
10111
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
9753
10112
|
<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>
|
|
9754
10113
|
</ul>
|
|
9755
|
-
<h3 id="
|
|
10114
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
9756
10115
|
<ul>
|
|
9757
10116
|
<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>
|
|
9758
10117
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
9759
10118
|
</ul>
|
|
9760
|
-
<h3 id="
|
|
10119
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
9761
10120
|
<ul>
|
|
9762
10121
|
<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>
|
|
9763
10122
|
<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>
|
|
9764
10123
|
</ul>
|
|
9765
10124
|
<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>
|
|
9766
|
-
<h3 id="
|
|
10125
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
9767
10126
|
<ul>
|
|
9768
10127
|
<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>
|
|
9769
10128
|
</ul>
|
|
9770
10129
|
<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>
|
|
9771
|
-
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
9772
10130
|
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10131
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
9773
10132
|
<ul>
|
|
9774
10133
|
<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>
|
|
9775
10134
|
</ul>
|
|
9776
|
-
<h3 id="
|
|
10135
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
9777
10136
|
<ul>
|
|
9778
10137
|
<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>
|
|
9779
10138
|
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
9780
10139
|
<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>
|
|
9781
10140
|
</ul>
|
|
9782
|
-
<h3 id="
|
|
10141
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
9783
10142
|
<ul>
|
|
9784
10143
|
<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>
|
|
9785
10144
|
<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>
|
|
9786
10145
|
</ul>
|
|
9787
10146
|
<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>
|
|
9788
|
-
<h3 id="
|
|
10147
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
9789
10148
|
<ul>
|
|
9790
10149
|
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
9791
10150
|
</ul>
|
|
9792
|
-
<h3 id="
|
|
10151
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
9793
10152
|
<ul>
|
|
9794
10153
|
<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>
|
|
9795
10154
|
</ul>
|
|
9796
|
-
<h3 id="
|
|
10155
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
9797
10156
|
<ul>
|
|
9798
10157
|
<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>
|
|
9799
10158
|
<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>
|
|
9800
10159
|
</ul>
|
|
9801
|
-
<h3 id="
|
|
10160
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
9802
10161
|
<ul>
|
|
9803
10162
|
<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>
|
|
9804
10163
|
<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>
|
|
9805
10164
|
</ul>
|
|
9806
10165
|
<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>
|
|
9807
|
-
<h3 id="
|
|
10166
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
9808
10167
|
<ul>
|
|
9809
10168
|
<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>
|
|
9810
10169
|
</ul>
|
|
9811
|
-
<h3 id="
|
|
10170
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
9812
10171
|
<ul>
|
|
9813
10172
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
9814
10173
|
</ul>
|
|
9815
|
-
<h3 id="
|
|
10174
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
9816
10175
|
<ul>
|
|
9817
10176
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
9818
10177
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
9819
10178
|
</ul>
|
|
9820
10179
|
<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>
|
|
9821
|
-
<h3 id="
|
|
10180
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
9822
10181
|
<ul>
|
|
9823
10182
|
<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>
|
|
9824
10183
|
<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>
|
|
9825
10184
|
</ul>
|
|
9826
|
-
<h3 id="
|
|
10185
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
9827
10186
|
<ul>
|
|
9828
10187
|
<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>
|
|
9829
10188
|
</ul>
|
|
9830
|
-
<h3 id="
|
|
10189
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
9831
10190
|
<ul>
|
|
9832
10191
|
<li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
|
|
9833
10192
|
</ul>
|
|
9834
|
-
<h3 id="
|
|
10193
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
9835
10194
|
<ul>
|
|
9836
10195
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
9837
10196
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
9838
10197
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
9839
10198
|
</ul>
|
|
9840
10199
|
<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>
|
|
9841
|
-
<h3 id="
|
|
10200
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
9842
10201
|
<ul>
|
|
9843
10202
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
9844
10203
|
</ul>
|
|
9845
10204
|
<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>
|
|
9846
|
-
<h3 id="
|
|
10205
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
9847
10206
|
<ul>
|
|
9848
10207
|
<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>
|
|
9849
10208
|
<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>
|
|
9850
10209
|
<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>
|
|
9851
10210
|
<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>
|
|
9852
10211
|
</ul>
|
|
9853
|
-
<h3 id="
|
|
10212
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
9854
10213
|
<ul>
|
|
9855
10214
|
<li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
|
|
9856
10215
|
</ul>
|
|
@@ -9858,20 +10217,20 @@
|
|
|
9858
10217
|
<ul>
|
|
9859
10218
|
<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>
|
|
9860
10219
|
</ul>
|
|
9861
|
-
<h3 id="
|
|
10220
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
9862
10221
|
<ul>
|
|
9863
10222
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
9864
10223
|
</ul>
|
|
9865
|
-
<h3 id="
|
|
10224
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
9866
10225
|
<ul>
|
|
9867
10226
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
9868
10227
|
</ul>
|
|
9869
10228
|
<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>
|
|
9870
|
-
<h3 id="
|
|
10229
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
9871
10230
|
<ul>
|
|
9872
10231
|
<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>
|
|
9873
10232
|
</ul>
|
|
9874
|
-
<h3 id="
|
|
10233
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
9875
10234
|
<ul>
|
|
9876
10235
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
9877
10236
|
</ul>
|
|
@@ -9880,46 +10239,46 @@
|
|
|
9880
10239
|
<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>
|
|
9881
10240
|
<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>
|
|
9882
10241
|
</ul>
|
|
9883
|
-
<h3 id="
|
|
10242
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
9884
10243
|
<ul>
|
|
9885
10244
|
<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>
|
|
9886
10245
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
9887
10246
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
9888
10247
|
</ul>
|
|
9889
10248
|
<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>
|
|
9890
|
-
<h3 id="
|
|
10249
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
9891
10250
|
<ul>
|
|
9892
10251
|
<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>
|
|
9893
10252
|
</ul>
|
|
9894
|
-
<h3 id="
|
|
10253
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
9895
10254
|
<ul>
|
|
9896
10255
|
<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>
|
|
9897
10256
|
</ul>
|
|
9898
|
-
<h3 id="
|
|
10257
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
9899
10258
|
<ul>
|
|
9900
10259
|
<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>
|
|
9901
10260
|
<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>
|
|
9902
10261
|
</ul>
|
|
9903
|
-
<h3 id="
|
|
10262
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
9904
10263
|
<ul>
|
|
9905
10264
|
<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>
|
|
9906
10265
|
</ul>
|
|
9907
|
-
<h3 id="
|
|
10266
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
9908
10267
|
<ul>
|
|
9909
10268
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
9910
10269
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
9911
10270
|
</ul>
|
|
9912
10271
|
<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>
|
|
9913
|
-
<h3 id="
|
|
10272
|
+
<h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">¶</a></h3>
|
|
9914
10273
|
<ul>
|
|
9915
10274
|
<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>
|
|
9916
10275
|
<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>
|
|
9917
10276
|
</ul>
|
|
9918
|
-
<h3 id="
|
|
10277
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
9919
10278
|
<ul>
|
|
9920
10279
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
9921
10280
|
</ul>
|
|
9922
|
-
<h3 id="
|
|
10281
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
9923
10282
|
<ul>
|
|
9924
10283
|
<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>
|
|
9925
10284
|
<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>
|
|
@@ -9927,21 +10286,21 @@
|
|
|
9927
10286
|
<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>
|
|
9928
10287
|
<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>
|
|
9929
10288
|
</ul>
|
|
9930
|
-
<h3 id="
|
|
10289
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
9931
10290
|
<ul>
|
|
9932
10291
|
<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>
|
|
9933
10292
|
</ul>
|
|
9934
|
-
<h3 id="
|
|
10293
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
9935
10294
|
<ul>
|
|
9936
10295
|
<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>
|
|
9937
10296
|
</ul>
|
|
9938
10297
|
<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>
|
|
9939
|
-
<h3 id="
|
|
10298
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
9940
10299
|
<ul>
|
|
9941
10300
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
9942
10301
|
<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>
|
|
9943
10302
|
</ul>
|
|
9944
|
-
<h3 id="
|
|
10303
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
9945
10304
|
<ul>
|
|
9946
10305
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
9947
10306
|
</ul>
|
|
@@ -9949,86 +10308,86 @@
|
|
|
9949
10308
|
<ul>
|
|
9950
10309
|
<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>
|
|
9951
10310
|
</ul>
|
|
9952
|
-
<h3 id="
|
|
10311
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
9953
10312
|
<ul>
|
|
9954
10313
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
9955
10314
|
</ul>
|
|
9956
10315
|
<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>
|
|
9957
|
-
<h3 id="
|
|
10316
|
+
<h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">¶</a></h3>
|
|
9958
10317
|
<ul>
|
|
9959
10318
|
<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>
|
|
9960
10319
|
</ul>
|
|
9961
|
-
<h3 id="
|
|
10320
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
9962
10321
|
<ul>
|
|
9963
10322
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
|
|
9964
10323
|
</ul>
|
|
9965
|
-
<h3 id="
|
|
10324
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
9966
10325
|
<ul>
|
|
9967
10326
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
9968
10327
|
</ul>
|
|
9969
|
-
<h3 id="
|
|
10328
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
9970
10329
|
<ul>
|
|
9971
10330
|
<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>
|
|
9972
10331
|
<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>
|
|
9973
10332
|
</ul>
|
|
9974
10333
|
<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>
|
|
9975
|
-
<h3 id="
|
|
10334
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
9976
10335
|
<ul>
|
|
9977
10336
|
<li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
|
|
9978
10337
|
<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>
|
|
9979
10338
|
</ul>
|
|
9980
|
-
<h3 id="
|
|
10339
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
9981
10340
|
<ul>
|
|
9982
10341
|
<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>
|
|
9983
10342
|
<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>
|
|
9984
10343
|
<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>
|
|
9985
10344
|
<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>
|
|
9986
10345
|
</ul>
|
|
9987
|
-
<h3 id="
|
|
10346
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
9988
10347
|
<ul>
|
|
9989
10348
|
<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>
|
|
9990
10349
|
<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>
|
|
9991
10350
|
<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>
|
|
9992
10351
|
</ul>
|
|
9993
|
-
<h3 id="
|
|
10352
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
9994
10353
|
<ul>
|
|
9995
10354
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
9996
10355
|
<li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
|
|
9997
10356
|
</ul>
|
|
9998
|
-
<h3 id="
|
|
10357
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
9999
10358
|
<ul>
|
|
10000
10359
|
<li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
|
|
10001
10360
|
<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>
|
|
10002
10361
|
</ul>
|
|
10003
10362
|
<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>
|
|
10004
|
-
<h3 id="
|
|
10363
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
10005
10364
|
<ul>
|
|
10006
10365
|
<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>
|
|
10007
10366
|
</ul>
|
|
10008
|
-
<h3 id="
|
|
10367
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
10009
10368
|
<ul>
|
|
10010
10369
|
<li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
|
|
10011
10370
|
<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>
|
|
10012
10371
|
<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>
|
|
10013
10372
|
</ul>
|
|
10014
|
-
<h3 id="
|
|
10373
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
10015
10374
|
<ul>
|
|
10016
10375
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Introduced new <code>mkdocs</code> setting of <code>tabbed</code>.</li>
|
|
10017
10376
|
<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>
|
|
10018
10377
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
10019
10378
|
</ul>
|
|
10020
|
-
<h3 id="
|
|
10379
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
10021
10380
|
<ul>
|
|
10022
10381
|
<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>
|
|
10023
10382
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
10024
10383
|
<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>
|
|
10025
10384
|
</ul>
|
|
10026
10385
|
<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>
|
|
10027
|
-
<h3 id="
|
|
10386
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
10028
10387
|
<ul>
|
|
10029
10388
|
<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>
|
|
10030
10389
|
</ul>
|
|
10031
|
-
<h3 id="
|
|
10390
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
10032
10391
|
<ul>
|
|
10033
10392
|
<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>
|
|
10034
10393
|
<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>
|
|
@@ -10037,7 +10396,7 @@
|
|
|
10037
10396
|
<li><a href="https://github.com/nautobot/nautobot/issues/4205">#4205</a> - Fixed failing Apps CI due to missing dependency of <code>toml</code>.</li>
|
|
10038
10397
|
<li><a href="https://github.com/nautobot/nautobot/issues/4222">#4222</a> - Fixed a bug in which <code>Job</code> <code>ChoiceVars</code> could sometimes get rendered incorrectly in the UI as multiple-choice fields.</li>
|
|
10039
10398
|
</ul>
|
|
10040
|
-
<h3 id="
|
|
10399
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
10041
10400
|
<ul>
|
|
10042
10401
|
<li><a href="https://github.com/nautobot/nautobot/issues/4208">#4208</a> - Updated django-rq to 2.8.1.</li>
|
|
10043
10402
|
<li><a href="https://github.com/nautobot/nautobot/issues/4209">#4209</a> - Relaxed constraint on prometheus-client minimum version to <code>0.14.1</code>.</li>
|
|
@@ -10045,12 +10404,12 @@
|
|
|
10045
10404
|
<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>
|
|
10046
10405
|
<li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
|
|
10047
10406
|
</ul>
|
|
10048
|
-
<h3 id="
|
|
10407
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
10049
10408
|
<ul>
|
|
10050
10409
|
<li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
|
|
10051
10410
|
</ul>
|
|
10052
10411
|
<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>
|
|
10053
|
-
<h3 id="
|
|
10412
|
+
<h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">¶</a></h3>
|
|
10054
10413
|
<ul>
|
|
10055
10414
|
<li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
|
|
10056
10415
|
<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>
|
|
@@ -10065,7 +10424,7 @@
|
|
|
10065
10424
|
<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>
|
|
10066
10425
|
<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>
|
|
10067
10426
|
</ul>
|
|
10068
|
-
<h3 id="
|
|
10427
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
10069
10428
|
<ul>
|
|
10070
10429
|
<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>
|
|
10071
10430
|
<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>
|
|
@@ -10078,11 +10437,11 @@
|
|
|
10078
10437
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
|
|
10079
10438
|
<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>
|
|
10080
10439
|
</ul>
|
|
10081
|
-
<h3 id="
|
|
10440
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
10082
10441
|
<ul>
|
|
10083
10442
|
<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>
|
|
10084
10443
|
</ul>
|
|
10085
|
-
<h3 id="
|
|
10444
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
10086
10445
|
<ul>
|
|
10087
10446
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>celery</code> dependency to <code>~5.3.1</code>.</li>
|
|
10088
10447
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|
|
@@ -10115,7 +10474,7 @@
|
|
|
10115
10474
|
<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>
|
|
10116
10475
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
10117
10476
|
</ul>
|
|
10118
|
-
<h3 id="
|
|
10477
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
10119
10478
|
<ul>
|
|
10120
10479
|
<li><a href="https://github.com/nautobot/nautobot/issues/4118">#4118</a> - Added documentation for troubleshooting integration test failures via VNC.</li>
|
|
10121
10480
|
</ul>
|
|
@@ -10263,9 +10622,9 @@
|
|
|
10263
10622
|
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
10264
10623
|
|
|
10265
10624
|
|
|
10266
|
-
<script src="../assets/javascripts/bundle.
|
|
10625
|
+
<script src="../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
10267
10626
|
|
|
10268
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
10627
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10269
10628
|
|
|
10270
10629
|
|
|
10271
10630
|
</body>
|