nautobot 2.1.7__py3-none-any.whl → 2.1.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/api.py +1 -2
- nautobot/apps/utils.py +4 -0
- nautobot/apps/views.py +2 -0
- nautobot/circuits/api/urls.py +1 -2
- nautobot/circuits/api/views.py +0 -12
- nautobot/circuits/tests/integration/test_relationships.py +0 -4
- nautobot/core/api/routers.py +25 -3
- nautobot/core/api/utils.py +4 -0
- nautobot/core/api/views.py +21 -15
- nautobot/core/celery/schedulers.py +13 -0
- nautobot/core/choices.py +0 -21
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/tree_queries.py +29 -7
- nautobot/core/releases.py +1 -1
- nautobot/core/settings.py +9 -0
- nautobot/core/settings_funcs.py +0 -18
- nautobot/core/signals.py +5 -5
- nautobot/core/tasks.py +7 -3
- nautobot/core/templates/admin/base.html +23 -94
- nautobot/core/templates/generic/object_list.html +2 -0
- nautobot/core/templates/graphene/graphiql.html +18 -47
- nautobot/core/templates/inc/footer.html +5 -5
- nautobot/core/templates/inc/nav_menu.html +0 -7
- nautobot/core/templates/nautobot_config.py.j2 +6 -0
- nautobot/core/templates/rest_framework/api.html +12 -5
- nautobot/core/testing/mixins.py +13 -5
- nautobot/core/tests/integration/test_plugin_navbar.py +7 -21
- nautobot/core/tests/integration/test_view_authentication.py +67 -0
- nautobot/core/tests/runner.py +25 -2
- nautobot/core/tests/test_graphql.py +2 -14
- nautobot/core/tests/test_models.py +3 -3
- nautobot/core/tests/test_navigations.py +67 -10
- nautobot/core/tests/test_releases.py +9 -3
- nautobot/core/tests/test_views.py +23 -16
- nautobot/core/utils/lookup.py +124 -0
- nautobot/core/views/__init__.py +3 -7
- nautobot/core/views/generic.py +9 -0
- nautobot/dcim/api/urls.py +1 -2
- nautobot/dcim/api/views.py +1 -12
- nautobot/dcim/choices.py +56 -0
- nautobot/dcim/models/racks.py +1 -3
- nautobot/dcim/navigation.py +1 -1
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +67 -43
- nautobot/dcim/tests/test_api.py +3 -0
- nautobot/dcim/tests/test_filters.py +0 -28
- nautobot/dcim/views.py +5 -2
- nautobot/extras/api/urls.py +1 -2
- nautobot/extras/api/views.py +0 -10
- nautobot/extras/choices.py +14 -0
- nautobot/extras/models/customfields.py +93 -34
- nautobot/extras/models/groups.py +1 -1
- nautobot/extras/models/relationships.py +32 -19
- nautobot/extras/navigation.py +3 -2
- nautobot/extras/plugins/__init__.py +8 -0
- nautobot/extras/plugins/views.py +6 -9
- nautobot/extras/querysets.py +1 -1
- nautobot/extras/signals.py +12 -6
- nautobot/extras/templates/extras/customfield.html +22 -14
- nautobot/extras/templatetags/job_buttons.py +7 -0
- nautobot/extras/templatetags/plugins.py +5 -1
- nautobot/extras/tests/test_customfields.py +323 -287
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_jobs.py +2 -2
- nautobot/extras/tests/test_plugins.py +41 -0
- nautobot/extras/tests/test_relationships.py +31 -14
- nautobot/extras/tests/test_views.py +124 -1
- nautobot/extras/utils.py +7 -3
- nautobot/extras/views.py +10 -10
- nautobot/ipam/api/urls.py +1 -2
- nautobot/ipam/api/views.py +6 -13
- nautobot/ipam/tables.py +0 -1
- nautobot/ipam/tests/test_graphql.py +2 -3
- nautobot/ipam/views.py +12 -10
- nautobot/project-static/css/base.css +1 -0
- nautobot/project-static/docs/404.html +30 -2
- nautobot/project-static/docs/apps/index.html +30 -2
- nautobot/project-static/docs/apps/nautobot-apps.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +410 -410
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +386 -358
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +45 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +759 -602
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +528 -467
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +205 -109
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +30 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +1265 -785
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1827 -1746
- nautobot/project-static/docs/development/apps/api/configuration-view.html +30 -2
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/global-search.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/graphql.html +30 -2
- nautobot/project-static/docs/development/apps/api/models/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +31 -3
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +30 -2
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +30 -2
- nautobot/project-static/docs/development/apps/api/prometheus.html +30 -2
- nautobot/project-static/docs/development/apps/api/setup.html +30 -2
- nautobot/project-static/docs/development/apps/api/testing.html +33 -5
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +33 -5
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +13 -5559
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +5594 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +3 -3
- nautobot/project-static/docs/development/apps/api/views/base-template.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +44 -11
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +47 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/index.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/notes.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +30 -2
- nautobot/project-static/docs/development/apps/api/views/urls.html +30 -2
- nautobot/project-static/docs/development/apps/index.html +30 -2
- nautobot/project-static/docs/development/apps/migration/code-updates.html +30 -2
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +30 -2
- nautobot/project-static/docs/development/apps/migration/from-v1.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +30 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +30 -2
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +30 -2
- nautobot/project-static/docs/development/core/application-registry.html +30 -2
- nautobot/project-static/docs/development/core/best-practices.html +33 -5
- nautobot/project-static/docs/development/core/bootstrap-ui.html +30 -2
- nautobot/project-static/docs/development/core/caching.html +5481 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +30 -2
- nautobot/project-static/docs/development/core/extending-models.html +33 -5
- nautobot/project-static/docs/development/core/generic-views.html +30 -2
- nautobot/project-static/docs/development/core/getting-started.html +49 -12
- nautobot/project-static/docs/development/core/homepage.html +30 -2
- nautobot/project-static/docs/development/core/index.html +30 -2
- nautobot/project-static/docs/development/core/model-features.html +30 -2
- nautobot/project-static/docs/development/core/natural-keys.html +30 -2
- nautobot/project-static/docs/development/core/navigation-menu.html +30 -2
- nautobot/project-static/docs/development/core/release-checklist.html +30 -2
- nautobot/project-static/docs/development/core/role-internals.html +30 -2
- nautobot/project-static/docs/development/core/style-guide.html +30 -2
- nautobot/project-static/docs/development/core/templates.html +30 -2
- nautobot/project-static/docs/development/core/testing.html +30 -2
- nautobot/project-static/docs/development/core/user-preferences.html +30 -2
- nautobot/project-static/docs/development/index.html +30 -2
- nautobot/project-static/docs/development/jobs/index.html +30 -2
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +30 -2
- nautobot/project-static/docs/index.html +30 -2
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.3.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.4.html +31 -3
- nautobot/project-static/docs/release-notes/version-1.5.html +30 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +573 -134
- nautobot/project-static/docs/release-notes/version-2.0.html +30 -2
- nautobot/project-static/docs/release-notes/version-2.1.html +539 -170
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +250 -240
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +49 -2
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +30 -2
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +30 -2
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +37 -5
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +6019 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +30 -2
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +33 -5
- nautobot/project-static/docs/user-guide/administration/installation/services.html +30 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +30 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +30 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +30 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +30 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +30 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +33 -5
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +30 -2
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +30 -2
- nautobot/project-static/docs/user-guide/index.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +111 -15
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +30 -2
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +30 -2
- nautobot/tenancy/api/urls.py +1 -2
- nautobot/tenancy/api/views.py +0 -12
- nautobot/tenancy/navigation.py +1 -1
- nautobot/tenancy/tests/test_filters.py +0 -168
- nautobot/users/api/urls.py +1 -2
- nautobot/users/api/views.py +2 -65
- nautobot/users/views.py +8 -8
- nautobot/virtualization/api/urls.py +1 -2
- nautobot/virtualization/api/views.py +0 -12
- nautobot/virtualization/tests/test_filters.py +0 -28
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/METADATA +2 -2
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/RECORD +338 -334
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/NOTICE +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/WHEEL +0 -0
- {nautobot-2.1.7.dist-info → nautobot-2.1.9.dist-info}/entry_points.txt +0 -0
|
@@ -550,6 +550,20 @@
|
|
|
550
550
|
|
|
551
551
|
|
|
552
552
|
|
|
553
|
+
<li class="md-nav__item">
|
|
554
|
+
<a href="../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
555
|
+
Health Checks
|
|
556
|
+
</a>
|
|
557
|
+
</li>
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
553
567
|
<li class="md-nav__item">
|
|
554
568
|
<a href="../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
555
569
|
SELinux Troubleshooting
|
|
@@ -3884,8 +3898,8 @@
|
|
|
3884
3898
|
|
|
3885
3899
|
|
|
3886
3900
|
<li class="md-nav__item">
|
|
3887
|
-
<a href="../development/apps/api/ui-extensions/object-
|
|
3888
|
-
Object Detail
|
|
3901
|
+
<a href="../development/apps/api/ui-extensions/object-views.html" class="md-nav__link">
|
|
3902
|
+
Object Detail & List Views
|
|
3889
3903
|
</a>
|
|
3890
3904
|
</li>
|
|
3891
3905
|
|
|
@@ -4584,6 +4598,20 @@
|
|
|
4584
4598
|
|
|
4585
4599
|
|
|
4586
4600
|
|
|
4601
|
+
<li class="md-nav__item">
|
|
4602
|
+
<a href="../development/core/caching.html" class="md-nav__link">
|
|
4603
|
+
Caching
|
|
4604
|
+
</a>
|
|
4605
|
+
</li>
|
|
4606
|
+
|
|
4607
|
+
|
|
4608
|
+
|
|
4609
|
+
|
|
4610
|
+
|
|
4611
|
+
|
|
4612
|
+
|
|
4613
|
+
|
|
4614
|
+
|
|
4587
4615
|
<li class="md-nav__item">
|
|
4588
4616
|
<a href="../development/core/extending-models.html" class="md-nav__link">
|
|
4589
4617
|
Extending Models
|
|
@@ -4956,6 +4984,130 @@
|
|
|
4956
4984
|
</ul>
|
|
4957
4985
|
</nav>
|
|
4958
4986
|
|
|
4987
|
+
</li>
|
|
4988
|
+
|
|
4989
|
+
<li class="md-nav__item">
|
|
4990
|
+
<a href="#v219-2024-03-25" class="md-nav__link">
|
|
4991
|
+
v2.1.9 (2024-03-25)
|
|
4992
|
+
</a>
|
|
4993
|
+
|
|
4994
|
+
<nav class="md-nav" aria-label="v2.1.9 (2024-03-25)">
|
|
4995
|
+
<ul class="md-nav__list">
|
|
4996
|
+
|
|
4997
|
+
<li class="md-nav__item">
|
|
4998
|
+
<a href="#security" class="md-nav__link">
|
|
4999
|
+
Security
|
|
5000
|
+
</a>
|
|
5001
|
+
|
|
5002
|
+
</li>
|
|
5003
|
+
|
|
5004
|
+
<li class="md-nav__item">
|
|
5005
|
+
<a href="#added_1" class="md-nav__link">
|
|
5006
|
+
Added
|
|
5007
|
+
</a>
|
|
5008
|
+
|
|
5009
|
+
</li>
|
|
5010
|
+
|
|
5011
|
+
<li class="md-nav__item">
|
|
5012
|
+
<a href="#changed_1" class="md-nav__link">
|
|
5013
|
+
Changed
|
|
5014
|
+
</a>
|
|
5015
|
+
|
|
5016
|
+
</li>
|
|
5017
|
+
|
|
5018
|
+
<li class="md-nav__item">
|
|
5019
|
+
<a href="#removed_1" class="md-nav__link">
|
|
5020
|
+
Removed
|
|
5021
|
+
</a>
|
|
5022
|
+
|
|
5023
|
+
</li>
|
|
5024
|
+
|
|
5025
|
+
<li class="md-nav__item">
|
|
5026
|
+
<a href="#fixed" class="md-nav__link">
|
|
5027
|
+
Fixed
|
|
5028
|
+
</a>
|
|
5029
|
+
|
|
5030
|
+
</li>
|
|
5031
|
+
|
|
5032
|
+
<li class="md-nav__item">
|
|
5033
|
+
<a href="#dependencies" class="md-nav__link">
|
|
5034
|
+
Dependencies
|
|
5035
|
+
</a>
|
|
5036
|
+
|
|
5037
|
+
</li>
|
|
5038
|
+
|
|
5039
|
+
<li class="md-nav__item">
|
|
5040
|
+
<a href="#documentation" class="md-nav__link">
|
|
5041
|
+
Documentation
|
|
5042
|
+
</a>
|
|
5043
|
+
|
|
5044
|
+
</li>
|
|
5045
|
+
|
|
5046
|
+
<li class="md-nav__item">
|
|
5047
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
5048
|
+
Housekeeping
|
|
5049
|
+
</a>
|
|
5050
|
+
|
|
5051
|
+
</li>
|
|
5052
|
+
|
|
5053
|
+
</ul>
|
|
5054
|
+
</nav>
|
|
5055
|
+
|
|
5056
|
+
</li>
|
|
5057
|
+
|
|
5058
|
+
<li class="md-nav__item">
|
|
5059
|
+
<a href="#v218-2024-03-18" class="md-nav__link">
|
|
5060
|
+
v2.1.8 (2024-03-18)
|
|
5061
|
+
</a>
|
|
5062
|
+
|
|
5063
|
+
<nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
|
|
5064
|
+
<ul class="md-nav__list">
|
|
5065
|
+
|
|
5066
|
+
<li class="md-nav__item">
|
|
5067
|
+
<a href="#added_2" class="md-nav__link">
|
|
5068
|
+
Added
|
|
5069
|
+
</a>
|
|
5070
|
+
|
|
5071
|
+
</li>
|
|
5072
|
+
|
|
5073
|
+
<li class="md-nav__item">
|
|
5074
|
+
<a href="#changed_2" class="md-nav__link">
|
|
5075
|
+
Changed
|
|
5076
|
+
</a>
|
|
5077
|
+
|
|
5078
|
+
</li>
|
|
5079
|
+
|
|
5080
|
+
<li class="md-nav__item">
|
|
5081
|
+
<a href="#removed_2" class="md-nav__link">
|
|
5082
|
+
Removed
|
|
5083
|
+
</a>
|
|
5084
|
+
|
|
5085
|
+
</li>
|
|
5086
|
+
|
|
5087
|
+
<li class="md-nav__item">
|
|
5088
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
5089
|
+
Fixed
|
|
5090
|
+
</a>
|
|
5091
|
+
|
|
5092
|
+
</li>
|
|
5093
|
+
|
|
5094
|
+
<li class="md-nav__item">
|
|
5095
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
5096
|
+
Documentation
|
|
5097
|
+
</a>
|
|
5098
|
+
|
|
5099
|
+
</li>
|
|
5100
|
+
|
|
5101
|
+
<li class="md-nav__item">
|
|
5102
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
5103
|
+
Housekeeping
|
|
5104
|
+
</a>
|
|
5105
|
+
|
|
5106
|
+
</li>
|
|
5107
|
+
|
|
5108
|
+
</ul>
|
|
5109
|
+
</nav>
|
|
5110
|
+
|
|
4959
5111
|
</li>
|
|
4960
5112
|
|
|
4961
5113
|
<li class="md-nav__item">
|
|
@@ -4967,7 +5119,7 @@
|
|
|
4967
5119
|
<ul class="md-nav__list">
|
|
4968
5120
|
|
|
4969
5121
|
<li class="md-nav__item">
|
|
4970
|
-
<a href="#
|
|
5122
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
4971
5123
|
Fixed
|
|
4972
5124
|
</a>
|
|
4973
5125
|
|
|
@@ -4987,35 +5139,35 @@
|
|
|
4987
5139
|
<ul class="md-nav__list">
|
|
4988
5140
|
|
|
4989
5141
|
<li class="md-nav__item">
|
|
4990
|
-
<a href="#
|
|
5142
|
+
<a href="#security_1" class="md-nav__link">
|
|
4991
5143
|
Security
|
|
4992
5144
|
</a>
|
|
4993
5145
|
|
|
4994
5146
|
</li>
|
|
4995
5147
|
|
|
4996
5148
|
<li class="md-nav__item">
|
|
4997
|
-
<a href="#
|
|
5149
|
+
<a href="#added_3" class="md-nav__link">
|
|
4998
5150
|
Added
|
|
4999
5151
|
</a>
|
|
5000
5152
|
|
|
5001
5153
|
</li>
|
|
5002
5154
|
|
|
5003
5155
|
<li class="md-nav__item">
|
|
5004
|
-
<a href="#
|
|
5156
|
+
<a href="#changed_3" class="md-nav__link">
|
|
5005
5157
|
Changed
|
|
5006
5158
|
</a>
|
|
5007
5159
|
|
|
5008
5160
|
</li>
|
|
5009
5161
|
|
|
5010
5162
|
<li class="md-nav__item">
|
|
5011
|
-
<a href="#
|
|
5163
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
5012
5164
|
Fixed
|
|
5013
5165
|
</a>
|
|
5014
5166
|
|
|
5015
5167
|
</li>
|
|
5016
5168
|
|
|
5017
5169
|
<li class="md-nav__item">
|
|
5018
|
-
<a href="#
|
|
5170
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
5019
5171
|
Documentation
|
|
5020
5172
|
</a>
|
|
5021
5173
|
|
|
@@ -5035,42 +5187,42 @@
|
|
|
5035
5187
|
<ul class="md-nav__list">
|
|
5036
5188
|
|
|
5037
5189
|
<li class="md-nav__item">
|
|
5038
|
-
<a href="#
|
|
5190
|
+
<a href="#security_2" class="md-nav__link">
|
|
5039
5191
|
Security
|
|
5040
5192
|
</a>
|
|
5041
5193
|
|
|
5042
5194
|
</li>
|
|
5043
5195
|
|
|
5044
5196
|
<li class="md-nav__item">
|
|
5045
|
-
<a href="#
|
|
5197
|
+
<a href="#added_4" class="md-nav__link">
|
|
5046
5198
|
Added
|
|
5047
5199
|
</a>
|
|
5048
5200
|
|
|
5049
5201
|
</li>
|
|
5050
5202
|
|
|
5051
5203
|
<li class="md-nav__item">
|
|
5052
|
-
<a href="#
|
|
5204
|
+
<a href="#changed_4" class="md-nav__link">
|
|
5053
5205
|
Changed
|
|
5054
5206
|
</a>
|
|
5055
5207
|
|
|
5056
5208
|
</li>
|
|
5057
5209
|
|
|
5058
5210
|
<li class="md-nav__item">
|
|
5059
|
-
<a href="#
|
|
5211
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
5060
5212
|
Fixed
|
|
5061
5213
|
</a>
|
|
5062
5214
|
|
|
5063
5215
|
</li>
|
|
5064
5216
|
|
|
5065
5217
|
<li class="md-nav__item">
|
|
5066
|
-
<a href="#
|
|
5218
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
5067
5219
|
Documentation
|
|
5068
5220
|
</a>
|
|
5069
5221
|
|
|
5070
5222
|
</li>
|
|
5071
5223
|
|
|
5072
5224
|
<li class="md-nav__item">
|
|
5073
|
-
<a href="#
|
|
5225
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
5074
5226
|
Housekeeping
|
|
5075
5227
|
</a>
|
|
5076
5228
|
|
|
@@ -5090,28 +5242,28 @@
|
|
|
5090
5242
|
<ul class="md-nav__list">
|
|
5091
5243
|
|
|
5092
5244
|
<li class="md-nav__item">
|
|
5093
|
-
<a href="#
|
|
5245
|
+
<a href="#security_3" class="md-nav__link">
|
|
5094
5246
|
Security
|
|
5095
5247
|
</a>
|
|
5096
5248
|
|
|
5097
5249
|
</li>
|
|
5098
5250
|
|
|
5099
5251
|
<li class="md-nav__item">
|
|
5100
|
-
<a href="#
|
|
5252
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
5101
5253
|
Fixed
|
|
5102
5254
|
</a>
|
|
5103
5255
|
|
|
5104
5256
|
</li>
|
|
5105
5257
|
|
|
5106
5258
|
<li class="md-nav__item">
|
|
5107
|
-
<a href="#
|
|
5259
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
5108
5260
|
Documentation
|
|
5109
5261
|
</a>
|
|
5110
5262
|
|
|
5111
5263
|
</li>
|
|
5112
5264
|
|
|
5113
5265
|
<li class="md-nav__item">
|
|
5114
|
-
<a href="#
|
|
5266
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
5115
5267
|
Housekeeping
|
|
5116
5268
|
</a>
|
|
5117
5269
|
|
|
@@ -5131,49 +5283,49 @@
|
|
|
5131
5283
|
<ul class="md-nav__list">
|
|
5132
5284
|
|
|
5133
5285
|
<li class="md-nav__item">
|
|
5134
|
-
<a href="#
|
|
5286
|
+
<a href="#security_4" class="md-nav__link">
|
|
5135
5287
|
Security
|
|
5136
5288
|
</a>
|
|
5137
5289
|
|
|
5138
5290
|
</li>
|
|
5139
5291
|
|
|
5140
5292
|
<li class="md-nav__item">
|
|
5141
|
-
<a href="#
|
|
5293
|
+
<a href="#added_5" class="md-nav__link">
|
|
5142
5294
|
Added
|
|
5143
5295
|
</a>
|
|
5144
5296
|
|
|
5145
5297
|
</li>
|
|
5146
5298
|
|
|
5147
5299
|
<li class="md-nav__item">
|
|
5148
|
-
<a href="#
|
|
5300
|
+
<a href="#changed_5" class="md-nav__link">
|
|
5149
5301
|
Changed
|
|
5150
5302
|
</a>
|
|
5151
5303
|
|
|
5152
5304
|
</li>
|
|
5153
5305
|
|
|
5154
5306
|
<li class="md-nav__item">
|
|
5155
|
-
<a href="#
|
|
5307
|
+
<a href="#removed_3" class="md-nav__link">
|
|
5156
5308
|
Removed
|
|
5157
5309
|
</a>
|
|
5158
5310
|
|
|
5159
5311
|
</li>
|
|
5160
5312
|
|
|
5161
5313
|
<li class="md-nav__item">
|
|
5162
|
-
<a href="#
|
|
5314
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
5163
5315
|
Fixed
|
|
5164
5316
|
</a>
|
|
5165
5317
|
|
|
5166
5318
|
</li>
|
|
5167
5319
|
|
|
5168
5320
|
<li class="md-nav__item">
|
|
5169
|
-
<a href="#
|
|
5321
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
5170
5322
|
Dependencies
|
|
5171
5323
|
</a>
|
|
5172
5324
|
|
|
5173
5325
|
</li>
|
|
5174
5326
|
|
|
5175
5327
|
<li class="md-nav__item">
|
|
5176
|
-
<a href="#
|
|
5328
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
5177
5329
|
Housekeeping
|
|
5178
5330
|
</a>
|
|
5179
5331
|
|
|
@@ -5193,56 +5345,56 @@
|
|
|
5193
5345
|
<ul class="md-nav__list">
|
|
5194
5346
|
|
|
5195
5347
|
<li class="md-nav__item">
|
|
5196
|
-
<a href="#
|
|
5348
|
+
<a href="#security_5" class="md-nav__link">
|
|
5197
5349
|
Security
|
|
5198
5350
|
</a>
|
|
5199
5351
|
|
|
5200
5352
|
</li>
|
|
5201
5353
|
|
|
5202
5354
|
<li class="md-nav__item">
|
|
5203
|
-
<a href="#
|
|
5355
|
+
<a href="#added_6" class="md-nav__link">
|
|
5204
5356
|
Added
|
|
5205
5357
|
</a>
|
|
5206
5358
|
|
|
5207
5359
|
</li>
|
|
5208
5360
|
|
|
5209
5361
|
<li class="md-nav__item">
|
|
5210
|
-
<a href="#
|
|
5362
|
+
<a href="#changed_6" class="md-nav__link">
|
|
5211
5363
|
Changed
|
|
5212
5364
|
</a>
|
|
5213
5365
|
|
|
5214
5366
|
</li>
|
|
5215
5367
|
|
|
5216
5368
|
<li class="md-nav__item">
|
|
5217
|
-
<a href="#
|
|
5369
|
+
<a href="#removed_4" class="md-nav__link">
|
|
5218
5370
|
Removed
|
|
5219
5371
|
</a>
|
|
5220
5372
|
|
|
5221
5373
|
</li>
|
|
5222
5374
|
|
|
5223
5375
|
<li class="md-nav__item">
|
|
5224
|
-
<a href="#
|
|
5376
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
5225
5377
|
Fixed
|
|
5226
5378
|
</a>
|
|
5227
5379
|
|
|
5228
5380
|
</li>
|
|
5229
5381
|
|
|
5230
5382
|
<li class="md-nav__item">
|
|
5231
|
-
<a href="#
|
|
5383
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
5232
5384
|
Dependencies
|
|
5233
5385
|
</a>
|
|
5234
5386
|
|
|
5235
5387
|
</li>
|
|
5236
5388
|
|
|
5237
5389
|
<li class="md-nav__item">
|
|
5238
|
-
<a href="#
|
|
5390
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
5239
5391
|
Documentation
|
|
5240
5392
|
</a>
|
|
5241
5393
|
|
|
5242
5394
|
</li>
|
|
5243
5395
|
|
|
5244
5396
|
<li class="md-nav__item">
|
|
5245
|
-
<a href="#
|
|
5397
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
5246
5398
|
Housekeeping
|
|
5247
5399
|
</a>
|
|
5248
5400
|
|
|
@@ -5262,42 +5414,42 @@
|
|
|
5262
5414
|
<ul class="md-nav__list">
|
|
5263
5415
|
|
|
5264
5416
|
<li class="md-nav__item">
|
|
5265
|
-
<a href="#
|
|
5417
|
+
<a href="#added_7" class="md-nav__link">
|
|
5266
5418
|
Added
|
|
5267
5419
|
</a>
|
|
5268
5420
|
|
|
5269
5421
|
</li>
|
|
5270
5422
|
|
|
5271
5423
|
<li class="md-nav__item">
|
|
5272
|
-
<a href="#
|
|
5424
|
+
<a href="#changed_7" class="md-nav__link">
|
|
5273
5425
|
Changed
|
|
5274
5426
|
</a>
|
|
5275
5427
|
|
|
5276
5428
|
</li>
|
|
5277
5429
|
|
|
5278
5430
|
<li class="md-nav__item">
|
|
5279
|
-
<a href="#
|
|
5431
|
+
<a href="#removed_5" class="md-nav__link">
|
|
5280
5432
|
Removed
|
|
5281
5433
|
</a>
|
|
5282
5434
|
|
|
5283
5435
|
</li>
|
|
5284
5436
|
|
|
5285
5437
|
<li class="md-nav__item">
|
|
5286
|
-
<a href="#
|
|
5438
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
5287
5439
|
Fixed
|
|
5288
5440
|
</a>
|
|
5289
5441
|
|
|
5290
5442
|
</li>
|
|
5291
5443
|
|
|
5292
5444
|
<li class="md-nav__item">
|
|
5293
|
-
<a href="#
|
|
5445
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
5294
5446
|
Documentation
|
|
5295
5447
|
</a>
|
|
5296
5448
|
|
|
5297
5449
|
</li>
|
|
5298
5450
|
|
|
5299
5451
|
<li class="md-nav__item">
|
|
5300
|
-
<a href="#
|
|
5452
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
5301
5453
|
Housekeeping
|
|
5302
5454
|
</a>
|
|
5303
5455
|
|
|
@@ -5317,49 +5469,49 @@
|
|
|
5317
5469
|
<ul class="md-nav__list">
|
|
5318
5470
|
|
|
5319
5471
|
<li class="md-nav__item">
|
|
5320
|
-
<a href="#
|
|
5472
|
+
<a href="#security_6" class="md-nav__link">
|
|
5321
5473
|
Security
|
|
5322
5474
|
</a>
|
|
5323
5475
|
|
|
5324
5476
|
</li>
|
|
5325
5477
|
|
|
5326
5478
|
<li class="md-nav__item">
|
|
5327
|
-
<a href="#
|
|
5479
|
+
<a href="#added_8" class="md-nav__link">
|
|
5328
5480
|
Added
|
|
5329
5481
|
</a>
|
|
5330
5482
|
|
|
5331
5483
|
</li>
|
|
5332
5484
|
|
|
5333
5485
|
<li class="md-nav__item">
|
|
5334
|
-
<a href="#
|
|
5486
|
+
<a href="#changed_8" class="md-nav__link">
|
|
5335
5487
|
Changed
|
|
5336
5488
|
</a>
|
|
5337
5489
|
|
|
5338
5490
|
</li>
|
|
5339
5491
|
|
|
5340
5492
|
<li class="md-nav__item">
|
|
5341
|
-
<a href="#
|
|
5493
|
+
<a href="#removed_6" class="md-nav__link">
|
|
5342
5494
|
Removed
|
|
5343
5495
|
</a>
|
|
5344
5496
|
|
|
5345
5497
|
</li>
|
|
5346
5498
|
|
|
5347
5499
|
<li class="md-nav__item">
|
|
5348
|
-
<a href="#
|
|
5500
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
5349
5501
|
Fixed
|
|
5350
5502
|
</a>
|
|
5351
5503
|
|
|
5352
5504
|
</li>
|
|
5353
5505
|
|
|
5354
5506
|
<li class="md-nav__item">
|
|
5355
|
-
<a href="#
|
|
5507
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
5356
5508
|
Documentation
|
|
5357
5509
|
</a>
|
|
5358
5510
|
|
|
5359
5511
|
</li>
|
|
5360
5512
|
|
|
5361
5513
|
<li class="md-nav__item">
|
|
5362
|
-
<a href="#
|
|
5514
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
5363
5515
|
Housekeeping
|
|
5364
5516
|
</a>
|
|
5365
5517
|
|
|
@@ -5379,35 +5531,35 @@
|
|
|
5379
5531
|
<ul class="md-nav__list">
|
|
5380
5532
|
|
|
5381
5533
|
<li class="md-nav__item">
|
|
5382
|
-
<a href="#
|
|
5534
|
+
<a href="#added_9" class="md-nav__link">
|
|
5383
5535
|
Added
|
|
5384
5536
|
</a>
|
|
5385
5537
|
|
|
5386
5538
|
</li>
|
|
5387
5539
|
|
|
5388
5540
|
<li class="md-nav__item">
|
|
5389
|
-
<a href="#
|
|
5541
|
+
<a href="#changed_9" class="md-nav__link">
|
|
5390
5542
|
Changed
|
|
5391
5543
|
</a>
|
|
5392
5544
|
|
|
5393
5545
|
</li>
|
|
5394
5546
|
|
|
5395
5547
|
<li class="md-nav__item">
|
|
5396
|
-
<a href="#
|
|
5548
|
+
<a href="#removed_7" class="md-nav__link">
|
|
5397
5549
|
Removed
|
|
5398
5550
|
</a>
|
|
5399
5551
|
|
|
5400
5552
|
</li>
|
|
5401
5553
|
|
|
5402
5554
|
<li class="md-nav__item">
|
|
5403
|
-
<a href="#
|
|
5555
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
5404
5556
|
Fixed
|
|
5405
5557
|
</a>
|
|
5406
5558
|
|
|
5407
5559
|
</li>
|
|
5408
5560
|
|
|
5409
5561
|
<li class="md-nav__item">
|
|
5410
|
-
<a href="#
|
|
5562
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
5411
5563
|
Housekeeping
|
|
5412
5564
|
</a>
|
|
5413
5565
|
|
|
@@ -5924,31 +6076,11 @@
|
|
|
5924
6076
|
</li>
|
|
5925
6077
|
|
|
5926
6078
|
<li class="md-nav__item">
|
|
5927
|
-
<a href="#
|
|
5928
|
-
v2.1.
|
|
5929
|
-
</a>
|
|
5930
|
-
|
|
5931
|
-
<nav class="md-nav" aria-label="v2.1.7 (2024-03-05)">
|
|
5932
|
-
<ul class="md-nav__list">
|
|
5933
|
-
|
|
5934
|
-
<li class="md-nav__item">
|
|
5935
|
-
<a href="#fixed" class="md-nav__link">
|
|
5936
|
-
Fixed
|
|
5937
|
-
</a>
|
|
5938
|
-
|
|
5939
|
-
</li>
|
|
5940
|
-
|
|
5941
|
-
</ul>
|
|
5942
|
-
</nav>
|
|
5943
|
-
|
|
5944
|
-
</li>
|
|
5945
|
-
|
|
5946
|
-
<li class="md-nav__item">
|
|
5947
|
-
<a href="#v216-2024-03-04" class="md-nav__link">
|
|
5948
|
-
v2.1.6 (2024-03-04)
|
|
6079
|
+
<a href="#v219-2024-03-25" class="md-nav__link">
|
|
6080
|
+
v2.1.9 (2024-03-25)
|
|
5949
6081
|
</a>
|
|
5950
6082
|
|
|
5951
|
-
<nav class="md-nav" aria-label="v2.1.
|
|
6083
|
+
<nav class="md-nav" aria-label="v2.1.9 (2024-03-25)">
|
|
5952
6084
|
<ul class="md-nav__list">
|
|
5953
6085
|
|
|
5954
6086
|
<li class="md-nav__item">
|
|
@@ -5973,15 +6105,159 @@
|
|
|
5973
6105
|
</li>
|
|
5974
6106
|
|
|
5975
6107
|
<li class="md-nav__item">
|
|
5976
|
-
<a href="#
|
|
5977
|
-
|
|
6108
|
+
<a href="#removed_1" class="md-nav__link">
|
|
6109
|
+
Removed
|
|
5978
6110
|
</a>
|
|
5979
6111
|
|
|
5980
6112
|
</li>
|
|
5981
6113
|
|
|
5982
6114
|
<li class="md-nav__item">
|
|
5983
|
-
<a href="#
|
|
5984
|
-
|
|
6115
|
+
<a href="#fixed" class="md-nav__link">
|
|
6116
|
+
Fixed
|
|
6117
|
+
</a>
|
|
6118
|
+
|
|
6119
|
+
</li>
|
|
6120
|
+
|
|
6121
|
+
<li class="md-nav__item">
|
|
6122
|
+
<a href="#dependencies" class="md-nav__link">
|
|
6123
|
+
Dependencies
|
|
6124
|
+
</a>
|
|
6125
|
+
|
|
6126
|
+
</li>
|
|
6127
|
+
|
|
6128
|
+
<li class="md-nav__item">
|
|
6129
|
+
<a href="#documentation" class="md-nav__link">
|
|
6130
|
+
Documentation
|
|
6131
|
+
</a>
|
|
6132
|
+
|
|
6133
|
+
</li>
|
|
6134
|
+
|
|
6135
|
+
<li class="md-nav__item">
|
|
6136
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
6137
|
+
Housekeeping
|
|
6138
|
+
</a>
|
|
6139
|
+
|
|
6140
|
+
</li>
|
|
6141
|
+
|
|
6142
|
+
</ul>
|
|
6143
|
+
</nav>
|
|
6144
|
+
|
|
6145
|
+
</li>
|
|
6146
|
+
|
|
6147
|
+
<li class="md-nav__item">
|
|
6148
|
+
<a href="#v218-2024-03-18" class="md-nav__link">
|
|
6149
|
+
v2.1.8 (2024-03-18)
|
|
6150
|
+
</a>
|
|
6151
|
+
|
|
6152
|
+
<nav class="md-nav" aria-label="v2.1.8 (2024-03-18)">
|
|
6153
|
+
<ul class="md-nav__list">
|
|
6154
|
+
|
|
6155
|
+
<li class="md-nav__item">
|
|
6156
|
+
<a href="#added_2" class="md-nav__link">
|
|
6157
|
+
Added
|
|
6158
|
+
</a>
|
|
6159
|
+
|
|
6160
|
+
</li>
|
|
6161
|
+
|
|
6162
|
+
<li class="md-nav__item">
|
|
6163
|
+
<a href="#changed_2" class="md-nav__link">
|
|
6164
|
+
Changed
|
|
6165
|
+
</a>
|
|
6166
|
+
|
|
6167
|
+
</li>
|
|
6168
|
+
|
|
6169
|
+
<li class="md-nav__item">
|
|
6170
|
+
<a href="#removed_2" class="md-nav__link">
|
|
6171
|
+
Removed
|
|
6172
|
+
</a>
|
|
6173
|
+
|
|
6174
|
+
</li>
|
|
6175
|
+
|
|
6176
|
+
<li class="md-nav__item">
|
|
6177
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
6178
|
+
Fixed
|
|
6179
|
+
</a>
|
|
6180
|
+
|
|
6181
|
+
</li>
|
|
6182
|
+
|
|
6183
|
+
<li class="md-nav__item">
|
|
6184
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
6185
|
+
Documentation
|
|
6186
|
+
</a>
|
|
6187
|
+
|
|
6188
|
+
</li>
|
|
6189
|
+
|
|
6190
|
+
<li class="md-nav__item">
|
|
6191
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
6192
|
+
Housekeeping
|
|
6193
|
+
</a>
|
|
6194
|
+
|
|
6195
|
+
</li>
|
|
6196
|
+
|
|
6197
|
+
</ul>
|
|
6198
|
+
</nav>
|
|
6199
|
+
|
|
6200
|
+
</li>
|
|
6201
|
+
|
|
6202
|
+
<li class="md-nav__item">
|
|
6203
|
+
<a href="#v217-2024-03-05" class="md-nav__link">
|
|
6204
|
+
v2.1.7 (2024-03-05)
|
|
6205
|
+
</a>
|
|
6206
|
+
|
|
6207
|
+
<nav class="md-nav" aria-label="v2.1.7 (2024-03-05)">
|
|
6208
|
+
<ul class="md-nav__list">
|
|
6209
|
+
|
|
6210
|
+
<li class="md-nav__item">
|
|
6211
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
6212
|
+
Fixed
|
|
6213
|
+
</a>
|
|
6214
|
+
|
|
6215
|
+
</li>
|
|
6216
|
+
|
|
6217
|
+
</ul>
|
|
6218
|
+
</nav>
|
|
6219
|
+
|
|
6220
|
+
</li>
|
|
6221
|
+
|
|
6222
|
+
<li class="md-nav__item">
|
|
6223
|
+
<a href="#v216-2024-03-04" class="md-nav__link">
|
|
6224
|
+
v2.1.6 (2024-03-04)
|
|
6225
|
+
</a>
|
|
6226
|
+
|
|
6227
|
+
<nav class="md-nav" aria-label="v2.1.6 (2024-03-04)">
|
|
6228
|
+
<ul class="md-nav__list">
|
|
6229
|
+
|
|
6230
|
+
<li class="md-nav__item">
|
|
6231
|
+
<a href="#security_1" class="md-nav__link">
|
|
6232
|
+
Security
|
|
6233
|
+
</a>
|
|
6234
|
+
|
|
6235
|
+
</li>
|
|
6236
|
+
|
|
6237
|
+
<li class="md-nav__item">
|
|
6238
|
+
<a href="#added_3" class="md-nav__link">
|
|
6239
|
+
Added
|
|
6240
|
+
</a>
|
|
6241
|
+
|
|
6242
|
+
</li>
|
|
6243
|
+
|
|
6244
|
+
<li class="md-nav__item">
|
|
6245
|
+
<a href="#changed_3" class="md-nav__link">
|
|
6246
|
+
Changed
|
|
6247
|
+
</a>
|
|
6248
|
+
|
|
6249
|
+
</li>
|
|
6250
|
+
|
|
6251
|
+
<li class="md-nav__item">
|
|
6252
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
6253
|
+
Fixed
|
|
6254
|
+
</a>
|
|
6255
|
+
|
|
6256
|
+
</li>
|
|
6257
|
+
|
|
6258
|
+
<li class="md-nav__item">
|
|
6259
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
6260
|
+
Documentation
|
|
5985
6261
|
</a>
|
|
5986
6262
|
|
|
5987
6263
|
</li>
|
|
@@ -6000,42 +6276,42 @@
|
|
|
6000
6276
|
<ul class="md-nav__list">
|
|
6001
6277
|
|
|
6002
6278
|
<li class="md-nav__item">
|
|
6003
|
-
<a href="#
|
|
6279
|
+
<a href="#security_2" class="md-nav__link">
|
|
6004
6280
|
Security
|
|
6005
6281
|
</a>
|
|
6006
6282
|
|
|
6007
6283
|
</li>
|
|
6008
6284
|
|
|
6009
6285
|
<li class="md-nav__item">
|
|
6010
|
-
<a href="#
|
|
6286
|
+
<a href="#added_4" class="md-nav__link">
|
|
6011
6287
|
Added
|
|
6012
6288
|
</a>
|
|
6013
6289
|
|
|
6014
6290
|
</li>
|
|
6015
6291
|
|
|
6016
6292
|
<li class="md-nav__item">
|
|
6017
|
-
<a href="#
|
|
6293
|
+
<a href="#changed_4" class="md-nav__link">
|
|
6018
6294
|
Changed
|
|
6019
6295
|
</a>
|
|
6020
6296
|
|
|
6021
6297
|
</li>
|
|
6022
6298
|
|
|
6023
6299
|
<li class="md-nav__item">
|
|
6024
|
-
<a href="#
|
|
6300
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
6025
6301
|
Fixed
|
|
6026
6302
|
</a>
|
|
6027
6303
|
|
|
6028
6304
|
</li>
|
|
6029
6305
|
|
|
6030
6306
|
<li class="md-nav__item">
|
|
6031
|
-
<a href="#
|
|
6307
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
6032
6308
|
Documentation
|
|
6033
6309
|
</a>
|
|
6034
6310
|
|
|
6035
6311
|
</li>
|
|
6036
6312
|
|
|
6037
6313
|
<li class="md-nav__item">
|
|
6038
|
-
<a href="#
|
|
6314
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
6039
6315
|
Housekeeping
|
|
6040
6316
|
</a>
|
|
6041
6317
|
|
|
@@ -6055,28 +6331,28 @@
|
|
|
6055
6331
|
<ul class="md-nav__list">
|
|
6056
6332
|
|
|
6057
6333
|
<li class="md-nav__item">
|
|
6058
|
-
<a href="#
|
|
6334
|
+
<a href="#security_3" class="md-nav__link">
|
|
6059
6335
|
Security
|
|
6060
6336
|
</a>
|
|
6061
6337
|
|
|
6062
6338
|
</li>
|
|
6063
6339
|
|
|
6064
6340
|
<li class="md-nav__item">
|
|
6065
|
-
<a href="#
|
|
6341
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
6066
6342
|
Fixed
|
|
6067
6343
|
</a>
|
|
6068
6344
|
|
|
6069
6345
|
</li>
|
|
6070
6346
|
|
|
6071
6347
|
<li class="md-nav__item">
|
|
6072
|
-
<a href="#
|
|
6348
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
6073
6349
|
Documentation
|
|
6074
6350
|
</a>
|
|
6075
6351
|
|
|
6076
6352
|
</li>
|
|
6077
6353
|
|
|
6078
6354
|
<li class="md-nav__item">
|
|
6079
|
-
<a href="#
|
|
6355
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
6080
6356
|
Housekeeping
|
|
6081
6357
|
</a>
|
|
6082
6358
|
|
|
@@ -6096,49 +6372,49 @@
|
|
|
6096
6372
|
<ul class="md-nav__list">
|
|
6097
6373
|
|
|
6098
6374
|
<li class="md-nav__item">
|
|
6099
|
-
<a href="#
|
|
6375
|
+
<a href="#security_4" class="md-nav__link">
|
|
6100
6376
|
Security
|
|
6101
6377
|
</a>
|
|
6102
6378
|
|
|
6103
6379
|
</li>
|
|
6104
6380
|
|
|
6105
6381
|
<li class="md-nav__item">
|
|
6106
|
-
<a href="#
|
|
6382
|
+
<a href="#added_5" class="md-nav__link">
|
|
6107
6383
|
Added
|
|
6108
6384
|
</a>
|
|
6109
6385
|
|
|
6110
6386
|
</li>
|
|
6111
6387
|
|
|
6112
6388
|
<li class="md-nav__item">
|
|
6113
|
-
<a href="#
|
|
6389
|
+
<a href="#changed_5" class="md-nav__link">
|
|
6114
6390
|
Changed
|
|
6115
6391
|
</a>
|
|
6116
6392
|
|
|
6117
6393
|
</li>
|
|
6118
6394
|
|
|
6119
6395
|
<li class="md-nav__item">
|
|
6120
|
-
<a href="#
|
|
6396
|
+
<a href="#removed_3" class="md-nav__link">
|
|
6121
6397
|
Removed
|
|
6122
6398
|
</a>
|
|
6123
6399
|
|
|
6124
6400
|
</li>
|
|
6125
6401
|
|
|
6126
6402
|
<li class="md-nav__item">
|
|
6127
|
-
<a href="#
|
|
6403
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
6128
6404
|
Fixed
|
|
6129
6405
|
</a>
|
|
6130
6406
|
|
|
6131
6407
|
</li>
|
|
6132
6408
|
|
|
6133
6409
|
<li class="md-nav__item">
|
|
6134
|
-
<a href="#
|
|
6410
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
6135
6411
|
Dependencies
|
|
6136
6412
|
</a>
|
|
6137
6413
|
|
|
6138
6414
|
</li>
|
|
6139
6415
|
|
|
6140
6416
|
<li class="md-nav__item">
|
|
6141
|
-
<a href="#
|
|
6417
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
6142
6418
|
Housekeeping
|
|
6143
6419
|
</a>
|
|
6144
6420
|
|
|
@@ -6158,56 +6434,56 @@
|
|
|
6158
6434
|
<ul class="md-nav__list">
|
|
6159
6435
|
|
|
6160
6436
|
<li class="md-nav__item">
|
|
6161
|
-
<a href="#
|
|
6437
|
+
<a href="#security_5" class="md-nav__link">
|
|
6162
6438
|
Security
|
|
6163
6439
|
</a>
|
|
6164
6440
|
|
|
6165
6441
|
</li>
|
|
6166
6442
|
|
|
6167
6443
|
<li class="md-nav__item">
|
|
6168
|
-
<a href="#
|
|
6444
|
+
<a href="#added_6" class="md-nav__link">
|
|
6169
6445
|
Added
|
|
6170
6446
|
</a>
|
|
6171
6447
|
|
|
6172
6448
|
</li>
|
|
6173
6449
|
|
|
6174
6450
|
<li class="md-nav__item">
|
|
6175
|
-
<a href="#
|
|
6451
|
+
<a href="#changed_6" class="md-nav__link">
|
|
6176
6452
|
Changed
|
|
6177
6453
|
</a>
|
|
6178
6454
|
|
|
6179
6455
|
</li>
|
|
6180
6456
|
|
|
6181
6457
|
<li class="md-nav__item">
|
|
6182
|
-
<a href="#
|
|
6458
|
+
<a href="#removed_4" class="md-nav__link">
|
|
6183
6459
|
Removed
|
|
6184
6460
|
</a>
|
|
6185
6461
|
|
|
6186
6462
|
</li>
|
|
6187
6463
|
|
|
6188
6464
|
<li class="md-nav__item">
|
|
6189
|
-
<a href="#
|
|
6465
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
6190
6466
|
Fixed
|
|
6191
6467
|
</a>
|
|
6192
6468
|
|
|
6193
6469
|
</li>
|
|
6194
6470
|
|
|
6195
6471
|
<li class="md-nav__item">
|
|
6196
|
-
<a href="#
|
|
6472
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
6197
6473
|
Dependencies
|
|
6198
6474
|
</a>
|
|
6199
6475
|
|
|
6200
6476
|
</li>
|
|
6201
6477
|
|
|
6202
6478
|
<li class="md-nav__item">
|
|
6203
|
-
<a href="#
|
|
6479
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
6204
6480
|
Documentation
|
|
6205
6481
|
</a>
|
|
6206
6482
|
|
|
6207
6483
|
</li>
|
|
6208
6484
|
|
|
6209
6485
|
<li class="md-nav__item">
|
|
6210
|
-
<a href="#
|
|
6486
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
6211
6487
|
Housekeeping
|
|
6212
6488
|
</a>
|
|
6213
6489
|
|
|
@@ -6227,42 +6503,42 @@
|
|
|
6227
6503
|
<ul class="md-nav__list">
|
|
6228
6504
|
|
|
6229
6505
|
<li class="md-nav__item">
|
|
6230
|
-
<a href="#
|
|
6506
|
+
<a href="#added_7" class="md-nav__link">
|
|
6231
6507
|
Added
|
|
6232
6508
|
</a>
|
|
6233
6509
|
|
|
6234
6510
|
</li>
|
|
6235
6511
|
|
|
6236
6512
|
<li class="md-nav__item">
|
|
6237
|
-
<a href="#
|
|
6513
|
+
<a href="#changed_7" class="md-nav__link">
|
|
6238
6514
|
Changed
|
|
6239
6515
|
</a>
|
|
6240
6516
|
|
|
6241
6517
|
</li>
|
|
6242
6518
|
|
|
6243
6519
|
<li class="md-nav__item">
|
|
6244
|
-
<a href="#
|
|
6520
|
+
<a href="#removed_5" class="md-nav__link">
|
|
6245
6521
|
Removed
|
|
6246
6522
|
</a>
|
|
6247
6523
|
|
|
6248
6524
|
</li>
|
|
6249
6525
|
|
|
6250
6526
|
<li class="md-nav__item">
|
|
6251
|
-
<a href="#
|
|
6527
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
6252
6528
|
Fixed
|
|
6253
6529
|
</a>
|
|
6254
6530
|
|
|
6255
6531
|
</li>
|
|
6256
6532
|
|
|
6257
6533
|
<li class="md-nav__item">
|
|
6258
|
-
<a href="#
|
|
6534
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
6259
6535
|
Documentation
|
|
6260
6536
|
</a>
|
|
6261
6537
|
|
|
6262
6538
|
</li>
|
|
6263
6539
|
|
|
6264
6540
|
<li class="md-nav__item">
|
|
6265
|
-
<a href="#
|
|
6541
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
6266
6542
|
Housekeeping
|
|
6267
6543
|
</a>
|
|
6268
6544
|
|
|
@@ -6282,49 +6558,49 @@
|
|
|
6282
6558
|
<ul class="md-nav__list">
|
|
6283
6559
|
|
|
6284
6560
|
<li class="md-nav__item">
|
|
6285
|
-
<a href="#
|
|
6561
|
+
<a href="#security_6" class="md-nav__link">
|
|
6286
6562
|
Security
|
|
6287
6563
|
</a>
|
|
6288
6564
|
|
|
6289
6565
|
</li>
|
|
6290
6566
|
|
|
6291
6567
|
<li class="md-nav__item">
|
|
6292
|
-
<a href="#
|
|
6568
|
+
<a href="#added_8" class="md-nav__link">
|
|
6293
6569
|
Added
|
|
6294
6570
|
</a>
|
|
6295
6571
|
|
|
6296
6572
|
</li>
|
|
6297
6573
|
|
|
6298
6574
|
<li class="md-nav__item">
|
|
6299
|
-
<a href="#
|
|
6575
|
+
<a href="#changed_8" class="md-nav__link">
|
|
6300
6576
|
Changed
|
|
6301
6577
|
</a>
|
|
6302
6578
|
|
|
6303
6579
|
</li>
|
|
6304
6580
|
|
|
6305
6581
|
<li class="md-nav__item">
|
|
6306
|
-
<a href="#
|
|
6582
|
+
<a href="#removed_6" class="md-nav__link">
|
|
6307
6583
|
Removed
|
|
6308
6584
|
</a>
|
|
6309
6585
|
|
|
6310
6586
|
</li>
|
|
6311
6587
|
|
|
6312
6588
|
<li class="md-nav__item">
|
|
6313
|
-
<a href="#
|
|
6589
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
6314
6590
|
Fixed
|
|
6315
6591
|
</a>
|
|
6316
6592
|
|
|
6317
6593
|
</li>
|
|
6318
6594
|
|
|
6319
6595
|
<li class="md-nav__item">
|
|
6320
|
-
<a href="#
|
|
6596
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
6321
6597
|
Documentation
|
|
6322
6598
|
</a>
|
|
6323
6599
|
|
|
6324
6600
|
</li>
|
|
6325
6601
|
|
|
6326
6602
|
<li class="md-nav__item">
|
|
6327
|
-
<a href="#
|
|
6603
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
6328
6604
|
Housekeeping
|
|
6329
6605
|
</a>
|
|
6330
6606
|
|
|
@@ -6344,35 +6620,35 @@
|
|
|
6344
6620
|
<ul class="md-nav__list">
|
|
6345
6621
|
|
|
6346
6622
|
<li class="md-nav__item">
|
|
6347
|
-
<a href="#
|
|
6623
|
+
<a href="#added_9" class="md-nav__link">
|
|
6348
6624
|
Added
|
|
6349
6625
|
</a>
|
|
6350
6626
|
|
|
6351
6627
|
</li>
|
|
6352
6628
|
|
|
6353
6629
|
<li class="md-nav__item">
|
|
6354
|
-
<a href="#
|
|
6630
|
+
<a href="#changed_9" class="md-nav__link">
|
|
6355
6631
|
Changed
|
|
6356
6632
|
</a>
|
|
6357
6633
|
|
|
6358
6634
|
</li>
|
|
6359
6635
|
|
|
6360
6636
|
<li class="md-nav__item">
|
|
6361
|
-
<a href="#
|
|
6637
|
+
<a href="#removed_7" class="md-nav__link">
|
|
6362
6638
|
Removed
|
|
6363
6639
|
</a>
|
|
6364
6640
|
|
|
6365
6641
|
</li>
|
|
6366
6642
|
|
|
6367
6643
|
<li class="md-nav__item">
|
|
6368
|
-
<a href="#
|
|
6644
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
6369
6645
|
Fixed
|
|
6370
6646
|
</a>
|
|
6371
6647
|
|
|
6372
6648
|
</li>
|
|
6373
6649
|
|
|
6374
6650
|
<li class="md-nav__item">
|
|
6375
|
-
<a href="#
|
|
6651
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
6376
6652
|
Housekeeping
|
|
6377
6653
|
</a>
|
|
6378
6654
|
|
|
@@ -6452,17 +6728,110 @@
|
|
|
6452
6728
|
<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>
|
|
6453
6729
|
<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>
|
|
6454
6730
|
<!-- towncrier release notes start -->
|
|
6455
|
-
<h2 id="
|
|
6731
|
+
<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>
|
|
6732
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
6733
|
+
<ul>
|
|
6734
|
+
<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>
|
|
6735
|
+
<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>
|
|
6736
|
+
<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>
|
|
6737
|
+
<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>
|
|
6738
|
+
<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>
|
|
6739
|
+
<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>
|
|
6740
|
+
<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>
|
|
6741
|
+
<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>
|
|
6742
|
+
<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>
|
|
6743
|
+
</ul>
|
|
6744
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
6745
|
+
<ul>
|
|
6746
|
+
<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>
|
|
6747
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
6748
|
+
</ul>
|
|
6749
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
6750
|
+
<ul>
|
|
6751
|
+
<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>
|
|
6752
|
+
<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>
|
|
6753
|
+
</ul>
|
|
6754
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
6755
|
+
<ul>
|
|
6756
|
+
<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>
|
|
6757
|
+
</ul>
|
|
6456
6758
|
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
6457
6759
|
<ul>
|
|
6760
|
+
<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>
|
|
6761
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for GraphiQL page <code>/graphql</code>.</li>
|
|
6762
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for Admin page <code>/admin</code>.</li>
|
|
6763
|
+
<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>
|
|
6764
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Improved footer responsiveness for certain media sizes.</li>
|
|
6765
|
+
<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>
|
|
6766
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5466">#5466</a> - Remove duplicated location param in vlan table.</li>
|
|
6767
|
+
</ul>
|
|
6768
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
6769
|
+
<ul>
|
|
6770
|
+
<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>
|
|
6771
|
+
</ul>
|
|
6772
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
6773
|
+
<ul>
|
|
6774
|
+
<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>
|
|
6775
|
+
<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>
|
|
6776
|
+
</ul>
|
|
6777
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
6778
|
+
<ul>
|
|
6779
|
+
<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>
|
|
6780
|
+
<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>
|
|
6781
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
6782
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
6783
|
+
<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>
|
|
6784
|
+
</ul>
|
|
6785
|
+
<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>
|
|
6786
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
6787
|
+
<ul>
|
|
6788
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
6789
|
+
<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>
|
|
6790
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_regex</code> as a constraint on valid choice definitions for a Custom Field of type <code>Selection</code> or <code>Multiple Selection</code>.</li>
|
|
6791
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5400">#5400</a> - Added power-port/power-outlet types <code>IEC 60906-1</code>, <code>2P+T 10A (NBR 14136)</code>, and <code>2P+T 20A (NBR 14136)</code>.</li>
|
|
6792
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5401">#5401</a> - Added front/rear port types <code>LX.5</code>, <code>LX.5/PC</code>, <code>LX.5/UPC</code>, and <code>LX.5/APC</code>.</li>
|
|
6793
|
+
<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>
|
|
6794
|
+
<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>
|
|
6795
|
+
</ul>
|
|
6796
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
6797
|
+
<ul>
|
|
6798
|
+
<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>
|
|
6799
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
|
|
6800
|
+
</ul>
|
|
6801
|
+
<h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">¶</a></h3>
|
|
6802
|
+
<ul>
|
|
6803
|
+
<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>
|
|
6804
|
+
</ul>
|
|
6805
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
6806
|
+
<ul>
|
|
6807
|
+
<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>
|
|
6808
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Fixed incorrect permission for "Add Tenant" button in the navigation menu.</li>
|
|
6809
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Added missing <code>extras.view_scheduledjob</code> permission to the "Job Approval Queue" navigation menu item.</li>
|
|
6810
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
|
|
6811
|
+
<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>
|
|
6812
|
+
</ul>
|
|
6813
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
6814
|
+
<ul>
|
|
6815
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
|
|
6816
|
+
<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>
|
|
6817
|
+
</ul>
|
|
6818
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
6819
|
+
<ul>
|
|
6820
|
+
<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>
|
|
6821
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
|
|
6822
|
+
<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>
|
|
6823
|
+
</ul>
|
|
6824
|
+
<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>
|
|
6825
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
6826
|
+
<ul>
|
|
6458
6827
|
<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>
|
|
6459
6828
|
</ul>
|
|
6460
6829
|
<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>
|
|
6461
|
-
<h3 id="
|
|
6830
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
6462
6831
|
<ul>
|
|
6463
6832
|
<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>
|
|
6464
6833
|
</ul>
|
|
6465
|
-
<h3 id="
|
|
6834
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
6466
6835
|
<ul>
|
|
6467
6836
|
<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>
|
|
6468
6837
|
<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>
|
|
@@ -6471,11 +6840,11 @@
|
|
|
6471
6840
|
<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>
|
|
6472
6841
|
<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>
|
|
6473
6842
|
</ul>
|
|
6474
|
-
<h3 id="
|
|
6843
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
6475
6844
|
<ul>
|
|
6476
6845
|
<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>
|
|
6477
6846
|
</ul>
|
|
6478
|
-
<h3 id="
|
|
6847
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
6479
6848
|
<ul>
|
|
6480
6849
|
<li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
|
|
6481
6850
|
<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>
|
|
@@ -6492,7 +6861,7 @@
|
|
|
6492
6861
|
<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>
|
|
6493
6862
|
<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>
|
|
6494
6863
|
</ul>
|
|
6495
|
-
<h3 id="
|
|
6864
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
6496
6865
|
<ul>
|
|
6497
6866
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
|
|
6498
6867
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
|
|
@@ -6506,24 +6875,24 @@
|
|
|
6506
6875
|
<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>
|
|
6507
6876
|
</ul>
|
|
6508
6877
|
<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>
|
|
6509
|
-
<h3 id="
|
|
6878
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
6510
6879
|
<ul>
|
|
6511
6880
|
<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>
|
|
6512
6881
|
</ul>
|
|
6513
|
-
<h3 id="
|
|
6882
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
6514
6883
|
<ul>
|
|
6515
6884
|
<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>
|
|
6516
6885
|
<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>
|
|
6517
6886
|
<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>
|
|
6518
6887
|
</ul>
|
|
6519
|
-
<h3 id="
|
|
6888
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
6520
6889
|
<ul>
|
|
6521
6890
|
<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>
|
|
6522
6891
|
<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>
|
|
6523
6892
|
<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>
|
|
6524
6893
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
|
|
6525
6894
|
</ul>
|
|
6526
|
-
<h3 id="
|
|
6895
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
6527
6896
|
<ul>
|
|
6528
6897
|
<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>
|
|
6529
6898
|
<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>
|
|
@@ -6532,38 +6901,38 @@
|
|
|
6532
6901
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
|
|
6533
6902
|
<li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
|
|
6534
6903
|
</ul>
|
|
6535
|
-
<h3 id="
|
|
6904
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
6536
6905
|
<ul>
|
|
6537
6906
|
<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>
|
|
6538
6907
|
<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>
|
|
6539
6908
|
</ul>
|
|
6540
|
-
<h3 id="
|
|
6909
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
6541
6910
|
<ul>
|
|
6542
6911
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
|
|
6543
6912
|
</ul>
|
|
6544
6913
|
<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>
|
|
6545
|
-
<h3 id="
|
|
6914
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
6546
6915
|
<ul>
|
|
6547
6916
|
<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>
|
|
6548
6917
|
</ul>
|
|
6549
|
-
<h3 id="
|
|
6918
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
6550
6919
|
<ul>
|
|
6551
6920
|
<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>
|
|
6552
6921
|
</ul>
|
|
6553
|
-
<h3 id="
|
|
6922
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
6554
6923
|
<ul>
|
|
6555
6924
|
<li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
|
|
6556
6925
|
</ul>
|
|
6557
|
-
<h3 id="
|
|
6926
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
6558
6927
|
<ul>
|
|
6559
6928
|
<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>
|
|
6560
6929
|
</ul>
|
|
6561
6930
|
<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>
|
|
6562
|
-
<h3 id="
|
|
6931
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
6563
6932
|
<ul>
|
|
6564
6933
|
<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>
|
|
6565
6934
|
</ul>
|
|
6566
|
-
<h3 id="
|
|
6935
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
6567
6936
|
<ul>
|
|
6568
6937
|
<li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
|
|
6569
6938
|
<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>
|
|
@@ -6571,7 +6940,7 @@
|
|
|
6571
6940
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
|
|
6572
6941
|
<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>
|
|
6573
6942
|
</ul>
|
|
6574
|
-
<h3 id="
|
|
6943
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
6575
6944
|
<ul>
|
|
6576
6945
|
<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>
|
|
6577
6946
|
<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>
|
|
@@ -6580,12 +6949,12 @@
|
|
|
6580
6949
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
|
|
6581
6950
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
|
|
6582
6951
|
</ul>
|
|
6583
|
-
<h3 id="
|
|
6952
|
+
<h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">¶</a></h3>
|
|
6584
6953
|
<ul>
|
|
6585
6954
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
|
|
6586
6955
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
|
|
6587
6956
|
</ul>
|
|
6588
|
-
<h3 id="
|
|
6957
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
6589
6958
|
<ul>
|
|
6590
6959
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
6591
6960
|
<li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
|
|
@@ -6599,14 +6968,14 @@
|
|
|
6599
6968
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
|
|
6600
6969
|
<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>
|
|
6601
6970
|
</ul>
|
|
6602
|
-
<h3 id="
|
|
6971
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
6603
6972
|
<ul>
|
|
6604
6973
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
|
|
6605
6974
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
|
|
6606
6975
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
|
|
6607
6976
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
|
|
6608
6977
|
</ul>
|
|
6609
|
-
<h3 id="
|
|
6978
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
6610
6979
|
<ul>
|
|
6611
6980
|
<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>
|
|
6612
6981
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
|
|
@@ -6618,30 +6987,30 @@
|
|
|
6618
6987
|
<li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
|
|
6619
6988
|
</ul>
|
|
6620
6989
|
<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>
|
|
6621
|
-
<h3 id="
|
|
6990
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
6622
6991
|
<ul>
|
|
6623
6992
|
<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>
|
|
6624
6993
|
<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>
|
|
6625
6994
|
<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>
|
|
6626
6995
|
</ul>
|
|
6627
|
-
<h3 id="
|
|
6996
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
6628
6997
|
<ul>
|
|
6629
6998
|
<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>
|
|
6630
6999
|
<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>
|
|
6631
7000
|
<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>
|
|
6632
7001
|
</ul>
|
|
6633
|
-
<h3 id="
|
|
7002
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
6634
7003
|
<ul>
|
|
6635
7004
|
<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>
|
|
6636
7005
|
<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>
|
|
6637
7006
|
<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>
|
|
6638
7007
|
<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>
|
|
6639
7008
|
</ul>
|
|
6640
|
-
<h3 id="
|
|
7009
|
+
<h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">¶</a></h3>
|
|
6641
7010
|
<ul>
|
|
6642
7011
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
|
|
6643
7012
|
</ul>
|
|
6644
|
-
<h3 id="
|
|
7013
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
6645
7014
|
<ul>
|
|
6646
7015
|
<li><a href="https://github.com/nautobot/nautobot/issues/4075">#4075</a> - Fixed sorting of Device Bays list view by installed device status.</li>
|
|
6647
7016
|
<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>
|
|
@@ -6667,17 +7036,17 @@
|
|
|
6667
7036
|
<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>
|
|
6668
7037
|
<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>
|
|
6669
7038
|
</ul>
|
|
6670
|
-
<h3 id="
|
|
7039
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
6671
7040
|
<ul>
|
|
6672
7041
|
<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>
|
|
6673
7042
|
<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>
|
|
6674
7043
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
6675
7044
|
</ul>
|
|
6676
|
-
<h3 id="
|
|
7045
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
6677
7046
|
<ul>
|
|
6678
7047
|
<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>
|
|
6679
7048
|
</ul>
|
|
6680
|
-
<h3 id="
|
|
7049
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
6681
7050
|
<ul>
|
|
6682
7051
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
|
|
6683
7052
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
|
|
@@ -6687,20 +7056,20 @@
|
|
|
6687
7056
|
<li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
|
|
6688
7057
|
</ul>
|
|
6689
7058
|
<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>
|
|
6690
|
-
<h3 id="
|
|
7059
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
6691
7060
|
<ul>
|
|
6692
7061
|
<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>
|
|
6693
7062
|
</ul>
|
|
6694
|
-
<h3 id="
|
|
7063
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
6695
7064
|
<ul>
|
|
6696
7065
|
<li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
|
|
6697
7066
|
</ul>
|
|
6698
|
-
<h3 id="
|
|
7067
|
+
<h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">¶</a></h3>
|
|
6699
7068
|
<ul>
|
|
6700
7069
|
<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>
|
|
6701
7070
|
<li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
|
|
6702
7071
|
</ul>
|
|
6703
|
-
<h3 id="
|
|
7072
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
6704
7073
|
<ul>
|
|
6705
7074
|
<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>
|
|
6706
7075
|
<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>
|
|
@@ -6709,14 +7078,14 @@
|
|
|
6709
7078
|
<li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
|
|
6710
7079
|
<li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
|
|
6711
7080
|
</ul>
|
|
6712
|
-
<h3 id="
|
|
7081
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
6713
7082
|
<ul>
|
|
6714
7083
|
<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>
|
|
6715
7084
|
<li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
|
|
6716
7085
|
<li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
|
|
6717
7086
|
<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>
|
|
6718
7087
|
</ul>
|
|
6719
|
-
<h3 id="
|
|
7088
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
6720
7089
|
<ul>
|
|
6721
7090
|
<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>
|
|
6722
7091
|
<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>
|
|
@@ -6731,13 +7100,13 @@
|
|
|
6731
7100
|
<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>
|
|
6732
7101
|
</ul>
|
|
6733
7102
|
<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>
|
|
6734
|
-
<h3 id="
|
|
7103
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
6735
7104
|
<ul>
|
|
6736
7105
|
<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>
|
|
6737
7106
|
<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>
|
|
6738
7107
|
<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>
|
|
6739
7108
|
</ul>
|
|
6740
|
-
<h3 id="
|
|
7109
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
6741
7110
|
<ul>
|
|
6742
7111
|
<li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
|
|
6743
7112
|
<li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
|
|
@@ -6751,7 +7120,7 @@
|
|
|
6751
7120
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
|
|
6752
7121
|
<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>
|
|
6753
7122
|
</ul>
|
|
6754
|
-
<h3 id="
|
|
7123
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
6755
7124
|
<ul>
|
|
6756
7125
|
<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>
|
|
6757
7126
|
<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>
|
|
@@ -6762,12 +7131,12 @@
|
|
|
6762
7131
|
<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>
|
|
6763
7132
|
<li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
|
|
6764
7133
|
</ul>
|
|
6765
|
-
<h3 id="
|
|
7134
|
+
<h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">¶</a></h3>
|
|
6766
7135
|
<ul>
|
|
6767
7136
|
<li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
|
|
6768
7137
|
<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>
|
|
6769
7138
|
</ul>
|
|
6770
|
-
<h3 id="
|
|
7139
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
6771
7140
|
<ul>
|
|
6772
7141
|
<li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
|
|
6773
7142
|
<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>
|
|
@@ -6780,14 +7149,14 @@
|
|
|
6780
7149
|
<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>
|
|
6781
7150
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6782
7151
|
</ul>
|
|
6783
|
-
<h3 id="
|
|
7152
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
6784
7153
|
<ul>
|
|
6785
7154
|
<li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
|
|
6786
7155
|
<li><a href="https://github.com/nautobot/nautobot/issues/4736">#4736</a> - Documented <code>isnull</code> filter expression in v2.1 Release Overview.</li>
|
|
6787
7156
|
<li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
|
|
6788
7157
|
<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>
|
|
6789
7158
|
</ul>
|
|
6790
|
-
<h3 id="
|
|
7159
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
6791
7160
|
<ul>
|
|
6792
7161
|
<li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
|
|
6793
7162
|
<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>
|
|
@@ -6795,7 +7164,7 @@
|
|
|
6795
7164
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
6796
7165
|
</ul>
|
|
6797
7166
|
<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>
|
|
6798
|
-
<h3 id="
|
|
7167
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
6799
7168
|
<ul>
|
|
6800
7169
|
<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>
|
|
6801
7170
|
<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>
|
|
@@ -6815,7 +7184,7 @@
|
|
|
6815
7184
|
<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>
|
|
6816
7185
|
<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>
|
|
6817
7186
|
</ul>
|
|
6818
|
-
<h3 id="
|
|
7187
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
6819
7188
|
<ul>
|
|
6820
7189
|
<li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
|
|
6821
7190
|
<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>
|
|
@@ -6824,12 +7193,12 @@
|
|
|
6824
7193
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
|
|
6825
7194
|
<li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
|
|
6826
7195
|
</ul>
|
|
6827
|
-
<h3 id="
|
|
7196
|
+
<h3 id="removed_7">Removed<a class="headerlink" href="#removed_7" title="Permanent link">¶</a></h3>
|
|
6828
7197
|
<ul>
|
|
6829
7198
|
<li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
|
|
6830
7199
|
<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>
|
|
6831
7200
|
</ul>
|
|
6832
|
-
<h3 id="
|
|
7201
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
6833
7202
|
<ul>
|
|
6834
7203
|
<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>
|
|
6835
7204
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
|
|
@@ -6837,7 +7206,7 @@
|
|
|
6837
7206
|
<li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps & lingering contenttypes referenced in changelog.</li>
|
|
6838
7207
|
<li><a href="https://github.com/nautobot/nautobot/issues/4882">#4882</a> - Fixed a regression in the rendering of the Jobs table view.</li>
|
|
6839
7208
|
</ul>
|
|
6840
|
-
<h3 id="
|
|
7209
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
6841
7210
|
<ul>
|
|
6842
7211
|
<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>
|
|
6843
7212
|
<li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
|