nautobot 2.3.12__py3-none-any.whl → 2.3.13__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/core/api/serializers.py +1 -0
- nautobot/core/celery/log.py +4 -4
- nautobot/core/models/tree_queries.py +5 -2
- nautobot/core/settings.py +1 -1
- nautobot/core/tables.py +60 -10
- nautobot/core/templatetags/helpers.py +7 -1
- nautobot/core/testing/api.py +5 -1
- nautobot/core/tests/test_api.py +20 -0
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_utils.py +8 -0
- nautobot/core/utils/lookup.py +11 -8
- nautobot/dcim/api/views.py +3 -0
- nautobot/dcim/filters/__init__.py +26 -1
- nautobot/dcim/forms.py +4 -0
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_views.py +6 -0
- nautobot/extras/api/serializers.py +1 -0
- nautobot/extras/api/views.py +2 -0
- nautobot/extras/forms/forms.py +2 -0
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/tests/test_views.py +2 -0
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/tables.py +18 -4
- nautobot/ipam/tests/test_querysets.py +49 -1
- nautobot/ipam/utils/__init__.py +24 -0
- nautobot/ipam/views.py +61 -68
- nautobot/project-static/docs/404.html +1 -1
- nautobot/project-static/docs/apps/index.html +1 -1
- nautobot/project-static/docs/apps/nautobot-apps.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +197 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +16 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1 -1
- nautobot/project-static/docs/development/apps/api/configuration-view.html +1 -1
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/global-search.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/graphql.html +1 -1
- nautobot/project-static/docs/development/apps/api/models/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +1 -1
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +23 -4
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +1 -1
- nautobot/project-static/docs/development/apps/api/prometheus.html +1 -1
- nautobot/project-static/docs/development/apps/api/setup.html +1 -1
- nautobot/project-static/docs/development/apps/api/testing.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +1 -1
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/base-template.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/index.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/notes.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +1 -1
- nautobot/project-static/docs/development/apps/api/views/urls.html +1 -1
- nautobot/project-static/docs/development/apps/index.html +1 -1
- nautobot/project-static/docs/development/apps/migration/code-updates.html +1 -1
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +1 -1
- nautobot/project-static/docs/development/apps/migration/from-v1.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +1 -1
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +1 -1
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +1 -1
- nautobot/project-static/docs/development/core/application-registry.html +1 -1
- nautobot/project-static/docs/development/core/best-practices.html +1 -1
- nautobot/project-static/docs/development/core/bootstrap-ui.html +1 -1
- nautobot/project-static/docs/development/core/caching.html +1 -1
- nautobot/project-static/docs/development/core/controllers.html +1 -1
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +1 -1
- nautobot/project-static/docs/development/core/generic-views.html +1 -1
- nautobot/project-static/docs/development/core/getting-started.html +1 -1
- nautobot/project-static/docs/development/core/homepage.html +1 -1
- nautobot/project-static/docs/development/core/index.html +1 -1
- nautobot/project-static/docs/development/core/model-checklist.html +1 -1
- nautobot/project-static/docs/development/core/model-features.html +1 -1
- nautobot/project-static/docs/development/core/natural-keys.html +1 -1
- nautobot/project-static/docs/development/core/navigation-menu.html +1 -1
- nautobot/project-static/docs/development/core/release-checklist.html +1 -1
- nautobot/project-static/docs/development/core/role-internals.html +1 -1
- nautobot/project-static/docs/development/core/settings.html +1 -1
- nautobot/project-static/docs/development/core/style-guide.html +1 -1
- nautobot/project-static/docs/development/core/templates.html +1 -1
- nautobot/project-static/docs/development/core/testing.html +1 -1
- nautobot/project-static/docs/development/core/user-preferences.html +1 -1
- nautobot/project-static/docs/development/index.html +1 -1
- nautobot/project-static/docs/development/jobs/index.html +1 -1
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +1 -1
- nautobot/project-static/docs/index.html +1 -1
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +1 -1
- nautobot/project-static/docs/overview/design_philosophy.html +1 -1
- nautobot/project-static/docs/release-notes/index.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.0.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.1.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.2.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.3.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.4.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.5.html +1 -1
- nautobot/project-static/docs/release-notes/version-1.6.html +614 -179
- nautobot/project-static/docs/release-notes/version-2.0.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.1.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.2.html +1 -1
- nautobot/project-static/docs/release-notes/version-2.3.html +401 -199
- nautobot/project-static/docs/requirements.txt +1 -1
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +270 -270
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +3 -3
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +1 -1
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +1 -1
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/index.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +1 -1
- nautobot/project-static/docs/user-guide/administration/installation/services.html +1 -1
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +1 -1
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +1 -1
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +1 -1
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +1 -1
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +1 -1
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +1 -1
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +1 -1
- nautobot/project-static/docs/user-guide/index.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +1 -1
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +1 -1
- nautobot/users/api/serializers.py +1 -0
- nautobot/virtualization/filters.py +19 -2
- nautobot/virtualization/tests/test_filters.py +9 -0
- {nautobot-2.3.12.dist-info → nautobot-2.3.13.dist-info}/METADATA +3 -3
- {nautobot-2.3.12.dist-info → nautobot-2.3.13.dist-info}/RECORD +312 -312
- {nautobot-2.3.12.dist-info → nautobot-2.3.13.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.12.dist-info → nautobot-2.3.13.dist-info}/NOTICE +0 -0
- {nautobot-2.3.12.dist-info → nautobot-2.3.13.dist-info}/WHEEL +0 -0
- {nautobot-2.3.12.dist-info → nautobot-2.3.13.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.47">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -8269,6 +8269,195 @@
|
|
|
8269
8269
|
</ul>
|
|
8270
8270
|
</nav>
|
|
8271
8271
|
|
|
8272
|
+
</li>
|
|
8273
|
+
|
|
8274
|
+
<li class="md-nav__item">
|
|
8275
|
+
<a href="#v1629-2024-12-09" class="md-nav__link">
|
|
8276
|
+
<span class="md-ellipsis">
|
|
8277
|
+
v1.6.29 (2024-12-09)
|
|
8278
|
+
</span>
|
|
8279
|
+
</a>
|
|
8280
|
+
|
|
8281
|
+
<nav class="md-nav" aria-label="v1.6.29 (2024-12-09)">
|
|
8282
|
+
<ul class="md-nav__list">
|
|
8283
|
+
|
|
8284
|
+
<li class="md-nav__item">
|
|
8285
|
+
<a href="#security" class="md-nav__link">
|
|
8286
|
+
<span class="md-ellipsis">
|
|
8287
|
+
Security
|
|
8288
|
+
</span>
|
|
8289
|
+
</a>
|
|
8290
|
+
|
|
8291
|
+
</li>
|
|
8292
|
+
|
|
8293
|
+
<li class="md-nav__item">
|
|
8294
|
+
<a href="#fixed" class="md-nav__link">
|
|
8295
|
+
<span class="md-ellipsis">
|
|
8296
|
+
Fixed
|
|
8297
|
+
</span>
|
|
8298
|
+
</a>
|
|
8299
|
+
|
|
8300
|
+
</li>
|
|
8301
|
+
|
|
8302
|
+
</ul>
|
|
8303
|
+
</nav>
|
|
8304
|
+
|
|
8305
|
+
</li>
|
|
8306
|
+
|
|
8307
|
+
<li class="md-nav__item">
|
|
8308
|
+
<a href="#v1628-2024-09-24" class="md-nav__link">
|
|
8309
|
+
<span class="md-ellipsis">
|
|
8310
|
+
v1.6.28 (2024-09-24)
|
|
8311
|
+
</span>
|
|
8312
|
+
</a>
|
|
8313
|
+
|
|
8314
|
+
<nav class="md-nav" aria-label="v1.6.28 (2024-09-24)">
|
|
8315
|
+
<ul class="md-nav__list">
|
|
8316
|
+
|
|
8317
|
+
<li class="md-nav__item">
|
|
8318
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8319
|
+
<span class="md-ellipsis">
|
|
8320
|
+
Fixed
|
|
8321
|
+
</span>
|
|
8322
|
+
</a>
|
|
8323
|
+
|
|
8324
|
+
</li>
|
|
8325
|
+
|
|
8326
|
+
<li class="md-nav__item">
|
|
8327
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8328
|
+
<span class="md-ellipsis">
|
|
8329
|
+
Housekeeping
|
|
8330
|
+
</span>
|
|
8331
|
+
</a>
|
|
8332
|
+
|
|
8333
|
+
</li>
|
|
8334
|
+
|
|
8335
|
+
</ul>
|
|
8336
|
+
</nav>
|
|
8337
|
+
|
|
8338
|
+
</li>
|
|
8339
|
+
|
|
8340
|
+
<li class="md-nav__item">
|
|
8341
|
+
<a href="#v1627-2024-09-03" class="md-nav__link">
|
|
8342
|
+
<span class="md-ellipsis">
|
|
8343
|
+
v1.6.27 (2024-09-03)
|
|
8344
|
+
</span>
|
|
8345
|
+
</a>
|
|
8346
|
+
|
|
8347
|
+
<nav class="md-nav" aria-label="v1.6.27 (2024-09-03)">
|
|
8348
|
+
<ul class="md-nav__list">
|
|
8349
|
+
|
|
8350
|
+
<li class="md-nav__item">
|
|
8351
|
+
<a href="#security_1" class="md-nav__link">
|
|
8352
|
+
<span class="md-ellipsis">
|
|
8353
|
+
Security
|
|
8354
|
+
</span>
|
|
8355
|
+
</a>
|
|
8356
|
+
|
|
8357
|
+
</li>
|
|
8358
|
+
|
|
8359
|
+
<li class="md-nav__item">
|
|
8360
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8361
|
+
<span class="md-ellipsis">
|
|
8362
|
+
Fixed
|
|
8363
|
+
</span>
|
|
8364
|
+
</a>
|
|
8365
|
+
|
|
8366
|
+
</li>
|
|
8367
|
+
|
|
8368
|
+
</ul>
|
|
8369
|
+
</nav>
|
|
8370
|
+
|
|
8371
|
+
</li>
|
|
8372
|
+
|
|
8373
|
+
<li class="md-nav__item">
|
|
8374
|
+
<a href="#v1626-2024-07-22" class="md-nav__link">
|
|
8375
|
+
<span class="md-ellipsis">
|
|
8376
|
+
v1.6.26 (2024-07-22)
|
|
8377
|
+
</span>
|
|
8378
|
+
</a>
|
|
8379
|
+
|
|
8380
|
+
<nav class="md-nav" aria-label="v1.6.26 (2024-07-22)">
|
|
8381
|
+
<ul class="md-nav__list">
|
|
8382
|
+
|
|
8383
|
+
<li class="md-nav__item">
|
|
8384
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8385
|
+
<span class="md-ellipsis">
|
|
8386
|
+
Fixed
|
|
8387
|
+
</span>
|
|
8388
|
+
</a>
|
|
8389
|
+
|
|
8390
|
+
</li>
|
|
8391
|
+
|
|
8392
|
+
</ul>
|
|
8393
|
+
</nav>
|
|
8394
|
+
|
|
8395
|
+
</li>
|
|
8396
|
+
|
|
8397
|
+
<li class="md-nav__item">
|
|
8398
|
+
<a href="#v1625-2024-07-09" class="md-nav__link">
|
|
8399
|
+
<span class="md-ellipsis">
|
|
8400
|
+
v1.6.25 (2024-07-09)
|
|
8401
|
+
</span>
|
|
8402
|
+
</a>
|
|
8403
|
+
|
|
8404
|
+
<nav class="md-nav" aria-label="v1.6.25 (2024-07-09)">
|
|
8405
|
+
<ul class="md-nav__list">
|
|
8406
|
+
|
|
8407
|
+
<li class="md-nav__item">
|
|
8408
|
+
<a href="#security_2" class="md-nav__link">
|
|
8409
|
+
<span class="md-ellipsis">
|
|
8410
|
+
Security
|
|
8411
|
+
</span>
|
|
8412
|
+
</a>
|
|
8413
|
+
|
|
8414
|
+
</li>
|
|
8415
|
+
|
|
8416
|
+
<li class="md-nav__item">
|
|
8417
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8418
|
+
<span class="md-ellipsis">
|
|
8419
|
+
Dependencies
|
|
8420
|
+
</span>
|
|
8421
|
+
</a>
|
|
8422
|
+
|
|
8423
|
+
</li>
|
|
8424
|
+
|
|
8425
|
+
</ul>
|
|
8426
|
+
</nav>
|
|
8427
|
+
|
|
8428
|
+
</li>
|
|
8429
|
+
|
|
8430
|
+
<li class="md-nav__item">
|
|
8431
|
+
<a href="#v1624-2024-06-24" class="md-nav__link">
|
|
8432
|
+
<span class="md-ellipsis">
|
|
8433
|
+
v1.6.24 (2024-06-24)
|
|
8434
|
+
</span>
|
|
8435
|
+
</a>
|
|
8436
|
+
|
|
8437
|
+
<nav class="md-nav" aria-label="v1.6.24 (2024-06-24)">
|
|
8438
|
+
<ul class="md-nav__list">
|
|
8439
|
+
|
|
8440
|
+
<li class="md-nav__item">
|
|
8441
|
+
<a href="#security_3" class="md-nav__link">
|
|
8442
|
+
<span class="md-ellipsis">
|
|
8443
|
+
Security
|
|
8444
|
+
</span>
|
|
8445
|
+
</a>
|
|
8446
|
+
|
|
8447
|
+
</li>
|
|
8448
|
+
|
|
8449
|
+
<li class="md-nav__item">
|
|
8450
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8451
|
+
<span class="md-ellipsis">
|
|
8452
|
+
Housekeeping
|
|
8453
|
+
</span>
|
|
8454
|
+
</a>
|
|
8455
|
+
|
|
8456
|
+
</li>
|
|
8457
|
+
|
|
8458
|
+
</ul>
|
|
8459
|
+
</nav>
|
|
8460
|
+
|
|
8272
8461
|
</li>
|
|
8273
8462
|
|
|
8274
8463
|
<li class="md-nav__item">
|
|
@@ -8282,7 +8471,7 @@
|
|
|
8282
8471
|
<ul class="md-nav__list">
|
|
8283
8472
|
|
|
8284
8473
|
<li class="md-nav__item">
|
|
8285
|
-
<a href="#
|
|
8474
|
+
<a href="#security_4" class="md-nav__link">
|
|
8286
8475
|
<span class="md-ellipsis">
|
|
8287
8476
|
Security
|
|
8288
8477
|
</span>
|
|
@@ -8291,7 +8480,7 @@
|
|
|
8291
8480
|
</li>
|
|
8292
8481
|
|
|
8293
8482
|
<li class="md-nav__item">
|
|
8294
|
-
<a href="#
|
|
8483
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8295
8484
|
<span class="md-ellipsis">
|
|
8296
8485
|
Housekeeping
|
|
8297
8486
|
</span>
|
|
@@ -8315,7 +8504,7 @@
|
|
|
8315
8504
|
<ul class="md-nav__list">
|
|
8316
8505
|
|
|
8317
8506
|
<li class="md-nav__item">
|
|
8318
|
-
<a href="#
|
|
8507
|
+
<a href="#security_5" class="md-nav__link">
|
|
8319
8508
|
<span class="md-ellipsis">
|
|
8320
8509
|
Security
|
|
8321
8510
|
</span>
|
|
@@ -8333,7 +8522,7 @@
|
|
|
8333
8522
|
</li>
|
|
8334
8523
|
|
|
8335
8524
|
<li class="md-nav__item">
|
|
8336
|
-
<a href="#
|
|
8525
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8337
8526
|
<span class="md-ellipsis">
|
|
8338
8527
|
Fixed
|
|
8339
8528
|
</span>
|
|
@@ -8357,7 +8546,7 @@
|
|
|
8357
8546
|
<ul class="md-nav__list">
|
|
8358
8547
|
|
|
8359
8548
|
<li class="md-nav__item">
|
|
8360
|
-
<a href="#
|
|
8549
|
+
<a href="#security_6" class="md-nav__link">
|
|
8361
8550
|
<span class="md-ellipsis">
|
|
8362
8551
|
Security
|
|
8363
8552
|
</span>
|
|
@@ -8381,7 +8570,7 @@
|
|
|
8381
8570
|
<ul class="md-nav__list">
|
|
8382
8571
|
|
|
8383
8572
|
<li class="md-nav__item">
|
|
8384
|
-
<a href="#
|
|
8573
|
+
<a href="#security_7" class="md-nav__link">
|
|
8385
8574
|
<span class="md-ellipsis">
|
|
8386
8575
|
Security
|
|
8387
8576
|
</span>
|
|
@@ -8390,7 +8579,7 @@
|
|
|
8390
8579
|
</li>
|
|
8391
8580
|
|
|
8392
8581
|
<li class="md-nav__item">
|
|
8393
|
-
<a href="#
|
|
8582
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8394
8583
|
<span class="md-ellipsis">
|
|
8395
8584
|
Fixed
|
|
8396
8585
|
</span>
|
|
@@ -8414,7 +8603,7 @@
|
|
|
8414
8603
|
<ul class="md-nav__list">
|
|
8415
8604
|
|
|
8416
8605
|
<li class="md-nav__item">
|
|
8417
|
-
<a href="#
|
|
8606
|
+
<a href="#security_8" class="md-nav__link">
|
|
8418
8607
|
<span class="md-ellipsis">
|
|
8419
8608
|
Security
|
|
8420
8609
|
</span>
|
|
@@ -8423,7 +8612,7 @@
|
|
|
8423
8612
|
</li>
|
|
8424
8613
|
|
|
8425
8614
|
<li class="md-nav__item">
|
|
8426
|
-
<a href="#
|
|
8615
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8427
8616
|
<span class="md-ellipsis">
|
|
8428
8617
|
Fixed
|
|
8429
8618
|
</span>
|
|
@@ -8447,7 +8636,7 @@
|
|
|
8447
8636
|
<ul class="md-nav__list">
|
|
8448
8637
|
|
|
8449
8638
|
<li class="md-nav__item">
|
|
8450
|
-
<a href="#
|
|
8639
|
+
<a href="#security_9" class="md-nav__link">
|
|
8451
8640
|
<span class="md-ellipsis">
|
|
8452
8641
|
Security
|
|
8453
8642
|
</span>
|
|
@@ -8456,7 +8645,7 @@
|
|
|
8456
8645
|
</li>
|
|
8457
8646
|
|
|
8458
8647
|
<li class="md-nav__item">
|
|
8459
|
-
<a href="#
|
|
8648
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8460
8649
|
<span class="md-ellipsis">
|
|
8461
8650
|
Dependencies
|
|
8462
8651
|
</span>
|
|
@@ -8480,7 +8669,7 @@
|
|
|
8480
8669
|
<ul class="md-nav__list">
|
|
8481
8670
|
|
|
8482
8671
|
<li class="md-nav__item">
|
|
8483
|
-
<a href="#
|
|
8672
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8484
8673
|
<span class="md-ellipsis">
|
|
8485
8674
|
Dependencies
|
|
8486
8675
|
</span>
|
|
@@ -8504,7 +8693,7 @@
|
|
|
8504
8693
|
<ul class="md-nav__list">
|
|
8505
8694
|
|
|
8506
8695
|
<li class="md-nav__item">
|
|
8507
|
-
<a href="#
|
|
8696
|
+
<a href="#security_10" class="md-nav__link">
|
|
8508
8697
|
<span class="md-ellipsis">
|
|
8509
8698
|
Security
|
|
8510
8699
|
</span>
|
|
@@ -8531,7 +8720,7 @@
|
|
|
8531
8720
|
</li>
|
|
8532
8721
|
|
|
8533
8722
|
<li class="md-nav__item">
|
|
8534
|
-
<a href="#
|
|
8723
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8535
8724
|
<span class="md-ellipsis">
|
|
8536
8725
|
Fixed
|
|
8537
8726
|
</span>
|
|
@@ -8549,7 +8738,7 @@
|
|
|
8549
8738
|
</li>
|
|
8550
8739
|
|
|
8551
8740
|
<li class="md-nav__item">
|
|
8552
|
-
<a href="#
|
|
8741
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8553
8742
|
<span class="md-ellipsis">
|
|
8554
8743
|
Housekeeping
|
|
8555
8744
|
</span>
|
|
@@ -8582,7 +8771,7 @@
|
|
|
8582
8771
|
</li>
|
|
8583
8772
|
|
|
8584
8773
|
<li class="md-nav__item">
|
|
8585
|
-
<a href="#
|
|
8774
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8586
8775
|
<span class="md-ellipsis">
|
|
8587
8776
|
Fixed
|
|
8588
8777
|
</span>
|
|
@@ -8591,7 +8780,7 @@
|
|
|
8591
8780
|
</li>
|
|
8592
8781
|
|
|
8593
8782
|
<li class="md-nav__item">
|
|
8594
|
-
<a href="#
|
|
8783
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8595
8784
|
<span class="md-ellipsis">
|
|
8596
8785
|
Housekeeping
|
|
8597
8786
|
</span>
|
|
@@ -8615,7 +8804,7 @@
|
|
|
8615
8804
|
<ul class="md-nav__list">
|
|
8616
8805
|
|
|
8617
8806
|
<li class="md-nav__item">
|
|
8618
|
-
<a href="#
|
|
8807
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8619
8808
|
<span class="md-ellipsis">
|
|
8620
8809
|
Fixed
|
|
8621
8810
|
</span>
|
|
@@ -8657,7 +8846,7 @@
|
|
|
8657
8846
|
</li>
|
|
8658
8847
|
|
|
8659
8848
|
<li class="md-nav__item">
|
|
8660
|
-
<a href="#
|
|
8849
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
8661
8850
|
<span class="md-ellipsis">
|
|
8662
8851
|
Fixed
|
|
8663
8852
|
</span>
|
|
@@ -8699,7 +8888,7 @@
|
|
|
8699
8888
|
</li>
|
|
8700
8889
|
|
|
8701
8890
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#
|
|
8891
|
+
<a href="#security_11" class="md-nav__link">
|
|
8703
8892
|
<span class="md-ellipsis">
|
|
8704
8893
|
Security
|
|
8705
8894
|
</span>
|
|
@@ -8717,7 +8906,7 @@
|
|
|
8717
8906
|
</li>
|
|
8718
8907
|
|
|
8719
8908
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
8909
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
8721
8910
|
<span class="md-ellipsis">
|
|
8722
8911
|
Fixed
|
|
8723
8912
|
</span>
|
|
@@ -8741,7 +8930,7 @@
|
|
|
8741
8930
|
<ul class="md-nav__list">
|
|
8742
8931
|
|
|
8743
8932
|
<li class="md-nav__item">
|
|
8744
|
-
<a href="#
|
|
8933
|
+
<a href="#security_12" class="md-nav__link">
|
|
8745
8934
|
<span class="md-ellipsis">
|
|
8746
8935
|
Security
|
|
8747
8936
|
</span>
|
|
@@ -8759,7 +8948,7 @@
|
|
|
8759
8948
|
</li>
|
|
8760
8949
|
|
|
8761
8950
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
8951
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
8763
8952
|
<span class="md-ellipsis">
|
|
8764
8953
|
Fixed
|
|
8765
8954
|
</span>
|
|
@@ -8783,7 +8972,7 @@
|
|
|
8783
8972
|
<ul class="md-nav__list">
|
|
8784
8973
|
|
|
8785
8974
|
<li class="md-nav__item">
|
|
8786
|
-
<a href="#
|
|
8975
|
+
<a href="#security_13" class="md-nav__link">
|
|
8787
8976
|
<span class="md-ellipsis">
|
|
8788
8977
|
Security
|
|
8789
8978
|
</span>
|
|
@@ -8810,7 +8999,7 @@
|
|
|
8810
8999
|
</li>
|
|
8811
9000
|
|
|
8812
9001
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#
|
|
9002
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8814
9003
|
<span class="md-ellipsis">
|
|
8815
9004
|
Dependencies
|
|
8816
9005
|
</span>
|
|
@@ -8834,7 +9023,7 @@
|
|
|
8834
9023
|
<ul class="md-nav__list">
|
|
8835
9024
|
|
|
8836
9025
|
<li class="md-nav__item">
|
|
8837
|
-
<a href="#
|
|
9026
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
8838
9027
|
<span class="md-ellipsis">
|
|
8839
9028
|
Fixed
|
|
8840
9029
|
</span>
|
|
@@ -8858,7 +9047,7 @@
|
|
|
8858
9047
|
<ul class="md-nav__list">
|
|
8859
9048
|
|
|
8860
9049
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
9050
|
+
<a href="#security_14" class="md-nav__link">
|
|
8862
9051
|
<span class="md-ellipsis">
|
|
8863
9052
|
Security
|
|
8864
9053
|
</span>
|
|
@@ -8885,7 +9074,7 @@
|
|
|
8885
9074
|
</li>
|
|
8886
9075
|
|
|
8887
9076
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
9077
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
8889
9078
|
<span class="md-ellipsis">
|
|
8890
9079
|
Fixed
|
|
8891
9080
|
</span>
|
|
@@ -8894,7 +9083,7 @@
|
|
|
8894
9083
|
</li>
|
|
8895
9084
|
|
|
8896
9085
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#
|
|
9086
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8898
9087
|
<span class="md-ellipsis">
|
|
8899
9088
|
Housekeeping
|
|
8900
9089
|
</span>
|
|
@@ -8918,7 +9107,7 @@
|
|
|
8918
9107
|
<ul class="md-nav__list">
|
|
8919
9108
|
|
|
8920
9109
|
<li class="md-nav__item">
|
|
8921
|
-
<a href="#
|
|
9110
|
+
<a href="#security_15" class="md-nav__link">
|
|
8922
9111
|
<span class="md-ellipsis">
|
|
8923
9112
|
Security
|
|
8924
9113
|
</span>
|
|
@@ -8945,7 +9134,7 @@
|
|
|
8945
9134
|
</li>
|
|
8946
9135
|
|
|
8947
9136
|
<li class="md-nav__item">
|
|
8948
|
-
<a href="#
|
|
9137
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
8949
9138
|
<span class="md-ellipsis">
|
|
8950
9139
|
Fixed
|
|
8951
9140
|
</span>
|
|
@@ -8969,7 +9158,7 @@
|
|
|
8969
9158
|
<ul class="md-nav__list">
|
|
8970
9159
|
|
|
8971
9160
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9161
|
+
<a href="#security_16" class="md-nav__link">
|
|
8973
9162
|
<span class="md-ellipsis">
|
|
8974
9163
|
Security
|
|
8975
9164
|
</span>
|
|
@@ -8987,7 +9176,7 @@
|
|
|
8987
9176
|
</li>
|
|
8988
9177
|
|
|
8989
9178
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9179
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
8991
9180
|
<span class="md-ellipsis">
|
|
8992
9181
|
Fixed
|
|
8993
9182
|
</span>
|
|
@@ -8996,7 +9185,7 @@
|
|
|
8996
9185
|
</li>
|
|
8997
9186
|
|
|
8998
9187
|
<li class="md-nav__item">
|
|
8999
|
-
<a href="#
|
|
9188
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9000
9189
|
<span class="md-ellipsis">
|
|
9001
9190
|
Dependencies
|
|
9002
9191
|
</span>
|
|
@@ -9005,7 +9194,7 @@
|
|
|
9005
9194
|
</li>
|
|
9006
9195
|
|
|
9007
9196
|
<li class="md-nav__item">
|
|
9008
|
-
<a href="#
|
|
9197
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9009
9198
|
<span class="md-ellipsis">
|
|
9010
9199
|
Housekeeping
|
|
9011
9200
|
</span>
|
|
@@ -9029,7 +9218,7 @@
|
|
|
9029
9218
|
<ul class="md-nav__list">
|
|
9030
9219
|
|
|
9031
9220
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
9221
|
+
<a href="#security_17" class="md-nav__link">
|
|
9033
9222
|
<span class="md-ellipsis">
|
|
9034
9223
|
Security
|
|
9035
9224
|
</span>
|
|
@@ -9047,7 +9236,7 @@
|
|
|
9047
9236
|
</li>
|
|
9048
9237
|
|
|
9049
9238
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
9239
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
9051
9240
|
<span class="md-ellipsis">
|
|
9052
9241
|
Fixed
|
|
9053
9242
|
</span>
|
|
@@ -9065,7 +9254,7 @@
|
|
|
9065
9254
|
</li>
|
|
9066
9255
|
|
|
9067
9256
|
<li class="md-nav__item">
|
|
9068
|
-
<a href="#
|
|
9257
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9069
9258
|
<span class="md-ellipsis">
|
|
9070
9259
|
Housekeeping
|
|
9071
9260
|
</span>
|
|
@@ -9116,7 +9305,7 @@
|
|
|
9116
9305
|
</li>
|
|
9117
9306
|
|
|
9118
9307
|
<li class="md-nav__item">
|
|
9119
|
-
<a href="#
|
|
9308
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9120
9309
|
<span class="md-ellipsis">
|
|
9121
9310
|
Housekeeping
|
|
9122
9311
|
</span>
|
|
@@ -9140,7 +9329,7 @@
|
|
|
9140
9329
|
<ul class="md-nav__list">
|
|
9141
9330
|
|
|
9142
9331
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9332
|
+
<a href="#security_18" class="md-nav__link">
|
|
9144
9333
|
<span class="md-ellipsis">
|
|
9145
9334
|
Security
|
|
9146
9335
|
</span>
|
|
@@ -9158,7 +9347,7 @@
|
|
|
9158
9347
|
</li>
|
|
9159
9348
|
|
|
9160
9349
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9350
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
9162
9351
|
<span class="md-ellipsis">
|
|
9163
9352
|
Fixed
|
|
9164
9353
|
</span>
|
|
@@ -9167,7 +9356,7 @@
|
|
|
9167
9356
|
</li>
|
|
9168
9357
|
|
|
9169
9358
|
<li class="md-nav__item">
|
|
9170
|
-
<a href="#
|
|
9359
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
9171
9360
|
<span class="md-ellipsis">
|
|
9172
9361
|
Housekeeping
|
|
9173
9362
|
</span>
|
|
@@ -9209,7 +9398,7 @@
|
|
|
9209
9398
|
</li>
|
|
9210
9399
|
|
|
9211
9400
|
<li class="md-nav__item">
|
|
9212
|
-
<a href="#
|
|
9401
|
+
<a href="#fixed_19" class="md-nav__link">
|
|
9213
9402
|
<span class="md-ellipsis">
|
|
9214
9403
|
Fixed
|
|
9215
9404
|
</span>
|
|
@@ -9227,7 +9416,7 @@
|
|
|
9227
9416
|
</li>
|
|
9228
9417
|
|
|
9229
9418
|
<li class="md-nav__item">
|
|
9230
|
-
<a href="#
|
|
9419
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
9231
9420
|
<span class="md-ellipsis">
|
|
9232
9421
|
Housekeeping
|
|
9233
9422
|
</span>
|
|
@@ -9260,7 +9449,7 @@
|
|
|
9260
9449
|
</li>
|
|
9261
9450
|
|
|
9262
9451
|
<li class="md-nav__item">
|
|
9263
|
-
<a href="#
|
|
9452
|
+
<a href="#fixed_20" class="md-nav__link">
|
|
9264
9453
|
<span class="md-ellipsis">
|
|
9265
9454
|
Fixed
|
|
9266
9455
|
</span>
|
|
@@ -9278,7 +9467,7 @@
|
|
|
9278
9467
|
</li>
|
|
9279
9468
|
|
|
9280
9469
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9470
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
9282
9471
|
<span class="md-ellipsis">
|
|
9283
9472
|
Housekeeping
|
|
9284
9473
|
</span>
|
|
@@ -9311,7 +9500,7 @@
|
|
|
9311
9500
|
</li>
|
|
9312
9501
|
|
|
9313
9502
|
<li class="md-nav__item">
|
|
9314
|
-
<a href="#
|
|
9503
|
+
<a href="#fixed_21" class="md-nav__link">
|
|
9315
9504
|
<span class="md-ellipsis">
|
|
9316
9505
|
Fixed
|
|
9317
9506
|
</span>
|
|
@@ -9320,7 +9509,7 @@
|
|
|
9320
9509
|
</li>
|
|
9321
9510
|
|
|
9322
9511
|
<li class="md-nav__item">
|
|
9323
|
-
<a href="#
|
|
9512
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
9324
9513
|
<span class="md-ellipsis">
|
|
9325
9514
|
Dependencies
|
|
9326
9515
|
</span>
|
|
@@ -9380,7 +9569,7 @@
|
|
|
9380
9569
|
</li>
|
|
9381
9570
|
|
|
9382
9571
|
<li class="md-nav__item">
|
|
9383
|
-
<a href="#
|
|
9572
|
+
<a href="#fixed_22" class="md-nav__link">
|
|
9384
9573
|
<span class="md-ellipsis">
|
|
9385
9574
|
Fixed
|
|
9386
9575
|
</span>
|
|
@@ -9389,7 +9578,7 @@
|
|
|
9389
9578
|
</li>
|
|
9390
9579
|
|
|
9391
9580
|
<li class="md-nav__item">
|
|
9392
|
-
<a href="#
|
|
9581
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
9393
9582
|
<span class="md-ellipsis">
|
|
9394
9583
|
Dependencies
|
|
9395
9584
|
</span>
|
|
@@ -9976,7 +10165,201 @@
|
|
|
9976
10165
|
<li class="md-nav__item">
|
|
9977
10166
|
<a href="#python-311-support-3561" class="md-nav__link">
|
|
9978
10167
|
<span class="md-ellipsis">
|
|
9979
|
-
Python 3.11 Support (#3561)
|
|
10168
|
+
Python 3.11 Support (#3561)
|
|
10169
|
+
</span>
|
|
10170
|
+
</a>
|
|
10171
|
+
|
|
10172
|
+
</li>
|
|
10173
|
+
|
|
10174
|
+
</ul>
|
|
10175
|
+
</nav>
|
|
10176
|
+
|
|
10177
|
+
</li>
|
|
10178
|
+
|
|
10179
|
+
<li class="md-nav__item">
|
|
10180
|
+
<a href="#changed" class="md-nav__link">
|
|
10181
|
+
<span class="md-ellipsis">
|
|
10182
|
+
Changed
|
|
10183
|
+
</span>
|
|
10184
|
+
</a>
|
|
10185
|
+
|
|
10186
|
+
<nav class="md-nav" aria-label="Changed">
|
|
10187
|
+
<ul class="md-nav__list">
|
|
10188
|
+
|
|
10189
|
+
<li class="md-nav__item">
|
|
10190
|
+
<a href="#additional-hide_restricted_ui-effects-for-unauthenticated-users-3646" class="md-nav__link">
|
|
10191
|
+
<span class="md-ellipsis">
|
|
10192
|
+
Additional HIDE_RESTRICTED_UI Effects for Unauthenticated Users (#3646)
|
|
10193
|
+
</span>
|
|
10194
|
+
</a>
|
|
10195
|
+
|
|
10196
|
+
</li>
|
|
10197
|
+
|
|
10198
|
+
<li class="md-nav__item">
|
|
10199
|
+
<a href="#increased-deviceasset_tag-maximum-length-3693" class="md-nav__link">
|
|
10200
|
+
<span class="md-ellipsis">
|
|
10201
|
+
Increased Device.asset_tag maximum length (#3693)
|
|
10202
|
+
</span>
|
|
10203
|
+
</a>
|
|
10204
|
+
|
|
10205
|
+
</li>
|
|
10206
|
+
|
|
10207
|
+
<li class="md-nav__item">
|
|
10208
|
+
<a href="#changed-default-python-version-for-docker-images-4029" class="md-nav__link">
|
|
10209
|
+
<span class="md-ellipsis">
|
|
10210
|
+
Changed Default Python Version for Docker Images (#4029)
|
|
10211
|
+
</span>
|
|
10212
|
+
</a>
|
|
10213
|
+
|
|
10214
|
+
</li>
|
|
10215
|
+
|
|
10216
|
+
</ul>
|
|
10217
|
+
</nav>
|
|
10218
|
+
|
|
10219
|
+
</li>
|
|
10220
|
+
|
|
10221
|
+
<li class="md-nav__item">
|
|
10222
|
+
<a href="#removed" class="md-nav__link">
|
|
10223
|
+
<span class="md-ellipsis">
|
|
10224
|
+
Removed
|
|
10225
|
+
</span>
|
|
10226
|
+
</a>
|
|
10227
|
+
|
|
10228
|
+
<nav class="md-nav" aria-label="Removed">
|
|
10229
|
+
<ul class="md-nav__list">
|
|
10230
|
+
|
|
10231
|
+
<li class="md-nav__item">
|
|
10232
|
+
<a href="#removed-python-37-support-3561" class="md-nav__link">
|
|
10233
|
+
<span class="md-ellipsis">
|
|
10234
|
+
Removed Python 3.7 Support (#3561)
|
|
10235
|
+
</span>
|
|
10236
|
+
</a>
|
|
10237
|
+
|
|
10238
|
+
</li>
|
|
10239
|
+
|
|
10240
|
+
</ul>
|
|
10241
|
+
</nav>
|
|
10242
|
+
|
|
10243
|
+
</li>
|
|
10244
|
+
|
|
10245
|
+
</ul>
|
|
10246
|
+
</nav>
|
|
10247
|
+
|
|
10248
|
+
</li>
|
|
10249
|
+
|
|
10250
|
+
<li class="md-nav__item">
|
|
10251
|
+
<a href="#v1629-2024-12-09" class="md-nav__link">
|
|
10252
|
+
<span class="md-ellipsis">
|
|
10253
|
+
v1.6.29 (2024-12-09)
|
|
10254
|
+
</span>
|
|
10255
|
+
</a>
|
|
10256
|
+
|
|
10257
|
+
<nav class="md-nav" aria-label="v1.6.29 (2024-12-09)">
|
|
10258
|
+
<ul class="md-nav__list">
|
|
10259
|
+
|
|
10260
|
+
<li class="md-nav__item">
|
|
10261
|
+
<a href="#security" class="md-nav__link">
|
|
10262
|
+
<span class="md-ellipsis">
|
|
10263
|
+
Security
|
|
10264
|
+
</span>
|
|
10265
|
+
</a>
|
|
10266
|
+
|
|
10267
|
+
</li>
|
|
10268
|
+
|
|
10269
|
+
<li class="md-nav__item">
|
|
10270
|
+
<a href="#fixed" class="md-nav__link">
|
|
10271
|
+
<span class="md-ellipsis">
|
|
10272
|
+
Fixed
|
|
10273
|
+
</span>
|
|
10274
|
+
</a>
|
|
10275
|
+
|
|
10276
|
+
</li>
|
|
10277
|
+
|
|
10278
|
+
</ul>
|
|
10279
|
+
</nav>
|
|
10280
|
+
|
|
10281
|
+
</li>
|
|
10282
|
+
|
|
10283
|
+
<li class="md-nav__item">
|
|
10284
|
+
<a href="#v1628-2024-09-24" class="md-nav__link">
|
|
10285
|
+
<span class="md-ellipsis">
|
|
10286
|
+
v1.6.28 (2024-09-24)
|
|
10287
|
+
</span>
|
|
10288
|
+
</a>
|
|
10289
|
+
|
|
10290
|
+
<nav class="md-nav" aria-label="v1.6.28 (2024-09-24)">
|
|
10291
|
+
<ul class="md-nav__list">
|
|
10292
|
+
|
|
10293
|
+
<li class="md-nav__item">
|
|
10294
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10295
|
+
<span class="md-ellipsis">
|
|
10296
|
+
Fixed
|
|
10297
|
+
</span>
|
|
10298
|
+
</a>
|
|
10299
|
+
|
|
10300
|
+
</li>
|
|
10301
|
+
|
|
10302
|
+
<li class="md-nav__item">
|
|
10303
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10304
|
+
<span class="md-ellipsis">
|
|
10305
|
+
Housekeeping
|
|
10306
|
+
</span>
|
|
10307
|
+
</a>
|
|
10308
|
+
|
|
10309
|
+
</li>
|
|
10310
|
+
|
|
10311
|
+
</ul>
|
|
10312
|
+
</nav>
|
|
10313
|
+
|
|
10314
|
+
</li>
|
|
10315
|
+
|
|
10316
|
+
<li class="md-nav__item">
|
|
10317
|
+
<a href="#v1627-2024-09-03" class="md-nav__link">
|
|
10318
|
+
<span class="md-ellipsis">
|
|
10319
|
+
v1.6.27 (2024-09-03)
|
|
10320
|
+
</span>
|
|
10321
|
+
</a>
|
|
10322
|
+
|
|
10323
|
+
<nav class="md-nav" aria-label="v1.6.27 (2024-09-03)">
|
|
10324
|
+
<ul class="md-nav__list">
|
|
10325
|
+
|
|
10326
|
+
<li class="md-nav__item">
|
|
10327
|
+
<a href="#security_1" class="md-nav__link">
|
|
10328
|
+
<span class="md-ellipsis">
|
|
10329
|
+
Security
|
|
10330
|
+
</span>
|
|
10331
|
+
</a>
|
|
10332
|
+
|
|
10333
|
+
</li>
|
|
10334
|
+
|
|
10335
|
+
<li class="md-nav__item">
|
|
10336
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10337
|
+
<span class="md-ellipsis">
|
|
10338
|
+
Fixed
|
|
10339
|
+
</span>
|
|
10340
|
+
</a>
|
|
10341
|
+
|
|
10342
|
+
</li>
|
|
10343
|
+
|
|
10344
|
+
</ul>
|
|
10345
|
+
</nav>
|
|
10346
|
+
|
|
10347
|
+
</li>
|
|
10348
|
+
|
|
10349
|
+
<li class="md-nav__item">
|
|
10350
|
+
<a href="#v1626-2024-07-22" class="md-nav__link">
|
|
10351
|
+
<span class="md-ellipsis">
|
|
10352
|
+
v1.6.26 (2024-07-22)
|
|
10353
|
+
</span>
|
|
10354
|
+
</a>
|
|
10355
|
+
|
|
10356
|
+
<nav class="md-nav" aria-label="v1.6.26 (2024-07-22)">
|
|
10357
|
+
<ul class="md-nav__list">
|
|
10358
|
+
|
|
10359
|
+
<li class="md-nav__item">
|
|
10360
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10361
|
+
<span class="md-ellipsis">
|
|
10362
|
+
Fixed
|
|
9980
10363
|
</span>
|
|
9981
10364
|
</a>
|
|
9982
10365
|
|
|
@@ -9986,39 +10369,30 @@
|
|
|
9986
10369
|
</nav>
|
|
9987
10370
|
|
|
9988
10371
|
</li>
|
|
9989
|
-
|
|
9990
|
-
|
|
9991
|
-
<a href="#
|
|
10372
|
+
|
|
10373
|
+
<li class="md-nav__item">
|
|
10374
|
+
<a href="#v1625-2024-07-09" class="md-nav__link">
|
|
9992
10375
|
<span class="md-ellipsis">
|
|
9993
|
-
|
|
10376
|
+
v1.6.25 (2024-07-09)
|
|
9994
10377
|
</span>
|
|
9995
10378
|
</a>
|
|
9996
10379
|
|
|
9997
|
-
<nav class="md-nav" aria-label="
|
|
10380
|
+
<nav class="md-nav" aria-label="v1.6.25 (2024-07-09)">
|
|
9998
10381
|
<ul class="md-nav__list">
|
|
9999
10382
|
|
|
10000
10383
|
<li class="md-nav__item">
|
|
10001
|
-
<a href="#
|
|
10002
|
-
<span class="md-ellipsis">
|
|
10003
|
-
Additional HIDE_RESTRICTED_UI Effects for Unauthenticated Users (#3646)
|
|
10004
|
-
</span>
|
|
10005
|
-
</a>
|
|
10006
|
-
|
|
10007
|
-
</li>
|
|
10008
|
-
|
|
10009
|
-
<li class="md-nav__item">
|
|
10010
|
-
<a href="#increased-deviceasset_tag-maximum-length-3693" class="md-nav__link">
|
|
10384
|
+
<a href="#security_2" class="md-nav__link">
|
|
10011
10385
|
<span class="md-ellipsis">
|
|
10012
|
-
|
|
10386
|
+
Security
|
|
10013
10387
|
</span>
|
|
10014
10388
|
</a>
|
|
10015
10389
|
|
|
10016
10390
|
</li>
|
|
10017
10391
|
|
|
10018
10392
|
<li class="md-nav__item">
|
|
10019
|
-
<a href="#
|
|
10393
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10020
10394
|
<span class="md-ellipsis">
|
|
10021
|
-
|
|
10395
|
+
Dependencies
|
|
10022
10396
|
</span>
|
|
10023
10397
|
</a>
|
|
10024
10398
|
|
|
@@ -10028,28 +10402,32 @@
|
|
|
10028
10402
|
</nav>
|
|
10029
10403
|
|
|
10030
10404
|
</li>
|
|
10031
|
-
|
|
10032
|
-
|
|
10033
|
-
<a href="#
|
|
10405
|
+
|
|
10406
|
+
<li class="md-nav__item">
|
|
10407
|
+
<a href="#v1624-2024-06-24" class="md-nav__link">
|
|
10034
10408
|
<span class="md-ellipsis">
|
|
10035
|
-
|
|
10409
|
+
v1.6.24 (2024-06-24)
|
|
10036
10410
|
</span>
|
|
10037
10411
|
</a>
|
|
10038
10412
|
|
|
10039
|
-
<nav class="md-nav" aria-label="
|
|
10413
|
+
<nav class="md-nav" aria-label="v1.6.24 (2024-06-24)">
|
|
10040
10414
|
<ul class="md-nav__list">
|
|
10041
10415
|
|
|
10042
10416
|
<li class="md-nav__item">
|
|
10043
|
-
<a href="#
|
|
10417
|
+
<a href="#security_3" class="md-nav__link">
|
|
10044
10418
|
<span class="md-ellipsis">
|
|
10045
|
-
|
|
10419
|
+
Security
|
|
10046
10420
|
</span>
|
|
10047
10421
|
</a>
|
|
10048
10422
|
|
|
10049
10423
|
</li>
|
|
10050
10424
|
|
|
10051
|
-
|
|
10052
|
-
|
|
10425
|
+
<li class="md-nav__item">
|
|
10426
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10427
|
+
<span class="md-ellipsis">
|
|
10428
|
+
Housekeeping
|
|
10429
|
+
</span>
|
|
10430
|
+
</a>
|
|
10053
10431
|
|
|
10054
10432
|
</li>
|
|
10055
10433
|
|
|
@@ -10069,7 +10447,7 @@
|
|
|
10069
10447
|
<ul class="md-nav__list">
|
|
10070
10448
|
|
|
10071
10449
|
<li class="md-nav__item">
|
|
10072
|
-
<a href="#
|
|
10450
|
+
<a href="#security_4" class="md-nav__link">
|
|
10073
10451
|
<span class="md-ellipsis">
|
|
10074
10452
|
Security
|
|
10075
10453
|
</span>
|
|
@@ -10078,7 +10456,7 @@
|
|
|
10078
10456
|
</li>
|
|
10079
10457
|
|
|
10080
10458
|
<li class="md-nav__item">
|
|
10081
|
-
<a href="#
|
|
10459
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10082
10460
|
<span class="md-ellipsis">
|
|
10083
10461
|
Housekeeping
|
|
10084
10462
|
</span>
|
|
@@ -10102,7 +10480,7 @@
|
|
|
10102
10480
|
<ul class="md-nav__list">
|
|
10103
10481
|
|
|
10104
10482
|
<li class="md-nav__item">
|
|
10105
|
-
<a href="#
|
|
10483
|
+
<a href="#security_5" class="md-nav__link">
|
|
10106
10484
|
<span class="md-ellipsis">
|
|
10107
10485
|
Security
|
|
10108
10486
|
</span>
|
|
@@ -10120,7 +10498,7 @@
|
|
|
10120
10498
|
</li>
|
|
10121
10499
|
|
|
10122
10500
|
<li class="md-nav__item">
|
|
10123
|
-
<a href="#
|
|
10501
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10124
10502
|
<span class="md-ellipsis">
|
|
10125
10503
|
Fixed
|
|
10126
10504
|
</span>
|
|
@@ -10144,7 +10522,7 @@
|
|
|
10144
10522
|
<ul class="md-nav__list">
|
|
10145
10523
|
|
|
10146
10524
|
<li class="md-nav__item">
|
|
10147
|
-
<a href="#
|
|
10525
|
+
<a href="#security_6" class="md-nav__link">
|
|
10148
10526
|
<span class="md-ellipsis">
|
|
10149
10527
|
Security
|
|
10150
10528
|
</span>
|
|
@@ -10168,7 +10546,7 @@
|
|
|
10168
10546
|
<ul class="md-nav__list">
|
|
10169
10547
|
|
|
10170
10548
|
<li class="md-nav__item">
|
|
10171
|
-
<a href="#
|
|
10549
|
+
<a href="#security_7" class="md-nav__link">
|
|
10172
10550
|
<span class="md-ellipsis">
|
|
10173
10551
|
Security
|
|
10174
10552
|
</span>
|
|
@@ -10177,7 +10555,7 @@
|
|
|
10177
10555
|
</li>
|
|
10178
10556
|
|
|
10179
10557
|
<li class="md-nav__item">
|
|
10180
|
-
<a href="#
|
|
10558
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10181
10559
|
<span class="md-ellipsis">
|
|
10182
10560
|
Fixed
|
|
10183
10561
|
</span>
|
|
@@ -10201,7 +10579,7 @@
|
|
|
10201
10579
|
<ul class="md-nav__list">
|
|
10202
10580
|
|
|
10203
10581
|
<li class="md-nav__item">
|
|
10204
|
-
<a href="#
|
|
10582
|
+
<a href="#security_8" class="md-nav__link">
|
|
10205
10583
|
<span class="md-ellipsis">
|
|
10206
10584
|
Security
|
|
10207
10585
|
</span>
|
|
@@ -10210,7 +10588,7 @@
|
|
|
10210
10588
|
</li>
|
|
10211
10589
|
|
|
10212
10590
|
<li class="md-nav__item">
|
|
10213
|
-
<a href="#
|
|
10591
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10214
10592
|
<span class="md-ellipsis">
|
|
10215
10593
|
Fixed
|
|
10216
10594
|
</span>
|
|
@@ -10234,7 +10612,7 @@
|
|
|
10234
10612
|
<ul class="md-nav__list">
|
|
10235
10613
|
|
|
10236
10614
|
<li class="md-nav__item">
|
|
10237
|
-
<a href="#
|
|
10615
|
+
<a href="#security_9" class="md-nav__link">
|
|
10238
10616
|
<span class="md-ellipsis">
|
|
10239
10617
|
Security
|
|
10240
10618
|
</span>
|
|
@@ -10243,7 +10621,7 @@
|
|
|
10243
10621
|
</li>
|
|
10244
10622
|
|
|
10245
10623
|
<li class="md-nav__item">
|
|
10246
|
-
<a href="#
|
|
10624
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10247
10625
|
<span class="md-ellipsis">
|
|
10248
10626
|
Dependencies
|
|
10249
10627
|
</span>
|
|
@@ -10267,7 +10645,7 @@
|
|
|
10267
10645
|
<ul class="md-nav__list">
|
|
10268
10646
|
|
|
10269
10647
|
<li class="md-nav__item">
|
|
10270
|
-
<a href="#
|
|
10648
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10271
10649
|
<span class="md-ellipsis">
|
|
10272
10650
|
Dependencies
|
|
10273
10651
|
</span>
|
|
@@ -10291,7 +10669,7 @@
|
|
|
10291
10669
|
<ul class="md-nav__list">
|
|
10292
10670
|
|
|
10293
10671
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#
|
|
10672
|
+
<a href="#security_10" class="md-nav__link">
|
|
10295
10673
|
<span class="md-ellipsis">
|
|
10296
10674
|
Security
|
|
10297
10675
|
</span>
|
|
@@ -10318,7 +10696,7 @@
|
|
|
10318
10696
|
</li>
|
|
10319
10697
|
|
|
10320
10698
|
<li class="md-nav__item">
|
|
10321
|
-
<a href="#
|
|
10699
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10322
10700
|
<span class="md-ellipsis">
|
|
10323
10701
|
Fixed
|
|
10324
10702
|
</span>
|
|
@@ -10336,7 +10714,7 @@
|
|
|
10336
10714
|
</li>
|
|
10337
10715
|
|
|
10338
10716
|
<li class="md-nav__item">
|
|
10339
|
-
<a href="#
|
|
10717
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10340
10718
|
<span class="md-ellipsis">
|
|
10341
10719
|
Housekeeping
|
|
10342
10720
|
</span>
|
|
@@ -10369,7 +10747,7 @@
|
|
|
10369
10747
|
</li>
|
|
10370
10748
|
|
|
10371
10749
|
<li class="md-nav__item">
|
|
10372
|
-
<a href="#
|
|
10750
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10373
10751
|
<span class="md-ellipsis">
|
|
10374
10752
|
Fixed
|
|
10375
10753
|
</span>
|
|
@@ -10378,7 +10756,7 @@
|
|
|
10378
10756
|
</li>
|
|
10379
10757
|
|
|
10380
10758
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#
|
|
10759
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10382
10760
|
<span class="md-ellipsis">
|
|
10383
10761
|
Housekeeping
|
|
10384
10762
|
</span>
|
|
@@ -10402,7 +10780,7 @@
|
|
|
10402
10780
|
<ul class="md-nav__list">
|
|
10403
10781
|
|
|
10404
10782
|
<li class="md-nav__item">
|
|
10405
|
-
<a href="#
|
|
10783
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10406
10784
|
<span class="md-ellipsis">
|
|
10407
10785
|
Fixed
|
|
10408
10786
|
</span>
|
|
@@ -10444,7 +10822,7 @@
|
|
|
10444
10822
|
</li>
|
|
10445
10823
|
|
|
10446
10824
|
<li class="md-nav__item">
|
|
10447
|
-
<a href="#
|
|
10825
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10448
10826
|
<span class="md-ellipsis">
|
|
10449
10827
|
Fixed
|
|
10450
10828
|
</span>
|
|
@@ -10486,7 +10864,7 @@
|
|
|
10486
10864
|
</li>
|
|
10487
10865
|
|
|
10488
10866
|
<li class="md-nav__item">
|
|
10489
|
-
<a href="#
|
|
10867
|
+
<a href="#security_11" class="md-nav__link">
|
|
10490
10868
|
<span class="md-ellipsis">
|
|
10491
10869
|
Security
|
|
10492
10870
|
</span>
|
|
@@ -10504,7 +10882,7 @@
|
|
|
10504
10882
|
</li>
|
|
10505
10883
|
|
|
10506
10884
|
<li class="md-nav__item">
|
|
10507
|
-
<a href="#
|
|
10885
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
10508
10886
|
<span class="md-ellipsis">
|
|
10509
10887
|
Fixed
|
|
10510
10888
|
</span>
|
|
@@ -10528,7 +10906,7 @@
|
|
|
10528
10906
|
<ul class="md-nav__list">
|
|
10529
10907
|
|
|
10530
10908
|
<li class="md-nav__item">
|
|
10531
|
-
<a href="#
|
|
10909
|
+
<a href="#security_12" class="md-nav__link">
|
|
10532
10910
|
<span class="md-ellipsis">
|
|
10533
10911
|
Security
|
|
10534
10912
|
</span>
|
|
@@ -10546,7 +10924,7 @@
|
|
|
10546
10924
|
</li>
|
|
10547
10925
|
|
|
10548
10926
|
<li class="md-nav__item">
|
|
10549
|
-
<a href="#
|
|
10927
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
10550
10928
|
<span class="md-ellipsis">
|
|
10551
10929
|
Fixed
|
|
10552
10930
|
</span>
|
|
@@ -10570,7 +10948,7 @@
|
|
|
10570
10948
|
<ul class="md-nav__list">
|
|
10571
10949
|
|
|
10572
10950
|
<li class="md-nav__item">
|
|
10573
|
-
<a href="#
|
|
10951
|
+
<a href="#security_13" class="md-nav__link">
|
|
10574
10952
|
<span class="md-ellipsis">
|
|
10575
10953
|
Security
|
|
10576
10954
|
</span>
|
|
@@ -10597,7 +10975,7 @@
|
|
|
10597
10975
|
</li>
|
|
10598
10976
|
|
|
10599
10977
|
<li class="md-nav__item">
|
|
10600
|
-
<a href="#
|
|
10978
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
10601
10979
|
<span class="md-ellipsis">
|
|
10602
10980
|
Dependencies
|
|
10603
10981
|
</span>
|
|
@@ -10621,7 +10999,7 @@
|
|
|
10621
10999
|
<ul class="md-nav__list">
|
|
10622
11000
|
|
|
10623
11001
|
<li class="md-nav__item">
|
|
10624
|
-
<a href="#
|
|
11002
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
10625
11003
|
<span class="md-ellipsis">
|
|
10626
11004
|
Fixed
|
|
10627
11005
|
</span>
|
|
@@ -10645,7 +11023,7 @@
|
|
|
10645
11023
|
<ul class="md-nav__list">
|
|
10646
11024
|
|
|
10647
11025
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
11026
|
+
<a href="#security_14" class="md-nav__link">
|
|
10649
11027
|
<span class="md-ellipsis">
|
|
10650
11028
|
Security
|
|
10651
11029
|
</span>
|
|
@@ -10672,7 +11050,7 @@
|
|
|
10672
11050
|
</li>
|
|
10673
11051
|
|
|
10674
11052
|
<li class="md-nav__item">
|
|
10675
|
-
<a href="#
|
|
11053
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
10676
11054
|
<span class="md-ellipsis">
|
|
10677
11055
|
Fixed
|
|
10678
11056
|
</span>
|
|
@@ -10681,7 +11059,7 @@
|
|
|
10681
11059
|
</li>
|
|
10682
11060
|
|
|
10683
11061
|
<li class="md-nav__item">
|
|
10684
|
-
<a href="#
|
|
11062
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10685
11063
|
<span class="md-ellipsis">
|
|
10686
11064
|
Housekeeping
|
|
10687
11065
|
</span>
|
|
@@ -10705,7 +11083,7 @@
|
|
|
10705
11083
|
<ul class="md-nav__list">
|
|
10706
11084
|
|
|
10707
11085
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
11086
|
+
<a href="#security_15" class="md-nav__link">
|
|
10709
11087
|
<span class="md-ellipsis">
|
|
10710
11088
|
Security
|
|
10711
11089
|
</span>
|
|
@@ -10732,7 +11110,7 @@
|
|
|
10732
11110
|
</li>
|
|
10733
11111
|
|
|
10734
11112
|
<li class="md-nav__item">
|
|
10735
|
-
<a href="#
|
|
11113
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
10736
11114
|
<span class="md-ellipsis">
|
|
10737
11115
|
Fixed
|
|
10738
11116
|
</span>
|
|
@@ -10756,7 +11134,7 @@
|
|
|
10756
11134
|
<ul class="md-nav__list">
|
|
10757
11135
|
|
|
10758
11136
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
11137
|
+
<a href="#security_16" class="md-nav__link">
|
|
10760
11138
|
<span class="md-ellipsis">
|
|
10761
11139
|
Security
|
|
10762
11140
|
</span>
|
|
@@ -10774,7 +11152,7 @@
|
|
|
10774
11152
|
</li>
|
|
10775
11153
|
|
|
10776
11154
|
<li class="md-nav__item">
|
|
10777
|
-
<a href="#
|
|
11155
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
10778
11156
|
<span class="md-ellipsis">
|
|
10779
11157
|
Fixed
|
|
10780
11158
|
</span>
|
|
@@ -10783,7 +11161,7 @@
|
|
|
10783
11161
|
</li>
|
|
10784
11162
|
|
|
10785
11163
|
<li class="md-nav__item">
|
|
10786
|
-
<a href="#
|
|
11164
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
10787
11165
|
<span class="md-ellipsis">
|
|
10788
11166
|
Dependencies
|
|
10789
11167
|
</span>
|
|
@@ -10792,7 +11170,7 @@
|
|
|
10792
11170
|
</li>
|
|
10793
11171
|
|
|
10794
11172
|
<li class="md-nav__item">
|
|
10795
|
-
<a href="#
|
|
11173
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10796
11174
|
<span class="md-ellipsis">
|
|
10797
11175
|
Housekeeping
|
|
10798
11176
|
</span>
|
|
@@ -10816,7 +11194,7 @@
|
|
|
10816
11194
|
<ul class="md-nav__list">
|
|
10817
11195
|
|
|
10818
11196
|
<li class="md-nav__item">
|
|
10819
|
-
<a href="#
|
|
11197
|
+
<a href="#security_17" class="md-nav__link">
|
|
10820
11198
|
<span class="md-ellipsis">
|
|
10821
11199
|
Security
|
|
10822
11200
|
</span>
|
|
@@ -10834,7 +11212,7 @@
|
|
|
10834
11212
|
</li>
|
|
10835
11213
|
|
|
10836
11214
|
<li class="md-nav__item">
|
|
10837
|
-
<a href="#
|
|
11215
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
10838
11216
|
<span class="md-ellipsis">
|
|
10839
11217
|
Fixed
|
|
10840
11218
|
</span>
|
|
@@ -10852,7 +11230,7 @@
|
|
|
10852
11230
|
</li>
|
|
10853
11231
|
|
|
10854
11232
|
<li class="md-nav__item">
|
|
10855
|
-
<a href="#
|
|
11233
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10856
11234
|
<span class="md-ellipsis">
|
|
10857
11235
|
Housekeeping
|
|
10858
11236
|
</span>
|
|
@@ -10903,7 +11281,7 @@
|
|
|
10903
11281
|
</li>
|
|
10904
11282
|
|
|
10905
11283
|
<li class="md-nav__item">
|
|
10906
|
-
<a href="#
|
|
11284
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10907
11285
|
<span class="md-ellipsis">
|
|
10908
11286
|
Housekeeping
|
|
10909
11287
|
</span>
|
|
@@ -10927,7 +11305,7 @@
|
|
|
10927
11305
|
<ul class="md-nav__list">
|
|
10928
11306
|
|
|
10929
11307
|
<li class="md-nav__item">
|
|
10930
|
-
<a href="#
|
|
11308
|
+
<a href="#security_18" class="md-nav__link">
|
|
10931
11309
|
<span class="md-ellipsis">
|
|
10932
11310
|
Security
|
|
10933
11311
|
</span>
|
|
@@ -10945,7 +11323,7 @@
|
|
|
10945
11323
|
</li>
|
|
10946
11324
|
|
|
10947
11325
|
<li class="md-nav__item">
|
|
10948
|
-
<a href="#
|
|
11326
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
10949
11327
|
<span class="md-ellipsis">
|
|
10950
11328
|
Fixed
|
|
10951
11329
|
</span>
|
|
@@ -10954,7 +11332,7 @@
|
|
|
10954
11332
|
</li>
|
|
10955
11333
|
|
|
10956
11334
|
<li class="md-nav__item">
|
|
10957
|
-
<a href="#
|
|
11335
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
10958
11336
|
<span class="md-ellipsis">
|
|
10959
11337
|
Housekeeping
|
|
10960
11338
|
</span>
|
|
@@ -10996,7 +11374,7 @@
|
|
|
10996
11374
|
</li>
|
|
10997
11375
|
|
|
10998
11376
|
<li class="md-nav__item">
|
|
10999
|
-
<a href="#
|
|
11377
|
+
<a href="#fixed_19" class="md-nav__link">
|
|
11000
11378
|
<span class="md-ellipsis">
|
|
11001
11379
|
Fixed
|
|
11002
11380
|
</span>
|
|
@@ -11014,7 +11392,7 @@
|
|
|
11014
11392
|
</li>
|
|
11015
11393
|
|
|
11016
11394
|
<li class="md-nav__item">
|
|
11017
|
-
<a href="#
|
|
11395
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
11018
11396
|
<span class="md-ellipsis">
|
|
11019
11397
|
Housekeeping
|
|
11020
11398
|
</span>
|
|
@@ -11047,7 +11425,7 @@
|
|
|
11047
11425
|
</li>
|
|
11048
11426
|
|
|
11049
11427
|
<li class="md-nav__item">
|
|
11050
|
-
<a href="#
|
|
11428
|
+
<a href="#fixed_20" class="md-nav__link">
|
|
11051
11429
|
<span class="md-ellipsis">
|
|
11052
11430
|
Fixed
|
|
11053
11431
|
</span>
|
|
@@ -11065,7 +11443,7 @@
|
|
|
11065
11443
|
</li>
|
|
11066
11444
|
|
|
11067
11445
|
<li class="md-nav__item">
|
|
11068
|
-
<a href="#
|
|
11446
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
11069
11447
|
<span class="md-ellipsis">
|
|
11070
11448
|
Housekeeping
|
|
11071
11449
|
</span>
|
|
@@ -11098,7 +11476,7 @@
|
|
|
11098
11476
|
</li>
|
|
11099
11477
|
|
|
11100
11478
|
<li class="md-nav__item">
|
|
11101
|
-
<a href="#
|
|
11479
|
+
<a href="#fixed_21" class="md-nav__link">
|
|
11102
11480
|
<span class="md-ellipsis">
|
|
11103
11481
|
Fixed
|
|
11104
11482
|
</span>
|
|
@@ -11107,7 +11485,7 @@
|
|
|
11107
11485
|
</li>
|
|
11108
11486
|
|
|
11109
11487
|
<li class="md-nav__item">
|
|
11110
|
-
<a href="#
|
|
11488
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
11111
11489
|
<span class="md-ellipsis">
|
|
11112
11490
|
Dependencies
|
|
11113
11491
|
</span>
|
|
@@ -11167,7 +11545,7 @@
|
|
|
11167
11545
|
</li>
|
|
11168
11546
|
|
|
11169
11547
|
<li class="md-nav__item">
|
|
11170
|
-
<a href="#
|
|
11548
|
+
<a href="#fixed_22" class="md-nav__link">
|
|
11171
11549
|
<span class="md-ellipsis">
|
|
11172
11550
|
Fixed
|
|
11173
11551
|
</span>
|
|
@@ -11176,7 +11554,7 @@
|
|
|
11176
11554
|
</li>
|
|
11177
11555
|
|
|
11178
11556
|
<li class="md-nav__item">
|
|
11179
|
-
<a href="#
|
|
11557
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
11180
11558
|
<span class="md-ellipsis">
|
|
11181
11559
|
Dependencies
|
|
11182
11560
|
</span>
|
|
@@ -11259,18 +11637,75 @@
|
|
|
11259
11637
|
<h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">¶</a></h4>
|
|
11260
11638
|
<p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
|
|
11261
11639
|
<!-- towncrier release notes start -->
|
|
11262
|
-
<h2 id="
|
|
11640
|
+
<h2 id="v1629-2024-12-09">v1.6.29 (2024-12-09)<a class="headerlink" href="#v1629-2024-12-09" title="Permanent link">¶</a></h2>
|
|
11263
11641
|
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11264
11642
|
<ul>
|
|
11643
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.2</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11644
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6625">#6625</a> - Patched <code>set_values()</code> method of Query class from django.db.models.sql.query to address <code>CVE-2024-42005</code>.</li>
|
|
11645
|
+
</ul>
|
|
11646
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11647
|
+
<ul>
|
|
11648
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
|
|
11649
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed a bug in the Dockerfile that prevented <code>docker build</code> from working on some platforms.</li>
|
|
11650
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed Docker builds failing in Gitlab CI.</li>
|
|
11651
|
+
</ul>
|
|
11652
|
+
<h2 id="v1628-2024-09-24">v1.6.28 (2024-09-24)<a class="headerlink" href="#v1628-2024-09-24" title="Permanent link">¶</a></h2>
|
|
11653
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11654
|
+
<ul>
|
|
11655
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6152">#6152</a> - Fixed table column ordering.</li>
|
|
11656
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6237">#6237</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
|
|
11657
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Fixed invalid installation of <code>xmlsec</code> library in the Nautobot Docker images.</li>
|
|
11658
|
+
</ul>
|
|
11659
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11660
|
+
<ul>
|
|
11661
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed "version" from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
11662
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
11663
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Brought <code>.gitignore</code> up to date with latest to aid in branch switching.</li>
|
|
11664
|
+
</ul>
|
|
11665
|
+
<h2 id="v1627-2024-09-03">v1.6.27 (2024-09-03)<a class="headerlink" href="#v1627-2024-09-03" title="Permanent link">¶</a></h2>
|
|
11666
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11667
|
+
<ul>
|
|
11668
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11669
|
+
</ul>
|
|
11670
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11671
|
+
<ul>
|
|
11672
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6081">#6081</a> - Fixed AttributeError during pre_migrate when permission constraints are applied to custom fields.</li>
|
|
11673
|
+
</ul>
|
|
11674
|
+
<h2 id="v1626-2024-07-22">v1.6.26 (2024-07-22)<a class="headerlink" href="#v1626-2024-07-22" title="Permanent link">¶</a></h2>
|
|
11675
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11676
|
+
<ul>
|
|
11677
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
11678
|
+
</ul>
|
|
11679
|
+
<h2 id="v1625-2024-07-09">v1.6.25 (2024-07-09)<a class="headerlink" href="#v1625-2024-07-09" title="Permanent link">¶</a></h2>
|
|
11680
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11681
|
+
<ul>
|
|
11682
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11683
|
+
</ul>
|
|
11684
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11685
|
+
<ul>
|
|
11686
|
+
<li><a href="https://github.com/nautobot/nautobot/pull/5897">#5897</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
11687
|
+
</ul>
|
|
11688
|
+
<h2 id="v1624-2024-06-24">v1.6.24 (2024-06-24)<a class="headerlink" href="#v1624-2024-06-24" title="Permanent link">¶</a></h2>
|
|
11689
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11690
|
+
<ul>
|
|
11691
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11692
|
+
</ul>
|
|
11693
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11694
|
+
<ul>
|
|
11695
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependency <code>requests</code> to <code>~2.32.2</code>.</li>
|
|
11696
|
+
</ul>
|
|
11697
|
+
<h2 id="v1623-2024-05-28">v1.6.23 (2024-05-28)<a class="headerlink" href="#v1623-2024-05-28" title="Permanent link">¶</a></h2>
|
|
11698
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
11699
|
+
<ul>
|
|
11265
11700
|
<li><a href="https://github.com/nautobot/nautobot/issues/5762">#5762</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
11266
11701
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11267
11702
|
</ul>
|
|
11268
|
-
<h3 id="
|
|
11703
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11269
11704
|
<ul>
|
|
11270
11705
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
11271
11706
|
</ul>
|
|
11272
11707
|
<h2 id="v1622-2024-05-13">v1.6.22 (2024-05-13)<a class="headerlink" href="#v1622-2024-05-13" title="Permanent link">¶</a></h2>
|
|
11273
|
-
<h3 id="
|
|
11708
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
11274
11709
|
<ul>
|
|
11275
11710
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
11276
11711
|
</ul>
|
|
@@ -11279,12 +11714,12 @@
|
|
|
11279
11714
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
11280
11715
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
11281
11716
|
</ul>
|
|
11282
|
-
<h3 id="
|
|
11717
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11283
11718
|
<ul>
|
|
11284
11719
|
<li><a href="https://github.com/nautobot/nautobot/issues/2974">#2974</a> - Fixed an error when deleting and then recreating a GitRepository that provides Jobs.</li>
|
|
11285
11720
|
</ul>
|
|
11286
11721
|
<h2 id="v1621-2024-05-07">v1.6.21 (2024-05-07)<a class="headerlink" href="#v1621-2024-05-07" title="Permanent link">¶</a></h2>
|
|
11287
|
-
<h3 id="
|
|
11722
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
11288
11723
|
<ul>
|
|
11289
11724
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
11290
11725
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to <code>3.7</code> due to <code>CVE-2024-3651</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
@@ -11292,40 +11727,40 @@
|
|
|
11292
11727
|
<li><a href="https://github.com/nautobot/nautobot/issues/5675">#5675</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
11293
11728
|
</ul>
|
|
11294
11729
|
<h2 id="v1620-2024-04-30">v1.6.20 (2024-04-30)<a class="headerlink" href="#v1620-2024-04-30" title="Permanent link">¶</a></h2>
|
|
11295
|
-
<h3 id="
|
|
11730
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
11296
11731
|
<ul>
|
|
11297
11732
|
<li><a href="https://github.com/nautobot/nautobot/issues/5647">#5647</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
11298
11733
|
</ul>
|
|
11299
|
-
<h3 id="
|
|
11734
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11300
11735
|
<ul>
|
|
11301
11736
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Increased performance of <code>brief=true</code> in API endpoints by eliminating unnecessary database joins.</li>
|
|
11302
11737
|
</ul>
|
|
11303
11738
|
<h2 id="v1619-2024-04-23">v1.6.19 (2024-04-23)<a class="headerlink" href="#v1619-2024-04-23" title="Permanent link">¶</a></h2>
|
|
11304
|
-
<h3 id="
|
|
11739
|
+
<h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">¶</a></h3>
|
|
11305
11740
|
<ul>
|
|
11306
11741
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11307
11742
|
</ul>
|
|
11308
|
-
<h3 id="
|
|
11743
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11309
11744
|
<ul>
|
|
11310
11745
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Fixed static media failure on <code>/graphql/</code> and <code>/admin/</code> pages.</li>
|
|
11311
11746
|
</ul>
|
|
11312
11747
|
<h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">¶</a></h2>
|
|
11313
|
-
<h3 id="
|
|
11748
|
+
<h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">¶</a></h3>
|
|
11314
11749
|
<ul>
|
|
11315
11750
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
11316
11751
|
</ul>
|
|
11317
|
-
<h3 id="
|
|
11752
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11318
11753
|
<ul>
|
|
11319
11754
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
11320
11755
|
</ul>
|
|
11321
11756
|
<h2 id="v1617-2024-04-01">v1.6.17 (2024-04-01)<a class="headerlink" href="#v1617-2024-04-01" title="Permanent link">¶</a></h2>
|
|
11322
|
-
<h3 id="
|
|
11757
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11323
11758
|
<ul>
|
|
11324
11759
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & its dependency on <code>ecdsa</code>.</li>
|
|
11325
11760
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>>=4.7.0,<4.18.0</code> to <code>^4.7.0</code>.</li>
|
|
11326
11761
|
</ul>
|
|
11327
11762
|
<h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">¶</a></h2>
|
|
11328
|
-
<h3 id="
|
|
11763
|
+
<h3 id="security_10">Security<a class="headerlink" href="#security_10" title="Permanent link">¶</a></h3>
|
|
11329
11764
|
<ul>
|
|
11330
11765
|
<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>
|
|
11331
11766
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -11348,7 +11783,7 @@
|
|
|
11348
11783
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
11349
11784
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
|
|
11350
11785
|
</ul>
|
|
11351
|
-
<h3 id="
|
|
11786
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11352
11787
|
<ul>
|
|
11353
11788
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
11354
11789
|
</ul>
|
|
@@ -11356,7 +11791,7 @@
|
|
|
11356
11791
|
<ul>
|
|
11357
11792
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
11358
11793
|
</ul>
|
|
11359
|
-
<h3 id="
|
|
11794
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11360
11795
|
<ul>
|
|
11361
11796
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
11362
11797
|
</ul>
|
|
@@ -11366,18 +11801,18 @@
|
|
|
11366
11801
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
11367
11802
|
<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>
|
|
11368
11803
|
</ul>
|
|
11369
|
-
<h3 id="
|
|
11804
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11370
11805
|
<ul>
|
|
11371
11806
|
<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>
|
|
11372
11807
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
11373
11808
|
</ul>
|
|
11374
|
-
<h3 id="
|
|
11809
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11375
11810
|
<ul>
|
|
11376
11811
|
<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>
|
|
11377
11812
|
<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>
|
|
11378
11813
|
</ul>
|
|
11379
11814
|
<h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">¶</a></h2>
|
|
11380
|
-
<h3 id="
|
|
11815
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11381
11816
|
<ul>
|
|
11382
11817
|
<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>
|
|
11383
11818
|
</ul>
|
|
@@ -11387,7 +11822,7 @@
|
|
|
11387
11822
|
<ul>
|
|
11388
11823
|
<li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
|
|
11389
11824
|
</ul>
|
|
11390
|
-
<h3 id="
|
|
11825
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11391
11826
|
<ul>
|
|
11392
11827
|
<li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
|
|
11393
11828
|
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
@@ -11403,7 +11838,7 @@
|
|
|
11403
11838
|
<ul>
|
|
11404
11839
|
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
11405
11840
|
</ul>
|
|
11406
|
-
<h3 id="
|
|
11841
|
+
<h3 id="security_11">Security<a class="headerlink" href="#security_11" title="Permanent link">¶</a></h3>
|
|
11407
11842
|
<ul>
|
|
11408
11843
|
<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>
|
|
11409
11844
|
</ul>
|
|
@@ -11412,13 +11847,13 @@
|
|
|
11412
11847
|
<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>
|
|
11413
11848
|
<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>
|
|
11414
11849
|
</ul>
|
|
11415
|
-
<h3 id="
|
|
11850
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11416
11851
|
<ul>
|
|
11417
11852
|
<li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
|
|
11418
11853
|
<li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
|
|
11419
11854
|
</ul>
|
|
11420
11855
|
<h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">¶</a></h2>
|
|
11421
|
-
<h3 id="
|
|
11856
|
+
<h3 id="security_12">Security<a class="headerlink" href="#security_12" title="Permanent link">¶</a></h3>
|
|
11422
11857
|
<ul>
|
|
11423
11858
|
<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>
|
|
11424
11859
|
</ul>
|
|
@@ -11426,13 +11861,13 @@
|
|
|
11426
11861
|
<ul>
|
|
11427
11862
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
11428
11863
|
</ul>
|
|
11429
|
-
<h3 id="
|
|
11864
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
11430
11865
|
<ul>
|
|
11431
11866
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
11432
11867
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
11433
11868
|
</ul>
|
|
11434
11869
|
<h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">¶</a></h2>
|
|
11435
|
-
<h3 id="
|
|
11870
|
+
<h3 id="security_13">Security<a class="headerlink" href="#security_13" title="Permanent link">¶</a></h3>
|
|
11436
11871
|
<ul>
|
|
11437
11872
|
<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>
|
|
11438
11873
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
@@ -11445,19 +11880,19 @@
|
|
|
11445
11880
|
<ul>
|
|
11446
11881
|
<li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
|
|
11447
11882
|
</ul>
|
|
11448
|
-
<h3 id="
|
|
11883
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11449
11884
|
<ul>
|
|
11450
11885
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
11451
11886
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
11452
11887
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
11453
11888
|
</ul>
|
|
11454
11889
|
<h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">¶</a></h2>
|
|
11455
|
-
<h3 id="
|
|
11890
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
11456
11891
|
<ul>
|
|
11457
11892
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11458
11893
|
</ul>
|
|
11459
11894
|
<h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">¶</a></h2>
|
|
11460
|
-
<h3 id="
|
|
11895
|
+
<h3 id="security_14">Security<a class="headerlink" href="#security_14" title="Permanent link">¶</a></h3>
|
|
11461
11896
|
<ul>
|
|
11462
11897
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11463
11898
|
<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>
|
|
@@ -11472,16 +11907,16 @@
|
|
|
11472
11907
|
<ul>
|
|
11473
11908
|
<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>
|
|
11474
11909
|
</ul>
|
|
11475
|
-
<h3 id="
|
|
11910
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
11476
11911
|
<ul>
|
|
11477
11912
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11478
11913
|
</ul>
|
|
11479
|
-
<h3 id="
|
|
11914
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11480
11915
|
<ul>
|
|
11481
11916
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
11482
11917
|
</ul>
|
|
11483
11918
|
<h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">¶</a></h2>
|
|
11484
|
-
<h3 id="
|
|
11919
|
+
<h3 id="security_15">Security<a class="headerlink" href="#security_15" title="Permanent link">¶</a></h3>
|
|
11485
11920
|
<ul>
|
|
11486
11921
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
11487
11922
|
</ul>
|
|
@@ -11494,14 +11929,14 @@
|
|
|
11494
11929
|
<li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
|
|
11495
11930
|
<li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
11496
11931
|
</ul>
|
|
11497
|
-
<h3 id="
|
|
11932
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
11498
11933
|
<ul>
|
|
11499
11934
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
11500
11935
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
11501
11936
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
11502
11937
|
</ul>
|
|
11503
11938
|
<h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">¶</a></h2>
|
|
11504
|
-
<h3 id="
|
|
11939
|
+
<h3 id="security_16">Security<a class="headerlink" href="#security_16" title="Permanent link">¶</a></h3>
|
|
11505
11940
|
<ul>
|
|
11506
11941
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
11507
11942
|
</ul>
|
|
@@ -11509,22 +11944,22 @@
|
|
|
11509
11944
|
<ul>
|
|
11510
11945
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
11511
11946
|
</ul>
|
|
11512
|
-
<h3 id="
|
|
11947
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
11513
11948
|
<ul>
|
|
11514
11949
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
|
|
11515
11950
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
|
|
11516
11951
|
</ul>
|
|
11517
|
-
<h3 id="
|
|
11952
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
11518
11953
|
<ul>
|
|
11519
11954
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
11520
11955
|
</ul>
|
|
11521
|
-
<h3 id="
|
|
11956
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11522
11957
|
<ul>
|
|
11523
11958
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
11524
11959
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
11525
11960
|
</ul>
|
|
11526
11961
|
<h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">¶</a></h2>
|
|
11527
|
-
<h3 id="
|
|
11962
|
+
<h3 id="security_17">Security<a class="headerlink" href="#security_17" title="Permanent link">¶</a></h3>
|
|
11528
11963
|
<ul>
|
|
11529
11964
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11530
11965
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
@@ -11533,7 +11968,7 @@
|
|
|
11533
11968
|
<ul>
|
|
11534
11969
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
11535
11970
|
</ul>
|
|
11536
|
-
<h3 id="
|
|
11971
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
11537
11972
|
<ul>
|
|
11538
11973
|
<li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group API.</li>
|
|
11539
11974
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -11545,7 +11980,7 @@
|
|
|
11545
11980
|
<ul>
|
|
11546
11981
|
<li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
|
|
11547
11982
|
</ul>
|
|
11548
|
-
<h3 id="
|
|
11983
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11549
11984
|
<ul>
|
|
11550
11985
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
|
|
11551
11986
|
</ul>
|
|
@@ -11563,12 +11998,12 @@
|
|
|
11563
11998
|
<ul>
|
|
11564
11999
|
<li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
|
|
11565
12000
|
</ul>
|
|
11566
|
-
<h3 id="
|
|
12001
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11567
12002
|
<ul>
|
|
11568
12003
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
11569
12004
|
</ul>
|
|
11570
12005
|
<h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">¶</a></h2>
|
|
11571
|
-
<h3 id="
|
|
12006
|
+
<h3 id="security_18">Security<a class="headerlink" href="#security_18" title="Permanent link">¶</a></h3>
|
|
11572
12007
|
<ul>
|
|
11573
12008
|
<li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
11574
12009
|
</ul>
|
|
@@ -11576,11 +12011,11 @@
|
|
|
11576
12011
|
<ul>
|
|
11577
12012
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
|
|
11578
12013
|
</ul>
|
|
11579
|
-
<h3 id="
|
|
12014
|
+
<h3 id="fixed_18">Fixed<a class="headerlink" href="#fixed_18" title="Permanent link">¶</a></h3>
|
|
11580
12015
|
<ul>
|
|
11581
12016
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
11582
12017
|
</ul>
|
|
11583
|
-
<h3 id="
|
|
12018
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
11584
12019
|
<ul>
|
|
11585
12020
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
|
|
11586
12021
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
|
|
@@ -11598,7 +12033,7 @@
|
|
|
11598
12033
|
<li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
|
|
11599
12034
|
<li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
|
|
11600
12035
|
</ul>
|
|
11601
|
-
<h3 id="
|
|
12036
|
+
<h3 id="fixed_19">Fixed<a class="headerlink" href="#fixed_19" title="Permanent link">¶</a></h3>
|
|
11602
12037
|
<ul>
|
|
11603
12038
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
|
|
11604
12039
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
|
|
@@ -11609,7 +12044,7 @@
|
|
|
11609
12044
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
11610
12045
|
<li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
|
|
11611
12046
|
</ul>
|
|
11612
|
-
<h3 id="
|
|
12047
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
11613
12048
|
<ul>
|
|
11614
12049
|
<li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
|
|
11615
12050
|
<li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
|
|
@@ -11619,7 +12054,7 @@
|
|
|
11619
12054
|
<ul>
|
|
11620
12055
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
11621
12056
|
</ul>
|
|
11622
|
-
<h3 id="
|
|
12057
|
+
<h3 id="fixed_20">Fixed<a class="headerlink" href="#fixed_20" title="Permanent link">¶</a></h3>
|
|
11623
12058
|
<ul>
|
|
11624
12059
|
<li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
|
|
11625
12060
|
<li><a href="https://github.com/nautobot/nautobot/issues/4149">#4149</a> - Fixed a bug that prevented renaming a <code>Rack</code> if it contained any devices whose names were not globally unique.</li>
|
|
@@ -11631,7 +12066,7 @@
|
|
|
11631
12066
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Updated docs at <code>nautobot/docs/installation/nautobot.md</code> and <code>nautobot/docs/installation/http-server.md</code> to adopt tabbed interfaces.</li>
|
|
11632
12067
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
11633
12068
|
</ul>
|
|
11634
|
-
<h3 id="
|
|
12069
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
11635
12070
|
<ul>
|
|
11636
12071
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
11637
12072
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -11642,7 +12077,7 @@
|
|
|
11642
12077
|
<ul>
|
|
11643
12078
|
<li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
|
|
11644
12079
|
</ul>
|
|
11645
|
-
<h3 id="
|
|
12080
|
+
<h3 id="fixed_21">Fixed<a class="headerlink" href="#fixed_21" title="Permanent link">¶</a></h3>
|
|
11646
12081
|
<ul>
|
|
11647
12082
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
|
|
11648
12083
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
|
|
@@ -11651,7 +12086,7 @@
|
|
|
11651
12086
|
<li><a href="https://github.com/nautobot/nautobot/issues/4205">#4205</a> - Fixed failing Apps CI due to missing dependency of <code>toml</code>.</li>
|
|
11652
12087
|
<li><a href="https://github.com/nautobot/nautobot/issues/4222">#4222</a> - Fixed a bug in which <code>Job</code> <code>ChoiceVars</code> could sometimes get rendered incorrectly in the UI as multiple-choice fields.</li>
|
|
11653
12088
|
</ul>
|
|
11654
|
-
<h3 id="
|
|
12089
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
11655
12090
|
<ul>
|
|
11656
12091
|
<li><a href="https://github.com/nautobot/nautobot/issues/4208">#4208</a> - Updated django-rq to 2.8.1.</li>
|
|
11657
12092
|
<li><a href="https://github.com/nautobot/nautobot/issues/4209">#4209</a> - Relaxed constraint on prometheus-client minimum version to <code>0.14.1</code>.</li>
|
|
@@ -11692,11 +12127,11 @@
|
|
|
11692
12127
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
|
|
11693
12128
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>pycryptodome</code> as Nautobot does not currently use this library and hasn't for some time.</li>
|
|
11694
12129
|
</ul>
|
|
11695
|
-
<h3 id="
|
|
12130
|
+
<h3 id="fixed_22">Fixed<a class="headerlink" href="#fixed_22" title="Permanent link">¶</a></h3>
|
|
11696
12131
|
<ul>
|
|
11697
12132
|
<li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
|
|
11698
12133
|
</ul>
|
|
11699
|
-
<h3 id="
|
|
12134
|
+
<h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">¶</a></h3>
|
|
11700
12135
|
<ul>
|
|
11701
12136
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>celery</code> dependency to <code>~5.3.1</code>.</li>
|
|
11702
12137
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|