nautobot 2.1.8__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/core/api/routers.py +25 -3
- nautobot/core/api/utils.py +4 -0
- nautobot/core/api/views.py +21 -15
- nautobot/core/settings.py +1 -0
- nautobot/core/templates/admin/base.html +23 -94
- 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/rest_framework/api.html +12 -5
- nautobot/core/tests/integration/test_view_authentication.py +67 -0
- nautobot/core/tests/test_graphql.py +2 -14
- nautobot/core/tests/test_views.py +22 -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/models/racks.py +1 -3
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +67 -43
- nautobot/dcim/tests/test_api.py +3 -0
- nautobot/dcim/views.py +5 -2
- nautobot/extras/api/urls.py +1 -2
- nautobot/extras/api/views.py +0 -10
- nautobot/extras/plugins/views.py +6 -9
- nautobot/extras/tests/test_views.py +101 -0
- nautobot/extras/views.py +10 -10
- nautobot/ipam/api/urls.py +1 -2
- nautobot/ipam/api/views.py +0 -11
- nautobot/ipam/tables.py +0 -1
- nautobot/ipam/tests/test_graphql.py +2 -3
- nautobot/ipam/views.py +9 -9
- nautobot/project-static/css/base.css +1 -0
- nautobot/project-static/docs/404.html +14 -0
- nautobot/project-static/docs/apps/index.html +14 -0
- nautobot/project-static/docs/apps/nautobot-apps.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +394 -408
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +14 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +649 -183
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1811 -1744
- nautobot/project-static/docs/development/apps/api/configuration-view.html +14 -0
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +14 -0
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +14 -0
- nautobot/project-static/docs/development/apps/api/models/global-search.html +14 -0
- nautobot/project-static/docs/development/apps/api/models/graphql.html +14 -0
- nautobot/project-static/docs/development/apps/api/models/index.html +14 -0
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +14 -0
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +14 -0
- nautobot/project-static/docs/development/apps/api/prometheus.html +14 -0
- nautobot/project-static/docs/development/apps/api/setup.html +14 -0
- nautobot/project-static/docs/development/apps/api/testing.html +14 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +14 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +14 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +14 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +14 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/base-template.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +28 -9
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +31 -12
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/index.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/notes.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +14 -0
- nautobot/project-static/docs/development/apps/api/views/urls.html +14 -0
- nautobot/project-static/docs/development/apps/index.html +14 -0
- nautobot/project-static/docs/development/apps/migration/code-updates.html +14 -0
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +14 -0
- nautobot/project-static/docs/development/apps/migration/from-v1.html +14 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +14 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +14 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +14 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +14 -0
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +14 -0
- nautobot/project-static/docs/development/core/application-registry.html +14 -0
- nautobot/project-static/docs/development/core/best-practices.html +14 -0
- nautobot/project-static/docs/development/core/bootstrap-ui.html +14 -0
- nautobot/project-static/docs/development/core/caching.html +14 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +14 -0
- nautobot/project-static/docs/development/core/extending-models.html +14 -0
- nautobot/project-static/docs/development/core/generic-views.html +14 -0
- nautobot/project-static/docs/development/core/getting-started.html +33 -10
- nautobot/project-static/docs/development/core/homepage.html +14 -0
- nautobot/project-static/docs/development/core/index.html +14 -0
- nautobot/project-static/docs/development/core/model-features.html +14 -0
- nautobot/project-static/docs/development/core/natural-keys.html +14 -0
- nautobot/project-static/docs/development/core/navigation-menu.html +14 -0
- nautobot/project-static/docs/development/core/release-checklist.html +14 -0
- nautobot/project-static/docs/development/core/role-internals.html +14 -0
- nautobot/project-static/docs/development/core/style-guide.html +14 -0
- nautobot/project-static/docs/development/core/templates.html +14 -0
- nautobot/project-static/docs/development/core/testing.html +14 -0
- nautobot/project-static/docs/development/core/user-preferences.html +14 -0
- nautobot/project-static/docs/development/index.html +14 -0
- nautobot/project-static/docs/development/jobs/index.html +14 -0
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +14 -0
- nautobot/project-static/docs/index.html +14 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +14 -0
- nautobot/project-static/docs/release-notes/version-1.0.html +14 -0
- nautobot/project-static/docs/release-notes/version-1.1.html +14 -0
- nautobot/project-static/docs/release-notes/version-1.2.html +14 -0
- nautobot/project-static/docs/release-notes/version-1.3.html +14 -0
- nautobot/project-static/docs/release-notes/version-1.4.html +14 -0
- nautobot/project-static/docs/release-notes/version-1.5.html +14 -0
- nautobot/project-static/docs/release-notes/version-1.6.html +14 -0
- nautobot/project-static/docs/release-notes/version-2.0.html +14 -0
- nautobot/project-static/docs/release-notes/version-2.1.html +365 -159
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +245 -240
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +14 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +14 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +14 -0
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +14 -0
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +14 -0
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +14 -0
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +14 -0
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +14 -0
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +14 -0
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +21 -3
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +14 -0
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +6019 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +14 -0
- nautobot/project-static/docs/user-guide/administration/installation/index.html +14 -0
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +14 -0
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +14 -0
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +17 -3
- nautobot/project-static/docs/user-guide/administration/installation/services.html +14 -0
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +14 -0
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +14 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +14 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +14 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +14 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +14 -0
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +14 -0
- nautobot/project-static/docs/user-guide/index.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +14 -0
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +14 -0
- nautobot/tenancy/api/urls.py +1 -2
- nautobot/tenancy/api/views.py +0 -12
- nautobot/users/api/urls.py +1 -2
- nautobot/users/api/views.py +2 -65
- nautobot/users/views.py +8 -8
- nautobot/virtualization/api/urls.py +1 -2
- nautobot/virtualization/api/views.py +0 -12
- {nautobot-2.1.8.dist-info → nautobot-2.1.9.dist-info}/METADATA +2 -2
- {nautobot-2.1.8.dist-info → nautobot-2.1.9.dist-info}/RECORD +296 -294
- {nautobot-2.1.8.dist-info → nautobot-2.1.9.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.1.8.dist-info → nautobot-2.1.9.dist-info}/NOTICE +0 -0
- {nautobot-2.1.8.dist-info → nautobot-2.1.9.dist-info}/WHEEL +0 -0
- {nautobot-2.1.8.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
|
|
@@ -4973,13 +4987,20 @@
|
|
|
4973
4987
|
</li>
|
|
4974
4988
|
|
|
4975
4989
|
<li class="md-nav__item">
|
|
4976
|
-
<a href="#
|
|
4977
|
-
v2.1.
|
|
4990
|
+
<a href="#v219-2024-03-25" class="md-nav__link">
|
|
4991
|
+
v2.1.9 (2024-03-25)
|
|
4978
4992
|
</a>
|
|
4979
4993
|
|
|
4980
|
-
<nav class="md-nav" aria-label="v2.1.
|
|
4994
|
+
<nav class="md-nav" aria-label="v2.1.9 (2024-03-25)">
|
|
4981
4995
|
<ul class="md-nav__list">
|
|
4982
4996
|
|
|
4997
|
+
<li class="md-nav__item">
|
|
4998
|
+
<a href="#security" class="md-nav__link">
|
|
4999
|
+
Security
|
|
5000
|
+
</a>
|
|
5001
|
+
|
|
5002
|
+
</li>
|
|
5003
|
+
|
|
4983
5004
|
<li class="md-nav__item">
|
|
4984
5005
|
<a href="#added_1" class="md-nav__link">
|
|
4985
5006
|
Added
|
|
@@ -5006,6 +5027,13 @@
|
|
|
5006
5027
|
Fixed
|
|
5007
5028
|
</a>
|
|
5008
5029
|
|
|
5030
|
+
</li>
|
|
5031
|
+
|
|
5032
|
+
<li class="md-nav__item">
|
|
5033
|
+
<a href="#dependencies" class="md-nav__link">
|
|
5034
|
+
Dependencies
|
|
5035
|
+
</a>
|
|
5036
|
+
|
|
5009
5037
|
</li>
|
|
5010
5038
|
|
|
5011
5039
|
<li class="md-nav__item">
|
|
@@ -5025,6 +5053,61 @@
|
|
|
5025
5053
|
</ul>
|
|
5026
5054
|
</nav>
|
|
5027
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
|
+
|
|
5028
5111
|
</li>
|
|
5029
5112
|
|
|
5030
5113
|
<li class="md-nav__item">
|
|
@@ -5036,7 +5119,7 @@
|
|
|
5036
5119
|
<ul class="md-nav__list">
|
|
5037
5120
|
|
|
5038
5121
|
<li class="md-nav__item">
|
|
5039
|
-
<a href="#
|
|
5122
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
5040
5123
|
Fixed
|
|
5041
5124
|
</a>
|
|
5042
5125
|
|
|
@@ -5056,35 +5139,35 @@
|
|
|
5056
5139
|
<ul class="md-nav__list">
|
|
5057
5140
|
|
|
5058
5141
|
<li class="md-nav__item">
|
|
5059
|
-
<a href="#
|
|
5142
|
+
<a href="#security_1" class="md-nav__link">
|
|
5060
5143
|
Security
|
|
5061
5144
|
</a>
|
|
5062
5145
|
|
|
5063
5146
|
</li>
|
|
5064
5147
|
|
|
5065
5148
|
<li class="md-nav__item">
|
|
5066
|
-
<a href="#
|
|
5149
|
+
<a href="#added_3" class="md-nav__link">
|
|
5067
5150
|
Added
|
|
5068
5151
|
</a>
|
|
5069
5152
|
|
|
5070
5153
|
</li>
|
|
5071
5154
|
|
|
5072
5155
|
<li class="md-nav__item">
|
|
5073
|
-
<a href="#
|
|
5156
|
+
<a href="#changed_3" class="md-nav__link">
|
|
5074
5157
|
Changed
|
|
5075
5158
|
</a>
|
|
5076
5159
|
|
|
5077
5160
|
</li>
|
|
5078
5161
|
|
|
5079
5162
|
<li class="md-nav__item">
|
|
5080
|
-
<a href="#
|
|
5163
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
5081
5164
|
Fixed
|
|
5082
5165
|
</a>
|
|
5083
5166
|
|
|
5084
5167
|
</li>
|
|
5085
5168
|
|
|
5086
5169
|
<li class="md-nav__item">
|
|
5087
|
-
<a href="#
|
|
5170
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
5088
5171
|
Documentation
|
|
5089
5172
|
</a>
|
|
5090
5173
|
|
|
@@ -5104,42 +5187,42 @@
|
|
|
5104
5187
|
<ul class="md-nav__list">
|
|
5105
5188
|
|
|
5106
5189
|
<li class="md-nav__item">
|
|
5107
|
-
<a href="#
|
|
5190
|
+
<a href="#security_2" class="md-nav__link">
|
|
5108
5191
|
Security
|
|
5109
5192
|
</a>
|
|
5110
5193
|
|
|
5111
5194
|
</li>
|
|
5112
5195
|
|
|
5113
5196
|
<li class="md-nav__item">
|
|
5114
|
-
<a href="#
|
|
5197
|
+
<a href="#added_4" class="md-nav__link">
|
|
5115
5198
|
Added
|
|
5116
5199
|
</a>
|
|
5117
5200
|
|
|
5118
5201
|
</li>
|
|
5119
5202
|
|
|
5120
5203
|
<li class="md-nav__item">
|
|
5121
|
-
<a href="#
|
|
5204
|
+
<a href="#changed_4" class="md-nav__link">
|
|
5122
5205
|
Changed
|
|
5123
5206
|
</a>
|
|
5124
5207
|
|
|
5125
5208
|
</li>
|
|
5126
5209
|
|
|
5127
5210
|
<li class="md-nav__item">
|
|
5128
|
-
<a href="#
|
|
5211
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
5129
5212
|
Fixed
|
|
5130
5213
|
</a>
|
|
5131
5214
|
|
|
5132
5215
|
</li>
|
|
5133
5216
|
|
|
5134
5217
|
<li class="md-nav__item">
|
|
5135
|
-
<a href="#
|
|
5218
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
5136
5219
|
Documentation
|
|
5137
5220
|
</a>
|
|
5138
5221
|
|
|
5139
5222
|
</li>
|
|
5140
5223
|
|
|
5141
5224
|
<li class="md-nav__item">
|
|
5142
|
-
<a href="#
|
|
5225
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
5143
5226
|
Housekeeping
|
|
5144
5227
|
</a>
|
|
5145
5228
|
|
|
@@ -5159,28 +5242,28 @@
|
|
|
5159
5242
|
<ul class="md-nav__list">
|
|
5160
5243
|
|
|
5161
5244
|
<li class="md-nav__item">
|
|
5162
|
-
<a href="#
|
|
5245
|
+
<a href="#security_3" class="md-nav__link">
|
|
5163
5246
|
Security
|
|
5164
5247
|
</a>
|
|
5165
5248
|
|
|
5166
5249
|
</li>
|
|
5167
5250
|
|
|
5168
5251
|
<li class="md-nav__item">
|
|
5169
|
-
<a href="#
|
|
5252
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
5170
5253
|
Fixed
|
|
5171
5254
|
</a>
|
|
5172
5255
|
|
|
5173
5256
|
</li>
|
|
5174
5257
|
|
|
5175
5258
|
<li class="md-nav__item">
|
|
5176
|
-
<a href="#
|
|
5259
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
5177
5260
|
Documentation
|
|
5178
5261
|
</a>
|
|
5179
5262
|
|
|
5180
5263
|
</li>
|
|
5181
5264
|
|
|
5182
5265
|
<li class="md-nav__item">
|
|
5183
|
-
<a href="#
|
|
5266
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
5184
5267
|
Housekeeping
|
|
5185
5268
|
</a>
|
|
5186
5269
|
|
|
@@ -5200,49 +5283,49 @@
|
|
|
5200
5283
|
<ul class="md-nav__list">
|
|
5201
5284
|
|
|
5202
5285
|
<li class="md-nav__item">
|
|
5203
|
-
<a href="#
|
|
5286
|
+
<a href="#security_4" class="md-nav__link">
|
|
5204
5287
|
Security
|
|
5205
5288
|
</a>
|
|
5206
5289
|
|
|
5207
5290
|
</li>
|
|
5208
5291
|
|
|
5209
5292
|
<li class="md-nav__item">
|
|
5210
|
-
<a href="#
|
|
5293
|
+
<a href="#added_5" class="md-nav__link">
|
|
5211
5294
|
Added
|
|
5212
5295
|
</a>
|
|
5213
5296
|
|
|
5214
5297
|
</li>
|
|
5215
5298
|
|
|
5216
5299
|
<li class="md-nav__item">
|
|
5217
|
-
<a href="#
|
|
5300
|
+
<a href="#changed_5" class="md-nav__link">
|
|
5218
5301
|
Changed
|
|
5219
5302
|
</a>
|
|
5220
5303
|
|
|
5221
5304
|
</li>
|
|
5222
5305
|
|
|
5223
5306
|
<li class="md-nav__item">
|
|
5224
|
-
<a href="#
|
|
5307
|
+
<a href="#removed_3" class="md-nav__link">
|
|
5225
5308
|
Removed
|
|
5226
5309
|
</a>
|
|
5227
5310
|
|
|
5228
5311
|
</li>
|
|
5229
5312
|
|
|
5230
5313
|
<li class="md-nav__item">
|
|
5231
|
-
<a href="#
|
|
5314
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
5232
5315
|
Fixed
|
|
5233
5316
|
</a>
|
|
5234
5317
|
|
|
5235
5318
|
</li>
|
|
5236
5319
|
|
|
5237
5320
|
<li class="md-nav__item">
|
|
5238
|
-
<a href="#
|
|
5321
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
5239
5322
|
Dependencies
|
|
5240
5323
|
</a>
|
|
5241
5324
|
|
|
5242
5325
|
</li>
|
|
5243
5326
|
|
|
5244
5327
|
<li class="md-nav__item">
|
|
5245
|
-
<a href="#
|
|
5328
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
5246
5329
|
Housekeeping
|
|
5247
5330
|
</a>
|
|
5248
5331
|
|
|
@@ -5262,56 +5345,56 @@
|
|
|
5262
5345
|
<ul class="md-nav__list">
|
|
5263
5346
|
|
|
5264
5347
|
<li class="md-nav__item">
|
|
5265
|
-
<a href="#
|
|
5348
|
+
<a href="#security_5" class="md-nav__link">
|
|
5266
5349
|
Security
|
|
5267
5350
|
</a>
|
|
5268
5351
|
|
|
5269
5352
|
</li>
|
|
5270
5353
|
|
|
5271
5354
|
<li class="md-nav__item">
|
|
5272
|
-
<a href="#
|
|
5355
|
+
<a href="#added_6" class="md-nav__link">
|
|
5273
5356
|
Added
|
|
5274
5357
|
</a>
|
|
5275
5358
|
|
|
5276
5359
|
</li>
|
|
5277
5360
|
|
|
5278
5361
|
<li class="md-nav__item">
|
|
5279
|
-
<a href="#
|
|
5362
|
+
<a href="#changed_6" class="md-nav__link">
|
|
5280
5363
|
Changed
|
|
5281
5364
|
</a>
|
|
5282
5365
|
|
|
5283
5366
|
</li>
|
|
5284
5367
|
|
|
5285
5368
|
<li class="md-nav__item">
|
|
5286
|
-
<a href="#
|
|
5369
|
+
<a href="#removed_4" class="md-nav__link">
|
|
5287
5370
|
Removed
|
|
5288
5371
|
</a>
|
|
5289
5372
|
|
|
5290
5373
|
</li>
|
|
5291
5374
|
|
|
5292
5375
|
<li class="md-nav__item">
|
|
5293
|
-
<a href="#
|
|
5376
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
5294
5377
|
Fixed
|
|
5295
5378
|
</a>
|
|
5296
5379
|
|
|
5297
5380
|
</li>
|
|
5298
5381
|
|
|
5299
5382
|
<li class="md-nav__item">
|
|
5300
|
-
<a href="#
|
|
5383
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
5301
5384
|
Dependencies
|
|
5302
5385
|
</a>
|
|
5303
5386
|
|
|
5304
5387
|
</li>
|
|
5305
5388
|
|
|
5306
5389
|
<li class="md-nav__item">
|
|
5307
|
-
<a href="#
|
|
5390
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
5308
5391
|
Documentation
|
|
5309
5392
|
</a>
|
|
5310
5393
|
|
|
5311
5394
|
</li>
|
|
5312
5395
|
|
|
5313
5396
|
<li class="md-nav__item">
|
|
5314
|
-
<a href="#
|
|
5397
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
5315
5398
|
Housekeeping
|
|
5316
5399
|
</a>
|
|
5317
5400
|
|
|
@@ -5331,42 +5414,42 @@
|
|
|
5331
5414
|
<ul class="md-nav__list">
|
|
5332
5415
|
|
|
5333
5416
|
<li class="md-nav__item">
|
|
5334
|
-
<a href="#
|
|
5417
|
+
<a href="#added_7" class="md-nav__link">
|
|
5335
5418
|
Added
|
|
5336
5419
|
</a>
|
|
5337
5420
|
|
|
5338
5421
|
</li>
|
|
5339
5422
|
|
|
5340
5423
|
<li class="md-nav__item">
|
|
5341
|
-
<a href="#
|
|
5424
|
+
<a href="#changed_7" class="md-nav__link">
|
|
5342
5425
|
Changed
|
|
5343
5426
|
</a>
|
|
5344
5427
|
|
|
5345
5428
|
</li>
|
|
5346
5429
|
|
|
5347
5430
|
<li class="md-nav__item">
|
|
5348
|
-
<a href="#
|
|
5431
|
+
<a href="#removed_5" class="md-nav__link">
|
|
5349
5432
|
Removed
|
|
5350
5433
|
</a>
|
|
5351
5434
|
|
|
5352
5435
|
</li>
|
|
5353
5436
|
|
|
5354
5437
|
<li class="md-nav__item">
|
|
5355
|
-
<a href="#
|
|
5438
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
5356
5439
|
Fixed
|
|
5357
5440
|
</a>
|
|
5358
5441
|
|
|
5359
5442
|
</li>
|
|
5360
5443
|
|
|
5361
5444
|
<li class="md-nav__item">
|
|
5362
|
-
<a href="#
|
|
5445
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
5363
5446
|
Documentation
|
|
5364
5447
|
</a>
|
|
5365
5448
|
|
|
5366
5449
|
</li>
|
|
5367
5450
|
|
|
5368
5451
|
<li class="md-nav__item">
|
|
5369
|
-
<a href="#
|
|
5452
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
5370
5453
|
Housekeeping
|
|
5371
5454
|
</a>
|
|
5372
5455
|
|
|
@@ -5386,49 +5469,49 @@
|
|
|
5386
5469
|
<ul class="md-nav__list">
|
|
5387
5470
|
|
|
5388
5471
|
<li class="md-nav__item">
|
|
5389
|
-
<a href="#
|
|
5472
|
+
<a href="#security_6" class="md-nav__link">
|
|
5390
5473
|
Security
|
|
5391
5474
|
</a>
|
|
5392
5475
|
|
|
5393
5476
|
</li>
|
|
5394
5477
|
|
|
5395
5478
|
<li class="md-nav__item">
|
|
5396
|
-
<a href="#
|
|
5479
|
+
<a href="#added_8" class="md-nav__link">
|
|
5397
5480
|
Added
|
|
5398
5481
|
</a>
|
|
5399
5482
|
|
|
5400
5483
|
</li>
|
|
5401
5484
|
|
|
5402
5485
|
<li class="md-nav__item">
|
|
5403
|
-
<a href="#
|
|
5486
|
+
<a href="#changed_8" class="md-nav__link">
|
|
5404
5487
|
Changed
|
|
5405
5488
|
</a>
|
|
5406
5489
|
|
|
5407
5490
|
</li>
|
|
5408
5491
|
|
|
5409
5492
|
<li class="md-nav__item">
|
|
5410
|
-
<a href="#
|
|
5493
|
+
<a href="#removed_6" class="md-nav__link">
|
|
5411
5494
|
Removed
|
|
5412
5495
|
</a>
|
|
5413
5496
|
|
|
5414
5497
|
</li>
|
|
5415
5498
|
|
|
5416
5499
|
<li class="md-nav__item">
|
|
5417
|
-
<a href="#
|
|
5500
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
5418
5501
|
Fixed
|
|
5419
5502
|
</a>
|
|
5420
5503
|
|
|
5421
5504
|
</li>
|
|
5422
5505
|
|
|
5423
5506
|
<li class="md-nav__item">
|
|
5424
|
-
<a href="#
|
|
5507
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
5425
5508
|
Documentation
|
|
5426
5509
|
</a>
|
|
5427
5510
|
|
|
5428
5511
|
</li>
|
|
5429
5512
|
|
|
5430
5513
|
<li class="md-nav__item">
|
|
5431
|
-
<a href="#
|
|
5514
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
5432
5515
|
Housekeeping
|
|
5433
5516
|
</a>
|
|
5434
5517
|
|
|
@@ -5448,35 +5531,35 @@
|
|
|
5448
5531
|
<ul class="md-nav__list">
|
|
5449
5532
|
|
|
5450
5533
|
<li class="md-nav__item">
|
|
5451
|
-
<a href="#
|
|
5534
|
+
<a href="#added_9" class="md-nav__link">
|
|
5452
5535
|
Added
|
|
5453
5536
|
</a>
|
|
5454
5537
|
|
|
5455
5538
|
</li>
|
|
5456
5539
|
|
|
5457
5540
|
<li class="md-nav__item">
|
|
5458
|
-
<a href="#
|
|
5541
|
+
<a href="#changed_9" class="md-nav__link">
|
|
5459
5542
|
Changed
|
|
5460
5543
|
</a>
|
|
5461
5544
|
|
|
5462
5545
|
</li>
|
|
5463
5546
|
|
|
5464
5547
|
<li class="md-nav__item">
|
|
5465
|
-
<a href="#
|
|
5548
|
+
<a href="#removed_7" class="md-nav__link">
|
|
5466
5549
|
Removed
|
|
5467
5550
|
</a>
|
|
5468
5551
|
|
|
5469
5552
|
</li>
|
|
5470
5553
|
|
|
5471
5554
|
<li class="md-nav__item">
|
|
5472
|
-
<a href="#
|
|
5555
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
5473
5556
|
Fixed
|
|
5474
5557
|
</a>
|
|
5475
5558
|
|
|
5476
5559
|
</li>
|
|
5477
5560
|
|
|
5478
5561
|
<li class="md-nav__item">
|
|
5479
|
-
<a href="#
|
|
5562
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
5480
5563
|
Housekeeping
|
|
5481
5564
|
</a>
|
|
5482
5565
|
|
|
@@ -5993,13 +6076,20 @@
|
|
|
5993
6076
|
</li>
|
|
5994
6077
|
|
|
5995
6078
|
<li class="md-nav__item">
|
|
5996
|
-
<a href="#
|
|
5997
|
-
v2.1.
|
|
6079
|
+
<a href="#v219-2024-03-25" class="md-nav__link">
|
|
6080
|
+
v2.1.9 (2024-03-25)
|
|
5998
6081
|
</a>
|
|
5999
6082
|
|
|
6000
|
-
<nav class="md-nav" aria-label="v2.1.
|
|
6083
|
+
<nav class="md-nav" aria-label="v2.1.9 (2024-03-25)">
|
|
6001
6084
|
<ul class="md-nav__list">
|
|
6002
6085
|
|
|
6086
|
+
<li class="md-nav__item">
|
|
6087
|
+
<a href="#security" class="md-nav__link">
|
|
6088
|
+
Security
|
|
6089
|
+
</a>
|
|
6090
|
+
|
|
6091
|
+
</li>
|
|
6092
|
+
|
|
6003
6093
|
<li class="md-nav__item">
|
|
6004
6094
|
<a href="#added_1" class="md-nav__link">
|
|
6005
6095
|
Added
|
|
@@ -6026,6 +6116,13 @@
|
|
|
6026
6116
|
Fixed
|
|
6027
6117
|
</a>
|
|
6028
6118
|
|
|
6119
|
+
</li>
|
|
6120
|
+
|
|
6121
|
+
<li class="md-nav__item">
|
|
6122
|
+
<a href="#dependencies" class="md-nav__link">
|
|
6123
|
+
Dependencies
|
|
6124
|
+
</a>
|
|
6125
|
+
|
|
6029
6126
|
</li>
|
|
6030
6127
|
|
|
6031
6128
|
<li class="md-nav__item">
|
|
@@ -6045,6 +6142,61 @@
|
|
|
6045
6142
|
</ul>
|
|
6046
6143
|
</nav>
|
|
6047
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
|
+
|
|
6048
6200
|
</li>
|
|
6049
6201
|
|
|
6050
6202
|
<li class="md-nav__item">
|
|
@@ -6056,7 +6208,7 @@
|
|
|
6056
6208
|
<ul class="md-nav__list">
|
|
6057
6209
|
|
|
6058
6210
|
<li class="md-nav__item">
|
|
6059
|
-
<a href="#
|
|
6211
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
6060
6212
|
Fixed
|
|
6061
6213
|
</a>
|
|
6062
6214
|
|
|
@@ -6076,35 +6228,35 @@
|
|
|
6076
6228
|
<ul class="md-nav__list">
|
|
6077
6229
|
|
|
6078
6230
|
<li class="md-nav__item">
|
|
6079
|
-
<a href="#
|
|
6231
|
+
<a href="#security_1" class="md-nav__link">
|
|
6080
6232
|
Security
|
|
6081
6233
|
</a>
|
|
6082
6234
|
|
|
6083
6235
|
</li>
|
|
6084
6236
|
|
|
6085
6237
|
<li class="md-nav__item">
|
|
6086
|
-
<a href="#
|
|
6238
|
+
<a href="#added_3" class="md-nav__link">
|
|
6087
6239
|
Added
|
|
6088
6240
|
</a>
|
|
6089
6241
|
|
|
6090
6242
|
</li>
|
|
6091
6243
|
|
|
6092
6244
|
<li class="md-nav__item">
|
|
6093
|
-
<a href="#
|
|
6245
|
+
<a href="#changed_3" class="md-nav__link">
|
|
6094
6246
|
Changed
|
|
6095
6247
|
</a>
|
|
6096
6248
|
|
|
6097
6249
|
</li>
|
|
6098
6250
|
|
|
6099
6251
|
<li class="md-nav__item">
|
|
6100
|
-
<a href="#
|
|
6252
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
6101
6253
|
Fixed
|
|
6102
6254
|
</a>
|
|
6103
6255
|
|
|
6104
6256
|
</li>
|
|
6105
6257
|
|
|
6106
6258
|
<li class="md-nav__item">
|
|
6107
|
-
<a href="#
|
|
6259
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
6108
6260
|
Documentation
|
|
6109
6261
|
</a>
|
|
6110
6262
|
|
|
@@ -6124,42 +6276,42 @@
|
|
|
6124
6276
|
<ul class="md-nav__list">
|
|
6125
6277
|
|
|
6126
6278
|
<li class="md-nav__item">
|
|
6127
|
-
<a href="#
|
|
6279
|
+
<a href="#security_2" class="md-nav__link">
|
|
6128
6280
|
Security
|
|
6129
6281
|
</a>
|
|
6130
6282
|
|
|
6131
6283
|
</li>
|
|
6132
6284
|
|
|
6133
6285
|
<li class="md-nav__item">
|
|
6134
|
-
<a href="#
|
|
6286
|
+
<a href="#added_4" class="md-nav__link">
|
|
6135
6287
|
Added
|
|
6136
6288
|
</a>
|
|
6137
6289
|
|
|
6138
6290
|
</li>
|
|
6139
6291
|
|
|
6140
6292
|
<li class="md-nav__item">
|
|
6141
|
-
<a href="#
|
|
6293
|
+
<a href="#changed_4" class="md-nav__link">
|
|
6142
6294
|
Changed
|
|
6143
6295
|
</a>
|
|
6144
6296
|
|
|
6145
6297
|
</li>
|
|
6146
6298
|
|
|
6147
6299
|
<li class="md-nav__item">
|
|
6148
|
-
<a href="#
|
|
6300
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
6149
6301
|
Fixed
|
|
6150
6302
|
</a>
|
|
6151
6303
|
|
|
6152
6304
|
</li>
|
|
6153
6305
|
|
|
6154
6306
|
<li class="md-nav__item">
|
|
6155
|
-
<a href="#
|
|
6307
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
6156
6308
|
Documentation
|
|
6157
6309
|
</a>
|
|
6158
6310
|
|
|
6159
6311
|
</li>
|
|
6160
6312
|
|
|
6161
6313
|
<li class="md-nav__item">
|
|
6162
|
-
<a href="#
|
|
6314
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
6163
6315
|
Housekeeping
|
|
6164
6316
|
</a>
|
|
6165
6317
|
|
|
@@ -6179,28 +6331,28 @@
|
|
|
6179
6331
|
<ul class="md-nav__list">
|
|
6180
6332
|
|
|
6181
6333
|
<li class="md-nav__item">
|
|
6182
|
-
<a href="#
|
|
6334
|
+
<a href="#security_3" class="md-nav__link">
|
|
6183
6335
|
Security
|
|
6184
6336
|
</a>
|
|
6185
6337
|
|
|
6186
6338
|
</li>
|
|
6187
6339
|
|
|
6188
6340
|
<li class="md-nav__item">
|
|
6189
|
-
<a href="#
|
|
6341
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
6190
6342
|
Fixed
|
|
6191
6343
|
</a>
|
|
6192
6344
|
|
|
6193
6345
|
</li>
|
|
6194
6346
|
|
|
6195
6347
|
<li class="md-nav__item">
|
|
6196
|
-
<a href="#
|
|
6348
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
6197
6349
|
Documentation
|
|
6198
6350
|
</a>
|
|
6199
6351
|
|
|
6200
6352
|
</li>
|
|
6201
6353
|
|
|
6202
6354
|
<li class="md-nav__item">
|
|
6203
|
-
<a href="#
|
|
6355
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
6204
6356
|
Housekeeping
|
|
6205
6357
|
</a>
|
|
6206
6358
|
|
|
@@ -6220,49 +6372,49 @@
|
|
|
6220
6372
|
<ul class="md-nav__list">
|
|
6221
6373
|
|
|
6222
6374
|
<li class="md-nav__item">
|
|
6223
|
-
<a href="#
|
|
6375
|
+
<a href="#security_4" class="md-nav__link">
|
|
6224
6376
|
Security
|
|
6225
6377
|
</a>
|
|
6226
6378
|
|
|
6227
6379
|
</li>
|
|
6228
6380
|
|
|
6229
6381
|
<li class="md-nav__item">
|
|
6230
|
-
<a href="#
|
|
6382
|
+
<a href="#added_5" class="md-nav__link">
|
|
6231
6383
|
Added
|
|
6232
6384
|
</a>
|
|
6233
6385
|
|
|
6234
6386
|
</li>
|
|
6235
6387
|
|
|
6236
6388
|
<li class="md-nav__item">
|
|
6237
|
-
<a href="#
|
|
6389
|
+
<a href="#changed_5" class="md-nav__link">
|
|
6238
6390
|
Changed
|
|
6239
6391
|
</a>
|
|
6240
6392
|
|
|
6241
6393
|
</li>
|
|
6242
6394
|
|
|
6243
6395
|
<li class="md-nav__item">
|
|
6244
|
-
<a href="#
|
|
6396
|
+
<a href="#removed_3" class="md-nav__link">
|
|
6245
6397
|
Removed
|
|
6246
6398
|
</a>
|
|
6247
6399
|
|
|
6248
6400
|
</li>
|
|
6249
6401
|
|
|
6250
6402
|
<li class="md-nav__item">
|
|
6251
|
-
<a href="#
|
|
6403
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
6252
6404
|
Fixed
|
|
6253
6405
|
</a>
|
|
6254
6406
|
|
|
6255
6407
|
</li>
|
|
6256
6408
|
|
|
6257
6409
|
<li class="md-nav__item">
|
|
6258
|
-
<a href="#
|
|
6410
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
6259
6411
|
Dependencies
|
|
6260
6412
|
</a>
|
|
6261
6413
|
|
|
6262
6414
|
</li>
|
|
6263
6415
|
|
|
6264
6416
|
<li class="md-nav__item">
|
|
6265
|
-
<a href="#
|
|
6417
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
6266
6418
|
Housekeeping
|
|
6267
6419
|
</a>
|
|
6268
6420
|
|
|
@@ -6282,56 +6434,56 @@
|
|
|
6282
6434
|
<ul class="md-nav__list">
|
|
6283
6435
|
|
|
6284
6436
|
<li class="md-nav__item">
|
|
6285
|
-
<a href="#
|
|
6437
|
+
<a href="#security_5" class="md-nav__link">
|
|
6286
6438
|
Security
|
|
6287
6439
|
</a>
|
|
6288
6440
|
|
|
6289
6441
|
</li>
|
|
6290
6442
|
|
|
6291
6443
|
<li class="md-nav__item">
|
|
6292
|
-
<a href="#
|
|
6444
|
+
<a href="#added_6" class="md-nav__link">
|
|
6293
6445
|
Added
|
|
6294
6446
|
</a>
|
|
6295
6447
|
|
|
6296
6448
|
</li>
|
|
6297
6449
|
|
|
6298
6450
|
<li class="md-nav__item">
|
|
6299
|
-
<a href="#
|
|
6451
|
+
<a href="#changed_6" class="md-nav__link">
|
|
6300
6452
|
Changed
|
|
6301
6453
|
</a>
|
|
6302
6454
|
|
|
6303
6455
|
</li>
|
|
6304
6456
|
|
|
6305
6457
|
<li class="md-nav__item">
|
|
6306
|
-
<a href="#
|
|
6458
|
+
<a href="#removed_4" class="md-nav__link">
|
|
6307
6459
|
Removed
|
|
6308
6460
|
</a>
|
|
6309
6461
|
|
|
6310
6462
|
</li>
|
|
6311
6463
|
|
|
6312
6464
|
<li class="md-nav__item">
|
|
6313
|
-
<a href="#
|
|
6465
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
6314
6466
|
Fixed
|
|
6315
6467
|
</a>
|
|
6316
6468
|
|
|
6317
6469
|
</li>
|
|
6318
6470
|
|
|
6319
6471
|
<li class="md-nav__item">
|
|
6320
|
-
<a href="#
|
|
6472
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
6321
6473
|
Dependencies
|
|
6322
6474
|
</a>
|
|
6323
6475
|
|
|
6324
6476
|
</li>
|
|
6325
6477
|
|
|
6326
6478
|
<li class="md-nav__item">
|
|
6327
|
-
<a href="#
|
|
6479
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
6328
6480
|
Documentation
|
|
6329
6481
|
</a>
|
|
6330
6482
|
|
|
6331
6483
|
</li>
|
|
6332
6484
|
|
|
6333
6485
|
<li class="md-nav__item">
|
|
6334
|
-
<a href="#
|
|
6486
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
6335
6487
|
Housekeeping
|
|
6336
6488
|
</a>
|
|
6337
6489
|
|
|
@@ -6351,42 +6503,42 @@
|
|
|
6351
6503
|
<ul class="md-nav__list">
|
|
6352
6504
|
|
|
6353
6505
|
<li class="md-nav__item">
|
|
6354
|
-
<a href="#
|
|
6506
|
+
<a href="#added_7" class="md-nav__link">
|
|
6355
6507
|
Added
|
|
6356
6508
|
</a>
|
|
6357
6509
|
|
|
6358
6510
|
</li>
|
|
6359
6511
|
|
|
6360
6512
|
<li class="md-nav__item">
|
|
6361
|
-
<a href="#
|
|
6513
|
+
<a href="#changed_7" class="md-nav__link">
|
|
6362
6514
|
Changed
|
|
6363
6515
|
</a>
|
|
6364
6516
|
|
|
6365
6517
|
</li>
|
|
6366
6518
|
|
|
6367
6519
|
<li class="md-nav__item">
|
|
6368
|
-
<a href="#
|
|
6520
|
+
<a href="#removed_5" class="md-nav__link">
|
|
6369
6521
|
Removed
|
|
6370
6522
|
</a>
|
|
6371
6523
|
|
|
6372
6524
|
</li>
|
|
6373
6525
|
|
|
6374
6526
|
<li class="md-nav__item">
|
|
6375
|
-
<a href="#
|
|
6527
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
6376
6528
|
Fixed
|
|
6377
6529
|
</a>
|
|
6378
6530
|
|
|
6379
6531
|
</li>
|
|
6380
6532
|
|
|
6381
6533
|
<li class="md-nav__item">
|
|
6382
|
-
<a href="#
|
|
6534
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
6383
6535
|
Documentation
|
|
6384
6536
|
</a>
|
|
6385
6537
|
|
|
6386
6538
|
</li>
|
|
6387
6539
|
|
|
6388
6540
|
<li class="md-nav__item">
|
|
6389
|
-
<a href="#
|
|
6541
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
6390
6542
|
Housekeeping
|
|
6391
6543
|
</a>
|
|
6392
6544
|
|
|
@@ -6406,49 +6558,49 @@
|
|
|
6406
6558
|
<ul class="md-nav__list">
|
|
6407
6559
|
|
|
6408
6560
|
<li class="md-nav__item">
|
|
6409
|
-
<a href="#
|
|
6561
|
+
<a href="#security_6" class="md-nav__link">
|
|
6410
6562
|
Security
|
|
6411
6563
|
</a>
|
|
6412
6564
|
|
|
6413
6565
|
</li>
|
|
6414
6566
|
|
|
6415
6567
|
<li class="md-nav__item">
|
|
6416
|
-
<a href="#
|
|
6568
|
+
<a href="#added_8" class="md-nav__link">
|
|
6417
6569
|
Added
|
|
6418
6570
|
</a>
|
|
6419
6571
|
|
|
6420
6572
|
</li>
|
|
6421
6573
|
|
|
6422
6574
|
<li class="md-nav__item">
|
|
6423
|
-
<a href="#
|
|
6575
|
+
<a href="#changed_8" class="md-nav__link">
|
|
6424
6576
|
Changed
|
|
6425
6577
|
</a>
|
|
6426
6578
|
|
|
6427
6579
|
</li>
|
|
6428
6580
|
|
|
6429
6581
|
<li class="md-nav__item">
|
|
6430
|
-
<a href="#
|
|
6582
|
+
<a href="#removed_6" class="md-nav__link">
|
|
6431
6583
|
Removed
|
|
6432
6584
|
</a>
|
|
6433
6585
|
|
|
6434
6586
|
</li>
|
|
6435
6587
|
|
|
6436
6588
|
<li class="md-nav__item">
|
|
6437
|
-
<a href="#
|
|
6589
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
6438
6590
|
Fixed
|
|
6439
6591
|
</a>
|
|
6440
6592
|
|
|
6441
6593
|
</li>
|
|
6442
6594
|
|
|
6443
6595
|
<li class="md-nav__item">
|
|
6444
|
-
<a href="#
|
|
6596
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
6445
6597
|
Documentation
|
|
6446
6598
|
</a>
|
|
6447
6599
|
|
|
6448
6600
|
</li>
|
|
6449
6601
|
|
|
6450
6602
|
<li class="md-nav__item">
|
|
6451
|
-
<a href="#
|
|
6603
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
6452
6604
|
Housekeeping
|
|
6453
6605
|
</a>
|
|
6454
6606
|
|
|
@@ -6468,35 +6620,35 @@
|
|
|
6468
6620
|
<ul class="md-nav__list">
|
|
6469
6621
|
|
|
6470
6622
|
<li class="md-nav__item">
|
|
6471
|
-
<a href="#
|
|
6623
|
+
<a href="#added_9" class="md-nav__link">
|
|
6472
6624
|
Added
|
|
6473
6625
|
</a>
|
|
6474
6626
|
|
|
6475
6627
|
</li>
|
|
6476
6628
|
|
|
6477
6629
|
<li class="md-nav__item">
|
|
6478
|
-
<a href="#
|
|
6630
|
+
<a href="#changed_9" class="md-nav__link">
|
|
6479
6631
|
Changed
|
|
6480
6632
|
</a>
|
|
6481
6633
|
|
|
6482
6634
|
</li>
|
|
6483
6635
|
|
|
6484
6636
|
<li class="md-nav__item">
|
|
6485
|
-
<a href="#
|
|
6637
|
+
<a href="#removed_7" class="md-nav__link">
|
|
6486
6638
|
Removed
|
|
6487
6639
|
</a>
|
|
6488
6640
|
|
|
6489
6641
|
</li>
|
|
6490
6642
|
|
|
6491
6643
|
<li class="md-nav__item">
|
|
6492
|
-
<a href="#
|
|
6644
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
6493
6645
|
Fixed
|
|
6494
6646
|
</a>
|
|
6495
6647
|
|
|
6496
6648
|
</li>
|
|
6497
6649
|
|
|
6498
6650
|
<li class="md-nav__item">
|
|
6499
|
-
<a href="#
|
|
6651
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
6500
6652
|
Housekeeping
|
|
6501
6653
|
</a>
|
|
6502
6654
|
|
|
@@ -6576,9 +6728,63 @@
|
|
|
6576
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>
|
|
6577
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>
|
|
6578
6730
|
<!-- towncrier release notes start -->
|
|
6579
|
-
<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>
|
|
6580
6744
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
6581
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>
|
|
6758
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
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>
|
|
6582
6788
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
6583
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>
|
|
6584
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>
|
|
@@ -6587,16 +6793,16 @@
|
|
|
6587
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>
|
|
6588
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>
|
|
6589
6795
|
</ul>
|
|
6590
|
-
<h3 id="
|
|
6796
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
6591
6797
|
<ul>
|
|
6592
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>
|
|
6593
6799
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
|
|
6594
6800
|
</ul>
|
|
6595
|
-
<h3 id="
|
|
6801
|
+
<h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">¶</a></h3>
|
|
6596
6802
|
<ul>
|
|
6597
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>
|
|
6598
6804
|
</ul>
|
|
6599
|
-
<h3 id="
|
|
6805
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
6600
6806
|
<ul>
|
|
6601
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>
|
|
6602
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>
|
|
@@ -6604,28 +6810,28 @@
|
|
|
6604
6810
|
<li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
|
|
6605
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>
|
|
6606
6812
|
</ul>
|
|
6607
|
-
<h3 id="
|
|
6813
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
6608
6814
|
<ul>
|
|
6609
6815
|
<li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
|
|
6610
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>
|
|
6611
6817
|
</ul>
|
|
6612
|
-
<h3 id="
|
|
6818
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
6613
6819
|
<ul>
|
|
6614
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>
|
|
6615
6821
|
<li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
|
|
6616
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>
|
|
6617
6823
|
</ul>
|
|
6618
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>
|
|
6619
|
-
<h3 id="
|
|
6825
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
6620
6826
|
<ul>
|
|
6621
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>
|
|
6622
6828
|
</ul>
|
|
6623
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>
|
|
6624
|
-
<h3 id="
|
|
6830
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
6625
6831
|
<ul>
|
|
6626
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>
|
|
6627
6833
|
</ul>
|
|
6628
|
-
<h3 id="
|
|
6834
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
6629
6835
|
<ul>
|
|
6630
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>
|
|
6631
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>
|
|
@@ -6634,11 +6840,11 @@
|
|
|
6634
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>
|
|
6635
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>
|
|
6636
6842
|
</ul>
|
|
6637
|
-
<h3 id="
|
|
6843
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
6638
6844
|
<ul>
|
|
6639
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>
|
|
6640
6846
|
</ul>
|
|
6641
|
-
<h3 id="
|
|
6847
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
6642
6848
|
<ul>
|
|
6643
6849
|
<li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
|
|
6644
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>
|
|
@@ -6655,7 +6861,7 @@
|
|
|
6655
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>
|
|
6656
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>
|
|
6657
6863
|
</ul>
|
|
6658
|
-
<h3 id="
|
|
6864
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
6659
6865
|
<ul>
|
|
6660
6866
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
|
|
6661
6867
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
|
|
@@ -6669,24 +6875,24 @@
|
|
|
6669
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>
|
|
6670
6876
|
</ul>
|
|
6671
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>
|
|
6672
|
-
<h3 id="
|
|
6878
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
6673
6879
|
<ul>
|
|
6674
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>
|
|
6675
6881
|
</ul>
|
|
6676
|
-
<h3 id="
|
|
6882
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
6677
6883
|
<ul>
|
|
6678
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>
|
|
6679
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>
|
|
6680
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>
|
|
6681
6887
|
</ul>
|
|
6682
|
-
<h3 id="
|
|
6888
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
6683
6889
|
<ul>
|
|
6684
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>
|
|
6685
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>
|
|
6686
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>
|
|
6687
6893
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
|
|
6688
6894
|
</ul>
|
|
6689
|
-
<h3 id="
|
|
6895
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
6690
6896
|
<ul>
|
|
6691
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>
|
|
6692
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>
|
|
@@ -6695,38 +6901,38 @@
|
|
|
6695
6901
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
|
|
6696
6902
|
<li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
|
|
6697
6903
|
</ul>
|
|
6698
|
-
<h3 id="
|
|
6904
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
6699
6905
|
<ul>
|
|
6700
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>
|
|
6701
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>
|
|
6702
6908
|
</ul>
|
|
6703
|
-
<h3 id="
|
|
6909
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
6704
6910
|
<ul>
|
|
6705
6911
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
|
|
6706
6912
|
</ul>
|
|
6707
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>
|
|
6708
|
-
<h3 id="
|
|
6914
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
6709
6915
|
<ul>
|
|
6710
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>
|
|
6711
6917
|
</ul>
|
|
6712
|
-
<h3 id="
|
|
6918
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
6713
6919
|
<ul>
|
|
6714
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>
|
|
6715
6921
|
</ul>
|
|
6716
|
-
<h3 id="
|
|
6922
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
6717
6923
|
<ul>
|
|
6718
6924
|
<li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
|
|
6719
6925
|
</ul>
|
|
6720
|
-
<h3 id="
|
|
6926
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
6721
6927
|
<ul>
|
|
6722
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>
|
|
6723
6929
|
</ul>
|
|
6724
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>
|
|
6725
|
-
<h3 id="
|
|
6931
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
6726
6932
|
<ul>
|
|
6727
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>
|
|
6728
6934
|
</ul>
|
|
6729
|
-
<h3 id="
|
|
6935
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
6730
6936
|
<ul>
|
|
6731
6937
|
<li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
|
|
6732
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>
|
|
@@ -6734,7 +6940,7 @@
|
|
|
6734
6940
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
|
|
6735
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>
|
|
6736
6942
|
</ul>
|
|
6737
|
-
<h3 id="
|
|
6943
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
6738
6944
|
<ul>
|
|
6739
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>
|
|
6740
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>
|
|
@@ -6743,12 +6949,12 @@
|
|
|
6743
6949
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
|
|
6744
6950
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
|
|
6745
6951
|
</ul>
|
|
6746
|
-
<h3 id="
|
|
6952
|
+
<h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">¶</a></h3>
|
|
6747
6953
|
<ul>
|
|
6748
6954
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
|
|
6749
6955
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
|
|
6750
6956
|
</ul>
|
|
6751
|
-
<h3 id="
|
|
6957
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
6752
6958
|
<ul>
|
|
6753
6959
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
6754
6960
|
<li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
|
|
@@ -6762,14 +6968,14 @@
|
|
|
6762
6968
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
|
|
6763
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>
|
|
6764
6970
|
</ul>
|
|
6765
|
-
<h3 id="
|
|
6971
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
6766
6972
|
<ul>
|
|
6767
6973
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
|
|
6768
6974
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
|
|
6769
6975
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
|
|
6770
6976
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
|
|
6771
6977
|
</ul>
|
|
6772
|
-
<h3 id="
|
|
6978
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
6773
6979
|
<ul>
|
|
6774
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>
|
|
6775
6981
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
|
|
@@ -6781,30 +6987,30 @@
|
|
|
6781
6987
|
<li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
|
|
6782
6988
|
</ul>
|
|
6783
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>
|
|
6784
|
-
<h3 id="
|
|
6990
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
6785
6991
|
<ul>
|
|
6786
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>
|
|
6787
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>
|
|
6788
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>
|
|
6789
6995
|
</ul>
|
|
6790
|
-
<h3 id="
|
|
6996
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
6791
6997
|
<ul>
|
|
6792
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>
|
|
6793
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>
|
|
6794
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>
|
|
6795
7001
|
</ul>
|
|
6796
|
-
<h3 id="
|
|
7002
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
6797
7003
|
<ul>
|
|
6798
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>
|
|
6799
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>
|
|
6800
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>
|
|
6801
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>
|
|
6802
7008
|
</ul>
|
|
6803
|
-
<h3 id="
|
|
7009
|
+
<h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">¶</a></h3>
|
|
6804
7010
|
<ul>
|
|
6805
7011
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
|
|
6806
7012
|
</ul>
|
|
6807
|
-
<h3 id="
|
|
7013
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
6808
7014
|
<ul>
|
|
6809
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>
|
|
6810
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>
|
|
@@ -6830,17 +7036,17 @@
|
|
|
6830
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>
|
|
6831
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>
|
|
6832
7038
|
</ul>
|
|
6833
|
-
<h3 id="
|
|
7039
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
6834
7040
|
<ul>
|
|
6835
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>
|
|
6836
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>
|
|
6837
7043
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
6838
7044
|
</ul>
|
|
6839
|
-
<h3 id="
|
|
7045
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
6840
7046
|
<ul>
|
|
6841
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>
|
|
6842
7048
|
</ul>
|
|
6843
|
-
<h3 id="
|
|
7049
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
6844
7050
|
<ul>
|
|
6845
7051
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
|
|
6846
7052
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
|
|
@@ -6850,20 +7056,20 @@
|
|
|
6850
7056
|
<li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
|
|
6851
7057
|
</ul>
|
|
6852
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>
|
|
6853
|
-
<h3 id="
|
|
7059
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
6854
7060
|
<ul>
|
|
6855
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>
|
|
6856
7062
|
</ul>
|
|
6857
|
-
<h3 id="
|
|
7063
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
6858
7064
|
<ul>
|
|
6859
7065
|
<li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
|
|
6860
7066
|
</ul>
|
|
6861
|
-
<h3 id="
|
|
7067
|
+
<h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">¶</a></h3>
|
|
6862
7068
|
<ul>
|
|
6863
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>
|
|
6864
7070
|
<li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
|
|
6865
7071
|
</ul>
|
|
6866
|
-
<h3 id="
|
|
7072
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
6867
7073
|
<ul>
|
|
6868
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>
|
|
6869
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>
|
|
@@ -6872,14 +7078,14 @@
|
|
|
6872
7078
|
<li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
|
|
6873
7079
|
<li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
|
|
6874
7080
|
</ul>
|
|
6875
|
-
<h3 id="
|
|
7081
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
6876
7082
|
<ul>
|
|
6877
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>
|
|
6878
7084
|
<li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
|
|
6879
7085
|
<li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
|
|
6880
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>
|
|
6881
7087
|
</ul>
|
|
6882
|
-
<h3 id="
|
|
7088
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
6883
7089
|
<ul>
|
|
6884
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>
|
|
6885
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>
|
|
@@ -6894,13 +7100,13 @@
|
|
|
6894
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>
|
|
6895
7101
|
</ul>
|
|
6896
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>
|
|
6897
|
-
<h3 id="
|
|
7103
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
6898
7104
|
<ul>
|
|
6899
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>
|
|
6900
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>
|
|
6901
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>
|
|
6902
7108
|
</ul>
|
|
6903
|
-
<h3 id="
|
|
7109
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
6904
7110
|
<ul>
|
|
6905
7111
|
<li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
|
|
6906
7112
|
<li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
|
|
@@ -6914,7 +7120,7 @@
|
|
|
6914
7120
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
|
|
6915
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>
|
|
6916
7122
|
</ul>
|
|
6917
|
-
<h3 id="
|
|
7123
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
6918
7124
|
<ul>
|
|
6919
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>
|
|
6920
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>
|
|
@@ -6925,12 +7131,12 @@
|
|
|
6925
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>
|
|
6926
7132
|
<li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
|
|
6927
7133
|
</ul>
|
|
6928
|
-
<h3 id="
|
|
7134
|
+
<h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">¶</a></h3>
|
|
6929
7135
|
<ul>
|
|
6930
7136
|
<li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
|
|
6931
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>
|
|
6932
7138
|
</ul>
|
|
6933
|
-
<h3 id="
|
|
7139
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
6934
7140
|
<ul>
|
|
6935
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>
|
|
6936
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>
|
|
@@ -6943,14 +7149,14 @@
|
|
|
6943
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>
|
|
6944
7150
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
6945
7151
|
</ul>
|
|
6946
|
-
<h3 id="
|
|
7152
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
6947
7153
|
<ul>
|
|
6948
7154
|
<li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
|
|
6949
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>
|
|
6950
7156
|
<li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
|
|
6951
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>
|
|
6952
7158
|
</ul>
|
|
6953
|
-
<h3 id="
|
|
7159
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
6954
7160
|
<ul>
|
|
6955
7161
|
<li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
|
|
6956
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>
|
|
@@ -6958,7 +7164,7 @@
|
|
|
6958
7164
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
6959
7165
|
</ul>
|
|
6960
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>
|
|
6961
|
-
<h3 id="
|
|
7167
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
6962
7168
|
<ul>
|
|
6963
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>
|
|
6964
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>
|
|
@@ -6978,7 +7184,7 @@
|
|
|
6978
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>
|
|
6979
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>
|
|
6980
7186
|
</ul>
|
|
6981
|
-
<h3 id="
|
|
7187
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
6982
7188
|
<ul>
|
|
6983
7189
|
<li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
|
|
6984
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>
|
|
@@ -6987,12 +7193,12 @@
|
|
|
6987
7193
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
|
|
6988
7194
|
<li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
|
|
6989
7195
|
</ul>
|
|
6990
|
-
<h3 id="
|
|
7196
|
+
<h3 id="removed_7">Removed<a class="headerlink" href="#removed_7" title="Permanent link">¶</a></h3>
|
|
6991
7197
|
<ul>
|
|
6992
7198
|
<li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
|
|
6993
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>
|
|
6994
7200
|
</ul>
|
|
6995
|
-
<h3 id="
|
|
7201
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
6996
7202
|
<ul>
|
|
6997
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>
|
|
6998
7204
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
|
|
@@ -7000,7 +7206,7 @@
|
|
|
7000
7206
|
<li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps & lingering contenttypes referenced in changelog.</li>
|
|
7001
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>
|
|
7002
7208
|
</ul>
|
|
7003
|
-
<h3 id="
|
|
7209
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
7004
7210
|
<ul>
|
|
7005
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>
|
|
7006
7212
|
<li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
|