nautobot 2.3.15b1__py3-none-any.whl → 2.3.16__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/circuits/views.py +3 -3
- nautobot/cloud/models.py +1 -1
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/serializers.py +9 -9
- nautobot/core/api/views.py +3 -2
- nautobot/core/apps/__init__.py +5 -2
- nautobot/core/celery/schedulers.py +1 -1
- nautobot/core/filters.py +19 -16
- nautobot/core/forms/fields.py +5 -5
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +4 -4
- nautobot/core/jobs/cleanup.py +1 -1
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +2 -2
- nautobot/core/settings.py +3 -0
- nautobot/core/settings.yaml +8 -0
- nautobot/core/tables.py +5 -5
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/nautobot_config.py.j2 +3 -0
- nautobot/core/testing/filters.py +7 -3
- nautobot/core/testing/views.py +5 -0
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_views.py +29 -0
- nautobot/core/urls.py +9 -0
- nautobot/core/views/generic.py +51 -43
- nautobot/core/views/mixins.py +21 -11
- nautobot/dcim/api/serializers.py +48 -48
- nautobot/dcim/forms.py +2 -0
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +1 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tests/test_filters.py +1 -0
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_models.py +4 -1
- nautobot/dcim/views.py +1 -1
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +72 -69
- nautobot/extras/api/views.py +4 -4
- nautobot/extras/forms/mixins.py +1 -1
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +5 -5
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/models/customfields.py +12 -11
- nautobot/extras/models/groups.py +13 -9
- nautobot/extras/models/jobs.py +4 -4
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/views.py +1 -1
- nautobot/extras/tables.py +5 -5
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +13 -13
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +2 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +20 -1
- nautobot/extras/tests/test_jobs.py +11 -11
- nautobot/extras/tests/test_models.py +10 -10
- nautobot/extras/tests/test_relationships.py +1 -1
- nautobot/extras/tests/test_views.py +16 -16
- nautobot/extras/views.py +20 -16
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +33 -33
- nautobot/ipam/api/views.py +37 -61
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tests/test_api.py +12 -1
- nautobot/ipam/tests/test_forms.py +51 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_querysets.py +14 -0
- nautobot/project-static/docs/404.html +2 -2
- nautobot/project-static/docs/apps/index.html +2 -2
- nautobot/project-static/docs/apps/nautobot-apps.html +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.88dd0f4e.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.88dd0f4e.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3 -3
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +4 -4
- nautobot/project-static/docs/development/apps/api/configuration-view.html +2 -2
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/global-search.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/graphql.html +2 -2
- nautobot/project-static/docs/development/apps/api/models/index.html +2 -2
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +2 -2
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +2 -2
- nautobot/project-static/docs/development/apps/api/prometheus.html +2 -2
- nautobot/project-static/docs/development/apps/api/setup.html +2 -2
- nautobot/project-static/docs/development/apps/api/testing.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +2 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/base-template.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/index.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/notes.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +2 -2
- nautobot/project-static/docs/development/apps/api/views/urls.html +2 -2
- nautobot/project-static/docs/development/apps/index.html +2 -2
- nautobot/project-static/docs/development/apps/migration/code-updates.html +2 -2
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +2 -2
- nautobot/project-static/docs/development/apps/migration/from-v1.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +2 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +2 -2
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +2 -2
- nautobot/project-static/docs/development/core/application-registry.html +2 -2
- nautobot/project-static/docs/development/core/best-practices.html +2 -2
- nautobot/project-static/docs/development/core/bootstrap-ui.html +2 -2
- nautobot/project-static/docs/development/core/caching.html +2 -2
- nautobot/project-static/docs/development/core/controllers.html +2 -2
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +27 -70
- nautobot/project-static/docs/development/core/generic-views.html +2 -2
- nautobot/project-static/docs/development/core/getting-started.html +2 -2
- nautobot/project-static/docs/development/core/homepage.html +2 -2
- nautobot/project-static/docs/development/core/index.html +2 -2
- nautobot/project-static/docs/development/core/model-checklist.html +2 -2
- nautobot/project-static/docs/development/core/model-features.html +2 -2
- nautobot/project-static/docs/development/core/natural-keys.html +2 -2
- nautobot/project-static/docs/development/core/navigation-menu.html +2 -2
- nautobot/project-static/docs/development/core/release-checklist.html +2 -2
- nautobot/project-static/docs/development/core/role-internals.html +2 -2
- nautobot/project-static/docs/development/core/settings.html +2 -2
- nautobot/project-static/docs/development/core/style-guide.html +2 -2
- nautobot/project-static/docs/development/core/templates.html +2 -2
- nautobot/project-static/docs/development/core/testing.html +2 -2
- nautobot/project-static/docs/development/core/user-preferences.html +2 -2
- nautobot/project-static/docs/development/index.html +2 -2
- nautobot/project-static/docs/development/jobs/index.html +2 -2
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +2 -2
- nautobot/project-static/docs/index.html +2 -2
- nautobot/project-static/docs/overview/application_stack.html +2 -2
- nautobot/project-static/docs/overview/design_philosophy.html +2 -2
- nautobot/project-static/docs/release-notes/index.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.3.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.4.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.5.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.0.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.1.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.2.html +2 -2
- nautobot/project-static/docs/release-notes/version-2.3.html +471 -220
- nautobot/project-static/docs/requirements.txt +2 -2
- 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 +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +2 -2
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +29 -2
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +2 -2
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/index.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +2 -2
- nautobot/project-static/docs/user-guide/administration/installation/services.html +2 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +2 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +2 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +2 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +2 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +2 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +2 -2
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +2 -2
- nautobot/project-static/docs/user-guide/index.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +2 -2
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +2 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +4 -4
- nautobot/users/api/views.py +1 -1
- nautobot/virtualization/api/serializers.py +4 -4
- {nautobot-2.3.15b1.dist-info → nautobot-2.3.16.dist-info}/METADATA +5 -4
- {nautobot-2.3.15b1.dist-info → nautobot-2.3.16.dist-info}/RECORD +392 -393
- {nautobot-2.3.15b1.dist-info → nautobot-2.3.16.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- {nautobot-2.3.15b1.dist-info → nautobot-2.3.16.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.3.16.dist-info}/NOTICE +0 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.3.16.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.49">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -8254,6 +8254,108 @@
|
|
|
8254
8254
|
</ul>
|
|
8255
8255
|
</nav>
|
|
8256
8256
|
|
|
8257
|
+
</li>
|
|
8258
|
+
|
|
8259
|
+
<li class="md-nav__item">
|
|
8260
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
8261
|
+
<span class="md-ellipsis">
|
|
8262
|
+
v2.3.16 (2025-01-06)
|
|
8263
|
+
</span>
|
|
8264
|
+
</a>
|
|
8265
|
+
|
|
8266
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
8267
|
+
<ul class="md-nav__list">
|
|
8268
|
+
|
|
8269
|
+
<li class="md-nav__item">
|
|
8270
|
+
<a href="#fixed" class="md-nav__link">
|
|
8271
|
+
<span class="md-ellipsis">
|
|
8272
|
+
Fixed
|
|
8273
|
+
</span>
|
|
8274
|
+
</a>
|
|
8275
|
+
|
|
8276
|
+
</li>
|
|
8277
|
+
|
|
8278
|
+
<li class="md-nav__item">
|
|
8279
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8280
|
+
<span class="md-ellipsis">
|
|
8281
|
+
Housekeeping
|
|
8282
|
+
</span>
|
|
8283
|
+
</a>
|
|
8284
|
+
|
|
8285
|
+
</li>
|
|
8286
|
+
|
|
8287
|
+
</ul>
|
|
8288
|
+
</nav>
|
|
8289
|
+
|
|
8290
|
+
</li>
|
|
8291
|
+
|
|
8292
|
+
<li class="md-nav__item">
|
|
8293
|
+
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
8294
|
+
<span class="md-ellipsis">
|
|
8295
|
+
v2.3.15 (2025-01-02)
|
|
8296
|
+
</span>
|
|
8297
|
+
</a>
|
|
8298
|
+
|
|
8299
|
+
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
8300
|
+
<ul class="md-nav__list">
|
|
8301
|
+
|
|
8302
|
+
<li class="md-nav__item">
|
|
8303
|
+
<a href="#security" class="md-nav__link">
|
|
8304
|
+
<span class="md-ellipsis">
|
|
8305
|
+
Security
|
|
8306
|
+
</span>
|
|
8307
|
+
</a>
|
|
8308
|
+
|
|
8309
|
+
</li>
|
|
8310
|
+
|
|
8311
|
+
<li class="md-nav__item">
|
|
8312
|
+
<a href="#added_1" class="md-nav__link">
|
|
8313
|
+
<span class="md-ellipsis">
|
|
8314
|
+
Added
|
|
8315
|
+
</span>
|
|
8316
|
+
</a>
|
|
8317
|
+
|
|
8318
|
+
</li>
|
|
8319
|
+
|
|
8320
|
+
<li class="md-nav__item">
|
|
8321
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8322
|
+
<span class="md-ellipsis">
|
|
8323
|
+
Changed
|
|
8324
|
+
</span>
|
|
8325
|
+
</a>
|
|
8326
|
+
|
|
8327
|
+
</li>
|
|
8328
|
+
|
|
8329
|
+
<li class="md-nav__item">
|
|
8330
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8331
|
+
<span class="md-ellipsis">
|
|
8332
|
+
Fixed
|
|
8333
|
+
</span>
|
|
8334
|
+
</a>
|
|
8335
|
+
|
|
8336
|
+
</li>
|
|
8337
|
+
|
|
8338
|
+
<li class="md-nav__item">
|
|
8339
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8340
|
+
<span class="md-ellipsis">
|
|
8341
|
+
Dependencies
|
|
8342
|
+
</span>
|
|
8343
|
+
</a>
|
|
8344
|
+
|
|
8345
|
+
</li>
|
|
8346
|
+
|
|
8347
|
+
<li class="md-nav__item">
|
|
8348
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8349
|
+
<span class="md-ellipsis">
|
|
8350
|
+
Housekeeping
|
|
8351
|
+
</span>
|
|
8352
|
+
</a>
|
|
8353
|
+
|
|
8354
|
+
</li>
|
|
8355
|
+
|
|
8356
|
+
</ul>
|
|
8357
|
+
</nav>
|
|
8358
|
+
|
|
8257
8359
|
</li>
|
|
8258
8360
|
|
|
8259
8361
|
<li class="md-nav__item">
|
|
@@ -8267,7 +8369,7 @@
|
|
|
8267
8369
|
<ul class="md-nav__list">
|
|
8268
8370
|
|
|
8269
8371
|
<li class="md-nav__item">
|
|
8270
|
-
<a href="#
|
|
8372
|
+
<a href="#added_2" class="md-nav__link">
|
|
8271
8373
|
<span class="md-ellipsis">
|
|
8272
8374
|
Added
|
|
8273
8375
|
</span>
|
|
@@ -8276,7 +8378,7 @@
|
|
|
8276
8378
|
</li>
|
|
8277
8379
|
|
|
8278
8380
|
<li class="md-nav__item">
|
|
8279
|
-
<a href="#
|
|
8381
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8280
8382
|
<span class="md-ellipsis">
|
|
8281
8383
|
Changed
|
|
8282
8384
|
</span>
|
|
@@ -8285,7 +8387,7 @@
|
|
|
8285
8387
|
</li>
|
|
8286
8388
|
|
|
8287
8389
|
<li class="md-nav__item">
|
|
8288
|
-
<a href="#
|
|
8390
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8289
8391
|
<span class="md-ellipsis">
|
|
8290
8392
|
Fixed
|
|
8291
8393
|
</span>
|
|
@@ -8303,7 +8405,7 @@
|
|
|
8303
8405
|
</li>
|
|
8304
8406
|
|
|
8305
8407
|
<li class="md-nav__item">
|
|
8306
|
-
<a href="#
|
|
8408
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8307
8409
|
<span class="md-ellipsis">
|
|
8308
8410
|
Housekeeping
|
|
8309
8411
|
</span>
|
|
@@ -8327,7 +8429,7 @@
|
|
|
8327
8429
|
<ul class="md-nav__list">
|
|
8328
8430
|
|
|
8329
8431
|
<li class="md-nav__item">
|
|
8330
|
-
<a href="#
|
|
8432
|
+
<a href="#security_1" class="md-nav__link">
|
|
8331
8433
|
<span class="md-ellipsis">
|
|
8332
8434
|
Security
|
|
8333
8435
|
</span>
|
|
@@ -8336,7 +8438,7 @@
|
|
|
8336
8438
|
</li>
|
|
8337
8439
|
|
|
8338
8440
|
<li class="md-nav__item">
|
|
8339
|
-
<a href="#
|
|
8441
|
+
<a href="#added_3" class="md-nav__link">
|
|
8340
8442
|
<span class="md-ellipsis">
|
|
8341
8443
|
Added
|
|
8342
8444
|
</span>
|
|
@@ -8345,7 +8447,7 @@
|
|
|
8345
8447
|
</li>
|
|
8346
8448
|
|
|
8347
8449
|
<li class="md-nav__item">
|
|
8348
|
-
<a href="#
|
|
8450
|
+
<a href="#changed_3" class="md-nav__link">
|
|
8349
8451
|
<span class="md-ellipsis">
|
|
8350
8452
|
Changed
|
|
8351
8453
|
</span>
|
|
@@ -8354,7 +8456,7 @@
|
|
|
8354
8456
|
</li>
|
|
8355
8457
|
|
|
8356
8458
|
<li class="md-nav__item">
|
|
8357
|
-
<a href="#
|
|
8459
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8358
8460
|
<span class="md-ellipsis">
|
|
8359
8461
|
Fixed
|
|
8360
8462
|
</span>
|
|
@@ -8363,7 +8465,7 @@
|
|
|
8363
8465
|
</li>
|
|
8364
8466
|
|
|
8365
8467
|
<li class="md-nav__item">
|
|
8366
|
-
<a href="#
|
|
8468
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8367
8469
|
<span class="md-ellipsis">
|
|
8368
8470
|
Dependencies
|
|
8369
8471
|
</span>
|
|
@@ -8381,7 +8483,7 @@
|
|
|
8381
8483
|
</li>
|
|
8382
8484
|
|
|
8383
8485
|
<li class="md-nav__item">
|
|
8384
|
-
<a href="#
|
|
8486
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8385
8487
|
<span class="md-ellipsis">
|
|
8386
8488
|
Housekeeping
|
|
8387
8489
|
</span>
|
|
@@ -8405,7 +8507,7 @@
|
|
|
8405
8507
|
<ul class="md-nav__list">
|
|
8406
8508
|
|
|
8407
8509
|
<li class="md-nav__item">
|
|
8408
|
-
<a href="#
|
|
8510
|
+
<a href="#added_4" class="md-nav__link">
|
|
8409
8511
|
<span class="md-ellipsis">
|
|
8410
8512
|
Added
|
|
8411
8513
|
</span>
|
|
@@ -8414,7 +8516,7 @@
|
|
|
8414
8516
|
</li>
|
|
8415
8517
|
|
|
8416
8518
|
<li class="md-nav__item">
|
|
8417
|
-
<a href="#
|
|
8519
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8418
8520
|
<span class="md-ellipsis">
|
|
8419
8521
|
Fixed
|
|
8420
8522
|
</span>
|
|
@@ -8423,7 +8525,7 @@
|
|
|
8423
8525
|
</li>
|
|
8424
8526
|
|
|
8425
8527
|
<li class="md-nav__item">
|
|
8426
|
-
<a href="#
|
|
8528
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8427
8529
|
<span class="md-ellipsis">
|
|
8428
8530
|
Dependencies
|
|
8429
8531
|
</span>
|
|
@@ -8441,7 +8543,7 @@
|
|
|
8441
8543
|
</li>
|
|
8442
8544
|
|
|
8443
8545
|
<li class="md-nav__item">
|
|
8444
|
-
<a href="#
|
|
8546
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8445
8547
|
<span class="md-ellipsis">
|
|
8446
8548
|
Housekeeping
|
|
8447
8549
|
</span>
|
|
@@ -8465,7 +8567,7 @@
|
|
|
8465
8567
|
<ul class="md-nav__list">
|
|
8466
8568
|
|
|
8467
8569
|
<li class="md-nav__item">
|
|
8468
|
-
<a href="#
|
|
8570
|
+
<a href="#added_5" class="md-nav__link">
|
|
8469
8571
|
<span class="md-ellipsis">
|
|
8470
8572
|
Added
|
|
8471
8573
|
</span>
|
|
@@ -8474,7 +8576,7 @@
|
|
|
8474
8576
|
</li>
|
|
8475
8577
|
|
|
8476
8578
|
<li class="md-nav__item">
|
|
8477
|
-
<a href="#
|
|
8579
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8478
8580
|
<span class="md-ellipsis">
|
|
8479
8581
|
Changed
|
|
8480
8582
|
</span>
|
|
@@ -8483,7 +8585,7 @@
|
|
|
8483
8585
|
</li>
|
|
8484
8586
|
|
|
8485
8587
|
<li class="md-nav__item">
|
|
8486
|
-
<a href="#
|
|
8588
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8487
8589
|
<span class="md-ellipsis">
|
|
8488
8590
|
Fixed
|
|
8489
8591
|
</span>
|
|
@@ -8501,7 +8603,7 @@
|
|
|
8501
8603
|
</li>
|
|
8502
8604
|
|
|
8503
8605
|
<li class="md-nav__item">
|
|
8504
|
-
<a href="#
|
|
8606
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8505
8607
|
<span class="md-ellipsis">
|
|
8506
8608
|
Housekeeping
|
|
8507
8609
|
</span>
|
|
@@ -8525,7 +8627,7 @@
|
|
|
8525
8627
|
<ul class="md-nav__list">
|
|
8526
8628
|
|
|
8527
8629
|
<li class="md-nav__item">
|
|
8528
|
-
<a href="#
|
|
8630
|
+
<a href="#added_6" class="md-nav__link">
|
|
8529
8631
|
<span class="md-ellipsis">
|
|
8530
8632
|
Added
|
|
8531
8633
|
</span>
|
|
@@ -8534,7 +8636,7 @@
|
|
|
8534
8636
|
</li>
|
|
8535
8637
|
|
|
8536
8638
|
<li class="md-nav__item">
|
|
8537
|
-
<a href="#
|
|
8639
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8538
8640
|
<span class="md-ellipsis">
|
|
8539
8641
|
Changed
|
|
8540
8642
|
</span>
|
|
@@ -8543,7 +8645,7 @@
|
|
|
8543
8645
|
</li>
|
|
8544
8646
|
|
|
8545
8647
|
<li class="md-nav__item">
|
|
8546
|
-
<a href="#
|
|
8648
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8547
8649
|
<span class="md-ellipsis">
|
|
8548
8650
|
Fixed
|
|
8549
8651
|
</span>
|
|
@@ -8552,7 +8654,7 @@
|
|
|
8552
8654
|
</li>
|
|
8553
8655
|
|
|
8554
8656
|
<li class="md-nav__item">
|
|
8555
|
-
<a href="#
|
|
8657
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
8556
8658
|
<span class="md-ellipsis">
|
|
8557
8659
|
Dependencies
|
|
8558
8660
|
</span>
|
|
@@ -8561,7 +8663,7 @@
|
|
|
8561
8663
|
</li>
|
|
8562
8664
|
|
|
8563
8665
|
<li class="md-nav__item">
|
|
8564
|
-
<a href="#
|
|
8666
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8565
8667
|
<span class="md-ellipsis">
|
|
8566
8668
|
Housekeeping
|
|
8567
8669
|
</span>
|
|
@@ -8585,7 +8687,7 @@
|
|
|
8585
8687
|
<ul class="md-nav__list">
|
|
8586
8688
|
|
|
8587
8689
|
<li class="md-nav__item">
|
|
8588
|
-
<a href="#
|
|
8690
|
+
<a href="#added_7" class="md-nav__link">
|
|
8589
8691
|
<span class="md-ellipsis">
|
|
8590
8692
|
Added
|
|
8591
8693
|
</span>
|
|
@@ -8594,7 +8696,7 @@
|
|
|
8594
8696
|
</li>
|
|
8595
8697
|
|
|
8596
8698
|
<li class="md-nav__item">
|
|
8597
|
-
<a href="#
|
|
8699
|
+
<a href="#changed_6" class="md-nav__link">
|
|
8598
8700
|
<span class="md-ellipsis">
|
|
8599
8701
|
Changed
|
|
8600
8702
|
</span>
|
|
@@ -8603,7 +8705,7 @@
|
|
|
8603
8705
|
</li>
|
|
8604
8706
|
|
|
8605
8707
|
<li class="md-nav__item">
|
|
8606
|
-
<a href="#
|
|
8708
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8607
8709
|
<span class="md-ellipsis">
|
|
8608
8710
|
Fixed
|
|
8609
8711
|
</span>
|
|
@@ -8612,7 +8714,7 @@
|
|
|
8612
8714
|
</li>
|
|
8613
8715
|
|
|
8614
8716
|
<li class="md-nav__item">
|
|
8615
|
-
<a href="#
|
|
8717
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
8616
8718
|
<span class="md-ellipsis">
|
|
8617
8719
|
Dependencies
|
|
8618
8720
|
</span>
|
|
@@ -8621,7 +8723,7 @@
|
|
|
8621
8723
|
</li>
|
|
8622
8724
|
|
|
8623
8725
|
<li class="md-nav__item">
|
|
8624
|
-
<a href="#
|
|
8726
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8625
8727
|
<span class="md-ellipsis">
|
|
8626
8728
|
Housekeeping
|
|
8627
8729
|
</span>
|
|
@@ -8645,7 +8747,7 @@
|
|
|
8645
8747
|
<ul class="md-nav__list">
|
|
8646
8748
|
|
|
8647
8749
|
<li class="md-nav__item">
|
|
8648
|
-
<a href="#
|
|
8750
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8649
8751
|
<span class="md-ellipsis">
|
|
8650
8752
|
Fixed
|
|
8651
8753
|
</span>
|
|
@@ -8669,7 +8771,7 @@
|
|
|
8669
8771
|
<ul class="md-nav__list">
|
|
8670
8772
|
|
|
8671
8773
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
8774
|
+
<a href="#added_8" class="md-nav__link">
|
|
8673
8775
|
<span class="md-ellipsis">
|
|
8674
8776
|
Added
|
|
8675
8777
|
</span>
|
|
@@ -8678,7 +8780,7 @@
|
|
|
8678
8780
|
</li>
|
|
8679
8781
|
|
|
8680
8782
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
8783
|
+
<a href="#changed_7" class="md-nav__link">
|
|
8682
8784
|
<span class="md-ellipsis">
|
|
8683
8785
|
Changed
|
|
8684
8786
|
</span>
|
|
@@ -8687,7 +8789,7 @@
|
|
|
8687
8789
|
</li>
|
|
8688
8790
|
|
|
8689
8791
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#
|
|
8792
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
8691
8793
|
<span class="md-ellipsis">
|
|
8692
8794
|
Fixed
|
|
8693
8795
|
</span>
|
|
@@ -8696,7 +8798,7 @@
|
|
|
8696
8798
|
</li>
|
|
8697
8799
|
|
|
8698
8800
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#
|
|
8801
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
8700
8802
|
<span class="md-ellipsis">
|
|
8701
8803
|
Dependencies
|
|
8702
8804
|
</span>
|
|
@@ -8705,7 +8807,7 @@
|
|
|
8705
8807
|
</li>
|
|
8706
8808
|
|
|
8707
8809
|
<li class="md-nav__item">
|
|
8708
|
-
<a href="#
|
|
8810
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
8709
8811
|
<span class="md-ellipsis">
|
|
8710
8812
|
Housekeeping
|
|
8711
8813
|
</span>
|
|
@@ -8729,7 +8831,7 @@
|
|
|
8729
8831
|
<ul class="md-nav__list">
|
|
8730
8832
|
|
|
8731
8833
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
8834
|
+
<a href="#added_9" class="md-nav__link">
|
|
8733
8835
|
<span class="md-ellipsis">
|
|
8734
8836
|
Added
|
|
8735
8837
|
</span>
|
|
@@ -8738,7 +8840,7 @@
|
|
|
8738
8840
|
</li>
|
|
8739
8841
|
|
|
8740
8842
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
8843
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
8742
8844
|
<span class="md-ellipsis">
|
|
8743
8845
|
Fixed
|
|
8744
8846
|
</span>
|
|
@@ -8756,7 +8858,7 @@
|
|
|
8756
8858
|
</li>
|
|
8757
8859
|
|
|
8758
8860
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
8861
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
8760
8862
|
<span class="md-ellipsis">
|
|
8761
8863
|
Housekeeping
|
|
8762
8864
|
</span>
|
|
@@ -8780,7 +8882,7 @@
|
|
|
8780
8882
|
<ul class="md-nav__list">
|
|
8781
8883
|
|
|
8782
8884
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
8885
|
+
<a href="#added_10" class="md-nav__link">
|
|
8784
8886
|
<span class="md-ellipsis">
|
|
8785
8887
|
Added
|
|
8786
8888
|
</span>
|
|
@@ -8789,7 +8891,7 @@
|
|
|
8789
8891
|
</li>
|
|
8790
8892
|
|
|
8791
8893
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
8894
|
+
<a href="#changed_8" class="md-nav__link">
|
|
8793
8895
|
<span class="md-ellipsis">
|
|
8794
8896
|
Changed
|
|
8795
8897
|
</span>
|
|
@@ -8798,7 +8900,7 @@
|
|
|
8798
8900
|
</li>
|
|
8799
8901
|
|
|
8800
8902
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
8903
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
8802
8904
|
<span class="md-ellipsis">
|
|
8803
8905
|
Fixed
|
|
8804
8906
|
</span>
|
|
@@ -8807,7 +8909,7 @@
|
|
|
8807
8909
|
</li>
|
|
8808
8910
|
|
|
8809
8911
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
8912
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
8811
8913
|
<span class="md-ellipsis">
|
|
8812
8914
|
Dependencies
|
|
8813
8915
|
</span>
|
|
@@ -8825,7 +8927,7 @@
|
|
|
8825
8927
|
</li>
|
|
8826
8928
|
|
|
8827
8929
|
<li class="md-nav__item">
|
|
8828
|
-
<a href="#
|
|
8930
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
8829
8931
|
<span class="md-ellipsis">
|
|
8830
8932
|
Housekeeping
|
|
8831
8933
|
</span>
|
|
@@ -8849,7 +8951,7 @@
|
|
|
8849
8951
|
<ul class="md-nav__list">
|
|
8850
8952
|
|
|
8851
8953
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
8954
|
+
<a href="#added_11" class="md-nav__link">
|
|
8853
8955
|
<span class="md-ellipsis">
|
|
8854
8956
|
Added
|
|
8855
8957
|
</span>
|
|
@@ -8858,7 +8960,7 @@
|
|
|
8858
8960
|
</li>
|
|
8859
8961
|
|
|
8860
8962
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
8963
|
+
<a href="#changed_9" class="md-nav__link">
|
|
8862
8964
|
<span class="md-ellipsis">
|
|
8863
8965
|
Changed
|
|
8864
8966
|
</span>
|
|
@@ -8867,7 +8969,7 @@
|
|
|
8867
8969
|
</li>
|
|
8868
8970
|
|
|
8869
8971
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
8972
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
8871
8973
|
<span class="md-ellipsis">
|
|
8872
8974
|
Fixed
|
|
8873
8975
|
</span>
|
|
@@ -8885,7 +8987,7 @@
|
|
|
8885
8987
|
</li>
|
|
8886
8988
|
|
|
8887
8989
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
8990
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
8889
8991
|
<span class="md-ellipsis">
|
|
8890
8992
|
Housekeeping
|
|
8891
8993
|
</span>
|
|
@@ -8909,7 +9011,7 @@
|
|
|
8909
9011
|
<ul class="md-nav__list">
|
|
8910
9012
|
|
|
8911
9013
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
9014
|
+
<a href="#security_2" class="md-nav__link">
|
|
8913
9015
|
<span class="md-ellipsis">
|
|
8914
9016
|
Security
|
|
8915
9017
|
</span>
|
|
@@ -8918,7 +9020,7 @@
|
|
|
8918
9020
|
</li>
|
|
8919
9021
|
|
|
8920
9022
|
<li class="md-nav__item">
|
|
8921
|
-
<a href="#
|
|
9023
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
8922
9024
|
<span class="md-ellipsis">
|
|
8923
9025
|
Fixed
|
|
8924
9026
|
</span>
|
|
@@ -8927,7 +9029,7 @@
|
|
|
8927
9029
|
</li>
|
|
8928
9030
|
|
|
8929
9031
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
9032
|
+
<a href="#dependencies_8" class="md-nav__link">
|
|
8931
9033
|
<span class="md-ellipsis">
|
|
8932
9034
|
Dependencies
|
|
8933
9035
|
</span>
|
|
@@ -8936,7 +9038,7 @@
|
|
|
8936
9038
|
</li>
|
|
8937
9039
|
|
|
8938
9040
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#
|
|
9041
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
8940
9042
|
<span class="md-ellipsis">
|
|
8941
9043
|
Housekeeping
|
|
8942
9044
|
</span>
|
|
@@ -8960,7 +9062,7 @@
|
|
|
8960
9062
|
<ul class="md-nav__list">
|
|
8961
9063
|
|
|
8962
9064
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9065
|
+
<a href="#security_3" class="md-nav__link">
|
|
8964
9066
|
<span class="md-ellipsis">
|
|
8965
9067
|
Security
|
|
8966
9068
|
</span>
|
|
@@ -8969,7 +9071,7 @@
|
|
|
8969
9071
|
</li>
|
|
8970
9072
|
|
|
8971
9073
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9074
|
+
<a href="#added_12" class="md-nav__link">
|
|
8973
9075
|
<span class="md-ellipsis">
|
|
8974
9076
|
Added
|
|
8975
9077
|
</span>
|
|
@@ -8978,7 +9080,7 @@
|
|
|
8978
9080
|
</li>
|
|
8979
9081
|
|
|
8980
9082
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#
|
|
9083
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
8982
9084
|
<span class="md-ellipsis">
|
|
8983
9085
|
Fixed
|
|
8984
9086
|
</span>
|
|
@@ -8987,7 +9089,7 @@
|
|
|
8987
9089
|
</li>
|
|
8988
9090
|
|
|
8989
9091
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9092
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
8991
9093
|
<span class="md-ellipsis">
|
|
8992
9094
|
Housekeeping
|
|
8993
9095
|
</span>
|
|
@@ -9011,7 +9113,7 @@
|
|
|
9011
9113
|
<ul class="md-nav__list">
|
|
9012
9114
|
|
|
9013
9115
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9116
|
+
<a href="#added_13" class="md-nav__link">
|
|
9015
9117
|
<span class="md-ellipsis">
|
|
9016
9118
|
Added
|
|
9017
9119
|
</span>
|
|
@@ -9020,7 +9122,7 @@
|
|
|
9020
9122
|
</li>
|
|
9021
9123
|
|
|
9022
9124
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9125
|
+
<a href="#changed_10" class="md-nav__link">
|
|
9024
9126
|
<span class="md-ellipsis">
|
|
9025
9127
|
Changed
|
|
9026
9128
|
</span>
|
|
@@ -9029,7 +9131,7 @@
|
|
|
9029
9131
|
</li>
|
|
9030
9132
|
|
|
9031
9133
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
9134
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
9033
9135
|
<span class="md-ellipsis">
|
|
9034
9136
|
Fixed
|
|
9035
9137
|
</span>
|
|
@@ -9038,7 +9140,7 @@
|
|
|
9038
9140
|
</li>
|
|
9039
9141
|
|
|
9040
9142
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9143
|
+
<a href="#housekeeping_14" class="md-nav__link">
|
|
9042
9144
|
<span class="md-ellipsis">
|
|
9043
9145
|
Housekeeping
|
|
9044
9146
|
</span>
|
|
@@ -9062,7 +9164,7 @@
|
|
|
9062
9164
|
<ul class="md-nav__list">
|
|
9063
9165
|
|
|
9064
9166
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9167
|
+
<a href="#security_4" class="md-nav__link">
|
|
9066
9168
|
<span class="md-ellipsis">
|
|
9067
9169
|
Security
|
|
9068
9170
|
</span>
|
|
@@ -9071,7 +9173,7 @@
|
|
|
9071
9173
|
</li>
|
|
9072
9174
|
|
|
9073
9175
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9176
|
+
<a href="#added_14" class="md-nav__link">
|
|
9075
9177
|
<span class="md-ellipsis">
|
|
9076
9178
|
Added
|
|
9077
9179
|
</span>
|
|
@@ -9080,7 +9182,7 @@
|
|
|
9080
9182
|
</li>
|
|
9081
9183
|
|
|
9082
9184
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9185
|
+
<a href="#changed_11" class="md-nav__link">
|
|
9084
9186
|
<span class="md-ellipsis">
|
|
9085
9187
|
Changed
|
|
9086
9188
|
</span>
|
|
@@ -9098,7 +9200,7 @@
|
|
|
9098
9200
|
</li>
|
|
9099
9201
|
|
|
9100
9202
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
9203
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
9102
9204
|
<span class="md-ellipsis">
|
|
9103
9205
|
Fixed
|
|
9104
9206
|
</span>
|
|
@@ -9116,7 +9218,7 @@
|
|
|
9116
9218
|
</li>
|
|
9117
9219
|
|
|
9118
9220
|
<li class="md-nav__item">
|
|
9119
|
-
<a href="#
|
|
9221
|
+
<a href="#housekeeping_15" class="md-nav__link">
|
|
9120
9222
|
<span class="md-ellipsis">
|
|
9121
9223
|
Housekeeping
|
|
9122
9224
|
</span>
|
|
@@ -9140,7 +9242,7 @@
|
|
|
9140
9242
|
<ul class="md-nav__list">
|
|
9141
9243
|
|
|
9142
9244
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9245
|
+
<a href="#security_5" class="md-nav__link">
|
|
9144
9246
|
<span class="md-ellipsis">
|
|
9145
9247
|
Security
|
|
9146
9248
|
</span>
|
|
@@ -9149,7 +9251,7 @@
|
|
|
9149
9251
|
</li>
|
|
9150
9252
|
|
|
9151
9253
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
9254
|
+
<a href="#added_15" class="md-nav__link">
|
|
9153
9255
|
<span class="md-ellipsis">
|
|
9154
9256
|
Added
|
|
9155
9257
|
</span>
|
|
@@ -9158,7 +9260,7 @@
|
|
|
9158
9260
|
</li>
|
|
9159
9261
|
|
|
9160
9262
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9263
|
+
<a href="#changed_12" class="md-nav__link">
|
|
9162
9264
|
<span class="md-ellipsis">
|
|
9163
9265
|
Changed
|
|
9164
9266
|
</span>
|
|
@@ -9185,7 +9287,7 @@
|
|
|
9185
9287
|
</li>
|
|
9186
9288
|
|
|
9187
9289
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9290
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
9189
9291
|
<span class="md-ellipsis">
|
|
9190
9292
|
Fixed
|
|
9191
9293
|
</span>
|
|
@@ -9194,7 +9296,7 @@
|
|
|
9194
9296
|
</li>
|
|
9195
9297
|
|
|
9196
9298
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9299
|
+
<a href="#dependencies_9" class="md-nav__link">
|
|
9198
9300
|
<span class="md-ellipsis">
|
|
9199
9301
|
Dependencies
|
|
9200
9302
|
</span>
|
|
@@ -9212,7 +9314,7 @@
|
|
|
9212
9314
|
</li>
|
|
9213
9315
|
|
|
9214
9316
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9317
|
+
<a href="#housekeeping_16" class="md-nav__link">
|
|
9216
9318
|
<span class="md-ellipsis">
|
|
9217
9319
|
Housekeeping
|
|
9218
9320
|
</span>
|
|
@@ -10026,55 +10128,157 @@
|
|
|
10026
10128
|
</li>
|
|
10027
10129
|
|
|
10028
10130
|
<li class="md-nav__item">
|
|
10029
|
-
<a href="#
|
|
10131
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
10030
10132
|
<span class="md-ellipsis">
|
|
10031
|
-
v2.3.
|
|
10133
|
+
v2.3.16 (2025-01-06)
|
|
10032
10134
|
</span>
|
|
10033
10135
|
</a>
|
|
10034
10136
|
|
|
10035
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
10137
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
10036
10138
|
<ul class="md-nav__list">
|
|
10037
10139
|
|
|
10038
10140
|
<li class="md-nav__item">
|
|
10039
|
-
<a href="#
|
|
10141
|
+
<a href="#fixed" class="md-nav__link">
|
|
10040
10142
|
<span class="md-ellipsis">
|
|
10041
|
-
|
|
10143
|
+
Fixed
|
|
10042
10144
|
</span>
|
|
10043
10145
|
</a>
|
|
10044
10146
|
|
|
10045
10147
|
</li>
|
|
10046
10148
|
|
|
10047
10149
|
<li class="md-nav__item">
|
|
10048
|
-
<a href="#
|
|
10150
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10049
10151
|
<span class="md-ellipsis">
|
|
10050
|
-
|
|
10152
|
+
Housekeeping
|
|
10051
10153
|
</span>
|
|
10052
10154
|
</a>
|
|
10053
10155
|
|
|
10054
10156
|
</li>
|
|
10055
10157
|
|
|
10056
|
-
|
|
10057
|
-
|
|
10158
|
+
</ul>
|
|
10159
|
+
</nav>
|
|
10160
|
+
|
|
10161
|
+
</li>
|
|
10162
|
+
|
|
10163
|
+
<li class="md-nav__item">
|
|
10164
|
+
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
10058
10165
|
<span class="md-ellipsis">
|
|
10059
|
-
|
|
10166
|
+
v2.3.15 (2025-01-02)
|
|
10060
10167
|
</span>
|
|
10061
10168
|
</a>
|
|
10062
10169
|
|
|
10063
|
-
|
|
10170
|
+
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
10171
|
+
<ul class="md-nav__list">
|
|
10064
10172
|
|
|
10065
10173
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#
|
|
10174
|
+
<a href="#security" class="md-nav__link">
|
|
10067
10175
|
<span class="md-ellipsis">
|
|
10068
|
-
|
|
10176
|
+
Security
|
|
10069
10177
|
</span>
|
|
10070
10178
|
</a>
|
|
10071
10179
|
|
|
10072
10180
|
</li>
|
|
10073
10181
|
|
|
10074
10182
|
<li class="md-nav__item">
|
|
10075
|
-
<a href="#
|
|
10183
|
+
<a href="#added_1" class="md-nav__link">
|
|
10076
10184
|
<span class="md-ellipsis">
|
|
10077
|
-
|
|
10185
|
+
Added
|
|
10186
|
+
</span>
|
|
10187
|
+
</a>
|
|
10188
|
+
|
|
10189
|
+
</li>
|
|
10190
|
+
|
|
10191
|
+
<li class="md-nav__item">
|
|
10192
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10193
|
+
<span class="md-ellipsis">
|
|
10194
|
+
Changed
|
|
10195
|
+
</span>
|
|
10196
|
+
</a>
|
|
10197
|
+
|
|
10198
|
+
</li>
|
|
10199
|
+
|
|
10200
|
+
<li class="md-nav__item">
|
|
10201
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10202
|
+
<span class="md-ellipsis">
|
|
10203
|
+
Fixed
|
|
10204
|
+
</span>
|
|
10205
|
+
</a>
|
|
10206
|
+
|
|
10207
|
+
</li>
|
|
10208
|
+
|
|
10209
|
+
<li class="md-nav__item">
|
|
10210
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10211
|
+
<span class="md-ellipsis">
|
|
10212
|
+
Dependencies
|
|
10213
|
+
</span>
|
|
10214
|
+
</a>
|
|
10215
|
+
|
|
10216
|
+
</li>
|
|
10217
|
+
|
|
10218
|
+
<li class="md-nav__item">
|
|
10219
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10220
|
+
<span class="md-ellipsis">
|
|
10221
|
+
Housekeeping
|
|
10222
|
+
</span>
|
|
10223
|
+
</a>
|
|
10224
|
+
|
|
10225
|
+
</li>
|
|
10226
|
+
|
|
10227
|
+
</ul>
|
|
10228
|
+
</nav>
|
|
10229
|
+
|
|
10230
|
+
</li>
|
|
10231
|
+
|
|
10232
|
+
<li class="md-nav__item">
|
|
10233
|
+
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
10234
|
+
<span class="md-ellipsis">
|
|
10235
|
+
v2.3.14 (2024-12-19)
|
|
10236
|
+
</span>
|
|
10237
|
+
</a>
|
|
10238
|
+
|
|
10239
|
+
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
10240
|
+
<ul class="md-nav__list">
|
|
10241
|
+
|
|
10242
|
+
<li class="md-nav__item">
|
|
10243
|
+
<a href="#added_2" class="md-nav__link">
|
|
10244
|
+
<span class="md-ellipsis">
|
|
10245
|
+
Added
|
|
10246
|
+
</span>
|
|
10247
|
+
</a>
|
|
10248
|
+
|
|
10249
|
+
</li>
|
|
10250
|
+
|
|
10251
|
+
<li class="md-nav__item">
|
|
10252
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10253
|
+
<span class="md-ellipsis">
|
|
10254
|
+
Changed
|
|
10255
|
+
</span>
|
|
10256
|
+
</a>
|
|
10257
|
+
|
|
10258
|
+
</li>
|
|
10259
|
+
|
|
10260
|
+
<li class="md-nav__item">
|
|
10261
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10262
|
+
<span class="md-ellipsis">
|
|
10263
|
+
Fixed
|
|
10264
|
+
</span>
|
|
10265
|
+
</a>
|
|
10266
|
+
|
|
10267
|
+
</li>
|
|
10268
|
+
|
|
10269
|
+
<li class="md-nav__item">
|
|
10270
|
+
<a href="#documentation" class="md-nav__link">
|
|
10271
|
+
<span class="md-ellipsis">
|
|
10272
|
+
Documentation
|
|
10273
|
+
</span>
|
|
10274
|
+
</a>
|
|
10275
|
+
|
|
10276
|
+
</li>
|
|
10277
|
+
|
|
10278
|
+
<li class="md-nav__item">
|
|
10279
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10280
|
+
<span class="md-ellipsis">
|
|
10281
|
+
Housekeeping
|
|
10078
10282
|
</span>
|
|
10079
10283
|
</a>
|
|
10080
10284
|
|
|
@@ -10096,7 +10300,7 @@
|
|
|
10096
10300
|
<ul class="md-nav__list">
|
|
10097
10301
|
|
|
10098
10302
|
<li class="md-nav__item">
|
|
10099
|
-
<a href="#
|
|
10303
|
+
<a href="#security_1" class="md-nav__link">
|
|
10100
10304
|
<span class="md-ellipsis">
|
|
10101
10305
|
Security
|
|
10102
10306
|
</span>
|
|
@@ -10105,7 +10309,7 @@
|
|
|
10105
10309
|
</li>
|
|
10106
10310
|
|
|
10107
10311
|
<li class="md-nav__item">
|
|
10108
|
-
<a href="#
|
|
10312
|
+
<a href="#added_3" class="md-nav__link">
|
|
10109
10313
|
<span class="md-ellipsis">
|
|
10110
10314
|
Added
|
|
10111
10315
|
</span>
|
|
@@ -10114,7 +10318,7 @@
|
|
|
10114
10318
|
</li>
|
|
10115
10319
|
|
|
10116
10320
|
<li class="md-nav__item">
|
|
10117
|
-
<a href="#
|
|
10321
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10118
10322
|
<span class="md-ellipsis">
|
|
10119
10323
|
Changed
|
|
10120
10324
|
</span>
|
|
@@ -10123,7 +10327,7 @@
|
|
|
10123
10327
|
</li>
|
|
10124
10328
|
|
|
10125
10329
|
<li class="md-nav__item">
|
|
10126
|
-
<a href="#
|
|
10330
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10127
10331
|
<span class="md-ellipsis">
|
|
10128
10332
|
Fixed
|
|
10129
10333
|
</span>
|
|
@@ -10132,7 +10336,7 @@
|
|
|
10132
10336
|
</li>
|
|
10133
10337
|
|
|
10134
10338
|
<li class="md-nav__item">
|
|
10135
|
-
<a href="#
|
|
10339
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10136
10340
|
<span class="md-ellipsis">
|
|
10137
10341
|
Dependencies
|
|
10138
10342
|
</span>
|
|
@@ -10150,7 +10354,7 @@
|
|
|
10150
10354
|
</li>
|
|
10151
10355
|
|
|
10152
10356
|
<li class="md-nav__item">
|
|
10153
|
-
<a href="#
|
|
10357
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10154
10358
|
<span class="md-ellipsis">
|
|
10155
10359
|
Housekeeping
|
|
10156
10360
|
</span>
|
|
@@ -10174,7 +10378,7 @@
|
|
|
10174
10378
|
<ul class="md-nav__list">
|
|
10175
10379
|
|
|
10176
10380
|
<li class="md-nav__item">
|
|
10177
|
-
<a href="#
|
|
10381
|
+
<a href="#added_4" class="md-nav__link">
|
|
10178
10382
|
<span class="md-ellipsis">
|
|
10179
10383
|
Added
|
|
10180
10384
|
</span>
|
|
@@ -10183,7 +10387,7 @@
|
|
|
10183
10387
|
</li>
|
|
10184
10388
|
|
|
10185
10389
|
<li class="md-nav__item">
|
|
10186
|
-
<a href="#
|
|
10390
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10187
10391
|
<span class="md-ellipsis">
|
|
10188
10392
|
Fixed
|
|
10189
10393
|
</span>
|
|
@@ -10192,7 +10396,7 @@
|
|
|
10192
10396
|
</li>
|
|
10193
10397
|
|
|
10194
10398
|
<li class="md-nav__item">
|
|
10195
|
-
<a href="#
|
|
10399
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
10196
10400
|
<span class="md-ellipsis">
|
|
10197
10401
|
Dependencies
|
|
10198
10402
|
</span>
|
|
@@ -10210,7 +10414,7 @@
|
|
|
10210
10414
|
</li>
|
|
10211
10415
|
|
|
10212
10416
|
<li class="md-nav__item">
|
|
10213
|
-
<a href="#
|
|
10417
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10214
10418
|
<span class="md-ellipsis">
|
|
10215
10419
|
Housekeeping
|
|
10216
10420
|
</span>
|
|
@@ -10234,7 +10438,7 @@
|
|
|
10234
10438
|
<ul class="md-nav__list">
|
|
10235
10439
|
|
|
10236
10440
|
<li class="md-nav__item">
|
|
10237
|
-
<a href="#
|
|
10441
|
+
<a href="#added_5" class="md-nav__link">
|
|
10238
10442
|
<span class="md-ellipsis">
|
|
10239
10443
|
Added
|
|
10240
10444
|
</span>
|
|
@@ -10243,7 +10447,7 @@
|
|
|
10243
10447
|
</li>
|
|
10244
10448
|
|
|
10245
10449
|
<li class="md-nav__item">
|
|
10246
|
-
<a href="#
|
|
10450
|
+
<a href="#changed_4" class="md-nav__link">
|
|
10247
10451
|
<span class="md-ellipsis">
|
|
10248
10452
|
Changed
|
|
10249
10453
|
</span>
|
|
@@ -10252,7 +10456,7 @@
|
|
|
10252
10456
|
</li>
|
|
10253
10457
|
|
|
10254
10458
|
<li class="md-nav__item">
|
|
10255
|
-
<a href="#
|
|
10459
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10256
10460
|
<span class="md-ellipsis">
|
|
10257
10461
|
Fixed
|
|
10258
10462
|
</span>
|
|
@@ -10270,7 +10474,7 @@
|
|
|
10270
10474
|
</li>
|
|
10271
10475
|
|
|
10272
10476
|
<li class="md-nav__item">
|
|
10273
|
-
<a href="#
|
|
10477
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10274
10478
|
<span class="md-ellipsis">
|
|
10275
10479
|
Housekeeping
|
|
10276
10480
|
</span>
|
|
@@ -10294,7 +10498,7 @@
|
|
|
10294
10498
|
<ul class="md-nav__list">
|
|
10295
10499
|
|
|
10296
10500
|
<li class="md-nav__item">
|
|
10297
|
-
<a href="#
|
|
10501
|
+
<a href="#added_6" class="md-nav__link">
|
|
10298
10502
|
<span class="md-ellipsis">
|
|
10299
10503
|
Added
|
|
10300
10504
|
</span>
|
|
@@ -10303,7 +10507,7 @@
|
|
|
10303
10507
|
</li>
|
|
10304
10508
|
|
|
10305
10509
|
<li class="md-nav__item">
|
|
10306
|
-
<a href="#
|
|
10510
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10307
10511
|
<span class="md-ellipsis">
|
|
10308
10512
|
Changed
|
|
10309
10513
|
</span>
|
|
@@ -10312,7 +10516,7 @@
|
|
|
10312
10516
|
</li>
|
|
10313
10517
|
|
|
10314
10518
|
<li class="md-nav__item">
|
|
10315
|
-
<a href="#
|
|
10519
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10316
10520
|
<span class="md-ellipsis">
|
|
10317
10521
|
Fixed
|
|
10318
10522
|
</span>
|
|
@@ -10321,7 +10525,7 @@
|
|
|
10321
10525
|
</li>
|
|
10322
10526
|
|
|
10323
10527
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10528
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
10325
10529
|
<span class="md-ellipsis">
|
|
10326
10530
|
Dependencies
|
|
10327
10531
|
</span>
|
|
@@ -10330,7 +10534,7 @@
|
|
|
10330
10534
|
</li>
|
|
10331
10535
|
|
|
10332
10536
|
<li class="md-nav__item">
|
|
10333
|
-
<a href="#
|
|
10537
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10334
10538
|
<span class="md-ellipsis">
|
|
10335
10539
|
Housekeeping
|
|
10336
10540
|
</span>
|
|
@@ -10354,7 +10558,7 @@
|
|
|
10354
10558
|
<ul class="md-nav__list">
|
|
10355
10559
|
|
|
10356
10560
|
<li class="md-nav__item">
|
|
10357
|
-
<a href="#
|
|
10561
|
+
<a href="#added_7" class="md-nav__link">
|
|
10358
10562
|
<span class="md-ellipsis">
|
|
10359
10563
|
Added
|
|
10360
10564
|
</span>
|
|
@@ -10363,7 +10567,7 @@
|
|
|
10363
10567
|
</li>
|
|
10364
10568
|
|
|
10365
10569
|
<li class="md-nav__item">
|
|
10366
|
-
<a href="#
|
|
10570
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10367
10571
|
<span class="md-ellipsis">
|
|
10368
10572
|
Changed
|
|
10369
10573
|
</span>
|
|
@@ -10372,7 +10576,7 @@
|
|
|
10372
10576
|
</li>
|
|
10373
10577
|
|
|
10374
10578
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
10579
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10376
10580
|
<span class="md-ellipsis">
|
|
10377
10581
|
Fixed
|
|
10378
10582
|
</span>
|
|
@@ -10381,7 +10585,7 @@
|
|
|
10381
10585
|
</li>
|
|
10382
10586
|
|
|
10383
10587
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10588
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
10385
10589
|
<span class="md-ellipsis">
|
|
10386
10590
|
Dependencies
|
|
10387
10591
|
</span>
|
|
@@ -10390,7 +10594,7 @@
|
|
|
10390
10594
|
</li>
|
|
10391
10595
|
|
|
10392
10596
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
10597
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10394
10598
|
<span class="md-ellipsis">
|
|
10395
10599
|
Housekeeping
|
|
10396
10600
|
</span>
|
|
@@ -10414,7 +10618,7 @@
|
|
|
10414
10618
|
<ul class="md-nav__list">
|
|
10415
10619
|
|
|
10416
10620
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10621
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10418
10622
|
<span class="md-ellipsis">
|
|
10419
10623
|
Fixed
|
|
10420
10624
|
</span>
|
|
@@ -10438,7 +10642,7 @@
|
|
|
10438
10642
|
<ul class="md-nav__list">
|
|
10439
10643
|
|
|
10440
10644
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10645
|
+
<a href="#added_8" class="md-nav__link">
|
|
10442
10646
|
<span class="md-ellipsis">
|
|
10443
10647
|
Added
|
|
10444
10648
|
</span>
|
|
@@ -10447,7 +10651,7 @@
|
|
|
10447
10651
|
</li>
|
|
10448
10652
|
|
|
10449
10653
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10654
|
+
<a href="#changed_7" class="md-nav__link">
|
|
10451
10655
|
<span class="md-ellipsis">
|
|
10452
10656
|
Changed
|
|
10453
10657
|
</span>
|
|
@@ -10456,7 +10660,7 @@
|
|
|
10456
10660
|
</li>
|
|
10457
10661
|
|
|
10458
10662
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
10663
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10460
10664
|
<span class="md-ellipsis">
|
|
10461
10665
|
Fixed
|
|
10462
10666
|
</span>
|
|
@@ -10465,7 +10669,7 @@
|
|
|
10465
10669
|
</li>
|
|
10466
10670
|
|
|
10467
10671
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10672
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
10469
10673
|
<span class="md-ellipsis">
|
|
10470
10674
|
Dependencies
|
|
10471
10675
|
</span>
|
|
@@ -10474,7 +10678,7 @@
|
|
|
10474
10678
|
</li>
|
|
10475
10679
|
|
|
10476
10680
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10681
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10478
10682
|
<span class="md-ellipsis">
|
|
10479
10683
|
Housekeeping
|
|
10480
10684
|
</span>
|
|
@@ -10498,7 +10702,7 @@
|
|
|
10498
10702
|
<ul class="md-nav__list">
|
|
10499
10703
|
|
|
10500
10704
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10705
|
+
<a href="#added_9" class="md-nav__link">
|
|
10502
10706
|
<span class="md-ellipsis">
|
|
10503
10707
|
Added
|
|
10504
10708
|
</span>
|
|
@@ -10507,7 +10711,7 @@
|
|
|
10507
10711
|
</li>
|
|
10508
10712
|
|
|
10509
10713
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
10714
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10511
10715
|
<span class="md-ellipsis">
|
|
10512
10716
|
Fixed
|
|
10513
10717
|
</span>
|
|
@@ -10525,7 +10729,7 @@
|
|
|
10525
10729
|
</li>
|
|
10526
10730
|
|
|
10527
10731
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
10732
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
10529
10733
|
<span class="md-ellipsis">
|
|
10530
10734
|
Housekeeping
|
|
10531
10735
|
</span>
|
|
@@ -10549,7 +10753,7 @@
|
|
|
10549
10753
|
<ul class="md-nav__list">
|
|
10550
10754
|
|
|
10551
10755
|
<li class="md-nav__item">
|
|
10552
|
-
<a href="#
|
|
10756
|
+
<a href="#added_10" class="md-nav__link">
|
|
10553
10757
|
<span class="md-ellipsis">
|
|
10554
10758
|
Added
|
|
10555
10759
|
</span>
|
|
@@ -10558,7 +10762,7 @@
|
|
|
10558
10762
|
</li>
|
|
10559
10763
|
|
|
10560
10764
|
<li class="md-nav__item">
|
|
10561
|
-
<a href="#
|
|
10765
|
+
<a href="#changed_8" class="md-nav__link">
|
|
10562
10766
|
<span class="md-ellipsis">
|
|
10563
10767
|
Changed
|
|
10564
10768
|
</span>
|
|
@@ -10567,7 +10771,7 @@
|
|
|
10567
10771
|
</li>
|
|
10568
10772
|
|
|
10569
10773
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10774
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
10571
10775
|
<span class="md-ellipsis">
|
|
10572
10776
|
Fixed
|
|
10573
10777
|
</span>
|
|
@@ -10576,7 +10780,7 @@
|
|
|
10576
10780
|
</li>
|
|
10577
10781
|
|
|
10578
10782
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
10783
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
10580
10784
|
<span class="md-ellipsis">
|
|
10581
10785
|
Dependencies
|
|
10582
10786
|
</span>
|
|
@@ -10594,7 +10798,7 @@
|
|
|
10594
10798
|
</li>
|
|
10595
10799
|
|
|
10596
10800
|
<li class="md-nav__item">
|
|
10597
|
-
<a href="#
|
|
10801
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
10598
10802
|
<span class="md-ellipsis">
|
|
10599
10803
|
Housekeeping
|
|
10600
10804
|
</span>
|
|
@@ -10618,7 +10822,7 @@
|
|
|
10618
10822
|
<ul class="md-nav__list">
|
|
10619
10823
|
|
|
10620
10824
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10825
|
+
<a href="#added_11" class="md-nav__link">
|
|
10622
10826
|
<span class="md-ellipsis">
|
|
10623
10827
|
Added
|
|
10624
10828
|
</span>
|
|
@@ -10627,7 +10831,7 @@
|
|
|
10627
10831
|
</li>
|
|
10628
10832
|
|
|
10629
10833
|
<li class="md-nav__item">
|
|
10630
|
-
<a href="#
|
|
10834
|
+
<a href="#changed_9" class="md-nav__link">
|
|
10631
10835
|
<span class="md-ellipsis">
|
|
10632
10836
|
Changed
|
|
10633
10837
|
</span>
|
|
@@ -10636,7 +10840,7 @@
|
|
|
10636
10840
|
</li>
|
|
10637
10841
|
|
|
10638
10842
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
10843
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
10640
10844
|
<span class="md-ellipsis">
|
|
10641
10845
|
Fixed
|
|
10642
10846
|
</span>
|
|
@@ -10654,7 +10858,7 @@
|
|
|
10654
10858
|
</li>
|
|
10655
10859
|
|
|
10656
10860
|
<li class="md-nav__item">
|
|
10657
|
-
<a href="#
|
|
10861
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
10658
10862
|
<span class="md-ellipsis">
|
|
10659
10863
|
Housekeeping
|
|
10660
10864
|
</span>
|
|
@@ -10678,7 +10882,7 @@
|
|
|
10678
10882
|
<ul class="md-nav__list">
|
|
10679
10883
|
|
|
10680
10884
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10885
|
+
<a href="#security_2" class="md-nav__link">
|
|
10682
10886
|
<span class="md-ellipsis">
|
|
10683
10887
|
Security
|
|
10684
10888
|
</span>
|
|
@@ -10687,7 +10891,7 @@
|
|
|
10687
10891
|
</li>
|
|
10688
10892
|
|
|
10689
10893
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#
|
|
10894
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
10691
10895
|
<span class="md-ellipsis">
|
|
10692
10896
|
Fixed
|
|
10693
10897
|
</span>
|
|
@@ -10696,7 +10900,7 @@
|
|
|
10696
10900
|
</li>
|
|
10697
10901
|
|
|
10698
10902
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
10903
|
+
<a href="#dependencies_8" class="md-nav__link">
|
|
10700
10904
|
<span class="md-ellipsis">
|
|
10701
10905
|
Dependencies
|
|
10702
10906
|
</span>
|
|
@@ -10705,7 +10909,7 @@
|
|
|
10705
10909
|
</li>
|
|
10706
10910
|
|
|
10707
10911
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
10912
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
10709
10913
|
<span class="md-ellipsis">
|
|
10710
10914
|
Housekeeping
|
|
10711
10915
|
</span>
|
|
@@ -10729,7 +10933,7 @@
|
|
|
10729
10933
|
<ul class="md-nav__list">
|
|
10730
10934
|
|
|
10731
10935
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#
|
|
10936
|
+
<a href="#security_3" class="md-nav__link">
|
|
10733
10937
|
<span class="md-ellipsis">
|
|
10734
10938
|
Security
|
|
10735
10939
|
</span>
|
|
@@ -10738,7 +10942,7 @@
|
|
|
10738
10942
|
</li>
|
|
10739
10943
|
|
|
10740
10944
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
10945
|
+
<a href="#added_12" class="md-nav__link">
|
|
10742
10946
|
<span class="md-ellipsis">
|
|
10743
10947
|
Added
|
|
10744
10948
|
</span>
|
|
@@ -10747,7 +10951,7 @@
|
|
|
10747
10951
|
</li>
|
|
10748
10952
|
|
|
10749
10953
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10954
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
10751
10955
|
<span class="md-ellipsis">
|
|
10752
10956
|
Fixed
|
|
10753
10957
|
</span>
|
|
@@ -10756,7 +10960,7 @@
|
|
|
10756
10960
|
</li>
|
|
10757
10961
|
|
|
10758
10962
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
10963
|
+
<a href="#housekeeping_13" class="md-nav__link">
|
|
10760
10964
|
<span class="md-ellipsis">
|
|
10761
10965
|
Housekeeping
|
|
10762
10966
|
</span>
|
|
@@ -10780,7 +10984,7 @@
|
|
|
10780
10984
|
<ul class="md-nav__list">
|
|
10781
10985
|
|
|
10782
10986
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
10987
|
+
<a href="#added_13" class="md-nav__link">
|
|
10784
10988
|
<span class="md-ellipsis">
|
|
10785
10989
|
Added
|
|
10786
10990
|
</span>
|
|
@@ -10789,7 +10993,7 @@
|
|
|
10789
10993
|
</li>
|
|
10790
10994
|
|
|
10791
10995
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
10996
|
+
<a href="#changed_10" class="md-nav__link">
|
|
10793
10997
|
<span class="md-ellipsis">
|
|
10794
10998
|
Changed
|
|
10795
10999
|
</span>
|
|
@@ -10798,7 +11002,7 @@
|
|
|
10798
11002
|
</li>
|
|
10799
11003
|
|
|
10800
11004
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
11005
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
10802
11006
|
<span class="md-ellipsis">
|
|
10803
11007
|
Fixed
|
|
10804
11008
|
</span>
|
|
@@ -10807,7 +11011,7 @@
|
|
|
10807
11011
|
</li>
|
|
10808
11012
|
|
|
10809
11013
|
<li class="md-nav__item">
|
|
10810
|
-
<a href="#
|
|
11014
|
+
<a href="#housekeeping_14" class="md-nav__link">
|
|
10811
11015
|
<span class="md-ellipsis">
|
|
10812
11016
|
Housekeeping
|
|
10813
11017
|
</span>
|
|
@@ -10831,7 +11035,7 @@
|
|
|
10831
11035
|
<ul class="md-nav__list">
|
|
10832
11036
|
|
|
10833
11037
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
11038
|
+
<a href="#security_4" class="md-nav__link">
|
|
10835
11039
|
<span class="md-ellipsis">
|
|
10836
11040
|
Security
|
|
10837
11041
|
</span>
|
|
@@ -10840,7 +11044,7 @@
|
|
|
10840
11044
|
</li>
|
|
10841
11045
|
|
|
10842
11046
|
<li class="md-nav__item">
|
|
10843
|
-
<a href="#
|
|
11047
|
+
<a href="#added_14" class="md-nav__link">
|
|
10844
11048
|
<span class="md-ellipsis">
|
|
10845
11049
|
Added
|
|
10846
11050
|
</span>
|
|
@@ -10849,7 +11053,7 @@
|
|
|
10849
11053
|
</li>
|
|
10850
11054
|
|
|
10851
11055
|
<li class="md-nav__item">
|
|
10852
|
-
<a href="#
|
|
11056
|
+
<a href="#changed_11" class="md-nav__link">
|
|
10853
11057
|
<span class="md-ellipsis">
|
|
10854
11058
|
Changed
|
|
10855
11059
|
</span>
|
|
@@ -10867,7 +11071,7 @@
|
|
|
10867
11071
|
</li>
|
|
10868
11072
|
|
|
10869
11073
|
<li class="md-nav__item">
|
|
10870
|
-
<a href="#
|
|
11074
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
10871
11075
|
<span class="md-ellipsis">
|
|
10872
11076
|
Fixed
|
|
10873
11077
|
</span>
|
|
@@ -10885,7 +11089,7 @@
|
|
|
10885
11089
|
</li>
|
|
10886
11090
|
|
|
10887
11091
|
<li class="md-nav__item">
|
|
10888
|
-
<a href="#
|
|
11092
|
+
<a href="#housekeeping_15" class="md-nav__link">
|
|
10889
11093
|
<span class="md-ellipsis">
|
|
10890
11094
|
Housekeeping
|
|
10891
11095
|
</span>
|
|
@@ -10909,7 +11113,7 @@
|
|
|
10909
11113
|
<ul class="md-nav__list">
|
|
10910
11114
|
|
|
10911
11115
|
<li class="md-nav__item">
|
|
10912
|
-
<a href="#
|
|
11116
|
+
<a href="#security_5" class="md-nav__link">
|
|
10913
11117
|
<span class="md-ellipsis">
|
|
10914
11118
|
Security
|
|
10915
11119
|
</span>
|
|
@@ -10918,7 +11122,7 @@
|
|
|
10918
11122
|
</li>
|
|
10919
11123
|
|
|
10920
11124
|
<li class="md-nav__item">
|
|
10921
|
-
<a href="#
|
|
11125
|
+
<a href="#added_15" class="md-nav__link">
|
|
10922
11126
|
<span class="md-ellipsis">
|
|
10923
11127
|
Added
|
|
10924
11128
|
</span>
|
|
@@ -10927,7 +11131,7 @@
|
|
|
10927
11131
|
</li>
|
|
10928
11132
|
|
|
10929
11133
|
<li class="md-nav__item">
|
|
10930
|
-
<a href="#
|
|
11134
|
+
<a href="#changed_12" class="md-nav__link">
|
|
10931
11135
|
<span class="md-ellipsis">
|
|
10932
11136
|
Changed
|
|
10933
11137
|
</span>
|
|
@@ -10954,7 +11158,7 @@
|
|
|
10954
11158
|
</li>
|
|
10955
11159
|
|
|
10956
11160
|
<li class="md-nav__item">
|
|
10957
|
-
<a href="#
|
|
11161
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
10958
11162
|
<span class="md-ellipsis">
|
|
10959
11163
|
Fixed
|
|
10960
11164
|
</span>
|
|
@@ -10963,7 +11167,7 @@
|
|
|
10963
11167
|
</li>
|
|
10964
11168
|
|
|
10965
11169
|
<li class="md-nav__item">
|
|
10966
|
-
<a href="#
|
|
11170
|
+
<a href="#dependencies_9" class="md-nav__link">
|
|
10967
11171
|
<span class="md-ellipsis">
|
|
10968
11172
|
Dependencies
|
|
10969
11173
|
</span>
|
|
@@ -10981,7 +11185,7 @@
|
|
|
10981
11185
|
</li>
|
|
10982
11186
|
|
|
10983
11187
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
11188
|
+
<a href="#housekeeping_16" class="md-nav__link">
|
|
10985
11189
|
<span class="md-ellipsis">
|
|
10986
11190
|
Housekeeping
|
|
10987
11191
|
</span>
|
|
@@ -11104,18 +11308,65 @@
|
|
|
11104
11308
|
<h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">¶</a></h4>
|
|
11105
11309
|
<p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
|
|
11106
11310
|
<!-- towncrier release notes start -->
|
|
11107
|
-
<h2 id="
|
|
11311
|
+
<h2 id="v2316-2025-01-06">v2.3.16 (2025-01-06)<a class="headerlink" href="#v2316-2025-01-06" title="Permanent link">¶</a></h2>
|
|
11312
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11313
|
+
<ul>
|
|
11314
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5805">#5805</a> - Enabled extended filter lookup expressions of the <code>serial</code> filter for Device, Rack, and InventoryItem.</li>
|
|
11315
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5831">#5831</a> - Fixed an issue where the error message for missing custom job templates incorrectly reported "extras/job.html" instead of the actual missing template name.</li>
|
|
11316
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>PowerOutletTemplateTable</code> to use <code>power_port_template</code> instead of the incorrect field <code>power_port</code>.</li>
|
|
11317
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>FrontPortTemplateTable</code> to use <code>rear_port_template</code> instead of the incorrect field <code>rear_port</code>.</li>
|
|
11318
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6527">#6527</a> - Disabled (unsupported) sorting by the <code>Device</code> column in Console Connections, Power Connections, and Interface Connections list views.</li>
|
|
11319
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6669">#6669</a> - Removed the need for <code>available-prefixes</code>, <code>available-ips</code>, and <code>available-vlans</code> API endpoints to run validation multiple times.</li>
|
|
11320
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6676">#6676</a> - Resolved issue with IPAddressQuerySet get_or_create method signature not matching the base method signature.</li>
|
|
11321
|
+
</ul>
|
|
11322
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11323
|
+
<ul>
|
|
11324
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6714">#6714</a> - Enabled and addressed pylint checkers <code>arguments-differ</code>, <code>arguments-renamed</code>, <code>exec-used</code>, <code>hard-coded-auth-user</code>, <code>super-init-not-called</code>.</li>
|
|
11325
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6722">#6722</a> - Enabled pylint <code>not-callable</code> and <code>no-member</code> checkers and addressed issues reported thereby.</li>
|
|
11326
|
+
</ul>
|
|
11327
|
+
<h2 id="v2315-2025-01-02">v2.3.15 (2025-01-02)<a class="headerlink" href="#v2315-2025-01-02" title="Permanent link">¶</a></h2>
|
|
11328
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11329
|
+
<ul>
|
|
11330
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6695">#6695</a> - Updated dependency <code>Jinja2</code> to <code>~3.1.5</code> to address <code>CVE-2024-56201</code> and <code>CVE-2024-56326</code>.</li>
|
|
11331
|
+
</ul>
|
|
11108
11332
|
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
11109
11333
|
<ul>
|
|
11110
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
11334
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6410">#6410</a> - Added <code>settings.PUBLISH_ROBOTS_TXT</code> configuration option, defaulting to <code>True</code>.</li>
|
|
11111
11335
|
</ul>
|
|
11112
11336
|
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
11113
11337
|
<ul>
|
|
11338
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Changed <code>available-vlans</code> API endpoint to additionally require <code>ipam.view_vlan</code> permission to view available VLANs under VLAN Group.</li>
|
|
11339
|
+
</ul>
|
|
11340
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11341
|
+
<ul>
|
|
11342
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5545">#5545</a> - Fixed an issue in Dynamic Group Edit View where saving a valid choice in a Select-type CustomField triggered an error.</li>
|
|
11343
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Fixed <code>available-vlans</code>, <code>available-ips</code>, <code>available-prefixes</code> API endpoints to check object-level constrained permissions.</li>
|
|
11344
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6702">#6702</a> - Resolved issue with TagsBulkEditFormMixin missing self.model.</li>
|
|
11345
|
+
</ul>
|
|
11346
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11347
|
+
<ul>
|
|
11348
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>nh3</code> dependency to <code>~0.2.20</code>.</li>
|
|
11349
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>django-tables2</code> dependency to <code>~2.7.4</code> in Python 3.9 and later, and pinned it to <code>==2.7.0</code> under Python 3.8.</li>
|
|
11350
|
+
</ul>
|
|
11351
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11352
|
+
<ul>
|
|
11353
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6688">#6688</a> - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.</li>
|
|
11354
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.49</code>.</li>
|
|
11355
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6693">#6693</a> - Changed <code>poetry install</code> in prerelease and release workflows from parallel mode to serial mode.</li>
|
|
11356
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6706">#6706</a> - Removed unnecessary <code>user-data.json</code> integration-test fixture file.</li>
|
|
11357
|
+
</ul>
|
|
11358
|
+
<h2 id="v2314-2024-12-19">v2.3.14 (2024-12-19)<a class="headerlink" href="#v2314-2024-12-19" title="Permanent link">¶</a></h2>
|
|
11359
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
11360
|
+
<ul>
|
|
11361
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Added logic to set the <code>parent</code> in the <code>clean()</code> method of the Prefix model, ensuring correct assignment during validation.</li>
|
|
11362
|
+
</ul>
|
|
11363
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11364
|
+
<ul>
|
|
11114
11365
|
<li><a href="https://github.com/nautobot/nautobot/issues/6518">#6518</a> - Added VRFs column to Prefixes and Child Prefixes tables.</li>
|
|
11115
11366
|
<li><a href="https://github.com/nautobot/nautobot/issues/6531">#6531</a> - Restrict the <code>id</code> filter field to use to only the <code>__n</code> (negation) lookup filter.</li>
|
|
11116
11367
|
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Changed the save method of the <code>Prefix</code> model to reparent subnets and IPs only when the <code>network</code>, <code>namespace</code>, or <code>prefix_length</code> fields are updated.</li>
|
|
11117
11368
|
</ul>
|
|
11118
|
-
<h3 id="
|
|
11369
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11119
11370
|
<ul>
|
|
11120
11371
|
<li><a href="https://github.com/nautobot/nautobot/issues/4056">#4056</a> - Fixed filter of add_tags and remove_tags of bulkedit based on content type</li>
|
|
11121
11372
|
<li><a href="https://github.com/nautobot/nautobot/issues/6204">#6204</a> - Fixed out-of-memory errors when <code>LogsCleanup</code> system job resulted in cascade deletion of many related objects (such as <code>JobLogEntry</code> or <code>nautobot_ssot.SyncLogEntry</code> records).</li>
|
|
@@ -11129,18 +11380,18 @@
|
|
|
11129
11380
|
<ul>
|
|
11130
11381
|
<li><a href="https://github.com/nautobot/nautobot/issues/6590">#6590</a> - Added an <code>ExampleEverythingJob</code> to the Example App and updated Job developer documentation to reference it as an example.</li>
|
|
11131
11382
|
</ul>
|
|
11132
|
-
<h3 id="
|
|
11383
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11133
11384
|
<ul>
|
|
11134
11385
|
<li><a href="https://github.com/nautobot/nautobot/issues/6657">#6657</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.48</code>.</li>
|
|
11135
11386
|
<li><a href="https://github.com/nautobot/nautobot/issues/6659">#6659</a> - Enhanced development environment and associated <code>invoke</code> tasks to be Nautobot major/minor version aware, such that a different Docker compose <code>project-name</code> (and different local Docker image label) will be used for containers in a <code>develop</code>-based branch versus a <code>next</code>-based branch.</li>
|
|
11136
11387
|
<li><a href="https://github.com/nautobot/nautobot/issues/6679">#6679</a> - Added <code>logs</code> task to <code>tasks.py</code> to view the logs of a docker compose service.</li>
|
|
11137
11388
|
</ul>
|
|
11138
11389
|
<h2 id="v2313-2024-12-10">v2.3.13 (2024-12-10)<a class="headerlink" href="#v2313-2024-12-10" title="Permanent link">¶</a></h2>
|
|
11139
|
-
<h3 id="
|
|
11390
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11140
11391
|
<ul>
|
|
11141
11392
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>Django</code> to <code>~4.2.17</code> due to <code>CVE-2024-53907</code> and <code>CVE-2024-53908</code>.</li>
|
|
11142
11393
|
</ul>
|
|
11143
|
-
<h3 id="
|
|
11394
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11144
11395
|
<ul>
|
|
11145
11396
|
<li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
|
|
11146
11397
|
<li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
|
|
@@ -11152,11 +11403,11 @@
|
|
|
11152
11403
|
<li><a href="https://github.com/nautobot/nautobot/issues/6613">#6613</a> - Enhanced Prefix detail view "Child Prefixes" table to render associated Locations more intelligently.</li>
|
|
11153
11404
|
<li><a href="https://github.com/nautobot/nautobot/issues/6614">#6614</a> - Enhanced IP Address tables to show the name of the associated Interface or VM Interface if only a single such association is present for a given IP Address.</li>
|
|
11154
11405
|
</ul>
|
|
11155
|
-
<h3 id="
|
|
11406
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11156
11407
|
<ul>
|
|
11157
11408
|
<li><a href="https://github.com/nautobot/nautobot/issues/6166">#6166</a> - Enhanced the REST API to generally make it possible to create objects with known ids on request.</li>
|
|
11158
11409
|
</ul>
|
|
11159
|
-
<h3 id="
|
|
11410
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11160
11411
|
<ul>
|
|
11161
11412
|
<li><a href="https://github.com/nautobot/nautobot/issues/3124">#3124</a> - Fixed inability of ImageAttachment and DeviceType API endpoints to accept <code>multipart/form-data</code> file uploads.</li>
|
|
11162
11413
|
<li><a href="https://github.com/nautobot/nautobot/issues/5166">#5166</a> - Fixed a <code>ProgrammingError</code> when applying permissions containing network-address-based constraints.</li>
|
|
@@ -11168,7 +11419,7 @@
|
|
|
11168
11419
|
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed issue with <code>group_sync.py</code> where it was accessing the settings using environment variable name vs the actual settings name.</li>
|
|
11169
11420
|
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed the <code>SOCIAL_AUTH_PIPELINE</code> settings to include the entire path of the <code>group_sync</code> function.</li>
|
|
11170
11421
|
</ul>
|
|
11171
|
-
<h3 id="
|
|
11422
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11172
11423
|
<ul>
|
|
11173
11424
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
|
|
11174
11425
|
</ul>
|
|
@@ -11177,18 +11428,18 @@
|
|
|
11177
11428
|
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11178
11429
|
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed group_sync path in the SSO documentation.</li>
|
|
11179
11430
|
</ul>
|
|
11180
|
-
<h3 id="
|
|
11431
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11181
11432
|
<ul>
|
|
11182
11433
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.47</code>.</li>
|
|
11183
11434
|
</ul>
|
|
11184
11435
|
<h2 id="v2312-2024-11-25">v2.3.12 (2024-11-25)<a class="headerlink" href="#v2312-2024-11-25" title="Permanent link">¶</a></h2>
|
|
11185
|
-
<h3 id="
|
|
11436
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11186
11437
|
<ul>
|
|
11187
11438
|
<li><a href="https://github.com/nautobot/nautobot/issues/6532">#6532</a> - Added a keyboard shortcut (⌘+enter or ctrl+enter) to submit forms when typing in a textarea.</li>
|
|
11188
11439
|
<li><a href="https://github.com/nautobot/nautobot/issues/6543">#6543</a> - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.</li>
|
|
11189
11440
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11190
11441
|
</ul>
|
|
11191
|
-
<h3 id="
|
|
11442
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11192
11443
|
<ul>
|
|
11193
11444
|
<li><a href="https://github.com/nautobot/nautobot/issues/6242">#6242</a> - Fixed "copy" button on Device tabbed views to now only copy the device name.</li>
|
|
11194
11445
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11200,7 +11451,7 @@
|
|
|
11200
11451
|
<li><a href="https://github.com/nautobot/nautobot/issues/6547">#6547</a> - Fixed incorrect VRF filter specified on VRF column on Prefix Table.</li>
|
|
11201
11452
|
<li><a href="https://github.com/nautobot/nautobot/issues/6564">#6564</a> - Fixed an <code>AttributeError</code> raised when an App overrides a NautobotUIViewSet view.</li>
|
|
11202
11453
|
</ul>
|
|
11203
|
-
<h3 id="
|
|
11454
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11204
11455
|
<ul>
|
|
11205
11456
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated <code>mysqlclient</code> dependency to <code>~2.2.6</code>.</li>
|
|
11206
11457
|
</ul>
|
|
@@ -11210,24 +11461,24 @@
|
|
|
11210
11461
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11211
11462
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11212
11463
|
</ul>
|
|
11213
|
-
<h3 id="
|
|
11464
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11214
11465
|
<ul>
|
|
11215
11466
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated documentation dependencies <code>mkdocs-redirects</code> to <code>1.2.2</code> and <code>mkdocs-material</code> to <code>9.5.46</code>.</li>
|
|
11216
11467
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11217
11468
|
</ul>
|
|
11218
11469
|
<h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">¶</a></h2>
|
|
11219
|
-
<h3 id="
|
|
11470
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11220
11471
|
<ul>
|
|
11221
11472
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added <code>nautobot.apps.utils.get_related_field_for_models()</code> helper function.</li>
|
|
11222
11473
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11223
11474
|
</ul>
|
|
11224
|
-
<h3 id="
|
|
11475
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11225
11476
|
<ul>
|
|
11226
11477
|
<li><a href="https://github.com/nautobot/nautobot/issues/5321">#5321</a> - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.</li>
|
|
11227
11478
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying <code>1</code>.</li>
|
|
11228
11479
|
<li><a href="https://github.com/nautobot/nautobot/issues/6465">#6465</a> - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.</li>
|
|
11229
11480
|
</ul>
|
|
11230
|
-
<h3 id="
|
|
11481
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11231
11482
|
<ul>
|
|
11232
11483
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11233
11484
|
<li><a href="https://github.com/nautobot/nautobot/issues/6442">#6442</a> - Fixed an issue where GitLab CI pipelines fail using all versions of official Docker images.</li>
|
|
@@ -11242,7 +11493,7 @@
|
|
|
11242
11493
|
<ul>
|
|
11243
11494
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11244
11495
|
</ul>
|
|
11245
|
-
<h3 id="
|
|
11496
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11246
11497
|
<ul>
|
|
11247
11498
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.</li>
|
|
11248
11499
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11251,44 +11502,44 @@
|
|
|
11251
11502
|
<li><a href="https://github.com/nautobot/nautobot/issues/6497">#6497</a> - Added support for <code>--no-reusedb</code> option to <code>invoke integration-test</code> task.</li>
|
|
11252
11503
|
</ul>
|
|
11253
11504
|
<h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">¶</a></h2>
|
|
11254
|
-
<h3 id="
|
|
11505
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11255
11506
|
<ul>
|
|
11256
11507
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
|
|
11257
11508
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
|
|
11258
11509
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11259
11510
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
|
|
11260
11511
|
</ul>
|
|
11261
|
-
<h3 id="
|
|
11512
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11262
11513
|
<ul>
|
|
11263
11514
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
|
|
11264
11515
|
</ul>
|
|
11265
|
-
<h3 id="
|
|
11516
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11266
11517
|
<ul>
|
|
11267
11518
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
|
|
11268
11519
|
<li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
|
|
11269
11520
|
</ul>
|
|
11270
|
-
<h3 id="
|
|
11521
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
11271
11522
|
<ul>
|
|
11272
11523
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11273
11524
|
</ul>
|
|
11274
|
-
<h3 id="
|
|
11525
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11275
11526
|
<ul>
|
|
11276
11527
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
|
|
11277
11528
|
</ul>
|
|
11278
11529
|
<h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">¶</a></h2>
|
|
11279
|
-
<h3 id="
|
|
11530
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11280
11531
|
<ul>
|
|
11281
11532
|
<li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
|
|
11282
11533
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
|
|
11283
11534
|
<li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
|
|
11284
11535
|
</ul>
|
|
11285
|
-
<h3 id="
|
|
11536
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11286
11537
|
<ul>
|
|
11287
11538
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
|
|
11288
11539
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
|
|
11289
11540
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
|
|
11290
11541
|
</ul>
|
|
11291
|
-
<h3 id="
|
|
11542
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11292
11543
|
<ul>
|
|
11293
11544
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
|
|
11294
11545
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.</li>
|
|
@@ -11297,16 +11548,16 @@
|
|
|
11297
11548
|
<li><a href="https://github.com/nautobot/nautobot/issues/6415">#6415</a> - Added missing column <code>software_version</code> to the Device Table in Device List View.</li>
|
|
11298
11549
|
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the `role' column on Device/VM interfaces.</li>
|
|
11299
11550
|
</ul>
|
|
11300
|
-
<h3 id="
|
|
11551
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
11301
11552
|
<ul>
|
|
11302
11553
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
|
|
11303
11554
|
</ul>
|
|
11304
|
-
<h3 id="
|
|
11555
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11305
11556
|
<ul>
|
|
11306
11557
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
|
|
11307
11558
|
</ul>
|
|
11308
11559
|
<h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">¶</a></h2>
|
|
11309
|
-
<h3 id="
|
|
11560
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11310
11561
|
<ul>
|
|
11311
11562
|
<li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
|
|
11312
11563
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
|
|
@@ -11315,27 +11566,27 @@
|
|
|
11315
11566
|
<li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
|
|
11316
11567
|
</ul>
|
|
11317
11568
|
<h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">¶</a></h2>
|
|
11318
|
-
<h3 id="
|
|
11569
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
11319
11570
|
<ul>
|
|
11320
11571
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
11321
11572
|
</ul>
|
|
11322
|
-
<h3 id="
|
|
11573
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
11323
11574
|
<ul>
|
|
11324
11575
|
<li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
|
|
11325
11576
|
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
|
|
11326
11577
|
</ul>
|
|
11327
|
-
<h3 id="
|
|
11578
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11328
11579
|
<ul>
|
|
11329
11580
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11330
11581
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
|
|
11331
11582
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
|
|
11332
11583
|
<li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
|
|
11333
11584
|
</ul>
|
|
11334
|
-
<h3 id="
|
|
11585
|
+
<h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">¶</a></h3>
|
|
11335
11586
|
<ul>
|
|
11336
11587
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
|
|
11337
11588
|
</ul>
|
|
11338
|
-
<h3 id="
|
|
11589
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11339
11590
|
<ul>
|
|
11340
11591
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
|
|
11341
11592
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
|
|
@@ -11346,12 +11597,12 @@
|
|
|
11346
11597
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
|
|
11347
11598
|
</ul>
|
|
11348
11599
|
<h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">¶</a></h2>
|
|
11349
|
-
<h3 id="
|
|
11600
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
11350
11601
|
<ul>
|
|
11351
11602
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11352
11603
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11353
11604
|
</ul>
|
|
11354
|
-
<h3 id="
|
|
11605
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11355
11606
|
<ul>
|
|
11356
11607
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
|
|
11357
11608
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed a warning during startup about the <code>extras.FileAttachment</code> model.</li>
|
|
@@ -11361,21 +11612,21 @@
|
|
|
11361
11612
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
|
|
11362
11613
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
|
|
11363
11614
|
</ul>
|
|
11364
|
-
<h3 id="
|
|
11615
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
11365
11616
|
<ul>
|
|
11366
11617
|
<li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
|
|
11367
11618
|
</ul>
|
|
11368
11619
|
<h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">¶</a></h2>
|
|
11369
|
-
<h3 id="
|
|
11620
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
11370
11621
|
<ul>
|
|
11371
11622
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
|
|
11372
11623
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
11373
11624
|
</ul>
|
|
11374
|
-
<h3 id="
|
|
11625
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
11375
11626
|
<ul>
|
|
11376
11627
|
<li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
|
|
11377
11628
|
</ul>
|
|
11378
|
-
<h3 id="
|
|
11629
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11379
11630
|
<ul>
|
|
11380
11631
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
11381
11632
|
<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>
|
|
@@ -11386,7 +11637,7 @@
|
|
|
11386
11637
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
|
|
11387
11638
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
11388
11639
|
</ul>
|
|
11389
|
-
<h3 id="
|
|
11640
|
+
<h3 id="dependencies_7">Dependencies<a class="headerlink" href="#dependencies_7" title="Permanent link">¶</a></h3>
|
|
11390
11641
|
<ul>
|
|
11391
11642
|
<li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
|
|
11392
11643
|
<li><a href="https://github.com/nautobot/nautobot/issues/6287">#6287</a> - Replaced incorrect <code>django-structlog[all]</code> dependency with <code>django-structlog[celery]</code>.</li>
|
|
@@ -11395,7 +11646,7 @@
|
|
|
11395
11646
|
<ul>
|
|
11396
11647
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
|
|
11397
11648
|
</ul>
|
|
11398
|
-
<h3 id="
|
|
11649
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
11399
11650
|
<ul>
|
|
11400
11651
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
11401
11652
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
|
|
@@ -11404,16 +11655,16 @@
|
|
|
11404
11655
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
11405
11656
|
</ul>
|
|
11406
11657
|
<h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">¶</a></h2>
|
|
11407
|
-
<h3 id="
|
|
11658
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
11408
11659
|
<ul>
|
|
11409
11660
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
11410
11661
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
|
|
11411
11662
|
</ul>
|
|
11412
|
-
<h3 id="
|
|
11663
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
11413
11664
|
<ul>
|
|
11414
11665
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
|
|
11415
11666
|
</ul>
|
|
11416
|
-
<h3 id="
|
|
11667
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
11417
11668
|
<ul>
|
|
11418
11669
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11419
11670
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
@@ -11427,7 +11678,7 @@
|
|
|
11427
11678
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
|
|
11428
11679
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
|
|
11429
11680
|
</ul>
|
|
11430
|
-
<h3 id="
|
|
11681
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
11431
11682
|
<ul>
|
|
11432
11683
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
|
|
11433
11684
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
|
|
@@ -11435,22 +11686,22 @@
|
|
|
11435
11686
|
<li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
|
|
11436
11687
|
</ul>
|
|
11437
11688
|
<h2 id="v233-2024-09-16">v2.3.3 (2024-09-16)<a class="headerlink" href="#v233-2024-09-16" title="Permanent link">¶</a></h2>
|
|
11438
|
-
<h3 id="
|
|
11689
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11439
11690
|
<ul>
|
|
11440
11691
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
|
|
11441
11692
|
</ul>
|
|
11442
|
-
<h3 id="
|
|
11693
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
11443
11694
|
<ul>
|
|
11444
11695
|
<li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
|
|
11445
11696
|
<li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
|
|
11446
11697
|
<li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
|
|
11447
11698
|
<li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
|
|
11448
11699
|
</ul>
|
|
11449
|
-
<h3 id="
|
|
11700
|
+
<h3 id="dependencies_8">Dependencies<a class="headerlink" href="#dependencies_8" title="Permanent link">¶</a></h3>
|
|
11450
11701
|
<ul>
|
|
11451
11702
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
|
|
11452
11703
|
</ul>
|
|
11453
|
-
<h3 id="
|
|
11704
|
+
<h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">¶</a></h3>
|
|
11454
11705
|
<ul>
|
|
11455
11706
|
<li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
|
|
11456
11707
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
|
|
@@ -11460,18 +11711,18 @@
|
|
|
11460
11711
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated development dependency <code>pylint</code> to <code>~3.2.7</code>.</li>
|
|
11461
11712
|
</ul>
|
|
11462
11713
|
<h2 id="v232-2024-09-03">v2.3.2 (2024-09-03)<a class="headerlink" href="#v232-2024-09-03" title="Permanent link">¶</a></h2>
|
|
11463
|
-
<h3 id="
|
|
11714
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11464
11715
|
<ul>
|
|
11465
11716
|
<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>
|
|
11466
11717
|
</ul>
|
|
11467
|
-
<h3 id="
|
|
11718
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
11468
11719
|
<ul>
|
|
11469
11720
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
11470
11721
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
11471
11722
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11472
11723
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11473
11724
|
</ul>
|
|
11474
|
-
<h3 id="
|
|
11725
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
11475
11726
|
<ul>
|
|
11476
11727
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
|
|
11477
11728
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
|
|
@@ -11480,7 +11731,7 @@
|
|
|
11480
11731
|
<li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
|
|
11481
11732
|
<li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
|
|
11482
11733
|
</ul>
|
|
11483
|
-
<h3 id="
|
|
11734
|
+
<h3 id="housekeeping_13">Housekeeping<a class="headerlink" href="#housekeeping_13" title="Permanent link">¶</a></h3>
|
|
11484
11735
|
<ul>
|
|
11485
11736
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
11486
11737
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
|
|
@@ -11488,33 +11739,33 @@
|
|
|
11488
11739
|
<li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
|
|
11489
11740
|
</ul>
|
|
11490
11741
|
<h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">¶</a></h2>
|
|
11491
|
-
<h3 id="
|
|
11742
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
11492
11743
|
<ul>
|
|
11493
11744
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
11494
11745
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
|
|
11495
11746
|
<li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
|
|
11496
11747
|
</ul>
|
|
11497
|
-
<h3 id="
|
|
11748
|
+
<h3 id="changed_10">Changed<a class="headerlink" href="#changed_10" title="Permanent link">¶</a></h3>
|
|
11498
11749
|
<ul>
|
|
11499
11750
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11500
11751
|
</ul>
|
|
11501
|
-
<h3 id="
|
|
11752
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
11502
11753
|
<ul>
|
|
11503
11754
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
|
|
11504
11755
|
<li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
|
|
11505
11756
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11506
11757
|
<li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
|
|
11507
11758
|
</ul>
|
|
11508
|
-
<h3 id="
|
|
11759
|
+
<h3 id="housekeeping_14">Housekeeping<a class="headerlink" href="#housekeeping_14" title="Permanent link">¶</a></h3>
|
|
11509
11760
|
<ul>
|
|
11510
11761
|
<li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
|
|
11511
11762
|
</ul>
|
|
11512
11763
|
<h2 id="v230-2024-08-08">v2.3.0 (2024-08-08)<a class="headerlink" href="#v230-2024-08-08" title="Permanent link">¶</a></h2>
|
|
11513
|
-
<h3 id="
|
|
11764
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
11514
11765
|
<ul>
|
|
11515
11766
|
<li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
|
|
11516
11767
|
</ul>
|
|
11517
|
-
<h3 id="
|
|
11768
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
11518
11769
|
<ul>
|
|
11519
11770
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
11520
11771
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -11524,7 +11775,7 @@
|
|
|
11524
11775
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
|
|
11525
11776
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
|
|
11526
11777
|
</ul>
|
|
11527
|
-
<h3 id="
|
|
11778
|
+
<h3 id="changed_11">Changed<a class="headerlink" href="#changed_11" title="Permanent link">¶</a></h3>
|
|
11528
11779
|
<ul>
|
|
11529
11780
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
|
|
11530
11781
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -11538,7 +11789,7 @@
|
|
|
11538
11789
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11539
11790
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11540
11791
|
</ul>
|
|
11541
|
-
<h3 id="
|
|
11792
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
11542
11793
|
<ul>
|
|
11543
11794
|
<li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
|
|
11544
11795
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -11562,7 +11813,7 @@
|
|
|
11562
11813
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11563
11814
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
11564
11815
|
</ul>
|
|
11565
|
-
<h3 id="
|
|
11816
|
+
<h3 id="housekeeping_15">Housekeeping<a class="headerlink" href="#housekeeping_15" title="Permanent link">¶</a></h3>
|
|
11566
11817
|
<ul>
|
|
11567
11818
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
|
|
11568
11819
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
|
|
@@ -11573,11 +11824,11 @@
|
|
|
11573
11824
|
<li><a href="https://github.com/nautobot/nautobot/issues/6071">#6071</a> - Fixed incorrect generic-test logic in <code>FilterTestCase.test_q_filter_valid</code> for <code>q</code> filters containing <code>iexact</code> lookups.</li>
|
|
11574
11825
|
</ul>
|
|
11575
11826
|
<h2 id="v230-beta1-2024-07-25">v2.3.0-beta.1 (2024-07-25)<a class="headerlink" href="#v230-beta1-2024-07-25" title="Permanent link">¶</a></h2>
|
|
11576
|
-
<h3 id="
|
|
11827
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
11577
11828
|
<ul>
|
|
11578
11829
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
|
|
11579
11830
|
</ul>
|
|
11580
|
-
<h3 id="
|
|
11831
|
+
<h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">¶</a></h3>
|
|
11581
11832
|
<ul>
|
|
11582
11833
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
11583
11834
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
|
|
@@ -11624,7 +11875,7 @@
|
|
|
11624
11875
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
|
|
11625
11876
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
11626
11877
|
</ul>
|
|
11627
|
-
<h3 id="
|
|
11878
|
+
<h3 id="changed_12">Changed<a class="headerlink" href="#changed_12" title="Permanent link">¶</a></h3>
|
|
11628
11879
|
<ul>
|
|
11629
11880
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
|
|
11630
11881
|
<li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Changed behavior of the <code>CHANGELOG_RETENTION</code> setting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job.</li>
|
|
@@ -11668,7 +11919,7 @@
|
|
|
11668
11919
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
|
|
11669
11920
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
|
|
11670
11921
|
</ul>
|
|
11671
|
-
<h3 id="
|
|
11922
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
11672
11923
|
<ul>
|
|
11673
11924
|
<li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
|
|
11674
11925
|
<li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
|
|
@@ -11692,7 +11943,7 @@
|
|
|
11692
11943
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
11693
11944
|
<li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
|
|
11694
11945
|
</ul>
|
|
11695
|
-
<h3 id="
|
|
11946
|
+
<h3 id="dependencies_9">Dependencies<a class="headerlink" href="#dependencies_9" title="Permanent link">¶</a></h3>
|
|
11696
11947
|
<ul>
|
|
11697
11948
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
11698
11949
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -11724,7 +11975,7 @@
|
|
|
11724
11975
|
<li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
|
|
11725
11976
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11726
11977
|
</ul>
|
|
11727
|
-
<h3 id="
|
|
11978
|
+
<h3 id="housekeeping_16">Housekeeping<a class="headerlink" href="#housekeeping_16" title="Permanent link">¶</a></h3>
|
|
11728
11979
|
<ul>
|
|
11729
11980
|
<li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
|
|
11730
11981
|
<li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>
|
|
@@ -11895,7 +12146,7 @@
|
|
|
11895
12146
|
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
11896
12147
|
|
|
11897
12148
|
|
|
11898
|
-
<script src="../assets/javascripts/bundle.
|
|
12149
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
11899
12150
|
|
|
11900
12151
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11901
12152
|
|