nautobot 2.2.0__py3-none-any.whl → 2.2.0b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/api.py +2 -1
- nautobot/apps/utils.py +0 -4
- nautobot/apps/views.py +0 -2
- nautobot/circuits/api/urls.py +2 -1
- nautobot/circuits/api/views.py +12 -0
- nautobot/circuits/tests/test_filters.py +1 -1
- nautobot/core/api/routers.py +3 -25
- nautobot/core/api/utils.py +0 -4
- nautobot/core/api/views.py +15 -21
- nautobot/core/filters.py +1 -7
- nautobot/core/management/commands/generate_test_data.py +4 -4
- nautobot/core/settings.py +0 -1
- nautobot/core/tables.py +1 -2
- nautobot/core/templates/admin/base.html +94 -23
- nautobot/core/templates/graphene/graphiql.html +47 -18
- nautobot/core/templates/inc/footer.html +5 -5
- nautobot/core/templates/inc/nav_menu.html +7 -0
- nautobot/core/templates/rest_framework/api.html +5 -12
- nautobot/core/templatetags/helpers.py +2 -2
- nautobot/core/testing/views.py +0 -30
- nautobot/core/tests/test_api.py +6 -13
- nautobot/core/tests/test_csv.py +4 -5
- nautobot/core/tests/test_filters.py +1 -2
- nautobot/core/tests/test_graphql.py +14 -4
- nautobot/core/tests/test_navigations.py +0 -3
- nautobot/core/tests/test_views.py +16 -22
- nautobot/core/utils/lookup.py +0 -124
- nautobot/core/views/__init__.py +7 -3
- nautobot/core/views/generic.py +3 -19
- nautobot/core/views/mixins.py +0 -7
- nautobot/core/views/renderers.py +1 -4
- nautobot/dcim/api/serializers.py +4 -4
- nautobot/dcim/api/urls.py +3 -2
- nautobot/dcim/api/views.py +18 -7
- nautobot/dcim/factory.py +7 -7
- nautobot/dcim/filters/__init__.py +17 -16
- nautobot/dcim/forms.py +45 -61
- nautobot/dcim/homepage.py +3 -11
- nautobot/dcim/migrations/0057_controller_models.py +70 -11
- nautobot/dcim/models/__init__.py +2 -2
- nautobot/dcim/models/devices.py +16 -14
- nautobot/dcim/models/racks.py +3 -1
- nautobot/dcim/navigation.py +31 -23
- nautobot/dcim/signals.py +6 -6
- nautobot/dcim/tables/__init__.py +2 -2
- nautobot/dcim/tables/devices.py +15 -12
- nautobot/dcim/tables/template_code.py +1 -1
- nautobot/dcim/templates/dcim/controller_retrieve.html +18 -35
- nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +43 -0
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +43 -67
- nautobot/dcim/templates/dcim/device.html +2 -10
- nautobot/dcim/templates/dcim/device_edit.html +1 -1
- nautobot/dcim/tests/test_api.py +6 -11
- nautobot/dcim/tests/test_filters.py +81 -92
- nautobot/dcim/tests/test_graphql.py +1 -11
- nautobot/dcim/tests/test_models.py +15 -15
- nautobot/dcim/tests/test_signals.py +0 -2
- nautobot/dcim/tests/test_views.py +12 -24
- nautobot/dcim/urls.py +1 -1
- nautobot/dcim/views.py +15 -19
- nautobot/extras/api/urls.py +2 -1
- nautobot/extras/api/views.py +10 -0
- nautobot/extras/filters/__init__.py +2 -53
- nautobot/extras/forms/contacts.py +0 -7
- nautobot/extras/managers.py +0 -14
- nautobot/extras/navigation.py +65 -71
- nautobot/extras/plugins/views.py +11 -7
- nautobot/extras/tests/test_api.py +0 -2
- nautobot/extras/tests/test_dynamicgroups.py +0 -2
- nautobot/extras/tests/test_filters.py +4 -89
- nautobot/extras/tests/test_models.py +0 -9
- nautobot/extras/tests/test_relationships.py +1 -10
- nautobot/extras/tests/test_views.py +1 -112
- nautobot/extras/views.py +10 -10
- nautobot/ipam/api/urls.py +2 -1
- nautobot/ipam/api/views.py +11 -0
- nautobot/ipam/tables.py +22 -2
- nautobot/ipam/tests/test_graphql.py +3 -2
- nautobot/ipam/tests/test_views.py +0 -1
- nautobot/ipam/views.py +9 -9
- nautobot/project-static/css/base.css +0 -1
- nautobot/project-static/docs/404.html +3 -24
- nautobot/project-static/docs/apps/index.html +3 -24
- nautobot/project-static/docs/apps/nautobot-apps.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +5 -26
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +3 -242
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +5 -69
- nautobot/project-static/docs/development/apps/api/configuration-view.html +3 -24
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/global-search.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/graphql.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +3 -24
- nautobot/project-static/docs/development/apps/api/prometheus.html +3 -24
- nautobot/project-static/docs/development/apps/api/setup.html +3 -24
- nautobot/project-static/docs/development/apps/api/testing.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/base-template.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +12 -38
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +15 -41
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/notes.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/urls.html +3 -24
- nautobot/project-static/docs/development/apps/index.html +3 -24
- nautobot/project-static/docs/development/apps/migration/code-updates.html +3 -24
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +3 -24
- nautobot/project-static/docs/development/apps/migration/from-v1.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +3 -24
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +3 -24
- nautobot/project-static/docs/development/core/application-registry.html +3 -24
- nautobot/project-static/docs/development/core/best-practices.html +3 -24
- nautobot/project-static/docs/development/core/bootstrap-ui.html +3 -24
- nautobot/project-static/docs/development/core/caching.html +3 -24
- nautobot/project-static/docs/development/core/controllers.html +204 -35
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +3 -24
- nautobot/project-static/docs/development/core/extending-models.html +3 -24
- nautobot/project-static/docs/development/core/generic-views.html +3 -24
- nautobot/project-static/docs/development/core/getting-started.html +13 -43
- nautobot/project-static/docs/development/core/homepage.html +3 -24
- nautobot/project-static/docs/development/core/index.html +3 -24
- nautobot/project-static/docs/development/core/model-features.html +3 -24
- nautobot/project-static/docs/development/core/natural-keys.html +3 -24
- nautobot/project-static/docs/development/core/navigation-menu.html +3 -24
- nautobot/project-static/docs/development/core/release-checklist.html +3 -24
- nautobot/project-static/docs/development/core/role-internals.html +3 -24
- nautobot/project-static/docs/development/core/settings.html +3 -24
- nautobot/project-static/docs/development/core/style-guide.html +3 -24
- nautobot/project-static/docs/development/core/templates.html +3 -24
- nautobot/project-static/docs/development/core/testing.html +3 -24
- nautobot/project-static/docs/development/core/user-preferences.html +3 -24
- nautobot/project-static/docs/development/index.html +3 -24
- nautobot/project-static/docs/development/jobs/index.html +3 -24
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +3 -24
- nautobot/project-static/docs/index.html +3 -24
- nautobot/project-static/docs/models/dcim/{controllermanageddevicegroup.html → controllerdevicegroup.html} +3 -3
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.0.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.1.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.2.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.3.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.4.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.5.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.6.html +3 -24
- nautobot/project-static/docs/release-notes/version-2.0.html +3 -24
- nautobot/project-static/docs/release-notes/version-2.1.html +162 -411
- nautobot/project-static/docs/release-notes/version-2.2.html +30 -212
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +255 -260
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +6 -31
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/index.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +6 -27
- nautobot/project-static/docs/user-guide/administration/installation/services.html +3 -24
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +3 -24
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +3 -24
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +3 -24
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +11 -259
- nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllermanageddevicegroup.html → controllerdevicegroup.html} +17 -107
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +6 -27
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/{contacts-and-teams.html → contact-and-team.html} +4 -25
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +5 -26
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +5 -26
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +3 -24
- nautobot/project-static/docs/user-guide/index.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +3 -24
- nautobot/tenancy/api/urls.py +2 -1
- nautobot/tenancy/api/views.py +12 -0
- nautobot/tenancy/tables.py +1 -1
- nautobot/tenancy/tests/test_views.py +0 -1
- nautobot/users/api/urls.py +2 -1
- nautobot/users/api/views.py +65 -2
- nautobot/users/views.py +8 -8
- nautobot/virtualization/api/urls.py +2 -1
- nautobot/virtualization/api/views.py +12 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/METADATA +3 -3
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/RECORD +356 -361
- nautobot/core/tests/integration/test_view_authentication.py +0 -67
- nautobot/dcim/management/commands/migrate_location_contacts.py +0 -218
- nautobot/dcim/templates/dcim/controller_create.html +0 -70
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +0 -88
- nautobot/ipam/tests/test_tables.py +0 -42
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +0 -8581
- /nautobot/dcim/templates/dcim/{controllermanageddevicegroup_retrieve.html → controllerdevicegroup_retrieve.html} +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -686,27 +686,6 @@
|
|
|
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
|
-
|
|
710
689
|
<li class="md-nav__item">
|
|
711
690
|
<a href="../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
712
691
|
|
|
@@ -1912,7 +1891,7 @@
|
|
|
1912
1891
|
|
|
1913
1892
|
|
|
1914
1893
|
<li class="md-nav__item">
|
|
1915
|
-
<a href="../user-guide/feature-guides/
|
|
1894
|
+
<a href="../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
|
|
1916
1895
|
|
|
1917
1896
|
|
|
1918
1897
|
<span class="md-ellipsis">
|
|
@@ -3177,11 +3156,11 @@
|
|
|
3177
3156
|
|
|
3178
3157
|
|
|
3179
3158
|
<li class="md-nav__item">
|
|
3180
|
-
<a href="../user-guide/core-data-model/dcim/
|
|
3159
|
+
<a href="../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
|
|
3181
3160
|
|
|
3182
3161
|
|
|
3183
3162
|
<span class="md-ellipsis">
|
|
3184
|
-
Controller
|
|
3163
|
+
Controller Device Group
|
|
3185
3164
|
</span>
|
|
3186
3165
|
|
|
3187
3166
|
|
|
@@ -7319,24 +7298,15 @@
|
|
|
7319
7298
|
</li>
|
|
7320
7299
|
|
|
7321
7300
|
<li class="md-nav__item">
|
|
7322
|
-
<a href="#
|
|
7301
|
+
<a href="#v218-2024-03-18" class="md-nav__link">
|
|
7323
7302
|
<span class="md-ellipsis">
|
|
7324
|
-
v2.1.
|
|
7303
|
+
v2.1.8 (2024-03-18)
|
|
7325
7304
|
</span>
|
|
7326
7305
|
</a>
|
|
7327
7306
|
|
|
7328
|
-
<nav class="md-nav" aria-label="v2.1.
|
|
7307
|
+
<nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
|
|
7329
7308
|
<ul class="md-nav__list">
|
|
7330
7309
|
|
|
7331
|
-
<li class="md-nav__item">
|
|
7332
|
-
<a href="#security" class="md-nav__link">
|
|
7333
|
-
<span class="md-ellipsis">
|
|
7334
|
-
Security
|
|
7335
|
-
</span>
|
|
7336
|
-
</a>
|
|
7337
|
-
|
|
7338
|
-
</li>
|
|
7339
|
-
|
|
7340
7310
|
<li class="md-nav__item">
|
|
7341
7311
|
<a href="#added_1" class="md-nav__link">
|
|
7342
7312
|
<span class="md-ellipsis">
|
|
@@ -7371,15 +7341,6 @@
|
|
|
7371
7341
|
</span>
|
|
7372
7342
|
</a>
|
|
7373
7343
|
|
|
7374
|
-
</li>
|
|
7375
|
-
|
|
7376
|
-
<li class="md-nav__item">
|
|
7377
|
-
<a href="#dependencies" class="md-nav__link">
|
|
7378
|
-
<span class="md-ellipsis">
|
|
7379
|
-
Dependencies
|
|
7380
|
-
</span>
|
|
7381
|
-
</a>
|
|
7382
|
-
|
|
7383
7344
|
</li>
|
|
7384
7345
|
|
|
7385
7346
|
<li class="md-nav__item">
|
|
@@ -7403,75 +7364,6 @@
|
|
|
7403
7364
|
</ul>
|
|
7404
7365
|
</nav>
|
|
7405
7366
|
|
|
7406
|
-
</li>
|
|
7407
|
-
|
|
7408
|
-
<li class="md-nav__item">
|
|
7409
|
-
<a href="#v218-2024-03-18" class="md-nav__link">
|
|
7410
|
-
<span class="md-ellipsis">
|
|
7411
|
-
v2.1.8 (2024-03-18)
|
|
7412
|
-
</span>
|
|
7413
|
-
</a>
|
|
7414
|
-
|
|
7415
|
-
<nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
|
|
7416
|
-
<ul class="md-nav__list">
|
|
7417
|
-
|
|
7418
|
-
<li class="md-nav__item">
|
|
7419
|
-
<a href="#added_2" class="md-nav__link">
|
|
7420
|
-
<span class="md-ellipsis">
|
|
7421
|
-
Added
|
|
7422
|
-
</span>
|
|
7423
|
-
</a>
|
|
7424
|
-
|
|
7425
|
-
</li>
|
|
7426
|
-
|
|
7427
|
-
<li class="md-nav__item">
|
|
7428
|
-
<a href="#changed_2" class="md-nav__link">
|
|
7429
|
-
<span class="md-ellipsis">
|
|
7430
|
-
Changed
|
|
7431
|
-
</span>
|
|
7432
|
-
</a>
|
|
7433
|
-
|
|
7434
|
-
</li>
|
|
7435
|
-
|
|
7436
|
-
<li class="md-nav__item">
|
|
7437
|
-
<a href="#removed_2" class="md-nav__link">
|
|
7438
|
-
<span class="md-ellipsis">
|
|
7439
|
-
Removed
|
|
7440
|
-
</span>
|
|
7441
|
-
</a>
|
|
7442
|
-
|
|
7443
|
-
</li>
|
|
7444
|
-
|
|
7445
|
-
<li class="md-nav__item">
|
|
7446
|
-
<a href="#fixed_1" class="md-nav__link">
|
|
7447
|
-
<span class="md-ellipsis">
|
|
7448
|
-
Fixed
|
|
7449
|
-
</span>
|
|
7450
|
-
</a>
|
|
7451
|
-
|
|
7452
|
-
</li>
|
|
7453
|
-
|
|
7454
|
-
<li class="md-nav__item">
|
|
7455
|
-
<a href="#documentation_1" class="md-nav__link">
|
|
7456
|
-
<span class="md-ellipsis">
|
|
7457
|
-
Documentation
|
|
7458
|
-
</span>
|
|
7459
|
-
</a>
|
|
7460
|
-
|
|
7461
|
-
</li>
|
|
7462
|
-
|
|
7463
|
-
<li class="md-nav__item">
|
|
7464
|
-
<a href="#housekeeping_1" class="md-nav__link">
|
|
7465
|
-
<span class="md-ellipsis">
|
|
7466
|
-
Housekeeping
|
|
7467
|
-
</span>
|
|
7468
|
-
</a>
|
|
7469
|
-
|
|
7470
|
-
</li>
|
|
7471
|
-
|
|
7472
|
-
</ul>
|
|
7473
|
-
</nav>
|
|
7474
|
-
|
|
7475
7367
|
</li>
|
|
7476
7368
|
|
|
7477
7369
|
<li class="md-nav__item">
|
|
@@ -7485,7 +7377,7 @@
|
|
|
7485
7377
|
<ul class="md-nav__list">
|
|
7486
7378
|
|
|
7487
7379
|
<li class="md-nav__item">
|
|
7488
|
-
<a href="#
|
|
7380
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
7489
7381
|
<span class="md-ellipsis">
|
|
7490
7382
|
Fixed
|
|
7491
7383
|
</span>
|
|
@@ -7509,7 +7401,7 @@
|
|
|
7509
7401
|
<ul class="md-nav__list">
|
|
7510
7402
|
|
|
7511
7403
|
<li class="md-nav__item">
|
|
7512
|
-
<a href="#
|
|
7404
|
+
<a href="#security" class="md-nav__link">
|
|
7513
7405
|
<span class="md-ellipsis">
|
|
7514
7406
|
Security
|
|
7515
7407
|
</span>
|
|
@@ -7518,7 +7410,7 @@
|
|
|
7518
7410
|
</li>
|
|
7519
7411
|
|
|
7520
7412
|
<li class="md-nav__item">
|
|
7521
|
-
<a href="#
|
|
7413
|
+
<a href="#added_2" class="md-nav__link">
|
|
7522
7414
|
<span class="md-ellipsis">
|
|
7523
7415
|
Added
|
|
7524
7416
|
</span>
|
|
@@ -7527,7 +7419,7 @@
|
|
|
7527
7419
|
</li>
|
|
7528
7420
|
|
|
7529
7421
|
<li class="md-nav__item">
|
|
7530
|
-
<a href="#
|
|
7422
|
+
<a href="#changed_2" class="md-nav__link">
|
|
7531
7423
|
<span class="md-ellipsis">
|
|
7532
7424
|
Changed
|
|
7533
7425
|
</span>
|
|
@@ -7536,7 +7428,7 @@
|
|
|
7536
7428
|
</li>
|
|
7537
7429
|
|
|
7538
7430
|
<li class="md-nav__item">
|
|
7539
|
-
<a href="#
|
|
7431
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
7540
7432
|
<span class="md-ellipsis">
|
|
7541
7433
|
Fixed
|
|
7542
7434
|
</span>
|
|
@@ -7545,7 +7437,7 @@
|
|
|
7545
7437
|
</li>
|
|
7546
7438
|
|
|
7547
7439
|
<li class="md-nav__item">
|
|
7548
|
-
<a href="#
|
|
7440
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
7549
7441
|
<span class="md-ellipsis">
|
|
7550
7442
|
Documentation
|
|
7551
7443
|
</span>
|
|
@@ -7569,7 +7461,7 @@
|
|
|
7569
7461
|
<ul class="md-nav__list">
|
|
7570
7462
|
|
|
7571
7463
|
<li class="md-nav__item">
|
|
7572
|
-
<a href="#
|
|
7464
|
+
<a href="#security_1" class="md-nav__link">
|
|
7573
7465
|
<span class="md-ellipsis">
|
|
7574
7466
|
Security
|
|
7575
7467
|
</span>
|
|
@@ -7578,7 +7470,7 @@
|
|
|
7578
7470
|
</li>
|
|
7579
7471
|
|
|
7580
7472
|
<li class="md-nav__item">
|
|
7581
|
-
<a href="#
|
|
7473
|
+
<a href="#added_3" class="md-nav__link">
|
|
7582
7474
|
<span class="md-ellipsis">
|
|
7583
7475
|
Added
|
|
7584
7476
|
</span>
|
|
@@ -7587,7 +7479,7 @@
|
|
|
7587
7479
|
</li>
|
|
7588
7480
|
|
|
7589
7481
|
<li class="md-nav__item">
|
|
7590
|
-
<a href="#
|
|
7482
|
+
<a href="#changed_3" class="md-nav__link">
|
|
7591
7483
|
<span class="md-ellipsis">
|
|
7592
7484
|
Changed
|
|
7593
7485
|
</span>
|
|
@@ -7596,7 +7488,7 @@
|
|
|
7596
7488
|
</li>
|
|
7597
7489
|
|
|
7598
7490
|
<li class="md-nav__item">
|
|
7599
|
-
<a href="#
|
|
7491
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
7600
7492
|
<span class="md-ellipsis">
|
|
7601
7493
|
Fixed
|
|
7602
7494
|
</span>
|
|
@@ -7605,7 +7497,7 @@
|
|
|
7605
7497
|
</li>
|
|
7606
7498
|
|
|
7607
7499
|
<li class="md-nav__item">
|
|
7608
|
-
<a href="#
|
|
7500
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
7609
7501
|
<span class="md-ellipsis">
|
|
7610
7502
|
Documentation
|
|
7611
7503
|
</span>
|
|
@@ -7614,7 +7506,7 @@
|
|
|
7614
7506
|
</li>
|
|
7615
7507
|
|
|
7616
7508
|
<li class="md-nav__item">
|
|
7617
|
-
<a href="#
|
|
7509
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
7618
7510
|
<span class="md-ellipsis">
|
|
7619
7511
|
Housekeeping
|
|
7620
7512
|
</span>
|
|
@@ -7638,7 +7530,7 @@
|
|
|
7638
7530
|
<ul class="md-nav__list">
|
|
7639
7531
|
|
|
7640
7532
|
<li class="md-nav__item">
|
|
7641
|
-
<a href="#
|
|
7533
|
+
<a href="#security_2" class="md-nav__link">
|
|
7642
7534
|
<span class="md-ellipsis">
|
|
7643
7535
|
Security
|
|
7644
7536
|
</span>
|
|
@@ -7647,7 +7539,7 @@
|
|
|
7647
7539
|
</li>
|
|
7648
7540
|
|
|
7649
7541
|
<li class="md-nav__item">
|
|
7650
|
-
<a href="#
|
|
7542
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
7651
7543
|
<span class="md-ellipsis">
|
|
7652
7544
|
Fixed
|
|
7653
7545
|
</span>
|
|
@@ -7656,7 +7548,7 @@
|
|
|
7656
7548
|
</li>
|
|
7657
7549
|
|
|
7658
7550
|
<li class="md-nav__item">
|
|
7659
|
-
<a href="#
|
|
7551
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
7660
7552
|
<span class="md-ellipsis">
|
|
7661
7553
|
Documentation
|
|
7662
7554
|
</span>
|
|
@@ -7665,7 +7557,7 @@
|
|
|
7665
7557
|
</li>
|
|
7666
7558
|
|
|
7667
7559
|
<li class="md-nav__item">
|
|
7668
|
-
<a href="#
|
|
7560
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
7669
7561
|
<span class="md-ellipsis">
|
|
7670
7562
|
Housekeeping
|
|
7671
7563
|
</span>
|
|
@@ -7689,7 +7581,7 @@
|
|
|
7689
7581
|
<ul class="md-nav__list">
|
|
7690
7582
|
|
|
7691
7583
|
<li class="md-nav__item">
|
|
7692
|
-
<a href="#
|
|
7584
|
+
<a href="#security_3" class="md-nav__link">
|
|
7693
7585
|
<span class="md-ellipsis">
|
|
7694
7586
|
Security
|
|
7695
7587
|
</span>
|
|
@@ -7698,7 +7590,7 @@
|
|
|
7698
7590
|
</li>
|
|
7699
7591
|
|
|
7700
7592
|
<li class="md-nav__item">
|
|
7701
|
-
<a href="#
|
|
7593
|
+
<a href="#added_4" class="md-nav__link">
|
|
7702
7594
|
<span class="md-ellipsis">
|
|
7703
7595
|
Added
|
|
7704
7596
|
</span>
|
|
@@ -7707,7 +7599,7 @@
|
|
|
7707
7599
|
</li>
|
|
7708
7600
|
|
|
7709
7601
|
<li class="md-nav__item">
|
|
7710
|
-
<a href="#
|
|
7602
|
+
<a href="#changed_4" class="md-nav__link">
|
|
7711
7603
|
<span class="md-ellipsis">
|
|
7712
7604
|
Changed
|
|
7713
7605
|
</span>
|
|
@@ -7716,7 +7608,7 @@
|
|
|
7716
7608
|
</li>
|
|
7717
7609
|
|
|
7718
7610
|
<li class="md-nav__item">
|
|
7719
|
-
<a href="#
|
|
7611
|
+
<a href="#removed_2" class="md-nav__link">
|
|
7720
7612
|
<span class="md-ellipsis">
|
|
7721
7613
|
Removed
|
|
7722
7614
|
</span>
|
|
@@ -7725,7 +7617,7 @@
|
|
|
7725
7617
|
</li>
|
|
7726
7618
|
|
|
7727
7619
|
<li class="md-nav__item">
|
|
7728
|
-
<a href="#
|
|
7620
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
7729
7621
|
<span class="md-ellipsis">
|
|
7730
7622
|
Fixed
|
|
7731
7623
|
</span>
|
|
@@ -7734,7 +7626,7 @@
|
|
|
7734
7626
|
</li>
|
|
7735
7627
|
|
|
7736
7628
|
<li class="md-nav__item">
|
|
7737
|
-
<a href="#
|
|
7629
|
+
<a href="#dependencies" class="md-nav__link">
|
|
7738
7630
|
<span class="md-ellipsis">
|
|
7739
7631
|
Dependencies
|
|
7740
7632
|
</span>
|
|
@@ -7743,7 +7635,7 @@
|
|
|
7743
7635
|
</li>
|
|
7744
7636
|
|
|
7745
7637
|
<li class="md-nav__item">
|
|
7746
|
-
<a href="#
|
|
7638
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
7747
7639
|
<span class="md-ellipsis">
|
|
7748
7640
|
Housekeeping
|
|
7749
7641
|
</span>
|
|
@@ -7767,7 +7659,7 @@
|
|
|
7767
7659
|
<ul class="md-nav__list">
|
|
7768
7660
|
|
|
7769
7661
|
<li class="md-nav__item">
|
|
7770
|
-
<a href="#
|
|
7662
|
+
<a href="#security_4" class="md-nav__link">
|
|
7771
7663
|
<span class="md-ellipsis">
|
|
7772
7664
|
Security
|
|
7773
7665
|
</span>
|
|
@@ -7776,7 +7668,7 @@
|
|
|
7776
7668
|
</li>
|
|
7777
7669
|
|
|
7778
7670
|
<li class="md-nav__item">
|
|
7779
|
-
<a href="#
|
|
7671
|
+
<a href="#added_5" class="md-nav__link">
|
|
7780
7672
|
<span class="md-ellipsis">
|
|
7781
7673
|
Added
|
|
7782
7674
|
</span>
|
|
@@ -7785,7 +7677,7 @@
|
|
|
7785
7677
|
</li>
|
|
7786
7678
|
|
|
7787
7679
|
<li class="md-nav__item">
|
|
7788
|
-
<a href="#
|
|
7680
|
+
<a href="#changed_5" class="md-nav__link">
|
|
7789
7681
|
<span class="md-ellipsis">
|
|
7790
7682
|
Changed
|
|
7791
7683
|
</span>
|
|
@@ -7794,7 +7686,7 @@
|
|
|
7794
7686
|
</li>
|
|
7795
7687
|
|
|
7796
7688
|
<li class="md-nav__item">
|
|
7797
|
-
<a href="#
|
|
7689
|
+
<a href="#removed_3" class="md-nav__link">
|
|
7798
7690
|
<span class="md-ellipsis">
|
|
7799
7691
|
Removed
|
|
7800
7692
|
</span>
|
|
@@ -7803,7 +7695,7 @@
|
|
|
7803
7695
|
</li>
|
|
7804
7696
|
|
|
7805
7697
|
<li class="md-nav__item">
|
|
7806
|
-
<a href="#
|
|
7698
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
7807
7699
|
<span class="md-ellipsis">
|
|
7808
7700
|
Fixed
|
|
7809
7701
|
</span>
|
|
@@ -7812,7 +7704,7 @@
|
|
|
7812
7704
|
</li>
|
|
7813
7705
|
|
|
7814
7706
|
<li class="md-nav__item">
|
|
7815
|
-
<a href="#
|
|
7707
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
7816
7708
|
<span class="md-ellipsis">
|
|
7817
7709
|
Dependencies
|
|
7818
7710
|
</span>
|
|
@@ -7821,7 +7713,7 @@
|
|
|
7821
7713
|
</li>
|
|
7822
7714
|
|
|
7823
7715
|
<li class="md-nav__item">
|
|
7824
|
-
<a href="#
|
|
7716
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
7825
7717
|
<span class="md-ellipsis">
|
|
7826
7718
|
Documentation
|
|
7827
7719
|
</span>
|
|
@@ -7830,7 +7722,7 @@
|
|
|
7830
7722
|
</li>
|
|
7831
7723
|
|
|
7832
7724
|
<li class="md-nav__item">
|
|
7833
|
-
<a href="#
|
|
7725
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
7834
7726
|
<span class="md-ellipsis">
|
|
7835
7727
|
Housekeeping
|
|
7836
7728
|
</span>
|
|
@@ -7854,7 +7746,7 @@
|
|
|
7854
7746
|
<ul class="md-nav__list">
|
|
7855
7747
|
|
|
7856
7748
|
<li class="md-nav__item">
|
|
7857
|
-
<a href="#
|
|
7749
|
+
<a href="#added_6" class="md-nav__link">
|
|
7858
7750
|
<span class="md-ellipsis">
|
|
7859
7751
|
Added
|
|
7860
7752
|
</span>
|
|
@@ -7863,7 +7755,7 @@
|
|
|
7863
7755
|
</li>
|
|
7864
7756
|
|
|
7865
7757
|
<li class="md-nav__item">
|
|
7866
|
-
<a href="#
|
|
7758
|
+
<a href="#changed_6" class="md-nav__link">
|
|
7867
7759
|
<span class="md-ellipsis">
|
|
7868
7760
|
Changed
|
|
7869
7761
|
</span>
|
|
@@ -7872,7 +7764,7 @@
|
|
|
7872
7764
|
</li>
|
|
7873
7765
|
|
|
7874
7766
|
<li class="md-nav__item">
|
|
7875
|
-
<a href="#
|
|
7767
|
+
<a href="#removed_4" class="md-nav__link">
|
|
7876
7768
|
<span class="md-ellipsis">
|
|
7877
7769
|
Removed
|
|
7878
7770
|
</span>
|
|
@@ -7881,7 +7773,7 @@
|
|
|
7881
7773
|
</li>
|
|
7882
7774
|
|
|
7883
7775
|
<li class="md-nav__item">
|
|
7884
|
-
<a href="#
|
|
7776
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
7885
7777
|
<span class="md-ellipsis">
|
|
7886
7778
|
Fixed
|
|
7887
7779
|
</span>
|
|
@@ -7890,7 +7782,7 @@
|
|
|
7890
7782
|
</li>
|
|
7891
7783
|
|
|
7892
7784
|
<li class="md-nav__item">
|
|
7893
|
-
<a href="#
|
|
7785
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
7894
7786
|
<span class="md-ellipsis">
|
|
7895
7787
|
Documentation
|
|
7896
7788
|
</span>
|
|
@@ -7899,7 +7791,7 @@
|
|
|
7899
7791
|
</li>
|
|
7900
7792
|
|
|
7901
7793
|
<li class="md-nav__item">
|
|
7902
|
-
<a href="#
|
|
7794
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
7903
7795
|
<span class="md-ellipsis">
|
|
7904
7796
|
Housekeeping
|
|
7905
7797
|
</span>
|
|
@@ -7923,7 +7815,7 @@
|
|
|
7923
7815
|
<ul class="md-nav__list">
|
|
7924
7816
|
|
|
7925
7817
|
<li class="md-nav__item">
|
|
7926
|
-
<a href="#
|
|
7818
|
+
<a href="#security_5" class="md-nav__link">
|
|
7927
7819
|
<span class="md-ellipsis">
|
|
7928
7820
|
Security
|
|
7929
7821
|
</span>
|
|
@@ -7932,7 +7824,7 @@
|
|
|
7932
7824
|
</li>
|
|
7933
7825
|
|
|
7934
7826
|
<li class="md-nav__item">
|
|
7935
|
-
<a href="#
|
|
7827
|
+
<a href="#added_7" class="md-nav__link">
|
|
7936
7828
|
<span class="md-ellipsis">
|
|
7937
7829
|
Added
|
|
7938
7830
|
</span>
|
|
@@ -7941,7 +7833,7 @@
|
|
|
7941
7833
|
</li>
|
|
7942
7834
|
|
|
7943
7835
|
<li class="md-nav__item">
|
|
7944
|
-
<a href="#
|
|
7836
|
+
<a href="#changed_7" class="md-nav__link">
|
|
7945
7837
|
<span class="md-ellipsis">
|
|
7946
7838
|
Changed
|
|
7947
7839
|
</span>
|
|
@@ -7950,7 +7842,7 @@
|
|
|
7950
7842
|
</li>
|
|
7951
7843
|
|
|
7952
7844
|
<li class="md-nav__item">
|
|
7953
|
-
<a href="#
|
|
7845
|
+
<a href="#removed_5" class="md-nav__link">
|
|
7954
7846
|
<span class="md-ellipsis">
|
|
7955
7847
|
Removed
|
|
7956
7848
|
</span>
|
|
@@ -7959,7 +7851,7 @@
|
|
|
7959
7851
|
</li>
|
|
7960
7852
|
|
|
7961
7853
|
<li class="md-nav__item">
|
|
7962
|
-
<a href="#
|
|
7854
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
7963
7855
|
<span class="md-ellipsis">
|
|
7964
7856
|
Fixed
|
|
7965
7857
|
</span>
|
|
@@ -7968,7 +7860,7 @@
|
|
|
7968
7860
|
</li>
|
|
7969
7861
|
|
|
7970
7862
|
<li class="md-nav__item">
|
|
7971
|
-
<a href="#
|
|
7863
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
7972
7864
|
<span class="md-ellipsis">
|
|
7973
7865
|
Documentation
|
|
7974
7866
|
</span>
|
|
@@ -7977,7 +7869,7 @@
|
|
|
7977
7869
|
</li>
|
|
7978
7870
|
|
|
7979
7871
|
<li class="md-nav__item">
|
|
7980
|
-
<a href="#
|
|
7872
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
7981
7873
|
<span class="md-ellipsis">
|
|
7982
7874
|
Housekeeping
|
|
7983
7875
|
</span>
|
|
@@ -8001,7 +7893,7 @@
|
|
|
8001
7893
|
<ul class="md-nav__list">
|
|
8002
7894
|
|
|
8003
7895
|
<li class="md-nav__item">
|
|
8004
|
-
<a href="#
|
|
7896
|
+
<a href="#added_8" class="md-nav__link">
|
|
8005
7897
|
<span class="md-ellipsis">
|
|
8006
7898
|
Added
|
|
8007
7899
|
</span>
|
|
@@ -8010,7 +7902,7 @@
|
|
|
8010
7902
|
</li>
|
|
8011
7903
|
|
|
8012
7904
|
<li class="md-nav__item">
|
|
8013
|
-
<a href="#
|
|
7905
|
+
<a href="#changed_8" class="md-nav__link">
|
|
8014
7906
|
<span class="md-ellipsis">
|
|
8015
7907
|
Changed
|
|
8016
7908
|
</span>
|
|
@@ -8019,7 +7911,7 @@
|
|
|
8019
7911
|
</li>
|
|
8020
7912
|
|
|
8021
7913
|
<li class="md-nav__item">
|
|
8022
|
-
<a href="#
|
|
7914
|
+
<a href="#removed_6" class="md-nav__link">
|
|
8023
7915
|
<span class="md-ellipsis">
|
|
8024
7916
|
Removed
|
|
8025
7917
|
</span>
|
|
@@ -8028,7 +7920,7 @@
|
|
|
8028
7920
|
</li>
|
|
8029
7921
|
|
|
8030
7922
|
<li class="md-nav__item">
|
|
8031
|
-
<a href="#
|
|
7923
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8032
7924
|
<span class="md-ellipsis">
|
|
8033
7925
|
Fixed
|
|
8034
7926
|
</span>
|
|
@@ -8037,7 +7929,7 @@
|
|
|
8037
7929
|
</li>
|
|
8038
7930
|
|
|
8039
7931
|
<li class="md-nav__item">
|
|
8040
|
-
<a href="#
|
|
7932
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8041
7933
|
<span class="md-ellipsis">
|
|
8042
7934
|
Housekeeping
|
|
8043
7935
|
</span>
|
|
@@ -8741,24 +8633,15 @@
|
|
|
8741
8633
|
</li>
|
|
8742
8634
|
|
|
8743
8635
|
<li class="md-nav__item">
|
|
8744
|
-
<a href="#
|
|
8636
|
+
<a href="#v218-2024-03-18" class="md-nav__link">
|
|
8745
8637
|
<span class="md-ellipsis">
|
|
8746
|
-
v2.1.
|
|
8638
|
+
v2.1.8 (2024-03-18)
|
|
8747
8639
|
</span>
|
|
8748
8640
|
</a>
|
|
8749
8641
|
|
|
8750
|
-
<nav class="md-nav" aria-label="v2.1.
|
|
8642
|
+
<nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
|
|
8751
8643
|
<ul class="md-nav__list">
|
|
8752
8644
|
|
|
8753
|
-
<li class="md-nav__item">
|
|
8754
|
-
<a href="#security" class="md-nav__link">
|
|
8755
|
-
<span class="md-ellipsis">
|
|
8756
|
-
Security
|
|
8757
|
-
</span>
|
|
8758
|
-
</a>
|
|
8759
|
-
|
|
8760
|
-
</li>
|
|
8761
|
-
|
|
8762
8645
|
<li class="md-nav__item">
|
|
8763
8646
|
<a href="#added_1" class="md-nav__link">
|
|
8764
8647
|
<span class="md-ellipsis">
|
|
@@ -8793,15 +8676,6 @@
|
|
|
8793
8676
|
</span>
|
|
8794
8677
|
</a>
|
|
8795
8678
|
|
|
8796
|
-
</li>
|
|
8797
|
-
|
|
8798
|
-
<li class="md-nav__item">
|
|
8799
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8800
|
-
<span class="md-ellipsis">
|
|
8801
|
-
Dependencies
|
|
8802
|
-
</span>
|
|
8803
|
-
</a>
|
|
8804
|
-
|
|
8805
8679
|
</li>
|
|
8806
8680
|
|
|
8807
8681
|
<li class="md-nav__item">
|
|
@@ -8825,75 +8699,6 @@
|
|
|
8825
8699
|
</ul>
|
|
8826
8700
|
</nav>
|
|
8827
8701
|
|
|
8828
|
-
</li>
|
|
8829
|
-
|
|
8830
|
-
<li class="md-nav__item">
|
|
8831
|
-
<a href="#v218-2024-03-18" class="md-nav__link">
|
|
8832
|
-
<span class="md-ellipsis">
|
|
8833
|
-
v2.1.8 (2024-03-18)
|
|
8834
|
-
</span>
|
|
8835
|
-
</a>
|
|
8836
|
-
|
|
8837
|
-
<nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
|
|
8838
|
-
<ul class="md-nav__list">
|
|
8839
|
-
|
|
8840
|
-
<li class="md-nav__item">
|
|
8841
|
-
<a href="#added_2" class="md-nav__link">
|
|
8842
|
-
<span class="md-ellipsis">
|
|
8843
|
-
Added
|
|
8844
|
-
</span>
|
|
8845
|
-
</a>
|
|
8846
|
-
|
|
8847
|
-
</li>
|
|
8848
|
-
|
|
8849
|
-
<li class="md-nav__item">
|
|
8850
|
-
<a href="#changed_2" class="md-nav__link">
|
|
8851
|
-
<span class="md-ellipsis">
|
|
8852
|
-
Changed
|
|
8853
|
-
</span>
|
|
8854
|
-
</a>
|
|
8855
|
-
|
|
8856
|
-
</li>
|
|
8857
|
-
|
|
8858
|
-
<li class="md-nav__item">
|
|
8859
|
-
<a href="#removed_2" class="md-nav__link">
|
|
8860
|
-
<span class="md-ellipsis">
|
|
8861
|
-
Removed
|
|
8862
|
-
</span>
|
|
8863
|
-
</a>
|
|
8864
|
-
|
|
8865
|
-
</li>
|
|
8866
|
-
|
|
8867
|
-
<li class="md-nav__item">
|
|
8868
|
-
<a href="#fixed_1" class="md-nav__link">
|
|
8869
|
-
<span class="md-ellipsis">
|
|
8870
|
-
Fixed
|
|
8871
|
-
</span>
|
|
8872
|
-
</a>
|
|
8873
|
-
|
|
8874
|
-
</li>
|
|
8875
|
-
|
|
8876
|
-
<li class="md-nav__item">
|
|
8877
|
-
<a href="#documentation_1" class="md-nav__link">
|
|
8878
|
-
<span class="md-ellipsis">
|
|
8879
|
-
Documentation
|
|
8880
|
-
</span>
|
|
8881
|
-
</a>
|
|
8882
|
-
|
|
8883
|
-
</li>
|
|
8884
|
-
|
|
8885
|
-
<li class="md-nav__item">
|
|
8886
|
-
<a href="#housekeeping_1" class="md-nav__link">
|
|
8887
|
-
<span class="md-ellipsis">
|
|
8888
|
-
Housekeeping
|
|
8889
|
-
</span>
|
|
8890
|
-
</a>
|
|
8891
|
-
|
|
8892
|
-
</li>
|
|
8893
|
-
|
|
8894
|
-
</ul>
|
|
8895
|
-
</nav>
|
|
8896
|
-
|
|
8897
8702
|
</li>
|
|
8898
8703
|
|
|
8899
8704
|
<li class="md-nav__item">
|
|
@@ -8907,7 +8712,7 @@
|
|
|
8907
8712
|
<ul class="md-nav__list">
|
|
8908
8713
|
|
|
8909
8714
|
<li class="md-nav__item">
|
|
8910
|
-
<a href="#
|
|
8715
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8911
8716
|
<span class="md-ellipsis">
|
|
8912
8717
|
Fixed
|
|
8913
8718
|
</span>
|
|
@@ -8931,7 +8736,7 @@
|
|
|
8931
8736
|
<ul class="md-nav__list">
|
|
8932
8737
|
|
|
8933
8738
|
<li class="md-nav__item">
|
|
8934
|
-
<a href="#
|
|
8739
|
+
<a href="#security" class="md-nav__link">
|
|
8935
8740
|
<span class="md-ellipsis">
|
|
8936
8741
|
Security
|
|
8937
8742
|
</span>
|
|
@@ -8940,7 +8745,7 @@
|
|
|
8940
8745
|
</li>
|
|
8941
8746
|
|
|
8942
8747
|
<li class="md-nav__item">
|
|
8943
|
-
<a href="#
|
|
8748
|
+
<a href="#added_2" class="md-nav__link">
|
|
8944
8749
|
<span class="md-ellipsis">
|
|
8945
8750
|
Added
|
|
8946
8751
|
</span>
|
|
@@ -8949,7 +8754,7 @@
|
|
|
8949
8754
|
</li>
|
|
8950
8755
|
|
|
8951
8756
|
<li class="md-nav__item">
|
|
8952
|
-
<a href="#
|
|
8757
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8953
8758
|
<span class="md-ellipsis">
|
|
8954
8759
|
Changed
|
|
8955
8760
|
</span>
|
|
@@ -8958,7 +8763,7 @@
|
|
|
8958
8763
|
</li>
|
|
8959
8764
|
|
|
8960
8765
|
<li class="md-nav__item">
|
|
8961
|
-
<a href="#
|
|
8766
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8962
8767
|
<span class="md-ellipsis">
|
|
8963
8768
|
Fixed
|
|
8964
8769
|
</span>
|
|
@@ -8967,7 +8772,7 @@
|
|
|
8967
8772
|
</li>
|
|
8968
8773
|
|
|
8969
8774
|
<li class="md-nav__item">
|
|
8970
|
-
<a href="#
|
|
8775
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8971
8776
|
<span class="md-ellipsis">
|
|
8972
8777
|
Documentation
|
|
8973
8778
|
</span>
|
|
@@ -8991,7 +8796,7 @@
|
|
|
8991
8796
|
<ul class="md-nav__list">
|
|
8992
8797
|
|
|
8993
8798
|
<li class="md-nav__item">
|
|
8994
|
-
<a href="#
|
|
8799
|
+
<a href="#security_1" class="md-nav__link">
|
|
8995
8800
|
<span class="md-ellipsis">
|
|
8996
8801
|
Security
|
|
8997
8802
|
</span>
|
|
@@ -9000,7 +8805,7 @@
|
|
|
9000
8805
|
</li>
|
|
9001
8806
|
|
|
9002
8807
|
<li class="md-nav__item">
|
|
9003
|
-
<a href="#
|
|
8808
|
+
<a href="#added_3" class="md-nav__link">
|
|
9004
8809
|
<span class="md-ellipsis">
|
|
9005
8810
|
Added
|
|
9006
8811
|
</span>
|
|
@@ -9009,7 +8814,7 @@
|
|
|
9009
8814
|
</li>
|
|
9010
8815
|
|
|
9011
8816
|
<li class="md-nav__item">
|
|
9012
|
-
<a href="#
|
|
8817
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9013
8818
|
<span class="md-ellipsis">
|
|
9014
8819
|
Changed
|
|
9015
8820
|
</span>
|
|
@@ -9018,7 +8823,7 @@
|
|
|
9018
8823
|
</li>
|
|
9019
8824
|
|
|
9020
8825
|
<li class="md-nav__item">
|
|
9021
|
-
<a href="#
|
|
8826
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9022
8827
|
<span class="md-ellipsis">
|
|
9023
8828
|
Fixed
|
|
9024
8829
|
</span>
|
|
@@ -9027,7 +8832,7 @@
|
|
|
9027
8832
|
</li>
|
|
9028
8833
|
|
|
9029
8834
|
<li class="md-nav__item">
|
|
9030
|
-
<a href="#
|
|
8835
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9031
8836
|
<span class="md-ellipsis">
|
|
9032
8837
|
Documentation
|
|
9033
8838
|
</span>
|
|
@@ -9036,7 +8841,7 @@
|
|
|
9036
8841
|
</li>
|
|
9037
8842
|
|
|
9038
8843
|
<li class="md-nav__item">
|
|
9039
|
-
<a href="#
|
|
8844
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9040
8845
|
<span class="md-ellipsis">
|
|
9041
8846
|
Housekeeping
|
|
9042
8847
|
</span>
|
|
@@ -9060,7 +8865,7 @@
|
|
|
9060
8865
|
<ul class="md-nav__list">
|
|
9061
8866
|
|
|
9062
8867
|
<li class="md-nav__item">
|
|
9063
|
-
<a href="#
|
|
8868
|
+
<a href="#security_2" class="md-nav__link">
|
|
9064
8869
|
<span class="md-ellipsis">
|
|
9065
8870
|
Security
|
|
9066
8871
|
</span>
|
|
@@ -9069,7 +8874,7 @@
|
|
|
9069
8874
|
</li>
|
|
9070
8875
|
|
|
9071
8876
|
<li class="md-nav__item">
|
|
9072
|
-
<a href="#
|
|
8877
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9073
8878
|
<span class="md-ellipsis">
|
|
9074
8879
|
Fixed
|
|
9075
8880
|
</span>
|
|
@@ -9078,7 +8883,7 @@
|
|
|
9078
8883
|
</li>
|
|
9079
8884
|
|
|
9080
8885
|
<li class="md-nav__item">
|
|
9081
|
-
<a href="#
|
|
8886
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9082
8887
|
<span class="md-ellipsis">
|
|
9083
8888
|
Documentation
|
|
9084
8889
|
</span>
|
|
@@ -9087,7 +8892,7 @@
|
|
|
9087
8892
|
</li>
|
|
9088
8893
|
|
|
9089
8894
|
<li class="md-nav__item">
|
|
9090
|
-
<a href="#
|
|
8895
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9091
8896
|
<span class="md-ellipsis">
|
|
9092
8897
|
Housekeeping
|
|
9093
8898
|
</span>
|
|
@@ -9111,7 +8916,7 @@
|
|
|
9111
8916
|
<ul class="md-nav__list">
|
|
9112
8917
|
|
|
9113
8918
|
<li class="md-nav__item">
|
|
9114
|
-
<a href="#
|
|
8919
|
+
<a href="#security_3" class="md-nav__link">
|
|
9115
8920
|
<span class="md-ellipsis">
|
|
9116
8921
|
Security
|
|
9117
8922
|
</span>
|
|
@@ -9120,7 +8925,7 @@
|
|
|
9120
8925
|
</li>
|
|
9121
8926
|
|
|
9122
8927
|
<li class="md-nav__item">
|
|
9123
|
-
<a href="#
|
|
8928
|
+
<a href="#added_4" class="md-nav__link">
|
|
9124
8929
|
<span class="md-ellipsis">
|
|
9125
8930
|
Added
|
|
9126
8931
|
</span>
|
|
@@ -9129,7 +8934,7 @@
|
|
|
9129
8934
|
</li>
|
|
9130
8935
|
|
|
9131
8936
|
<li class="md-nav__item">
|
|
9132
|
-
<a href="#
|
|
8937
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9133
8938
|
<span class="md-ellipsis">
|
|
9134
8939
|
Changed
|
|
9135
8940
|
</span>
|
|
@@ -9138,7 +8943,7 @@
|
|
|
9138
8943
|
</li>
|
|
9139
8944
|
|
|
9140
8945
|
<li class="md-nav__item">
|
|
9141
|
-
<a href="#
|
|
8946
|
+
<a href="#removed_2" class="md-nav__link">
|
|
9142
8947
|
<span class="md-ellipsis">
|
|
9143
8948
|
Removed
|
|
9144
8949
|
</span>
|
|
@@ -9147,7 +8952,7 @@
|
|
|
9147
8952
|
</li>
|
|
9148
8953
|
|
|
9149
8954
|
<li class="md-nav__item">
|
|
9150
|
-
<a href="#
|
|
8955
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9151
8956
|
<span class="md-ellipsis">
|
|
9152
8957
|
Fixed
|
|
9153
8958
|
</span>
|
|
@@ -9156,7 +8961,7 @@
|
|
|
9156
8961
|
</li>
|
|
9157
8962
|
|
|
9158
8963
|
<li class="md-nav__item">
|
|
9159
|
-
<a href="#
|
|
8964
|
+
<a href="#dependencies" class="md-nav__link">
|
|
9160
8965
|
<span class="md-ellipsis">
|
|
9161
8966
|
Dependencies
|
|
9162
8967
|
</span>
|
|
@@ -9165,7 +8970,7 @@
|
|
|
9165
8970
|
</li>
|
|
9166
8971
|
|
|
9167
8972
|
<li class="md-nav__item">
|
|
9168
|
-
<a href="#
|
|
8973
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9169
8974
|
<span class="md-ellipsis">
|
|
9170
8975
|
Housekeeping
|
|
9171
8976
|
</span>
|
|
@@ -9189,7 +8994,7 @@
|
|
|
9189
8994
|
<ul class="md-nav__list">
|
|
9190
8995
|
|
|
9191
8996
|
<li class="md-nav__item">
|
|
9192
|
-
<a href="#
|
|
8997
|
+
<a href="#security_4" class="md-nav__link">
|
|
9193
8998
|
<span class="md-ellipsis">
|
|
9194
8999
|
Security
|
|
9195
9000
|
</span>
|
|
@@ -9198,7 +9003,7 @@
|
|
|
9198
9003
|
</li>
|
|
9199
9004
|
|
|
9200
9005
|
<li class="md-nav__item">
|
|
9201
|
-
<a href="#
|
|
9006
|
+
<a href="#added_5" class="md-nav__link">
|
|
9202
9007
|
<span class="md-ellipsis">
|
|
9203
9008
|
Added
|
|
9204
9009
|
</span>
|
|
@@ -9207,7 +9012,7 @@
|
|
|
9207
9012
|
</li>
|
|
9208
9013
|
|
|
9209
9014
|
<li class="md-nav__item">
|
|
9210
|
-
<a href="#
|
|
9015
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9211
9016
|
<span class="md-ellipsis">
|
|
9212
9017
|
Changed
|
|
9213
9018
|
</span>
|
|
@@ -9216,7 +9021,7 @@
|
|
|
9216
9021
|
</li>
|
|
9217
9022
|
|
|
9218
9023
|
<li class="md-nav__item">
|
|
9219
|
-
<a href="#
|
|
9024
|
+
<a href="#removed_3" class="md-nav__link">
|
|
9220
9025
|
<span class="md-ellipsis">
|
|
9221
9026
|
Removed
|
|
9222
9027
|
</span>
|
|
@@ -9225,7 +9030,7 @@
|
|
|
9225
9030
|
</li>
|
|
9226
9031
|
|
|
9227
9032
|
<li class="md-nav__item">
|
|
9228
|
-
<a href="#
|
|
9033
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9229
9034
|
<span class="md-ellipsis">
|
|
9230
9035
|
Fixed
|
|
9231
9036
|
</span>
|
|
@@ -9234,7 +9039,7 @@
|
|
|
9234
9039
|
</li>
|
|
9235
9040
|
|
|
9236
9041
|
<li class="md-nav__item">
|
|
9237
|
-
<a href="#
|
|
9042
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9238
9043
|
<span class="md-ellipsis">
|
|
9239
9044
|
Dependencies
|
|
9240
9045
|
</span>
|
|
@@ -9243,7 +9048,7 @@
|
|
|
9243
9048
|
</li>
|
|
9244
9049
|
|
|
9245
9050
|
<li class="md-nav__item">
|
|
9246
|
-
<a href="#
|
|
9051
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9247
9052
|
<span class="md-ellipsis">
|
|
9248
9053
|
Documentation
|
|
9249
9054
|
</span>
|
|
@@ -9252,7 +9057,7 @@
|
|
|
9252
9057
|
</li>
|
|
9253
9058
|
|
|
9254
9059
|
<li class="md-nav__item">
|
|
9255
|
-
<a href="#
|
|
9060
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9256
9061
|
<span class="md-ellipsis">
|
|
9257
9062
|
Housekeeping
|
|
9258
9063
|
</span>
|
|
@@ -9276,7 +9081,7 @@
|
|
|
9276
9081
|
<ul class="md-nav__list">
|
|
9277
9082
|
|
|
9278
9083
|
<li class="md-nav__item">
|
|
9279
|
-
<a href="#
|
|
9084
|
+
<a href="#added_6" class="md-nav__link">
|
|
9280
9085
|
<span class="md-ellipsis">
|
|
9281
9086
|
Added
|
|
9282
9087
|
</span>
|
|
@@ -9285,7 +9090,7 @@
|
|
|
9285
9090
|
</li>
|
|
9286
9091
|
|
|
9287
9092
|
<li class="md-nav__item">
|
|
9288
|
-
<a href="#
|
|
9093
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9289
9094
|
<span class="md-ellipsis">
|
|
9290
9095
|
Changed
|
|
9291
9096
|
</span>
|
|
@@ -9294,7 +9099,7 @@
|
|
|
9294
9099
|
</li>
|
|
9295
9100
|
|
|
9296
9101
|
<li class="md-nav__item">
|
|
9297
|
-
<a href="#
|
|
9102
|
+
<a href="#removed_4" class="md-nav__link">
|
|
9298
9103
|
<span class="md-ellipsis">
|
|
9299
9104
|
Removed
|
|
9300
9105
|
</span>
|
|
@@ -9303,7 +9108,7 @@
|
|
|
9303
9108
|
</li>
|
|
9304
9109
|
|
|
9305
9110
|
<li class="md-nav__item">
|
|
9306
|
-
<a href="#
|
|
9111
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9307
9112
|
<span class="md-ellipsis">
|
|
9308
9113
|
Fixed
|
|
9309
9114
|
</span>
|
|
@@ -9312,7 +9117,7 @@
|
|
|
9312
9117
|
</li>
|
|
9313
9118
|
|
|
9314
9119
|
<li class="md-nav__item">
|
|
9315
|
-
<a href="#
|
|
9120
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9316
9121
|
<span class="md-ellipsis">
|
|
9317
9122
|
Documentation
|
|
9318
9123
|
</span>
|
|
@@ -9321,7 +9126,7 @@
|
|
|
9321
9126
|
</li>
|
|
9322
9127
|
|
|
9323
9128
|
<li class="md-nav__item">
|
|
9324
|
-
<a href="#
|
|
9129
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9325
9130
|
<span class="md-ellipsis">
|
|
9326
9131
|
Housekeeping
|
|
9327
9132
|
</span>
|
|
@@ -9345,7 +9150,7 @@
|
|
|
9345
9150
|
<ul class="md-nav__list">
|
|
9346
9151
|
|
|
9347
9152
|
<li class="md-nav__item">
|
|
9348
|
-
<a href="#
|
|
9153
|
+
<a href="#security_5" class="md-nav__link">
|
|
9349
9154
|
<span class="md-ellipsis">
|
|
9350
9155
|
Security
|
|
9351
9156
|
</span>
|
|
@@ -9354,7 +9159,7 @@
|
|
|
9354
9159
|
</li>
|
|
9355
9160
|
|
|
9356
9161
|
<li class="md-nav__item">
|
|
9357
|
-
<a href="#
|
|
9162
|
+
<a href="#added_7" class="md-nav__link">
|
|
9358
9163
|
<span class="md-ellipsis">
|
|
9359
9164
|
Added
|
|
9360
9165
|
</span>
|
|
@@ -9363,7 +9168,7 @@
|
|
|
9363
9168
|
</li>
|
|
9364
9169
|
|
|
9365
9170
|
<li class="md-nav__item">
|
|
9366
|
-
<a href="#
|
|
9171
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9367
9172
|
<span class="md-ellipsis">
|
|
9368
9173
|
Changed
|
|
9369
9174
|
</span>
|
|
@@ -9372,7 +9177,7 @@
|
|
|
9372
9177
|
</li>
|
|
9373
9178
|
|
|
9374
9179
|
<li class="md-nav__item">
|
|
9375
|
-
<a href="#
|
|
9180
|
+
<a href="#removed_5" class="md-nav__link">
|
|
9376
9181
|
<span class="md-ellipsis">
|
|
9377
9182
|
Removed
|
|
9378
9183
|
</span>
|
|
@@ -9381,7 +9186,7 @@
|
|
|
9381
9186
|
</li>
|
|
9382
9187
|
|
|
9383
9188
|
<li class="md-nav__item">
|
|
9384
|
-
<a href="#
|
|
9189
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9385
9190
|
<span class="md-ellipsis">
|
|
9386
9191
|
Fixed
|
|
9387
9192
|
</span>
|
|
@@ -9390,7 +9195,7 @@
|
|
|
9390
9195
|
</li>
|
|
9391
9196
|
|
|
9392
9197
|
<li class="md-nav__item">
|
|
9393
|
-
<a href="#
|
|
9198
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9394
9199
|
<span class="md-ellipsis">
|
|
9395
9200
|
Documentation
|
|
9396
9201
|
</span>
|
|
@@ -9399,7 +9204,7 @@
|
|
|
9399
9204
|
</li>
|
|
9400
9205
|
|
|
9401
9206
|
<li class="md-nav__item">
|
|
9402
|
-
<a href="#
|
|
9207
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9403
9208
|
<span class="md-ellipsis">
|
|
9404
9209
|
Housekeeping
|
|
9405
9210
|
</span>
|
|
@@ -9423,7 +9228,7 @@
|
|
|
9423
9228
|
<ul class="md-nav__list">
|
|
9424
9229
|
|
|
9425
9230
|
<li class="md-nav__item">
|
|
9426
|
-
<a href="#
|
|
9231
|
+
<a href="#added_8" class="md-nav__link">
|
|
9427
9232
|
<span class="md-ellipsis">
|
|
9428
9233
|
Added
|
|
9429
9234
|
</span>
|
|
@@ -9432,7 +9237,7 @@
|
|
|
9432
9237
|
</li>
|
|
9433
9238
|
|
|
9434
9239
|
<li class="md-nav__item">
|
|
9435
|
-
<a href="#
|
|
9240
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9436
9241
|
<span class="md-ellipsis">
|
|
9437
9242
|
Changed
|
|
9438
9243
|
</span>
|
|
@@ -9441,7 +9246,7 @@
|
|
|
9441
9246
|
</li>
|
|
9442
9247
|
|
|
9443
9248
|
<li class="md-nav__item">
|
|
9444
|
-
<a href="#
|
|
9249
|
+
<a href="#removed_6" class="md-nav__link">
|
|
9445
9250
|
<span class="md-ellipsis">
|
|
9446
9251
|
Removed
|
|
9447
9252
|
</span>
|
|
@@ -9450,7 +9255,7 @@
|
|
|
9450
9255
|
</li>
|
|
9451
9256
|
|
|
9452
9257
|
<li class="md-nav__item">
|
|
9453
|
-
<a href="#
|
|
9258
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9454
9259
|
<span class="md-ellipsis">
|
|
9455
9260
|
Fixed
|
|
9456
9261
|
</span>
|
|
@@ -9459,7 +9264,7 @@
|
|
|
9459
9264
|
</li>
|
|
9460
9265
|
|
|
9461
9266
|
<li class="md-nav__item">
|
|
9462
|
-
<a href="#
|
|
9267
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9463
9268
|
<span class="md-ellipsis">
|
|
9464
9269
|
Housekeeping
|
|
9465
9270
|
</span>
|
|
@@ -9541,62 +9346,8 @@
|
|
|
9541
9346
|
<h4 id="remove-hide_restricted_ui-toggle-4787">Remove <code>HIDE_RESTRICTED_UI</code> Toggle (<a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a>)<a class="headerlink" href="#remove-hide_restricted_ui-toggle-4787" title="Permanent link">¶</a></h4>
|
|
9542
9347
|
<p>Support for <code>HIDE_RESTRICTED_UI</code> has been removed. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</p>
|
|
9543
9348
|
<!-- towncrier release notes start -->
|
|
9544
|
-
<h2 id="v219-2024-03-25">v2.1.9 (2024-03-25)<a class="headerlink" href="#v219-2024-03-25" title="Permanent link">¶</a></h2>
|
|
9545
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
9546
|
-
<ul>
|
|
9547
|
-
<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>
|
|
9548
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9549
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added narrower permissions enforcement on the endpoints <code>/extras/git-repositories/<uuid:pk>/sync/</code> and <code>/extras/git-repositories/<uuid:pk>/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>
|
|
9550
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9551
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added narrower permissions enforcement on all <code><app>/<model>/<uuid>/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>
|
|
9552
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9553
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9554
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9555
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9556
|
-
</ul>
|
|
9557
|
-
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
9558
|
-
<ul>
|
|
9559
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
9560
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
9561
|
-
</ul>
|
|
9562
|
-
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
9563
|
-
<ul>
|
|
9564
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9565
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication by default on the <code>nautobot.apps.api.APIRootView</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>
|
|
9566
|
-
</ul>
|
|
9567
|
-
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
9568
|
-
<ul>
|
|
9569
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Removed the URL endpoints <code>/api/users/users/my-profile/</code>, <code>/api/users/users/session/</code>, <code>/api/users/tokens/authenticate/</code>, and <code>/api/users/tokens/logout/</code> as they are unused at this time.</li>
|
|
9570
|
-
</ul>
|
|
9571
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
9572
|
-
<ul>
|
|
9573
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5413">#5413</a> - Updated Device "LLDP Neighbors" detail panel to handle LLDP neighbors with MAC address as port-id.</li>
|
|
9574
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for GraphiQL page <code>/graphql</code>.</li>
|
|
9575
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for Admin page <code>/admin</code>.</li>
|
|
9576
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for Django Rest Framework (DRF) page <code>/api/</code>.</li>
|
|
9577
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Improved footer responsiveness for certain media sizes.</li>
|
|
9578
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</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>
|
|
9579
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5466">#5466</a> - Remove duplicated location param in vlan table.</li>
|
|
9580
|
-
</ul>
|
|
9581
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
9582
|
-
<ul>
|
|
9583
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in pyproject.toml that added <code>coverage</code> as a nautobot dependency instead of a development dependency.</li>
|
|
9584
|
-
</ul>
|
|
9585
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
9586
|
-
<ul>
|
|
9587
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5340">#5340</a> - Added installation documentation about recommended health-checks for Docker Compose and Kubernetes.</li>
|
|
9588
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
9589
|
-
</ul>
|
|
9590
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
9591
|
-
<ul>
|
|
9592
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/core/api/routers.py#21</code> with with a plain <code>dict</code> instance.</li>
|
|
9593
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/dcim/models/racks.py#275</code> with a plain <code>dict</code> instance.</li>
|
|
9594
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
9595
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
9596
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
9597
|
-
</ul>
|
|
9598
9349
|
<h2 id="v218-2024-03-18">v2.1.8 (2024-03-18)<a class="headerlink" href="#v218-2024-03-18" title="Permanent link">¶</a></h2>
|
|
9599
|
-
<h3 id="
|
|
9350
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
9600
9351
|
<ul>
|
|
9601
9352
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
9602
9353
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_minimum</code> and <code>validation_maximum</code> as length constraints on a Custom Field of type <code>Text</code>, <code>URL</code>, <code>JSON</code>, <code>Markdown</code>, <code>Selection</code>, or <code>Multiple Selection</code>.</li>
|
|
@@ -9606,16 +9357,16 @@
|
|
|
9606
9357
|
<li><a href="https://github.com/nautobot/nautobot/issues/5402">#5402</a> - Added interface types <code>CXP (100GE)</code>, <code>DSFP (100GE)</code>, <code>SFP-DD (100GE)</code>, <code>QSFP-DD (100GE)</code>, <code>QSFP-DD (200GE)</code>, <code>CFP2 (400GE)</code>, <code>OSFP-RHS (400GE)</code>, <code>CDFP (400GE)</code>, <code>CPF8 (400GE)</code>, <code>SFP+ (32GFC)</code>, <code>SFP-DD (64GFC)</code>, and <code>SFP+ (64GFC)</code>.</li>
|
|
9607
9358
|
<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>
|
|
9608
9359
|
</ul>
|
|
9609
|
-
<h3 id="
|
|
9360
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
9610
9361
|
<ul>
|
|
9611
9362
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use django-redis cache instead.</li>
|
|
9612
9363
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
|
|
9613
9364
|
</ul>
|
|
9614
|
-
<h3 id="
|
|
9365
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
9615
9366
|
<ul>
|
|
9616
9367
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Removed the hard-coded 255-character limit on custom fields of type <code>Text</code>.</li>
|
|
9617
9368
|
</ul>
|
|
9618
|
-
<h3 id="
|
|
9369
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
9619
9370
|
<ul>
|
|
9620
9371
|
<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>
|
|
9621
9372
|
<li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Fixed incorrect permission for "Add Tenant" button in the navigation menu.</li>
|
|
@@ -9623,28 +9374,28 @@
|
|
|
9623
9374
|
<li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
|
|
9624
9375
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Fixed an issue with stale CustomField, ComputedField, Relationship, and TreeModel caches that caused incorrect data at times.</li>
|
|
9625
9376
|
</ul>
|
|
9626
|
-
<h3 id="
|
|
9377
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
9627
9378
|
<ul>
|
|
9628
9379
|
<li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
|
|
9629
9380
|
<li><a href="https://github.com/nautobot/nautobot/issues/5421">#5421</a> - Added release-notes for versions 1.6.11 through 1.6.14.</li>
|
|
9630
9381
|
</ul>
|
|
9631
|
-
<h3 id="
|
|
9382
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
9632
9383
|
<ul>
|
|
9633
9384
|
<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>
|
|
9634
9385
|
<li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
|
|
9635
9386
|
<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>
|
|
9636
9387
|
</ul>
|
|
9637
9388
|
<h2 id="v217-2024-03-05">v2.1.7 (2024-03-05)<a class="headerlink" href="#v217-2024-03-05" title="Permanent link">¶</a></h2>
|
|
9638
|
-
<h3 id="
|
|
9389
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
9639
9390
|
<ul>
|
|
9640
9391
|
<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>
|
|
9641
9392
|
</ul>
|
|
9642
9393
|
<h2 id="v216-2024-03-04">v2.1.6 (2024-03-04)<a class="headerlink" href="#v216-2024-03-04" title="Permanent link">¶</a></h2>
|
|
9643
|
-
<h3 id="
|
|
9394
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
9644
9395
|
<ul>
|
|
9645
9396
|
<li><a href="https://github.com/nautobot/nautobot/issues/5319">#5319</a> - Updated <code>cryptography</code> to 42.0.4 due to CVE-2024-26130. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
9646
9397
|
</ul>
|
|
9647
|
-
<h3 id="
|
|
9398
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
9648
9399
|
<ul>
|
|
9649
9400
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Collapse Capable Side Navbar: Side Navbar is now able to be expanded and collapsed</li>
|
|
9650
9401
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Expandable Main Content: The Main Content part of the UI grows as the Side Navbar collapses and shrinks as the Side Navbar expands.</li>
|
|
@@ -9653,11 +9404,11 @@
|
|
|
9653
9404
|
<li><a href="https://github.com/nautobot/nautobot/issues/5329">#5329</a> - Added caching of <code>ChangeLoggedModelsQuery().as_queryset()</code> to improve performance when saving many objects in a change-logged context.</li>
|
|
9654
9405
|
<li><a href="https://github.com/nautobot/nautobot/issues/5361">#5361</a> - Added <code>nautobot.core.testing.forms.FormTestCases</code> base class and added it to <code>nautobot.apps.testing</code> as well.</li>
|
|
9655
9406
|
</ul>
|
|
9656
|
-
<h3 id="
|
|
9407
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
9657
9408
|
<ul>
|
|
9658
9409
|
<li><a href="https://github.com/nautobot/nautobot/issues/5082">#5082</a> - Adjusted Edit / Create panels to occupy more page width on medium and large screens.</li>
|
|
9659
9410
|
</ul>
|
|
9660
|
-
<h3 id="
|
|
9411
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
9661
9412
|
<ul>
|
|
9662
9413
|
<li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
|
|
9663
9414
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Fixed Brand Icon mouseover Background: Fix for mouseover effect on the Brand / Icon (was flashing white background vs being transparent) when in dark mode.</li>
|
|
@@ -9674,7 +9425,7 @@
|
|
|
9674
9425
|
<li><a href="https://github.com/nautobot/nautobot/issues/5346">#5346</a> - Fixed device LLDP view to work when interface names include a space.</li>
|
|
9675
9426
|
<li><a href="https://github.com/nautobot/nautobot/issues/5365">#5365</a> - Fixed <code>invalidate_max_depth_cache</code> itself calculating <code>max_depth</code> on querysets without tree fields.</li>
|
|
9676
9427
|
</ul>
|
|
9677
|
-
<h3 id="
|
|
9428
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
9678
9429
|
<ul>
|
|
9679
9430
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
|
|
9680
9431
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
|
|
@@ -9688,24 +9439,24 @@
|
|
|
9688
9439
|
<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>
|
|
9689
9440
|
</ul>
|
|
9690
9441
|
<h2 id="v215-2024-02-21">v2.1.5 (2024-02-21)<a class="headerlink" href="#v215-2024-02-21" title="Permanent link">¶</a></h2>
|
|
9691
|
-
<h3 id="
|
|
9442
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
9692
9443
|
<ul>
|
|
9693
9444
|
<li><a href="https://github.com/nautobot/nautobot/pull/5303">#5303</a> - Updated <code>cryptography</code> to 42.0.2 due to CVE-2024-0727. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
9694
9445
|
</ul>
|
|
9695
|
-
<h3 id="
|
|
9446
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
9696
9447
|
<ul>
|
|
9697
9448
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Added <code>latest</code> and <code>latest-py<version></code> tags to the <code>nautobot</code> Docker images published for the latest stable release of Nautobot.</li>
|
|
9698
9449
|
<li><a href="https://github.com/nautobot/nautobot/issues/5210">#5210</a> - Added <code>METRICS_AUTHENTICATED</code> setting to control authentication for the HTTP endpoint <code>/metrics</code>.</li>
|
|
9699
9450
|
<li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting display_field on DynamicModelChoiceField to nested values in suggested choices list.</li>
|
|
9700
9451
|
</ul>
|
|
9701
|
-
<h3 id="
|
|
9452
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
9702
9453
|
<ul>
|
|
9703
9454
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Changed the tagging of <code>nautobot-dev</code> Docker images to reserve the <code>latest</code> and <code>latest-py<version></code> tags for the latest stable release of Nautobot, rather than the latest build from the <code>develop</code> branch.</li>
|
|
9704
9455
|
<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>
|
|
9705
9456
|
<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>
|
|
9706
9457
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
|
|
9707
9458
|
</ul>
|
|
9708
|
-
<h3 id="
|
|
9459
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
9709
9460
|
<ul>
|
|
9710
9461
|
<li><a href="https://github.com/nautobot/nautobot/issues/5058">#5058</a> - Changed more filter parameters from <code>location_id</code> to <code>location</code> in <code>virtualization/forms.py</code>.</li>
|
|
9711
9462
|
<li><a href="https://github.com/nautobot/nautobot/issues/5121">#5121</a> - Fixed an issue where deleting a git repository resulted in a job result stuck in running state.</li>
|
|
@@ -9714,38 +9465,38 @@
|
|
|
9714
9465
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
|
|
9715
9466
|
<li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
|
|
9716
9467
|
</ul>
|
|
9717
|
-
<h3 id="
|
|
9468
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
9718
9469
|
<ul>
|
|
9719
9470
|
<li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the TIME_ZONE setting consistent on Nautobot web servers and Celery Beat servers.</li>
|
|
9720
9471
|
<li><a href="https://github.com/nautobot/nautobot/issues/5297">#5297</a> - Updated the low level application stack diagram to orient user traffic coming from the top.</li>
|
|
9721
9472
|
</ul>
|
|
9722
|
-
<h3 id="
|
|
9473
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
9723
9474
|
<ul>
|
|
9724
9475
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
|
|
9725
9476
|
</ul>
|
|
9726
9477
|
<h2 id="v214-2024-02-08">v2.1.4 (2024-02-08)<a class="headerlink" href="#v214-2024-02-08" title="Permanent link">¶</a></h2>
|
|
9727
|
-
<h3 id="
|
|
9478
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
9728
9479
|
<ul>
|
|
9729
9480
|
<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>
|
|
9730
9481
|
</ul>
|
|
9731
|
-
<h3 id="
|
|
9482
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
9732
9483
|
<ul>
|
|
9733
9484
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Fixed <code>TypeError</code> and similar exceptions thrown when rendering certain App data tables in v2.1.3.</li>
|
|
9734
9485
|
</ul>
|
|
9735
|
-
<h3 id="
|
|
9486
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
9736
9487
|
<ul>
|
|
9737
9488
|
<li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
|
|
9738
9489
|
</ul>
|
|
9739
|
-
<h3 id="
|
|
9490
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
9740
9491
|
<ul>
|
|
9741
9492
|
<li><a href="https://github.com/nautobot/nautobot/issues/5240">#5240</a> - Changed test config to use <code>constance.backends.memory.MemoryBackend</code> to avoid intermittent failures in parallel tests.</li>
|
|
9742
9493
|
</ul>
|
|
9743
9494
|
<h2 id="v213-2024-02-05">v2.1.3 (2024-02-05)<a class="headerlink" href="#v213-2024-02-05" title="Permanent link">¶</a></h2>
|
|
9744
|
-
<h3 id="
|
|
9495
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
9745
9496
|
<ul>
|
|
9746
9497
|
<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>
|
|
9747
9498
|
</ul>
|
|
9748
|
-
<h3 id="
|
|
9499
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
9749
9500
|
<ul>
|
|
9750
9501
|
<li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
|
|
9751
9502
|
<li><a href="https://github.com/nautobot/nautobot/issues/5012">#5012</a> - Added database indexes to the ObjectChange model to improve performance when filtering by <code>user_name</code>, <code>changed_object</code>, or <code>related_object</code>, and also by <code>changed_object</code> in combination with <code>user</code> or <code>user_name</code>.</li>
|
|
@@ -9753,7 +9504,7 @@
|
|
|
9753
9504
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
|
|
9754
9505
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added behavior of resetting navbar state when the "home" link is clicked.</li>
|
|
9755
9506
|
</ul>
|
|
9756
|
-
<h3 id="
|
|
9507
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
9757
9508
|
<ul>
|
|
9758
9509
|
<li><a href="https://github.com/nautobot/nautobot/issues/5149">#5149</a> - Updated the Job List to show Job Hook Receiver and Job Button Receiver Jobs, which were previously being hidden from view.</li>
|
|
9759
9510
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown link behavior to turn orange when active/clicked; state is saved.</li>
|
|
@@ -9762,12 +9513,12 @@
|
|
|
9762
9513
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
|
|
9763
9514
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
|
|
9764
9515
|
</ul>
|
|
9765
|
-
<h3 id="
|
|
9516
|
+
<h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">¶</a></h3>
|
|
9766
9517
|
<ul>
|
|
9767
9518
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
|
|
9768
9519
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
|
|
9769
9520
|
</ul>
|
|
9770
|
-
<h3 id="
|
|
9521
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
9771
9522
|
<ul>
|
|
9772
9523
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
9773
9524
|
<li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
|
|
@@ -9781,14 +9532,14 @@
|
|
|
9781
9532
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
|
|
9782
9533
|
<li><a href="https://github.com/nautobot/nautobot/issues/5198">#5198</a> - Fixed error in device and rack dropdowns when attempting to add an Interface to an InterfaceRedundancyGroup.</li>
|
|
9783
9534
|
</ul>
|
|
9784
|
-
<h3 id="
|
|
9535
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
9785
9536
|
<ul>
|
|
9786
9537
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
|
|
9787
9538
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
|
|
9788
9539
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
|
|
9789
9540
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
|
|
9790
9541
|
</ul>
|
|
9791
|
-
<h3 id="
|
|
9542
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
9792
9543
|
<ul>
|
|
9793
9544
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mkdocs-section-index</code> documentation dependency to 0.3.8.</li>
|
|
9794
9545
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
|
|
@@ -9800,30 +9551,30 @@
|
|
|
9800
9551
|
<li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
|
|
9801
9552
|
</ul>
|
|
9802
9553
|
<h2 id="v212-2024-01-22">v2.1.2 (2024-01-22)<a class="headerlink" href="#v212-2024-01-22" title="Permanent link">¶</a></h2>
|
|
9803
|
-
<h3 id="
|
|
9554
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
9804
9555
|
<ul>
|
|
9805
9556
|
<li><a href="https://github.com/nautobot/nautobot/issues/5054">#5054</a> - Added validation of redirect URLs to the "Add a new IP Address" and "Assign an IP Address" views.</li>
|
|
9806
9557
|
<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>
|
|
9807
9558
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</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>
|
|
9808
9559
|
</ul>
|
|
9809
|
-
<h3 id="
|
|
9560
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
9810
9561
|
<ul>
|
|
9811
9562
|
<li><a href="https://github.com/nautobot/nautobot/issues/3877">#3877</a> - Added global filtering to Job Result log table, enabling search across all pages.</li>
|
|
9812
9563
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Enhanced the <code>sanitize</code> function to also handle sanitization of lists and tuples of strings.</li>
|
|
9813
9564
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</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>
|
|
9814
9565
|
</ul>
|
|
9815
|
-
<h3 id="
|
|
9566
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
9816
9567
|
<ul>
|
|
9817
9568
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested user has permission to run the requested job.</li>
|
|
9818
9569
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested job is installed and enabled.</li>
|
|
9819
9570
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether a Celery worker is running when invoked without the <code>--local</code> flag.</li>
|
|
9820
9571
|
<li><a href="https://github.com/nautobot/nautobot/issues/5131">#5131</a> - Improved the performance of the <code>/api/dcim/locations/</code> REST API.</li>
|
|
9821
9572
|
</ul>
|
|
9822
|
-
<h3 id="
|
|
9573
|
+
<h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">¶</a></h3>
|
|
9823
9574
|
<ul>
|
|
9824
9575
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
|
|
9825
9576
|
</ul>
|
|
9826
|
-
<h3 id="
|
|
9577
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
9827
9578
|
<ul>
|
|
9828
9579
|
<li><a href="https://github.com/nautobot/nautobot/issues/4075">#4075</a> - Fixed sorting of Device Bays list view by installed device status.</li>
|
|
9829
9580
|
<li><a href="https://github.com/nautobot/nautobot/issues/4444">#4444</a> - Fixed Sync Git Repository requires non-matching permissions for UI vs API.</li>
|
|
@@ -9849,17 +9600,17 @@
|
|
|
9849
9600
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Fixed incorrect JobResult data when using <code>nautobot-server runjob --local</code> or <code>JobResult.execute_job()</code>.</li>
|
|
9850
9601
|
<li><a href="https://github.com/nautobot/nautobot/issues/5111">#5111</a> - Fixed rack group and rack filtering by the location selected in the device bulk edit form.</li>
|
|
9851
9602
|
</ul>
|
|
9852
|
-
<h3 id="
|
|
9603
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
9853
9604
|
<ul>
|
|
9854
9605
|
<li><a href="https://github.com/nautobot/nautobot/issues/5083">#5083</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>
|
|
9855
9606
|
<li><a href="https://github.com/nautobot/nautobot/issues/5086">#5086</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>
|
|
9856
9607
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
9857
9608
|
</ul>
|
|
9858
|
-
<h3 id="
|
|
9609
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
9859
9610
|
<ul>
|
|
9860
9611
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Added a link to the <code>cookiecutter-nautobot-app</code> project in the App developer documentation.</li>
|
|
9861
9612
|
</ul>
|
|
9862
|
-
<h3 id="
|
|
9613
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
9863
9614
|
<ul>
|
|
9864
9615
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
|
|
9865
9616
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
|
|
@@ -9869,20 +9620,20 @@
|
|
|
9869
9620
|
<li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
|
|
9870
9621
|
</ul>
|
|
9871
9622
|
<h2 id="v211-2024-01-08">v2.1.1 (2024-01-08)<a class="headerlink" href="#v211-2024-01-08" title="Permanent link">¶</a></h2>
|
|
9872
|
-
<h3 id="
|
|
9623
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
9873
9624
|
<ul>
|
|
9874
9625
|
<li><a href="https://github.com/nautobot/nautobot/issues/5046">#5046</a> - Updated the LocationType clone process to pre-populate the original object's parent, nestable and content type fields.</li>
|
|
9875
9626
|
</ul>
|
|
9876
|
-
<h3 id="
|
|
9627
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
9877
9628
|
<ul>
|
|
9878
9629
|
<li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
|
|
9879
9630
|
</ul>
|
|
9880
|
-
<h3 id="
|
|
9631
|
+
<h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">¶</a></h3>
|
|
9881
9632
|
<ul>
|
|
9882
9633
|
<li><a href="https://github.com/nautobot/nautobot/issues/5033">#5033</a> - Removed alpha UI from the main code base for now (it still exists in a prototype branch) to reduce the burden of maintaining its dependencies in the meantime.</li>
|
|
9883
9634
|
<li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
|
|
9884
9635
|
</ul>
|
|
9885
|
-
<h3 id="
|
|
9636
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
9886
9637
|
<ul>
|
|
9887
9638
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed an error when attempting to "Save Changes" to an existing GraphQL saved query via the GraphiQL UI.</li>
|
|
9888
9639
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed incorrect positioning of the "Save Changes" button in the "Queries" menu in the GraphiQL UI.</li>
|
|
@@ -9891,14 +9642,14 @@
|
|
|
9891
9642
|
<li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
|
|
9892
9643
|
<li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
|
|
9893
9644
|
</ul>
|
|
9894
|
-
<h3 id="
|
|
9645
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
9895
9646
|
<ul>
|
|
9896
9647
|
<li><a href="https://github.com/nautobot/nautobot/issues/5019">#5019</a> - Updated the documentation on the usage of the <code>nautobot-server runjob</code> management command.</li>
|
|
9897
9648
|
<li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
|
|
9898
9649
|
<li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
|
|
9899
9650
|
<li><a href="https://github.com/nautobot/nautobot/issues/5044">#5044</a> - Updated the documentation on <code>nautobot_database_ready</code> signal handlers with a warning.</li>
|
|
9900
9651
|
</ul>
|
|
9901
|
-
<h3 id="
|
|
9652
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
9902
9653
|
<ul>
|
|
9903
9654
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Updated <code>ruff</code> development dependency to <code>~0.1.10</code>.</li>
|
|
9904
9655
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Removed <code>black</code> and <code>flake8</code> as development dependencies as they're fully replaced by <code>ruff</code> now.</li>
|
|
@@ -9913,13 +9664,13 @@
|
|
|
9913
9664
|
<li><a href="https://github.com/nautobot/nautobot/issues/5055">#5055</a> - Removed <code>isort</code> as a development dependency as it's fully replaced by <code>ruff</code> now.</li>
|
|
9914
9665
|
</ul>
|
|
9915
9666
|
<h2 id="v210-2023-12-22">v2.1.0 (2023-12-22)<a class="headerlink" href="#v210-2023-12-22" title="Permanent link">¶</a></h2>
|
|
9916
|
-
<h3 id="
|
|
9667
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
9917
9668
|
<ul>
|
|
9918
9669
|
<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>
|
|
9919
9670
|
<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>
|
|
9920
9671
|
<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>
|
|
9921
9672
|
</ul>
|
|
9922
|
-
<h3 id="
|
|
9673
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
9923
9674
|
<ul>
|
|
9924
9675
|
<li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
|
|
9925
9676
|
<li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
|
|
@@ -9933,7 +9684,7 @@
|
|
|
9933
9684
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
|
|
9934
9685
|
<li><a href="https://github.com/nautobot/nautobot/issues/4989">#4989</a> - Added a link to the Advanced tab on detail views to easily open the object in the API browser.</li>
|
|
9935
9686
|
</ul>
|
|
9936
|
-
<h3 id="
|
|
9687
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
9937
9688
|
<ul>
|
|
9938
9689
|
<li><a href="https://github.com/nautobot/nautobot/issues/4884">#4884</a> - Added Bootstrap tooltips for all HTML elements with a <code>title</code> attribute.</li>
|
|
9939
9690
|
<li><a href="https://github.com/nautobot/nautobot/issues/4888">#4888</a> - Moved username and user actions menu from the top of the nav bar to the bottom.</li>
|
|
@@ -9944,12 +9695,12 @@
|
|
|
9944
9695
|
<li><a href="https://github.com/nautobot/nautobot/issues/4996">#4996</a> - Changed the order and help text of fields in the External Integration create and edit forms.</li>
|
|
9945
9696
|
<li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
|
|
9946
9697
|
</ul>
|
|
9947
|
-
<h3 id="
|
|
9698
|
+
<h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">¶</a></h3>
|
|
9948
9699
|
<ul>
|
|
9949
9700
|
<li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
|
|
9950
9701
|
<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>
|
|
9951
9702
|
</ul>
|
|
9952
|
-
<h3 id="
|
|
9703
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
9953
9704
|
<ul>
|
|
9954
9705
|
<li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
|
|
9955
9706
|
<li><a href="https://github.com/nautobot/nautobot/issues/4627">#4627</a> - Fixed JSON custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
|
|
@@ -9962,14 +9713,14 @@
|
|
|
9962
9713
|
<li><a href="https://github.com/nautobot/nautobot/issues/4968">#4968</a> - Fixed some cases in which the <code>ipam.0025</code> data migration might throw an exception due to invalid data.</li>
|
|
9963
9714
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
9964
9715
|
</ul>
|
|
9965
|
-
<h3 id="
|
|
9716
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
9966
9717
|
<ul>
|
|
9967
9718
|
<li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
|
|
9968
9719
|
<li><a href="https://github.com/nautobot/nautobot/issues/4736">#4736</a> - Documented <code>isnull</code> filter expression in v2.1 Release Overview.</li>
|
|
9969
9720
|
<li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
|
|
9970
9721
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Fixed up docstrings for a number of Job-related classes and methods.</li>
|
|
9971
9722
|
</ul>
|
|
9972
|
-
<h3 id="
|
|
9723
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
9973
9724
|
<ul>
|
|
9974
9725
|
<li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
|
|
9975
9726
|
<li><a href="https://github.com/nautobot/nautobot/issues/4896">#4896</a> - Added <code>/theme-preview/</code> view (only when <code>settings.DEBUG</code> is enabled) to preview various UI elements and layouts.</li>
|
|
@@ -9977,7 +9728,7 @@
|
|
|
9977
9728
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
9978
9729
|
</ul>
|
|
9979
9730
|
<h2 id="v210-beta1-2023-11-30">v2.1.0-beta.1 (2023-11-30)<a class="headerlink" href="#v210-beta1-2023-11-30" title="Permanent link">¶</a></h2>
|
|
9980
|
-
<h3 id="
|
|
9731
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
9981
9732
|
<ul>
|
|
9982
9733
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Added the ability to automatically apply <code>isnull</code> filters when model field is nullable.</li>
|
|
9983
9734
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Enhanced <code>status</code> filters to support filtering by ID (UUID) as an alternative to filtering by <code>name</code>.</li>
|
|
@@ -9997,7 +9748,7 @@
|
|
|
9997
9748
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added listing of related <code>files</code> to the <code>/api/extras/job-results/</code> REST API.</li>
|
|
9998
9749
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added read-only REST API for the FileProxy model (files generated by a Job run), including a <code>/download/</code> endpoint for downloading the file content.</li>
|
|
9999
9750
|
</ul>
|
|
10000
|
-
<h3 id="
|
|
9751
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
10001
9752
|
<ul>
|
|
10002
9753
|
<li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
|
|
10003
9754
|
<li><a href="https://github.com/nautobot/nautobot/issues/4745">#4745</a> - Changed object export (CSV, YAML, export-template) to run as a background task, avoiding HTTP timeouts when exporting thousands of objects in a single operation.</li>
|
|
@@ -10006,12 +9757,12 @@
|
|
|
10006
9757
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
|
|
10007
9758
|
<li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
|
|
10008
9759
|
</ul>
|
|
10009
|
-
<h3 id="
|
|
9760
|
+
<h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">¶</a></h3>
|
|
10010
9761
|
<ul>
|
|
10011
9762
|
<li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
|
|
10012
9763
|
<li><a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a> - Removed support for <code>HIDE_RESTRICTED_UI</code>. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</li>
|
|
10013
9764
|
</ul>
|
|
10014
|
-
<h3 id="
|
|
9765
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
10015
9766
|
<ul>
|
|
10016
9767
|
<li><a href="https://github.com/nautobot/nautobot/issues/4646">#4646</a> - Fixed a bug in <code>ObjectPermission</code> where <code>users.user</code> permissions could not be created.</li>
|
|
10017
9768
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
|
|
@@ -10019,7 +9770,7 @@
|
|
|
10019
9770
|
<li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps & lingering contenttypes referenced in changelog.</li>
|
|
10020
9771
|
<li><a href="https://github.com/nautobot/nautobot/issues/4882">#4882</a> - Fixed a regression in the rendering of the Jobs table view.</li>
|
|
10021
9772
|
</ul>
|
|
10022
|
-
<h3 id="
|
|
9773
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
10023
9774
|
<ul>
|
|
10024
9775
|
<li><a href="https://github.com/nautobot/nautobot/issues/3352">#3352</a> - Added a shared <code>media_root</code> volume to developer Docker Compose environment.</li>
|
|
10025
9776
|
<li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
|