nautobot 2.3.16__py3-none-any.whl → 2.4.0b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/__init__.py +15 -0
- nautobot/apps/api.py +0 -2
- nautobot/apps/config.py +32 -3
- nautobot/apps/events.py +19 -0
- nautobot/apps/exceptions.py +0 -2
- nautobot/apps/ui.py +44 -9
- nautobot/apps/utils.py +0 -8
- nautobot/apps/views.py +2 -0
- nautobot/circuits/navigation.py +0 -57
- nautobot/circuits/tables.py +1 -2
- nautobot/circuits/templates/circuits/circuit_retrieve.html +0 -71
- nautobot/circuits/templates/circuits/inc/circuit_termination.html +6 -64
- nautobot/circuits/templates/circuits/inc/circuit_termination_cable_fragment.html +40 -0
- nautobot/circuits/templates/circuits/inc/circuit_termination_header_extra_content.html +26 -0
- nautobot/circuits/templates/circuits/provider_retrieve.html +0 -76
- nautobot/circuits/tests/integration/test_relationships.py +33 -24
- nautobot/circuits/tests/test_filters.py +4 -8
- nautobot/circuits/views.py +143 -26
- nautobot/cloud/factory.py +4 -1
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/tests/test_filters.py +5 -4
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/metadata.py +28 -256
- nautobot/core/api/pagination.py +3 -2
- nautobot/core/api/renderers.py +3 -0
- nautobot/core/api/serializers.py +24 -244
- nautobot/core/api/urls.py +3 -4
- nautobot/core/api/utils.py +0 -62
- nautobot/core/api/views.py +48 -158
- nautobot/core/apps/__init__.py +22 -578
- nautobot/core/celery/__init__.py +13 -0
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +48 -3
- nautobot/core/cli/__init__.py +8 -0
- nautobot/core/constants.py +7 -0
- nautobot/core/events/__init__.py +116 -0
- nautobot/core/events/base.py +27 -0
- nautobot/core/events/exceptions.py +10 -0
- nautobot/core/events/redis_broker.py +48 -0
- nautobot/core/events/syslog_broker.py +19 -0
- nautobot/core/exceptions.py +0 -6
- nautobot/core/filters.py +16 -21
- nautobot/core/fixtures/user-data.json +59 -0
- nautobot/core/forms/fields.py +53 -8
- nautobot/core/forms/utils.py +2 -1
- nautobot/core/graphql/schema.py +3 -1
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +4 -4
- nautobot/core/jobs/cleanup.py +13 -49
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/generate_test_data.py +21 -0
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/middleware.py +16 -0
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/fields.py +11 -7
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +3 -6
- nautobot/core/settings.py +44 -7
- nautobot/core/settings.yaml +86 -8
- nautobot/core/tables.py +15 -65
- nautobot/core/tasks.py +1 -1
- nautobot/core/templates/components/button/default.html +7 -0
- nautobot/core/templates/components/button/dropdown.html +20 -0
- nautobot/core/templates/components/layout/one_over_two.html +19 -0
- nautobot/core/templates/components/layout/two_over_one.html +19 -0
- nautobot/core/templates/components/panel/body_content_data_table.html +27 -0
- nautobot/core/templates/components/panel/body_content_objects_table.html +4 -0
- nautobot/core/templates/components/panel/body_content_tags.html +6 -0
- nautobot/core/templates/components/panel/body_content_text.html +12 -0
- nautobot/core/templates/components/panel/body_wrapper_generic.html +3 -0
- nautobot/core/templates/components/panel/body_wrapper_key_value_table.html +3 -0
- nautobot/core/templates/components/panel/body_wrapper_table.html +3 -0
- nautobot/core/templates/components/panel/footer_contacts_table.html +20 -0
- nautobot/core/templates/components/panel/footer_content_table.html +14 -0
- nautobot/core/templates/components/panel/grouping_toggle.html +14 -0
- nautobot/core/templates/components/panel/header_extra_content_table.html +3 -0
- nautobot/core/templates/components/panel/panel.html +16 -0
- nautobot/core/templates/components/panel/stats_panel_body.html +8 -0
- nautobot/core/templates/components/tab/content_wrapper.html +3 -0
- nautobot/core/templates/components/tab/label_wrapper.html +5 -0
- nautobot/core/templates/components/tab/label_wrapper_distinct_view.html +3 -0
- nautobot/core/templates/generic/object_retrieve.html +28 -17
- nautobot/core/templates/inc/computed_fields/panel_data.html +4 -7
- nautobot/core/templates/inc/custom_fields/panel.html +2 -2
- nautobot/core/templates/inc/custom_fields/panel_data.html +4 -7
- nautobot/core/templates/inc/footer.html +1 -0
- nautobot/core/templates/inc/media.html +0 -3
- nautobot/core/templates/inc/nav_menu.html +1 -1
- nautobot/core/templates/inc/relationships_panel.html +1 -1
- nautobot/core/templates/nautobot_config.py.j2 +3 -3
- nautobot/core/templates/panel_table.html +12 -0
- nautobot/core/templates/search.html +0 -7
- nautobot/core/templates/utilities/render_jinja2.html +117 -0
- nautobot/core/templatetags/helpers.py +101 -12
- nautobot/core/templatetags/ui_framework.py +40 -0
- nautobot/core/testing/api.py +23 -128
- nautobot/core/testing/context.py +18 -0
- nautobot/core/testing/filters.py +41 -58
- nautobot/core/testing/mixins.py +2 -7
- nautobot/core/testing/views.py +25 -123
- nautobot/core/tests/integration/test_app_home.py +1 -0
- nautobot/core/tests/integration/test_app_navbar.py +1 -0
- nautobot/core/tests/integration/test_filters.py +2 -0
- nautobot/core/tests/integration/test_home.py +1 -0
- nautobot/core/tests/integration/test_navbar.py +1 -0
- nautobot/core/tests/integration/test_view_authentication.py +1 -2
- nautobot/core/tests/nautobot_config.py +198 -0
- nautobot/core/tests/runner.py +3 -3
- nautobot/core/tests/test_api.py +82 -201
- nautobot/core/tests/test_csv.py +3 -25
- nautobot/core/tests/test_events.py +214 -0
- nautobot/core/tests/test_jinja_filters.py +1 -0
- nautobot/core/tests/test_jobs.py +84 -13
- nautobot/core/tests/test_navigations.py +7 -241
- nautobot/core/tests/test_templatetags_helpers.py +16 -0
- nautobot/core/tests/test_ui.py +150 -0
- nautobot/core/tests/test_utils.py +0 -25
- nautobot/core/tests/test_views.py +123 -31
- nautobot/core/ui/__init__.py +0 -0
- nautobot/core/ui/base.py +11 -0
- nautobot/core/ui/choices.py +44 -0
- nautobot/core/ui/homepage.py +167 -0
- nautobot/core/ui/nav.py +279 -0
- nautobot/core/ui/object_detail.py +1841 -0
- nautobot/core/ui/utils.py +36 -0
- nautobot/core/urls.py +4 -9
- nautobot/core/utils/config.py +30 -3
- nautobot/core/utils/lookup.py +20 -13
- nautobot/core/views/__init__.py +6 -1
- nautobot/core/views/generic.py +47 -52
- nautobot/core/views/mixins.py +15 -25
- nautobot/core/views/paginator.py +8 -5
- nautobot/core/views/renderers.py +3 -3
- nautobot/core/views/utils.py +11 -0
- nautobot/core/wsgi.py +3 -3
- nautobot/dcim/api/serializers.py +80 -179
- nautobot/dcim/api/urls.py +5 -0
- nautobot/dcim/api/views.py +17 -4
- nautobot/dcim/apps.py +1 -0
- nautobot/dcim/choices.py +28 -0
- nautobot/dcim/factory.py +58 -0
- nautobot/dcim/filters/__init__.py +197 -24
- nautobot/dcim/forms.py +203 -12
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0063_interfacevdcassignment_virtualdevicecontext_and_more.py +165 -0
- nautobot/dcim/migrations/0064_virtualdevicecontext_status_data_migration.py +28 -0
- nautobot/dcim/migrations/0065_controller_capabilities_and_more.py +29 -0
- nautobot/dcim/migrations/0066_controllermanageddevicegroup_radio_profiles_and_more.py +33 -0
- nautobot/dcim/models/__init__.py +4 -0
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +20 -22
- nautobot/dcim/models/devices.py +173 -4
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +5 -6
- nautobot/dcim/models/racks.py +6 -6
- nautobot/dcim/navigation.py +25 -224
- nautobot/dcim/signals.py +44 -0
- nautobot/dcim/tables/__init__.py +5 -3
- nautobot/dcim/tables/devices.py +96 -2
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/templates/dcim/controller/base.html +10 -0
- nautobot/dcim/templates/dcim/controller_create.html +1 -0
- nautobot/dcim/templates/dcim/controller_retrieve.html +5 -1
- nautobot/dcim/templates/dcim/controller_wirelessnetworks.html +25 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +66 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +46 -0
- nautobot/dcim/templates/dcim/device/base.html +6 -42
- nautobot/dcim/templates/dcim/device/wireless.html +73 -0
- nautobot/dcim/templates/dcim/device.html +3 -1
- nautobot/dcim/templates/dcim/interface.html +1 -0
- nautobot/dcim/templates/dcim/interface_edit.html +1 -0
- nautobot/dcim/templates/dcim/locationtype.html +0 -107
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +8 -0
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +76 -0
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +34 -0
- nautobot/dcim/tests/test_api.py +172 -61
- nautobot/dcim/tests/test_filters.py +171 -109
- nautobot/dcim/tests/test_forms.py +2 -51
- nautobot/dcim/tests/test_graphql.py +0 -52
- nautobot/dcim/tests/test_models.py +126 -4
- nautobot/dcim/tests/test_signals.py +1 -0
- nautobot/dcim/tests/test_views.py +103 -11
- nautobot/dcim/urls.py +72 -27
- nautobot/dcim/utils.py +2 -2
- nautobot/dcim/views.py +369 -62
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +91 -75
- nautobot/extras/api/urls.py +4 -0
- nautobot/extras/api/views.py +78 -15
- nautobot/extras/choices.py +13 -0
- nautobot/extras/constants.py +0 -1
- nautobot/extras/context_managers.py +23 -6
- nautobot/extras/datasources/git.py +4 -1
- nautobot/extras/factory.py +27 -0
- nautobot/extras/filters/__init__.py +59 -0
- nautobot/extras/forms/forms.py +125 -30
- nautobot/extras/forms/mixins.py +3 -11
- nautobot/extras/graphql/types.py +25 -1
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +2 -1
- nautobot/extras/jobs.py +62 -26
- nautobot/extras/management/__init__.py +1 -0
- nautobot/extras/management/commands/runjob.py +7 -79
- nautobot/extras/management/commands/runjob_with_job_result.py +46 -0
- nautobot/extras/management/utils.py +87 -0
- nautobot/extras/managers.py +1 -3
- nautobot/extras/migrations/0018_joblog_data_migration.py +9 -7
- nautobot/extras/migrations/0117_create_job_queue_model.py +129 -0
- nautobot/extras/migrations/0118_task_queue_to_job_queue_migration.py +78 -0
- nautobot/extras/migrations/0119_remove_task_queues_from_job_and_queue_from_scheduled_job.py +28 -0
- nautobot/extras/models/__init__.py +4 -0
- nautobot/extras/models/change_logging.py +7 -3
- nautobot/extras/models/customfields.py +11 -12
- nautobot/extras/models/groups.py +9 -13
- nautobot/extras/models/jobs.py +218 -37
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/models/relationships.py +69 -1
- nautobot/extras/models/secrets.py +5 -0
- nautobot/extras/navigation.py +20 -262
- nautobot/extras/plugins/__init__.py +56 -32
- nautobot/extras/plugins/marketplace_manifest.yml +450 -0
- nautobot/extras/plugins/urls.py +1 -0
- nautobot/extras/plugins/views.py +48 -1
- nautobot/extras/signals.py +39 -1
- nautobot/extras/tables.py +40 -6
- nautobot/extras/templates/extras/externalintegration_retrieve.html +0 -47
- nautobot/extras/templates/extras/inc/tags_panel.html +1 -5
- nautobot/extras/templates/extras/job_bulk_edit.html +2 -1
- nautobot/extras/templates/extras/job_detail.html +36 -6
- nautobot/extras/templates/extras/job_edit.html +5 -2
- nautobot/extras/templates/extras/job_list.html +2 -7
- nautobot/extras/templates/extras/jobqueue_retrieve.html +44 -0
- nautobot/extras/templates/extras/marketplace.html +278 -0
- nautobot/extras/templates/extras/plugins_list.html +35 -1
- nautobot/extras/templates/extras/plugins_tiles.html +79 -0
- nautobot/extras/templates/extras/role_retrieve.html +16 -0
- nautobot/extras/templates/extras/secret.html +0 -65
- nautobot/extras/templates/extras/secret_check.js +16 -0
- nautobot/extras/templates/extras/secret_create.html +114 -0
- nautobot/extras/templates/extras/secret_edit.html +1 -114
- nautobot/extras/templates/extras/secretsgroup_edit.html +1 -1
- nautobot/extras/templates/extras/templatetags/plugin_object_detail_tabs.html +2 -0
- nautobot/extras/templatetags/job_buttons.py +5 -4
- nautobot/extras/templatetags/plugins.py +69 -6
- 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 +1 -3
- 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 +2 -0
- nautobot/extras/tests/test_api.py +157 -55
- nautobot/extras/tests/test_context_managers.py +4 -1
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +1 -2
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +219 -535
- nautobot/extras/tests/test_forms.py +1 -20
- nautobot/extras/tests/test_job_variables.py +73 -152
- nautobot/extras/tests/test_jobs.py +43 -54
- nautobot/extras/tests/test_models.py +71 -16
- nautobot/extras/tests/test_relationships.py +5 -2
- nautobot/extras/tests/test_utils.py +23 -2
- nautobot/extras/tests/test_views.py +183 -43
- nautobot/extras/tests/test_webhooks.py +2 -1
- nautobot/extras/urls.py +2 -20
- nautobot/extras/utils.py +118 -4
- nautobot/extras/views.py +203 -92
- nautobot/extras/webhooks.py +5 -2
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +36 -137
- nautobot/ipam/api/views.py +93 -62
- nautobot/ipam/lookups.py +62 -101
- nautobot/ipam/models.py +11 -63
- nautobot/ipam/navigation.py +0 -90
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +6 -20
- nautobot/ipam/templates/ipam/routetarget.html +0 -28
- nautobot/ipam/templates/ipam/vrf.html +0 -47
- nautobot/ipam/tests/test_api.py +8 -419
- nautobot/ipam/tests/test_filters.py +39 -119
- nautobot/ipam/tests/test_forms.py +47 -51
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +0 -41
- nautobot/ipam/tests/test_querysets.py +1 -63
- nautobot/ipam/urls.py +3 -69
- nautobot/ipam/utils/__init__.py +0 -24
- nautobot/ipam/views.py +153 -198
- nautobot/project-static/css/base.css +38 -3
- nautobot/project-static/docs/404.html +421 -19
- nautobot/project-static/docs/apps/index.html +421 -19
- nautobot/project-static/docs/apps/nautobot-apps.html +421 -19
- nautobot/project-static/docs/assets/extra.css +5 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.88dd0f4e.min.js → bundle.83f73b43.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.88dd0f4e.min.js.map → bundle.83f73b43.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +421 -172
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +425 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +424 -22
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +9809 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +424 -63
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +457 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +425 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +457 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +425 -215
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +430 -342
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +5799 -1054
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +421 -19
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +447 -176
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +460 -21
- nautobot/project-static/docs/development/apps/api/configuration-view.html +421 -19
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +421 -19
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +421 -19
- nautobot/project-static/docs/development/apps/api/models/global-search.html +421 -19
- nautobot/project-static/docs/development/apps/api/models/graphql.html +421 -19
- nautobot/project-static/docs/development/apps/api/models/index.html +421 -19
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +421 -19
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +424 -41
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +421 -19
- nautobot/project-static/docs/development/apps/api/prometheus.html +421 -19
- nautobot/project-static/docs/development/apps/api/setup.html +425 -155
- nautobot/project-static/docs/development/apps/api/testing.html +421 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +421 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +421 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +421 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +421 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +701 -130
- nautobot/project-static/docs/development/apps/api/views/base-template.html +421 -19
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +421 -19
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +421 -19
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +421 -19
- nautobot/project-static/docs/development/apps/api/views/index.html +423 -20
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +425 -19
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +451 -19
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +421 -19
- nautobot/project-static/docs/development/apps/api/views/notes.html +421 -19
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +421 -19
- nautobot/project-static/docs/development/apps/api/views/urls.html +421 -19
- nautobot/project-static/docs/development/apps/index.html +421 -19
- nautobot/project-static/docs/development/apps/migration/code-updates.html +422 -52
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +422 -20
- nautobot/project-static/docs/development/apps/migration/from-v1.html +421 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +421 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +421 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +421 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +424 -22
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +9219 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +9333 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +9474 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +9517 -0
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +424 -22
- nautobot/project-static/docs/development/core/application-registry.html +421 -19
- nautobot/project-static/docs/development/core/best-practices.html +421 -19
- nautobot/project-static/docs/development/core/bootstrap-ui.html +421 -19
- nautobot/project-static/docs/development/core/caching.html +421 -19
- nautobot/project-static/docs/development/core/controllers.html +423 -19
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +490 -45
- nautobot/project-static/docs/development/core/generic-views.html +421 -19
- nautobot/project-static/docs/development/core/getting-started.html +566 -179
- nautobot/project-static/docs/development/core/homepage.html +432 -30
- nautobot/project-static/docs/development/core/index.html +421 -19
- nautobot/project-static/docs/development/core/local-k8s.html +9453 -0
- nautobot/project-static/docs/development/core/model-checklist.html +424 -22
- nautobot/project-static/docs/development/core/model-features.html +421 -19
- nautobot/project-static/docs/development/core/natural-keys.html +421 -19
- nautobot/project-static/docs/development/core/navigation-menu.html +438 -26
- nautobot/project-static/docs/development/core/release-checklist.html +435 -45
- nautobot/project-static/docs/development/core/role-internals.html +421 -19
- nautobot/project-static/docs/development/core/settings.html +421 -19
- nautobot/project-static/docs/development/core/style-guide.html +421 -19
- nautobot/project-static/docs/development/core/templates.html +431 -22
- nautobot/project-static/docs/development/core/testing.html +421 -19
- nautobot/project-static/docs/development/core/ui-component-framework.html +11020 -0
- nautobot/project-static/docs/development/core/user-preferences.html +424 -22
- nautobot/project-static/docs/development/index.html +421 -19
- nautobot/project-static/docs/development/jobs/index.html +546 -160
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +421 -19
- nautobot/project-static/docs/index.html +421 -19
- nautobot/project-static/docs/media/development/core/ui-component-framework/basic-panel-layout.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/button-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/dropdown-button-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/grouped-key-value-table-panel-example-1.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/grouped-key-value-table-panel-example-2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/table-panels-family.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/text-panels-family.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/ui-framework-example.png +0 -0
- nautobot/project-static/docs/media/models/virtual_device_context_overview.drawio +73 -0
- nautobot/project-static/docs/media/models/virtual_device_context_overview.png +0 -0
- nautobot/project-static/docs/models/dcim/virtualdevicecontext.html +14 -0
- nautobot/project-static/docs/models/extras/jobqueue.html +14 -0
- nautobot/project-static/docs/models/wireless/radioprofile.html +14 -0
- nautobot/project-static/docs/models/wireless/supporteddatarate.html +14 -0
- nautobot/project-static/docs/models/wireless/wirelessnetwork.html +14 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +426 -20
- nautobot/project-static/docs/overview/design_philosophy.html +421 -19
- nautobot/project-static/docs/release-notes/index.html +445 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +421 -19
- nautobot/project-static/docs/release-notes/version-1.1.html +421 -19
- nautobot/project-static/docs/release-notes/version-1.2.html +421 -19
- nautobot/project-static/docs/release-notes/version-1.3.html +421 -19
- nautobot/project-static/docs/release-notes/version-1.4.html +421 -19
- nautobot/project-static/docs/release-notes/version-1.5.html +421 -19
- nautobot/project-static/docs/release-notes/version-1.6.html +634 -667
- nautobot/project-static/docs/release-notes/version-2.0.html +421 -19
- nautobot/project-static/docs/release-notes/version-2.1.html +421 -19
- nautobot/project-static/docs/release-notes/version-2.2.html +421 -19
- nautobot/project-static/docs/release-notes/version-2.3.html +684 -886
- nautobot/project-static/docs/release-notes/version-2.4.html +10007 -0
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +334 -270
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +421 -19
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +421 -19
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +423 -21
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +433 -32
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +421 -19
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +765 -180
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +434 -29
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +421 -19
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +421 -19
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +421 -19
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +421 -19
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +421 -19
- nautobot/project-static/docs/user-guide/administration/installation/index.html +426 -20
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +421 -19
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +421 -19
- nautobot/project-static/docs/user-guide/administration/installation/services.html +421 -19
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +421 -19
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +442 -41
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +435 -66
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +435 -66
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-nautobot-app-location.yaml +0 -16
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +421 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +427 -21
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +457 -20
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +447 -22
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +9333 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +424 -22
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +421 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +424 -22
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +9271 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +9175 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +9169 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +9235 -0
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +421 -19
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +421 -19
- nautobot/project-static/docs/user-guide/index.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +424 -22
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +9575 -0
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +424 -22
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +426 -20
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +424 -22
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +9182 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +424 -22
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +424 -22
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +9250 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +424 -22
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +424 -22
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +489 -56
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +421 -19
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +421 -19
- nautobot/project-static/img/jinja_logo.svg +97 -0
- nautobot/project-static/js/forms.js +5 -0
- nautobot/project-static/js/nav_menu.js +2 -1
- nautobot/tenancy/api/serializers.py +0 -2
- nautobot/tenancy/factory.py +1 -1
- nautobot/tenancy/navigation.py +0 -29
- nautobot/tenancy/templates/tenancy/tenant.html +4 -91
- nautobot/tenancy/tests/test_filters.py +29 -134
- nautobot/tenancy/views.py +32 -23
- nautobot/users/admin.py +3 -1
- nautobot/users/api/serializers.py +4 -5
- nautobot/users/api/views.py +1 -1
- nautobot/users/forms.py +19 -0
- nautobot/users/templates/users/preferences.html +22 -0
- nautobot/users/tests/test_filters.py +1 -19
- nautobot/users/tests/test_views.py +57 -0
- nautobot/users/utils.py +8 -0
- nautobot/users/views.py +48 -11
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/filters.py +2 -20
- nautobot/virtualization/navigation.py +0 -48
- nautobot/virtualization/templates/virtualization/clustertype.html +0 -39
- nautobot/virtualization/tests/test_filters.py +57 -183
- nautobot/virtualization/views.py +18 -15
- nautobot/wireless/__init__.py +0 -0
- nautobot/wireless/api/__init__.py +0 -0
- nautobot/wireless/api/serializers.py +44 -0
- nautobot/wireless/api/urls.py +20 -0
- nautobot/wireless/api/views.py +34 -0
- nautobot/wireless/apps.py +8 -0
- nautobot/wireless/choices.py +345 -0
- nautobot/wireless/factory.py +138 -0
- nautobot/wireless/filters.py +167 -0
- nautobot/wireless/forms.py +283 -0
- nautobot/wireless/homepage.py +19 -0
- nautobot/wireless/migrations/0001_initial.py +223 -0
- nautobot/wireless/migrations/__init__.py +0 -0
- nautobot/wireless/models.py +207 -0
- nautobot/wireless/navigation.py +105 -0
- nautobot/wireless/tables.py +244 -0
- nautobot/wireless/templates/wireless/radioprofile_retrieve.html +81 -0
- nautobot/wireless/templates/wireless/supporteddatarate_retrieve.html +26 -0
- nautobot/wireless/templates/wireless/wirelessnetwork_create.html +88 -0
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +64 -0
- nautobot/wireless/tests/__init__.py +0 -0
- nautobot/wireless/tests/test_api.py +247 -0
- nautobot/wireless/tests/test_filters.py +54 -0
- nautobot/wireless/tests/test_models.py +22 -0
- nautobot/wireless/tests/test_views.py +378 -0
- nautobot/wireless/urls.py +13 -0
- nautobot/wireless/views.py +129 -0
- {nautobot-2.3.16.dist-info → nautobot-2.4.0b1.dist-info}/METADATA +11 -14
- {nautobot-2.3.16.dist-info → nautobot-2.4.0b1.dist-info}/RECORD +674 -551
- {nautobot-2.3.16.dist-info → nautobot-2.4.0b1.dist-info}/WHEEL +1 -1
- nautobot/core/utils/navigation.py +0 -54
- {nautobot-2.3.16.dist-info → nautobot-2.4.0b1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.16.dist-info → nautobot-2.4.0b1.dist-info}/NOTICE +0 -0
- {nautobot-2.3.16.dist-info → nautobot-2.4.0b1.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.46">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -3944,6 +3944,27 @@
|
|
|
3944
3944
|
|
|
3945
3945
|
|
|
3946
3946
|
|
|
3947
|
+
|
|
3948
|
+
|
|
3949
|
+
|
|
3950
|
+
|
|
3951
|
+
|
|
3952
|
+
|
|
3953
|
+
<li class="md-nav__item">
|
|
3954
|
+
<a href="../user-guide/core-data-model/dcim/virtualdevicecontext.html" class="md-nav__link">
|
|
3955
|
+
|
|
3956
|
+
|
|
3957
|
+
<span class="md-ellipsis">
|
|
3958
|
+
Virtual Device Context
|
|
3959
|
+
</span>
|
|
3960
|
+
|
|
3961
|
+
|
|
3962
|
+
</a>
|
|
3963
|
+
</li>
|
|
3964
|
+
|
|
3965
|
+
|
|
3966
|
+
|
|
3967
|
+
|
|
3947
3968
|
</ul>
|
|
3948
3969
|
</nav>
|
|
3949
3970
|
|
|
@@ -4556,6 +4577,123 @@
|
|
|
4556
4577
|
|
|
4557
4578
|
|
|
4558
4579
|
|
|
4580
|
+
|
|
4581
|
+
|
|
4582
|
+
|
|
4583
|
+
|
|
4584
|
+
|
|
4585
|
+
|
|
4586
|
+
|
|
4587
|
+
|
|
4588
|
+
|
|
4589
|
+
|
|
4590
|
+
|
|
4591
|
+
|
|
4592
|
+
|
|
4593
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4594
|
+
|
|
4595
|
+
|
|
4596
|
+
|
|
4597
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_9" >
|
|
4598
|
+
|
|
4599
|
+
|
|
4600
|
+
|
|
4601
|
+
<div class="md-nav__link md-nav__container">
|
|
4602
|
+
<a href="../user-guide/core-data-model/wireless/index.html" class="md-nav__link ">
|
|
4603
|
+
|
|
4604
|
+
|
|
4605
|
+
<span class="md-ellipsis">
|
|
4606
|
+
Wireless
|
|
4607
|
+
</span>
|
|
4608
|
+
|
|
4609
|
+
|
|
4610
|
+
</a>
|
|
4611
|
+
|
|
4612
|
+
|
|
4613
|
+
<label class="md-nav__link " for="__nav_2_3_9" id="__nav_2_3_9_label" tabindex="0">
|
|
4614
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4615
|
+
</label>
|
|
4616
|
+
|
|
4617
|
+
</div>
|
|
4618
|
+
|
|
4619
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_9_label" aria-expanded="false">
|
|
4620
|
+
<label class="md-nav__title" for="__nav_2_3_9">
|
|
4621
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4622
|
+
Wireless
|
|
4623
|
+
</label>
|
|
4624
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
4625
|
+
|
|
4626
|
+
|
|
4627
|
+
|
|
4628
|
+
|
|
4629
|
+
|
|
4630
|
+
|
|
4631
|
+
|
|
4632
|
+
<li class="md-nav__item">
|
|
4633
|
+
<a href="../user-guide/core-data-model/wireless/supporteddatarate.html" class="md-nav__link">
|
|
4634
|
+
|
|
4635
|
+
|
|
4636
|
+
<span class="md-ellipsis">
|
|
4637
|
+
Supported Data Rate
|
|
4638
|
+
</span>
|
|
4639
|
+
|
|
4640
|
+
|
|
4641
|
+
</a>
|
|
4642
|
+
</li>
|
|
4643
|
+
|
|
4644
|
+
|
|
4645
|
+
|
|
4646
|
+
|
|
4647
|
+
|
|
4648
|
+
|
|
4649
|
+
|
|
4650
|
+
|
|
4651
|
+
|
|
4652
|
+
|
|
4653
|
+
<li class="md-nav__item">
|
|
4654
|
+
<a href="../user-guide/core-data-model/wireless/radioprofile.html" class="md-nav__link">
|
|
4655
|
+
|
|
4656
|
+
|
|
4657
|
+
<span class="md-ellipsis">
|
|
4658
|
+
Radio Profile
|
|
4659
|
+
</span>
|
|
4660
|
+
|
|
4661
|
+
|
|
4662
|
+
</a>
|
|
4663
|
+
</li>
|
|
4664
|
+
|
|
4665
|
+
|
|
4666
|
+
|
|
4667
|
+
|
|
4668
|
+
|
|
4669
|
+
|
|
4670
|
+
|
|
4671
|
+
|
|
4672
|
+
|
|
4673
|
+
|
|
4674
|
+
<li class="md-nav__item">
|
|
4675
|
+
<a href="../user-guide/core-data-model/wireless/wirelessnetwork.html" class="md-nav__link">
|
|
4676
|
+
|
|
4677
|
+
|
|
4678
|
+
<span class="md-ellipsis">
|
|
4679
|
+
Wireless Network
|
|
4680
|
+
</span>
|
|
4681
|
+
|
|
4682
|
+
|
|
4683
|
+
</a>
|
|
4684
|
+
</li>
|
|
4685
|
+
|
|
4686
|
+
|
|
4687
|
+
|
|
4688
|
+
|
|
4689
|
+
</ul>
|
|
4690
|
+
</nav>
|
|
4691
|
+
|
|
4692
|
+
</li>
|
|
4693
|
+
|
|
4694
|
+
|
|
4695
|
+
|
|
4696
|
+
|
|
4559
4697
|
</ul>
|
|
4560
4698
|
</nav>
|
|
4561
4699
|
|
|
@@ -4767,6 +4905,27 @@
|
|
|
4767
4905
|
|
|
4768
4906
|
|
|
4769
4907
|
|
|
4908
|
+
<li class="md-nav__item">
|
|
4909
|
+
<a href="../user-guide/platform-functionality/events.html" class="md-nav__link">
|
|
4910
|
+
|
|
4911
|
+
|
|
4912
|
+
<span class="md-ellipsis">
|
|
4913
|
+
Event Notifications
|
|
4914
|
+
</span>
|
|
4915
|
+
|
|
4916
|
+
|
|
4917
|
+
</a>
|
|
4918
|
+
</li>
|
|
4919
|
+
|
|
4920
|
+
|
|
4921
|
+
|
|
4922
|
+
|
|
4923
|
+
|
|
4924
|
+
|
|
4925
|
+
|
|
4926
|
+
|
|
4927
|
+
|
|
4928
|
+
|
|
4770
4929
|
<li class="md-nav__item">
|
|
4771
4930
|
<a href="../user-guide/platform-functionality/exporttemplate.html" class="md-nav__link">
|
|
4772
4931
|
|
|
@@ -4841,7 +5000,7 @@
|
|
|
4841
5000
|
|
|
4842
5001
|
|
|
4843
5002
|
|
|
4844
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5003
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_10" >
|
|
4845
5004
|
|
|
4846
5005
|
|
|
4847
5006
|
|
|
@@ -4857,14 +5016,14 @@
|
|
|
4857
5016
|
</a>
|
|
4858
5017
|
|
|
4859
5018
|
|
|
4860
|
-
<label class="md-nav__link " for="
|
|
5019
|
+
<label class="md-nav__link " for="__nav_2_4_10" id="__nav_2_4_10_label" tabindex="0">
|
|
4861
5020
|
<span class="md-nav__icon md-icon"></span>
|
|
4862
5021
|
</label>
|
|
4863
5022
|
|
|
4864
5023
|
</div>
|
|
4865
5024
|
|
|
4866
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4867
|
-
<label class="md-nav__title" for="
|
|
5025
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_10_label" aria-expanded="false">
|
|
5026
|
+
<label class="md-nav__title" for="__nav_2_4_10">
|
|
4868
5027
|
<span class="md-nav__icon md-icon"></span>
|
|
4869
5028
|
GraphQL
|
|
4870
5029
|
</label>
|
|
@@ -4937,7 +5096,7 @@
|
|
|
4937
5096
|
|
|
4938
5097
|
|
|
4939
5098
|
|
|
4940
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5099
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_12" >
|
|
4941
5100
|
|
|
4942
5101
|
|
|
4943
5102
|
|
|
@@ -4953,14 +5112,14 @@
|
|
|
4953
5112
|
</a>
|
|
4954
5113
|
|
|
4955
5114
|
|
|
4956
|
-
<label class="md-nav__link " for="
|
|
5115
|
+
<label class="md-nav__link " for="__nav_2_4_12" id="__nav_2_4_12_label" tabindex="0">
|
|
4957
5116
|
<span class="md-nav__icon md-icon"></span>
|
|
4958
5117
|
</label>
|
|
4959
5118
|
|
|
4960
5119
|
</div>
|
|
4961
5120
|
|
|
4962
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4963
|
-
<label class="md-nav__title" for="
|
|
5121
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_12_label" aria-expanded="false">
|
|
5122
|
+
<label class="md-nav__title" for="__nav_2_4_12">
|
|
4964
5123
|
<span class="md-nav__icon md-icon"></span>
|
|
4965
5124
|
Jobs
|
|
4966
5125
|
</label>
|
|
@@ -5035,6 +5194,27 @@
|
|
|
5035
5194
|
|
|
5036
5195
|
|
|
5037
5196
|
|
|
5197
|
+
<li class="md-nav__item">
|
|
5198
|
+
<a href="../user-guide/platform-functionality/jobs/jobqueue.html" class="md-nav__link">
|
|
5199
|
+
|
|
5200
|
+
|
|
5201
|
+
<span class="md-ellipsis">
|
|
5202
|
+
Job Queues
|
|
5203
|
+
</span>
|
|
5204
|
+
|
|
5205
|
+
|
|
5206
|
+
</a>
|
|
5207
|
+
</li>
|
|
5208
|
+
|
|
5209
|
+
|
|
5210
|
+
|
|
5211
|
+
|
|
5212
|
+
|
|
5213
|
+
|
|
5214
|
+
|
|
5215
|
+
|
|
5216
|
+
|
|
5217
|
+
|
|
5038
5218
|
<li class="md-nav__item">
|
|
5039
5219
|
<a href="../user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html" class="md-nav__link">
|
|
5040
5220
|
|
|
@@ -5148,6 +5328,27 @@
|
|
|
5148
5328
|
|
|
5149
5329
|
|
|
5150
5330
|
|
|
5331
|
+
<li class="md-nav__item">
|
|
5332
|
+
<a href="../user-guide/platform-functionality/rendering-jinja-templates.html" class="md-nav__link">
|
|
5333
|
+
|
|
5334
|
+
|
|
5335
|
+
<span class="md-ellipsis">
|
|
5336
|
+
Rendering Jinja Templates
|
|
5337
|
+
</span>
|
|
5338
|
+
|
|
5339
|
+
|
|
5340
|
+
</a>
|
|
5341
|
+
</li>
|
|
5342
|
+
|
|
5343
|
+
|
|
5344
|
+
|
|
5345
|
+
|
|
5346
|
+
|
|
5347
|
+
|
|
5348
|
+
|
|
5349
|
+
|
|
5350
|
+
|
|
5351
|
+
|
|
5151
5352
|
|
|
5152
5353
|
|
|
5153
5354
|
|
|
@@ -5159,7 +5360,7 @@
|
|
|
5159
5360
|
|
|
5160
5361
|
|
|
5161
5362
|
|
|
5162
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5363
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_18" >
|
|
5163
5364
|
|
|
5164
5365
|
|
|
5165
5366
|
|
|
@@ -5175,14 +5376,14 @@
|
|
|
5175
5376
|
</a>
|
|
5176
5377
|
|
|
5177
5378
|
|
|
5178
|
-
<label class="md-nav__link " for="
|
|
5379
|
+
<label class="md-nav__link " for="__nav_2_4_18" id="__nav_2_4_18_label" tabindex="0">
|
|
5179
5380
|
<span class="md-nav__icon md-icon"></span>
|
|
5180
5381
|
</label>
|
|
5181
5382
|
|
|
5182
5383
|
</div>
|
|
5183
5384
|
|
|
5184
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
5185
|
-
<label class="md-nav__title" for="
|
|
5385
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_18_label" aria-expanded="false">
|
|
5386
|
+
<label class="md-nav__title" for="__nav_2_4_18">
|
|
5186
5387
|
<span class="md-nav__icon md-icon"></span>
|
|
5187
5388
|
REST API
|
|
5188
5389
|
</label>
|
|
@@ -5402,10 +5603,10 @@
|
|
|
5402
5603
|
|
|
5403
5604
|
|
|
5404
5605
|
|
|
5405
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5606
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_25" >
|
|
5406
5607
|
|
|
5407
5608
|
|
|
5408
|
-
<label class="md-nav__link" for="
|
|
5609
|
+
<label class="md-nav__link" for="__nav_2_4_25" id="__nav_2_4_25_label" tabindex="0">
|
|
5409
5610
|
|
|
5410
5611
|
|
|
5411
5612
|
<span class="md-ellipsis">
|
|
@@ -5416,8 +5617,8 @@
|
|
|
5416
5617
|
<span class="md-nav__icon md-icon"></span>
|
|
5417
5618
|
</label>
|
|
5418
5619
|
|
|
5419
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
5420
|
-
<label class="md-nav__title" for="
|
|
5620
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_25_label" aria-expanded="false">
|
|
5621
|
+
<label class="md-nav__title" for="__nav_2_4_25">
|
|
5421
5622
|
<span class="md-nav__icon md-icon"></span>
|
|
5422
5623
|
Users
|
|
5423
5624
|
</label>
|
|
@@ -6822,6 +7023,27 @@
|
|
|
6822
7023
|
|
|
6823
7024
|
|
|
6824
7025
|
|
|
7026
|
+
<li class="md-nav__item">
|
|
7027
|
+
<a href="../code-reference/nautobot/apps/events.html" class="md-nav__link">
|
|
7028
|
+
|
|
7029
|
+
|
|
7030
|
+
<span class="md-ellipsis">
|
|
7031
|
+
nautobot.apps.events
|
|
7032
|
+
</span>
|
|
7033
|
+
|
|
7034
|
+
|
|
7035
|
+
</a>
|
|
7036
|
+
</li>
|
|
7037
|
+
|
|
7038
|
+
|
|
7039
|
+
|
|
7040
|
+
|
|
7041
|
+
|
|
7042
|
+
|
|
7043
|
+
|
|
7044
|
+
|
|
7045
|
+
|
|
7046
|
+
|
|
6825
7047
|
<li class="md-nav__item">
|
|
6826
7048
|
<a href="../code-reference/nautobot/apps/exceptions.html" class="md-nav__link">
|
|
6827
7049
|
|
|
@@ -7370,14 +7592,6 @@
|
|
|
7370
7592
|
|
|
7371
7593
|
|
|
7372
7594
|
|
|
7373
|
-
</ul>
|
|
7374
|
-
</nav>
|
|
7375
|
-
|
|
7376
|
-
</li>
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
7595
|
|
|
7382
7596
|
|
|
7383
7597
|
|
|
@@ -7395,24 +7609,32 @@
|
|
|
7395
7609
|
|
|
7396
7610
|
|
|
7397
7611
|
|
|
7398
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
7612
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_5" >
|
|
7399
7613
|
|
|
7400
7614
|
|
|
7401
|
-
|
|
7402
|
-
|
|
7615
|
+
|
|
7616
|
+
<div class="md-nav__link md-nav__container">
|
|
7617
|
+
<a href="../development/apps/migration/ui-component-framework/index.html" class="md-nav__link ">
|
|
7618
|
+
|
|
7403
7619
|
|
|
7404
7620
|
<span class="md-ellipsis">
|
|
7405
|
-
|
|
7621
|
+
UI Component Framework
|
|
7406
7622
|
</span>
|
|
7407
7623
|
|
|
7408
7624
|
|
|
7409
|
-
|
|
7410
|
-
|
|
7625
|
+
</a>
|
|
7626
|
+
|
|
7627
|
+
|
|
7628
|
+
<label class="md-nav__link " for="__nav_3_2_9_5" id="__nav_3_2_9_5_label" tabindex="0">
|
|
7629
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7630
|
+
</label>
|
|
7631
|
+
|
|
7632
|
+
</div>
|
|
7411
7633
|
|
|
7412
|
-
<nav class="md-nav" data-md-level="
|
|
7413
|
-
<label class="md-nav__title" for="
|
|
7634
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_3_2_9_5_label" aria-expanded="false">
|
|
7635
|
+
<label class="md-nav__title" for="__nav_3_2_9_5">
|
|
7414
7636
|
<span class="md-nav__icon md-icon"></span>
|
|
7415
|
-
|
|
7637
|
+
UI Component Framework
|
|
7416
7638
|
</label>
|
|
7417
7639
|
<ul class="md-nav__list" data-md-scrollfix>
|
|
7418
7640
|
|
|
@@ -7423,11 +7645,11 @@
|
|
|
7423
7645
|
|
|
7424
7646
|
|
|
7425
7647
|
<li class="md-nav__item">
|
|
7426
|
-
<a href="../development/apps/
|
|
7648
|
+
<a href="../development/apps/migration/ui-component-framework/migration-steps.html" class="md-nav__link">
|
|
7427
7649
|
|
|
7428
7650
|
|
|
7429
7651
|
<span class="md-ellipsis">
|
|
7430
|
-
|
|
7652
|
+
Migration steps
|
|
7431
7653
|
</span>
|
|
7432
7654
|
|
|
7433
7655
|
|
|
@@ -7437,17 +7659,22 @@
|
|
|
7437
7659
|
|
|
7438
7660
|
|
|
7439
7661
|
|
|
7440
|
-
|
|
7441
|
-
|
|
7442
|
-
|
|
7443
|
-
|
|
7662
|
+
|
|
7663
|
+
|
|
7664
|
+
|
|
7665
|
+
|
|
7666
|
+
|
|
7667
|
+
|
|
7668
|
+
<li class="md-nav__item">
|
|
7669
|
+
<a href="../development/apps/migration/ui-component-framework/custom-content.html" class="md-nav__link">
|
|
7670
|
+
|
|
7671
|
+
|
|
7672
|
+
<span class="md-ellipsis">
|
|
7673
|
+
Custom content
|
|
7674
|
+
</span>
|
|
7444
7675
|
|
|
7445
7676
|
|
|
7446
|
-
|
|
7447
|
-
|
|
7448
|
-
</ul>
|
|
7449
|
-
</nav>
|
|
7450
|
-
|
|
7677
|
+
</a>
|
|
7451
7678
|
</li>
|
|
7452
7679
|
|
|
7453
7680
|
|
|
@@ -7459,13 +7686,125 @@
|
|
|
7459
7686
|
|
|
7460
7687
|
|
|
7461
7688
|
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7468
|
-
|
|
7689
|
+
<li class="md-nav__item">
|
|
7690
|
+
<a href="../development/apps/migration/ui-component-framework/best-practices.html" class="md-nav__link">
|
|
7691
|
+
|
|
7692
|
+
|
|
7693
|
+
<span class="md-ellipsis">
|
|
7694
|
+
Best practices
|
|
7695
|
+
</span>
|
|
7696
|
+
|
|
7697
|
+
|
|
7698
|
+
</a>
|
|
7699
|
+
</li>
|
|
7700
|
+
|
|
7701
|
+
|
|
7702
|
+
|
|
7703
|
+
|
|
7704
|
+
</ul>
|
|
7705
|
+
</nav>
|
|
7706
|
+
|
|
7707
|
+
</li>
|
|
7708
|
+
|
|
7709
|
+
|
|
7710
|
+
|
|
7711
|
+
|
|
7712
|
+
</ul>
|
|
7713
|
+
</nav>
|
|
7714
|
+
|
|
7715
|
+
</li>
|
|
7716
|
+
|
|
7717
|
+
|
|
7718
|
+
|
|
7719
|
+
|
|
7720
|
+
|
|
7721
|
+
|
|
7722
|
+
|
|
7723
|
+
|
|
7724
|
+
|
|
7725
|
+
|
|
7726
|
+
|
|
7727
|
+
|
|
7728
|
+
|
|
7729
|
+
|
|
7730
|
+
|
|
7731
|
+
|
|
7732
|
+
|
|
7733
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7734
|
+
|
|
7735
|
+
|
|
7736
|
+
|
|
7737
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
7738
|
+
|
|
7739
|
+
|
|
7740
|
+
<label class="md-nav__link" for="__nav_3_2_10" id="__nav_3_2_10_label" tabindex="0">
|
|
7741
|
+
|
|
7742
|
+
|
|
7743
|
+
<span class="md-ellipsis">
|
|
7744
|
+
Advanced
|
|
7745
|
+
</span>
|
|
7746
|
+
|
|
7747
|
+
|
|
7748
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7749
|
+
</label>
|
|
7750
|
+
|
|
7751
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_10_label" aria-expanded="false">
|
|
7752
|
+
<label class="md-nav__title" for="__nav_3_2_10">
|
|
7753
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7754
|
+
Advanced
|
|
7755
|
+
</label>
|
|
7756
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
7757
|
+
|
|
7758
|
+
|
|
7759
|
+
|
|
7760
|
+
|
|
7761
|
+
|
|
7762
|
+
|
|
7763
|
+
|
|
7764
|
+
<li class="md-nav__item">
|
|
7765
|
+
<a href="../development/apps/porting-from-netbox.html" class="md-nav__link">
|
|
7766
|
+
|
|
7767
|
+
|
|
7768
|
+
<span class="md-ellipsis">
|
|
7769
|
+
Porting NetBox Plugins to Nautobot
|
|
7770
|
+
</span>
|
|
7771
|
+
|
|
7772
|
+
|
|
7773
|
+
</a>
|
|
7774
|
+
</li>
|
|
7775
|
+
|
|
7776
|
+
|
|
7777
|
+
|
|
7778
|
+
|
|
7779
|
+
</ul>
|
|
7780
|
+
</nav>
|
|
7781
|
+
|
|
7782
|
+
</li>
|
|
7783
|
+
|
|
7784
|
+
|
|
7785
|
+
|
|
7786
|
+
|
|
7787
|
+
</ul>
|
|
7788
|
+
</nav>
|
|
7789
|
+
|
|
7790
|
+
</li>
|
|
7791
|
+
|
|
7792
|
+
|
|
7793
|
+
|
|
7794
|
+
|
|
7795
|
+
|
|
7796
|
+
|
|
7797
|
+
|
|
7798
|
+
|
|
7799
|
+
|
|
7800
|
+
|
|
7801
|
+
|
|
7802
|
+
|
|
7803
|
+
|
|
7804
|
+
|
|
7805
|
+
|
|
7806
|
+
|
|
7807
|
+
|
|
7469
7808
|
<li class="md-nav__item md-nav__item--nested">
|
|
7470
7809
|
|
|
7471
7810
|
|
|
@@ -7715,6 +8054,27 @@
|
|
|
7715
8054
|
|
|
7716
8055
|
|
|
7717
8056
|
|
|
8057
|
+
<li class="md-nav__item">
|
|
8058
|
+
<a href="../development/core/local-k8s.html" class="md-nav__link">
|
|
8059
|
+
|
|
8060
|
+
|
|
8061
|
+
<span class="md-ellipsis">
|
|
8062
|
+
Local Kubernetes Cluster
|
|
8063
|
+
</span>
|
|
8064
|
+
|
|
8065
|
+
|
|
8066
|
+
</a>
|
|
8067
|
+
</li>
|
|
8068
|
+
|
|
8069
|
+
|
|
8070
|
+
|
|
8071
|
+
|
|
8072
|
+
|
|
8073
|
+
|
|
8074
|
+
|
|
8075
|
+
|
|
8076
|
+
|
|
8077
|
+
|
|
7718
8078
|
<li class="md-nav__item">
|
|
7719
8079
|
<a href="../development/core/model-checklist.html" class="md-nav__link">
|
|
7720
8080
|
|
|
@@ -7904,6 +8264,27 @@
|
|
|
7904
8264
|
|
|
7905
8265
|
|
|
7906
8266
|
|
|
8267
|
+
<li class="md-nav__item">
|
|
8268
|
+
<a href="../development/core/ui-component-framework.html" class="md-nav__link">
|
|
8269
|
+
|
|
8270
|
+
|
|
8271
|
+
<span class="md-ellipsis">
|
|
8272
|
+
UI Component Framework
|
|
8273
|
+
</span>
|
|
8274
|
+
|
|
8275
|
+
|
|
8276
|
+
</a>
|
|
8277
|
+
</li>
|
|
8278
|
+
|
|
8279
|
+
|
|
8280
|
+
|
|
8281
|
+
|
|
8282
|
+
|
|
8283
|
+
|
|
8284
|
+
|
|
8285
|
+
|
|
8286
|
+
|
|
8287
|
+
|
|
7907
8288
|
<li class="md-nav__item">
|
|
7908
8289
|
<a href="../development/core/release-checklist.html" class="md-nav__link">
|
|
7909
8290
|
|
|
@@ -7991,6 +8372,27 @@
|
|
|
7991
8372
|
|
|
7992
8373
|
|
|
7993
8374
|
|
|
8375
|
+
<li class="md-nav__item">
|
|
8376
|
+
<a href="version-2.4.html" class="md-nav__link">
|
|
8377
|
+
|
|
8378
|
+
|
|
8379
|
+
<span class="md-ellipsis">
|
|
8380
|
+
Version 2.4
|
|
8381
|
+
</span>
|
|
8382
|
+
|
|
8383
|
+
|
|
8384
|
+
</a>
|
|
8385
|
+
</li>
|
|
8386
|
+
|
|
8387
|
+
|
|
8388
|
+
|
|
8389
|
+
|
|
8390
|
+
|
|
8391
|
+
|
|
8392
|
+
|
|
8393
|
+
|
|
8394
|
+
|
|
8395
|
+
|
|
7994
8396
|
<li class="md-nav__item">
|
|
7995
8397
|
<a href="version-2.3.html" class="md-nav__link">
|
|
7996
8398
|
|
|
@@ -8269,195 +8671,6 @@
|
|
|
8269
8671
|
</ul>
|
|
8270
8672
|
</nav>
|
|
8271
8673
|
|
|
8272
|
-
</li>
|
|
8273
|
-
|
|
8274
|
-
<li class="md-nav__item">
|
|
8275
|
-
<a href="#v1629-2024-12-09" class="md-nav__link">
|
|
8276
|
-
<span class="md-ellipsis">
|
|
8277
|
-
v1.6.29 (2024-12-09)
|
|
8278
|
-
</span>
|
|
8279
|
-
</a>
|
|
8280
|
-
|
|
8281
|
-
<nav class="md-nav" aria-label="v1.6.29 (2024-12-09)">
|
|
8282
|
-
<ul class="md-nav__list">
|
|
8283
|
-
|
|
8284
|
-
<li class="md-nav__item">
|
|
8285
|
-
<a href="#security" class="md-nav__link">
|
|
8286
|
-
<span class="md-ellipsis">
|
|
8287
|
-
Security
|
|
8288
|
-
</span>
|
|
8289
|
-
</a>
|
|
8290
|
-
|
|
8291
|
-
</li>
|
|
8292
|
-
|
|
8293
|
-
<li class="md-nav__item">
|
|
8294
|
-
<a href="#fixed" class="md-nav__link">
|
|
8295
|
-
<span class="md-ellipsis">
|
|
8296
|
-
Fixed
|
|
8297
|
-
</span>
|
|
8298
|
-
</a>
|
|
8299
|
-
|
|
8300
|
-
</li>
|
|
8301
|
-
|
|
8302
|
-
</ul>
|
|
8303
|
-
</nav>
|
|
8304
|
-
|
|
8305
|
-
</li>
|
|
8306
|
-
|
|
8307
|
-
<li class="md-nav__item">
|
|
8308
|
-
<a href="#v1628-2024-09-24" class="md-nav__link">
|
|
8309
|
-
<span class="md-ellipsis">
|
|
8310
|
-
v1.6.28 (2024-09-24)
|
|
8311
|
-
</span>
|
|
8312
|
-
</a>
|
|
8313
|
-
|
|
8314
|
-
<nav class="md-nav" aria-label="v1.6.28 (2024-09-24)">
|
|
8315
|
-
<ul class="md-nav__list">
|
|
8316
|
-
|
|
8317
|
-
<li class="md-nav__item">
|
|
8318
|
-
<a href="#fixed_1" class="md-nav__link">
|
|
8319
|
-
<span class="md-ellipsis">
|
|
8320
|
-
Fixed
|
|
8321
|
-
</span>
|
|
8322
|
-
</a>
|
|
8323
|
-
|
|
8324
|
-
</li>
|
|
8325
|
-
|
|
8326
|
-
<li class="md-nav__item">
|
|
8327
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8328
|
-
<span class="md-ellipsis">
|
|
8329
|
-
Housekeeping
|
|
8330
|
-
</span>
|
|
8331
|
-
</a>
|
|
8332
|
-
|
|
8333
|
-
</li>
|
|
8334
|
-
|
|
8335
|
-
</ul>
|
|
8336
|
-
</nav>
|
|
8337
|
-
|
|
8338
|
-
</li>
|
|
8339
|
-
|
|
8340
|
-
<li class="md-nav__item">
|
|
8341
|
-
<a href="#v1627-2024-09-03" class="md-nav__link">
|
|
8342
|
-
<span class="md-ellipsis">
|
|
8343
|
-
v1.6.27 (2024-09-03)
|
|
8344
|
-
</span>
|
|
8345
|
-
</a>
|
|
8346
|
-
|
|
8347
|
-
<nav class="md-nav" aria-label="v1.6.27 (2024-09-03)">
|
|
8348
|
-
<ul class="md-nav__list">
|
|
8349
|
-
|
|
8350
|
-
<li class="md-nav__item">
|
|
8351
|
-
<a href="#security_1" class="md-nav__link">
|
|
8352
|
-
<span class="md-ellipsis">
|
|
8353
|
-
Security
|
|
8354
|
-
</span>
|
|
8355
|
-
</a>
|
|
8356
|
-
|
|
8357
|
-
</li>
|
|
8358
|
-
|
|
8359
|
-
<li class="md-nav__item">
|
|
8360
|
-
<a href="#fixed_2" class="md-nav__link">
|
|
8361
|
-
<span class="md-ellipsis">
|
|
8362
|
-
Fixed
|
|
8363
|
-
</span>
|
|
8364
|
-
</a>
|
|
8365
|
-
|
|
8366
|
-
</li>
|
|
8367
|
-
|
|
8368
|
-
</ul>
|
|
8369
|
-
</nav>
|
|
8370
|
-
|
|
8371
|
-
</li>
|
|
8372
|
-
|
|
8373
|
-
<li class="md-nav__item">
|
|
8374
|
-
<a href="#v1626-2024-07-22" class="md-nav__link">
|
|
8375
|
-
<span class="md-ellipsis">
|
|
8376
|
-
v1.6.26 (2024-07-22)
|
|
8377
|
-
</span>
|
|
8378
|
-
</a>
|
|
8379
|
-
|
|
8380
|
-
<nav class="md-nav" aria-label="v1.6.26 (2024-07-22)">
|
|
8381
|
-
<ul class="md-nav__list">
|
|
8382
|
-
|
|
8383
|
-
<li class="md-nav__item">
|
|
8384
|
-
<a href="#fixed_3" class="md-nav__link">
|
|
8385
|
-
<span class="md-ellipsis">
|
|
8386
|
-
Fixed
|
|
8387
|
-
</span>
|
|
8388
|
-
</a>
|
|
8389
|
-
|
|
8390
|
-
</li>
|
|
8391
|
-
|
|
8392
|
-
</ul>
|
|
8393
|
-
</nav>
|
|
8394
|
-
|
|
8395
|
-
</li>
|
|
8396
|
-
|
|
8397
|
-
<li class="md-nav__item">
|
|
8398
|
-
<a href="#v1625-2024-07-09" class="md-nav__link">
|
|
8399
|
-
<span class="md-ellipsis">
|
|
8400
|
-
v1.6.25 (2024-07-09)
|
|
8401
|
-
</span>
|
|
8402
|
-
</a>
|
|
8403
|
-
|
|
8404
|
-
<nav class="md-nav" aria-label="v1.6.25 (2024-07-09)">
|
|
8405
|
-
<ul class="md-nav__list">
|
|
8406
|
-
|
|
8407
|
-
<li class="md-nav__item">
|
|
8408
|
-
<a href="#security_2" class="md-nav__link">
|
|
8409
|
-
<span class="md-ellipsis">
|
|
8410
|
-
Security
|
|
8411
|
-
</span>
|
|
8412
|
-
</a>
|
|
8413
|
-
|
|
8414
|
-
</li>
|
|
8415
|
-
|
|
8416
|
-
<li class="md-nav__item">
|
|
8417
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8418
|
-
<span class="md-ellipsis">
|
|
8419
|
-
Dependencies
|
|
8420
|
-
</span>
|
|
8421
|
-
</a>
|
|
8422
|
-
|
|
8423
|
-
</li>
|
|
8424
|
-
|
|
8425
|
-
</ul>
|
|
8426
|
-
</nav>
|
|
8427
|
-
|
|
8428
|
-
</li>
|
|
8429
|
-
|
|
8430
|
-
<li class="md-nav__item">
|
|
8431
|
-
<a href="#v1624-2024-06-24" class="md-nav__link">
|
|
8432
|
-
<span class="md-ellipsis">
|
|
8433
|
-
v1.6.24 (2024-06-24)
|
|
8434
|
-
</span>
|
|
8435
|
-
</a>
|
|
8436
|
-
|
|
8437
|
-
<nav class="md-nav" aria-label="v1.6.24 (2024-06-24)">
|
|
8438
|
-
<ul class="md-nav__list">
|
|
8439
|
-
|
|
8440
|
-
<li class="md-nav__item">
|
|
8441
|
-
<a href="#security_3" class="md-nav__link">
|
|
8442
|
-
<span class="md-ellipsis">
|
|
8443
|
-
Security
|
|
8444
|
-
</span>
|
|
8445
|
-
</a>
|
|
8446
|
-
|
|
8447
|
-
</li>
|
|
8448
|
-
|
|
8449
|
-
<li class="md-nav__item">
|
|
8450
|
-
<a href="#housekeeping_1" class="md-nav__link">
|
|
8451
|
-
<span class="md-ellipsis">
|
|
8452
|
-
Housekeeping
|
|
8453
|
-
</span>
|
|
8454
|
-
</a>
|
|
8455
|
-
|
|
8456
|
-
</li>
|
|
8457
|
-
|
|
8458
|
-
</ul>
|
|
8459
|
-
</nav>
|
|
8460
|
-
|
|
8461
8674
|
</li>
|
|
8462
8675
|
|
|
8463
8676
|
<li class="md-nav__item">
|
|
@@ -8471,7 +8684,7 @@
|
|
|
8471
8684
|
<ul class="md-nav__list">
|
|
8472
8685
|
|
|
8473
8686
|
<li class="md-nav__item">
|
|
8474
|
-
<a href="#
|
|
8687
|
+
<a href="#security" class="md-nav__link">
|
|
8475
8688
|
<span class="md-ellipsis">
|
|
8476
8689
|
Security
|
|
8477
8690
|
</span>
|
|
@@ -8480,7 +8693,7 @@
|
|
|
8480
8693
|
</li>
|
|
8481
8694
|
|
|
8482
8695
|
<li class="md-nav__item">
|
|
8483
|
-
<a href="#
|
|
8696
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8484
8697
|
<span class="md-ellipsis">
|
|
8485
8698
|
Housekeeping
|
|
8486
8699
|
</span>
|
|
@@ -8504,7 +8717,7 @@
|
|
|
8504
8717
|
<ul class="md-nav__list">
|
|
8505
8718
|
|
|
8506
8719
|
<li class="md-nav__item">
|
|
8507
|
-
<a href="#
|
|
8720
|
+
<a href="#security_1" class="md-nav__link">
|
|
8508
8721
|
<span class="md-ellipsis">
|
|
8509
8722
|
Security
|
|
8510
8723
|
</span>
|
|
@@ -8522,7 +8735,7 @@
|
|
|
8522
8735
|
</li>
|
|
8523
8736
|
|
|
8524
8737
|
<li class="md-nav__item">
|
|
8525
|
-
<a href="#
|
|
8738
|
+
<a href="#fixed" class="md-nav__link">
|
|
8526
8739
|
<span class="md-ellipsis">
|
|
8527
8740
|
Fixed
|
|
8528
8741
|
</span>
|
|
@@ -8546,7 +8759,7 @@
|
|
|
8546
8759
|
<ul class="md-nav__list">
|
|
8547
8760
|
|
|
8548
8761
|
<li class="md-nav__item">
|
|
8549
|
-
<a href="#
|
|
8762
|
+
<a href="#security_2" class="md-nav__link">
|
|
8550
8763
|
<span class="md-ellipsis">
|
|
8551
8764
|
Security
|
|
8552
8765
|
</span>
|
|
@@ -8570,7 +8783,7 @@
|
|
|
8570
8783
|
<ul class="md-nav__list">
|
|
8571
8784
|
|
|
8572
8785
|
<li class="md-nav__item">
|
|
8573
|
-
<a href="#
|
|
8786
|
+
<a href="#security_3" class="md-nav__link">
|
|
8574
8787
|
<span class="md-ellipsis">
|
|
8575
8788
|
Security
|
|
8576
8789
|
</span>
|
|
@@ -8579,7 +8792,7 @@
|
|
|
8579
8792
|
</li>
|
|
8580
8793
|
|
|
8581
8794
|
<li class="md-nav__item">
|
|
8582
|
-
<a href="#
|
|
8795
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8583
8796
|
<span class="md-ellipsis">
|
|
8584
8797
|
Fixed
|
|
8585
8798
|
</span>
|
|
@@ -8603,7 +8816,7 @@
|
|
|
8603
8816
|
<ul class="md-nav__list">
|
|
8604
8817
|
|
|
8605
8818
|
<li class="md-nav__item">
|
|
8606
|
-
<a href="#
|
|
8819
|
+
<a href="#security_4" class="md-nav__link">
|
|
8607
8820
|
<span class="md-ellipsis">
|
|
8608
8821
|
Security
|
|
8609
8822
|
</span>
|
|
@@ -8612,7 +8825,7 @@
|
|
|
8612
8825
|
</li>
|
|
8613
8826
|
|
|
8614
8827
|
<li class="md-nav__item">
|
|
8615
|
-
<a href="#
|
|
8828
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8616
8829
|
<span class="md-ellipsis">
|
|
8617
8830
|
Fixed
|
|
8618
8831
|
</span>
|
|
@@ -8636,7 +8849,7 @@
|
|
|
8636
8849
|
<ul class="md-nav__list">
|
|
8637
8850
|
|
|
8638
8851
|
<li class="md-nav__item">
|
|
8639
|
-
<a href="#
|
|
8852
|
+
<a href="#security_5" class="md-nav__link">
|
|
8640
8853
|
<span class="md-ellipsis">
|
|
8641
8854
|
Security
|
|
8642
8855
|
</span>
|
|
@@ -8645,7 +8858,7 @@
|
|
|
8645
8858
|
</li>
|
|
8646
8859
|
|
|
8647
8860
|
<li class="md-nav__item">
|
|
8648
|
-
<a href="#
|
|
8861
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8649
8862
|
<span class="md-ellipsis">
|
|
8650
8863
|
Dependencies
|
|
8651
8864
|
</span>
|
|
@@ -8669,7 +8882,7 @@
|
|
|
8669
8882
|
<ul class="md-nav__list">
|
|
8670
8883
|
|
|
8671
8884
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
8885
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8673
8886
|
<span class="md-ellipsis">
|
|
8674
8887
|
Dependencies
|
|
8675
8888
|
</span>
|
|
@@ -8693,7 +8906,7 @@
|
|
|
8693
8906
|
<ul class="md-nav__list">
|
|
8694
8907
|
|
|
8695
8908
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#
|
|
8909
|
+
<a href="#security_6" class="md-nav__link">
|
|
8697
8910
|
<span class="md-ellipsis">
|
|
8698
8911
|
Security
|
|
8699
8912
|
</span>
|
|
@@ -8720,7 +8933,7 @@
|
|
|
8720
8933
|
</li>
|
|
8721
8934
|
|
|
8722
8935
|
<li class="md-nav__item">
|
|
8723
|
-
<a href="#
|
|
8936
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8724
8937
|
<span class="md-ellipsis">
|
|
8725
8938
|
Fixed
|
|
8726
8939
|
</span>
|
|
@@ -8738,7 +8951,7 @@
|
|
|
8738
8951
|
</li>
|
|
8739
8952
|
|
|
8740
8953
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
8954
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8742
8955
|
<span class="md-ellipsis">
|
|
8743
8956
|
Housekeeping
|
|
8744
8957
|
</span>
|
|
@@ -8771,7 +8984,7 @@
|
|
|
8771
8984
|
</li>
|
|
8772
8985
|
|
|
8773
8986
|
<li class="md-nav__item">
|
|
8774
|
-
<a href="#
|
|
8987
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8775
8988
|
<span class="md-ellipsis">
|
|
8776
8989
|
Fixed
|
|
8777
8990
|
</span>
|
|
@@ -8780,7 +8993,7 @@
|
|
|
8780
8993
|
</li>
|
|
8781
8994
|
|
|
8782
8995
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
8996
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8784
8997
|
<span class="md-ellipsis">
|
|
8785
8998
|
Housekeeping
|
|
8786
8999
|
</span>
|
|
@@ -8804,7 +9017,7 @@
|
|
|
8804
9017
|
<ul class="md-nav__list">
|
|
8805
9018
|
|
|
8806
9019
|
<li class="md-nav__item">
|
|
8807
|
-
<a href="#
|
|
9020
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8808
9021
|
<span class="md-ellipsis">
|
|
8809
9022
|
Fixed
|
|
8810
9023
|
</span>
|
|
@@ -8846,7 +9059,7 @@
|
|
|
8846
9059
|
</li>
|
|
8847
9060
|
|
|
8848
9061
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
9062
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8850
9063
|
<span class="md-ellipsis">
|
|
8851
9064
|
Fixed
|
|
8852
9065
|
</span>
|
|
@@ -8888,7 +9101,7 @@
|
|
|
8888
9101
|
</li>
|
|
8889
9102
|
|
|
8890
9103
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
9104
|
+
<a href="#security_7" class="md-nav__link">
|
|
8892
9105
|
<span class="md-ellipsis">
|
|
8893
9106
|
Security
|
|
8894
9107
|
</span>
|
|
@@ -8906,7 +9119,7 @@
|
|
|
8906
9119
|
</li>
|
|
8907
9120
|
|
|
8908
9121
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
9122
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8910
9123
|
<span class="md-ellipsis">
|
|
8911
9124
|
Fixed
|
|
8912
9125
|
</span>
|
|
@@ -8930,7 +9143,7 @@
|
|
|
8930
9143
|
<ul class="md-nav__list">
|
|
8931
9144
|
|
|
8932
9145
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#
|
|
9146
|
+
<a href="#security_8" class="md-nav__link">
|
|
8934
9147
|
<span class="md-ellipsis">
|
|
8935
9148
|
Security
|
|
8936
9149
|
</span>
|
|
@@ -8948,7 +9161,7 @@
|
|
|
8948
9161
|
</li>
|
|
8949
9162
|
|
|
8950
9163
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
9164
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8952
9165
|
<span class="md-ellipsis">
|
|
8953
9166
|
Fixed
|
|
8954
9167
|
</span>
|
|
@@ -8972,7 +9185,7 @@
|
|
|
8972
9185
|
<ul class="md-nav__list">
|
|
8973
9186
|
|
|
8974
9187
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9188
|
+
<a href="#security_9" class="md-nav__link">
|
|
8976
9189
|
<span class="md-ellipsis">
|
|
8977
9190
|
Security
|
|
8978
9191
|
</span>
|
|
@@ -8999,7 +9212,7 @@
|
|
|
8999
9212
|
</li>
|
|
9000
9213
|
|
|
9001
9214
|
<li class="md-nav__item">
|
|
9002
|
-
<a href="#
|
|
9215
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9003
9216
|
<span class="md-ellipsis">
|
|
9004
9217
|
Dependencies
|
|
9005
9218
|
</span>
|
|
@@ -9023,7 +9236,7 @@
|
|
|
9023
9236
|
<ul class="md-nav__list">
|
|
9024
9237
|
|
|
9025
9238
|
<li class="md-nav__item">
|
|
9026
|
-
<a href="#
|
|
9239
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9027
9240
|
<span class="md-ellipsis">
|
|
9028
9241
|
Fixed
|
|
9029
9242
|
</span>
|
|
@@ -9047,7 +9260,7 @@
|
|
|
9047
9260
|
<ul class="md-nav__list">
|
|
9048
9261
|
|
|
9049
9262
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
9263
|
+
<a href="#security_10" class="md-nav__link">
|
|
9051
9264
|
<span class="md-ellipsis">
|
|
9052
9265
|
Security
|
|
9053
9266
|
</span>
|
|
@@ -9074,7 +9287,7 @@
|
|
|
9074
9287
|
</li>
|
|
9075
9288
|
|
|
9076
9289
|
<li class="md-nav__item">
|
|
9077
|
-
<a href="#
|
|
9290
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9078
9291
|
<span class="md-ellipsis">
|
|
9079
9292
|
Fixed
|
|
9080
9293
|
</span>
|
|
@@ -9083,7 +9296,7 @@
|
|
|
9083
9296
|
</li>
|
|
9084
9297
|
|
|
9085
9298
|
<li class="md-nav__item">
|
|
9086
|
-
<a href="#
|
|
9299
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9087
9300
|
<span class="md-ellipsis">
|
|
9088
9301
|
Housekeeping
|
|
9089
9302
|
</span>
|
|
@@ -9107,7 +9320,7 @@
|
|
|
9107
9320
|
<ul class="md-nav__list">
|
|
9108
9321
|
|
|
9109
9322
|
<li class="md-nav__item">
|
|
9110
|
-
<a href="#
|
|
9323
|
+
<a href="#security_11" class="md-nav__link">
|
|
9111
9324
|
<span class="md-ellipsis">
|
|
9112
9325
|
Security
|
|
9113
9326
|
</span>
|
|
@@ -9134,7 +9347,7 @@
|
|
|
9134
9347
|
</li>
|
|
9135
9348
|
|
|
9136
9349
|
<li class="md-nav__item">
|
|
9137
|
-
<a href="#
|
|
9350
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
9138
9351
|
<span class="md-ellipsis">
|
|
9139
9352
|
Fixed
|
|
9140
9353
|
</span>
|
|
@@ -9158,7 +9371,7 @@
|
|
|
9158
9371
|
<ul class="md-nav__list">
|
|
9159
9372
|
|
|
9160
9373
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9374
|
+
<a href="#security_12" class="md-nav__link">
|
|
9162
9375
|
<span class="md-ellipsis">
|
|
9163
9376
|
Security
|
|
9164
9377
|
</span>
|
|
@@ -9176,7 +9389,7 @@
|
|
|
9176
9389
|
</li>
|
|
9177
9390
|
|
|
9178
9391
|
<li class="md-nav__item">
|
|
9179
|
-
<a href="#
|
|
9392
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
9180
9393
|
<span class="md-ellipsis">
|
|
9181
9394
|
Fixed
|
|
9182
9395
|
</span>
|
|
@@ -9185,7 +9398,7 @@
|
|
|
9185
9398
|
</li>
|
|
9186
9399
|
|
|
9187
9400
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9401
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9189
9402
|
<span class="md-ellipsis">
|
|
9190
9403
|
Dependencies
|
|
9191
9404
|
</span>
|
|
@@ -9194,7 +9407,7 @@
|
|
|
9194
9407
|
</li>
|
|
9195
9408
|
|
|
9196
9409
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9410
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9198
9411
|
<span class="md-ellipsis">
|
|
9199
9412
|
Housekeeping
|
|
9200
9413
|
</span>
|
|
@@ -9218,7 +9431,7 @@
|
|
|
9218
9431
|
<ul class="md-nav__list">
|
|
9219
9432
|
|
|
9220
9433
|
<li class="md-nav__item">
|
|
9221
|
-
<a href="#
|
|
9434
|
+
<a href="#security_13" class="md-nav__link">
|
|
9222
9435
|
<span class="md-ellipsis">
|
|
9223
9436
|
Security
|
|
9224
9437
|
</span>
|
|
@@ -9236,7 +9449,7 @@
|
|
|
9236
9449
|
</li>
|
|
9237
9450
|
|
|
9238
9451
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9452
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
9240
9453
|
<span class="md-ellipsis">
|
|
9241
9454
|
Fixed
|
|
9242
9455
|
</span>
|
|
@@ -9254,7 +9467,7 @@
|
|
|
9254
9467
|
</li>
|
|
9255
9468
|
|
|
9256
9469
|
<li class="md-nav__item">
|
|
9257
|
-
<a href="#
|
|
9470
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9258
9471
|
<span class="md-ellipsis">
|
|
9259
9472
|
Housekeeping
|
|
9260
9473
|
</span>
|
|
@@ -9305,7 +9518,7 @@
|
|
|
9305
9518
|
</li>
|
|
9306
9519
|
|
|
9307
9520
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9521
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9309
9522
|
<span class="md-ellipsis">
|
|
9310
9523
|
Housekeeping
|
|
9311
9524
|
</span>
|
|
@@ -9329,7 +9542,7 @@
|
|
|
9329
9542
|
<ul class="md-nav__list">
|
|
9330
9543
|
|
|
9331
9544
|
<li class="md-nav__item">
|
|
9332
|
-
<a href="#
|
|
9545
|
+
<a href="#security_14" class="md-nav__link">
|
|
9333
9546
|
<span class="md-ellipsis">
|
|
9334
9547
|
Security
|
|
9335
9548
|
</span>
|
|
@@ -9347,7 +9560,7 @@
|
|
|
9347
9560
|
</li>
|
|
9348
9561
|
|
|
9349
9562
|
<li class="md-nav__item">
|
|
9350
|
-
<a href="#
|
|
9563
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
9351
9564
|
<span class="md-ellipsis">
|
|
9352
9565
|
Fixed
|
|
9353
9566
|
</span>
|
|
@@ -9356,7 +9569,7 @@
|
|
|
9356
9569
|
</li>
|
|
9357
9570
|
|
|
9358
9571
|
<li class="md-nav__item">
|
|
9359
|
-
<a href="#
|
|
9572
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9360
9573
|
<span class="md-ellipsis">
|
|
9361
9574
|
Housekeeping
|
|
9362
9575
|
</span>
|
|
@@ -9398,7 +9611,7 @@
|
|
|
9398
9611
|
</li>
|
|
9399
9612
|
|
|
9400
9613
|
<li class="md-nav__item">
|
|
9401
|
-
<a href="#
|
|
9614
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
9402
9615
|
<span class="md-ellipsis">
|
|
9403
9616
|
Fixed
|
|
9404
9617
|
</span>
|
|
@@ -9416,7 +9629,7 @@
|
|
|
9416
9629
|
</li>
|
|
9417
9630
|
|
|
9418
9631
|
<li class="md-nav__item">
|
|
9419
|
-
<a href="#
|
|
9632
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9420
9633
|
<span class="md-ellipsis">
|
|
9421
9634
|
Housekeeping
|
|
9422
9635
|
</span>
|
|
@@ -9449,7 +9662,7 @@
|
|
|
9449
9662
|
</li>
|
|
9450
9663
|
|
|
9451
9664
|
<li class="md-nav__item">
|
|
9452
|
-
<a href="#
|
|
9665
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
9453
9666
|
<span class="md-ellipsis">
|
|
9454
9667
|
Fixed
|
|
9455
9668
|
</span>
|
|
@@ -9467,7 +9680,7 @@
|
|
|
9467
9680
|
</li>
|
|
9468
9681
|
|
|
9469
9682
|
<li class="md-nav__item">
|
|
9470
|
-
<a href="#
|
|
9683
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
9471
9684
|
<span class="md-ellipsis">
|
|
9472
9685
|
Housekeeping
|
|
9473
9686
|
</span>
|
|
@@ -9500,7 +9713,7 @@
|
|
|
9500
9713
|
</li>
|
|
9501
9714
|
|
|
9502
9715
|
<li class="md-nav__item">
|
|
9503
|
-
<a href="#
|
|
9716
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
9504
9717
|
<span class="md-ellipsis">
|
|
9505
9718
|
Fixed
|
|
9506
9719
|
</span>
|
|
@@ -9509,7 +9722,7 @@
|
|
|
9509
9722
|
</li>
|
|
9510
9723
|
|
|
9511
9724
|
<li class="md-nav__item">
|
|
9512
|
-
<a href="#
|
|
9725
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9513
9726
|
<span class="md-ellipsis">
|
|
9514
9727
|
Dependencies
|
|
9515
9728
|
</span>
|
|
@@ -9569,7 +9782,7 @@
|
|
|
9569
9782
|
</li>
|
|
9570
9783
|
|
|
9571
9784
|
<li class="md-nav__item">
|
|
9572
|
-
<a href="#
|
|
9785
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
9573
9786
|
<span class="md-ellipsis">
|
|
9574
9787
|
Fixed
|
|
9575
9788
|
</span>
|
|
@@ -9578,7 +9791,7 @@
|
|
|
9578
9791
|
</li>
|
|
9579
9792
|
|
|
9580
9793
|
<li class="md-nav__item">
|
|
9581
|
-
<a href="#
|
|
9794
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
9582
9795
|
<span class="md-ellipsis">
|
|
9583
9796
|
Dependencies
|
|
9584
9797
|
</span>
|
|
@@ -10165,201 +10378,7 @@
|
|
|
10165
10378
|
<li class="md-nav__item">
|
|
10166
10379
|
<a href="#python-311-support-3561" class="md-nav__link">
|
|
10167
10380
|
<span class="md-ellipsis">
|
|
10168
|
-
Python 3.11 Support (#3561)
|
|
10169
|
-
</span>
|
|
10170
|
-
</a>
|
|
10171
|
-
|
|
10172
|
-
</li>
|
|
10173
|
-
|
|
10174
|
-
</ul>
|
|
10175
|
-
</nav>
|
|
10176
|
-
|
|
10177
|
-
</li>
|
|
10178
|
-
|
|
10179
|
-
<li class="md-nav__item">
|
|
10180
|
-
<a href="#changed" class="md-nav__link">
|
|
10181
|
-
<span class="md-ellipsis">
|
|
10182
|
-
Changed
|
|
10183
|
-
</span>
|
|
10184
|
-
</a>
|
|
10185
|
-
|
|
10186
|
-
<nav class="md-nav" aria-label="Changed">
|
|
10187
|
-
<ul class="md-nav__list">
|
|
10188
|
-
|
|
10189
|
-
<li class="md-nav__item">
|
|
10190
|
-
<a href="#additional-hide_restricted_ui-effects-for-unauthenticated-users-3646" class="md-nav__link">
|
|
10191
|
-
<span class="md-ellipsis">
|
|
10192
|
-
Additional HIDE_RESTRICTED_UI Effects for Unauthenticated Users (#3646)
|
|
10193
|
-
</span>
|
|
10194
|
-
</a>
|
|
10195
|
-
|
|
10196
|
-
</li>
|
|
10197
|
-
|
|
10198
|
-
<li class="md-nav__item">
|
|
10199
|
-
<a href="#increased-deviceasset_tag-maximum-length-3693" class="md-nav__link">
|
|
10200
|
-
<span class="md-ellipsis">
|
|
10201
|
-
Increased Device.asset_tag maximum length (#3693)
|
|
10202
|
-
</span>
|
|
10203
|
-
</a>
|
|
10204
|
-
|
|
10205
|
-
</li>
|
|
10206
|
-
|
|
10207
|
-
<li class="md-nav__item">
|
|
10208
|
-
<a href="#changed-default-python-version-for-docker-images-4029" class="md-nav__link">
|
|
10209
|
-
<span class="md-ellipsis">
|
|
10210
|
-
Changed Default Python Version for Docker Images (#4029)
|
|
10211
|
-
</span>
|
|
10212
|
-
</a>
|
|
10213
|
-
|
|
10214
|
-
</li>
|
|
10215
|
-
|
|
10216
|
-
</ul>
|
|
10217
|
-
</nav>
|
|
10218
|
-
|
|
10219
|
-
</li>
|
|
10220
|
-
|
|
10221
|
-
<li class="md-nav__item">
|
|
10222
|
-
<a href="#removed" class="md-nav__link">
|
|
10223
|
-
<span class="md-ellipsis">
|
|
10224
|
-
Removed
|
|
10225
|
-
</span>
|
|
10226
|
-
</a>
|
|
10227
|
-
|
|
10228
|
-
<nav class="md-nav" aria-label="Removed">
|
|
10229
|
-
<ul class="md-nav__list">
|
|
10230
|
-
|
|
10231
|
-
<li class="md-nav__item">
|
|
10232
|
-
<a href="#removed-python-37-support-3561" class="md-nav__link">
|
|
10233
|
-
<span class="md-ellipsis">
|
|
10234
|
-
Removed Python 3.7 Support (#3561)
|
|
10235
|
-
</span>
|
|
10236
|
-
</a>
|
|
10237
|
-
|
|
10238
|
-
</li>
|
|
10239
|
-
|
|
10240
|
-
</ul>
|
|
10241
|
-
</nav>
|
|
10242
|
-
|
|
10243
|
-
</li>
|
|
10244
|
-
|
|
10245
|
-
</ul>
|
|
10246
|
-
</nav>
|
|
10247
|
-
|
|
10248
|
-
</li>
|
|
10249
|
-
|
|
10250
|
-
<li class="md-nav__item">
|
|
10251
|
-
<a href="#v1629-2024-12-09" class="md-nav__link">
|
|
10252
|
-
<span class="md-ellipsis">
|
|
10253
|
-
v1.6.29 (2024-12-09)
|
|
10254
|
-
</span>
|
|
10255
|
-
</a>
|
|
10256
|
-
|
|
10257
|
-
<nav class="md-nav" aria-label="v1.6.29 (2024-12-09)">
|
|
10258
|
-
<ul class="md-nav__list">
|
|
10259
|
-
|
|
10260
|
-
<li class="md-nav__item">
|
|
10261
|
-
<a href="#security" class="md-nav__link">
|
|
10262
|
-
<span class="md-ellipsis">
|
|
10263
|
-
Security
|
|
10264
|
-
</span>
|
|
10265
|
-
</a>
|
|
10266
|
-
|
|
10267
|
-
</li>
|
|
10268
|
-
|
|
10269
|
-
<li class="md-nav__item">
|
|
10270
|
-
<a href="#fixed" class="md-nav__link">
|
|
10271
|
-
<span class="md-ellipsis">
|
|
10272
|
-
Fixed
|
|
10273
|
-
</span>
|
|
10274
|
-
</a>
|
|
10275
|
-
|
|
10276
|
-
</li>
|
|
10277
|
-
|
|
10278
|
-
</ul>
|
|
10279
|
-
</nav>
|
|
10280
|
-
|
|
10281
|
-
</li>
|
|
10282
|
-
|
|
10283
|
-
<li class="md-nav__item">
|
|
10284
|
-
<a href="#v1628-2024-09-24" class="md-nav__link">
|
|
10285
|
-
<span class="md-ellipsis">
|
|
10286
|
-
v1.6.28 (2024-09-24)
|
|
10287
|
-
</span>
|
|
10288
|
-
</a>
|
|
10289
|
-
|
|
10290
|
-
<nav class="md-nav" aria-label="v1.6.28 (2024-09-24)">
|
|
10291
|
-
<ul class="md-nav__list">
|
|
10292
|
-
|
|
10293
|
-
<li class="md-nav__item">
|
|
10294
|
-
<a href="#fixed_1" class="md-nav__link">
|
|
10295
|
-
<span class="md-ellipsis">
|
|
10296
|
-
Fixed
|
|
10297
|
-
</span>
|
|
10298
|
-
</a>
|
|
10299
|
-
|
|
10300
|
-
</li>
|
|
10301
|
-
|
|
10302
|
-
<li class="md-nav__item">
|
|
10303
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10304
|
-
<span class="md-ellipsis">
|
|
10305
|
-
Housekeeping
|
|
10306
|
-
</span>
|
|
10307
|
-
</a>
|
|
10308
|
-
|
|
10309
|
-
</li>
|
|
10310
|
-
|
|
10311
|
-
</ul>
|
|
10312
|
-
</nav>
|
|
10313
|
-
|
|
10314
|
-
</li>
|
|
10315
|
-
|
|
10316
|
-
<li class="md-nav__item">
|
|
10317
|
-
<a href="#v1627-2024-09-03" class="md-nav__link">
|
|
10318
|
-
<span class="md-ellipsis">
|
|
10319
|
-
v1.6.27 (2024-09-03)
|
|
10320
|
-
</span>
|
|
10321
|
-
</a>
|
|
10322
|
-
|
|
10323
|
-
<nav class="md-nav" aria-label="v1.6.27 (2024-09-03)">
|
|
10324
|
-
<ul class="md-nav__list">
|
|
10325
|
-
|
|
10326
|
-
<li class="md-nav__item">
|
|
10327
|
-
<a href="#security_1" class="md-nav__link">
|
|
10328
|
-
<span class="md-ellipsis">
|
|
10329
|
-
Security
|
|
10330
|
-
</span>
|
|
10331
|
-
</a>
|
|
10332
|
-
|
|
10333
|
-
</li>
|
|
10334
|
-
|
|
10335
|
-
<li class="md-nav__item">
|
|
10336
|
-
<a href="#fixed_2" class="md-nav__link">
|
|
10337
|
-
<span class="md-ellipsis">
|
|
10338
|
-
Fixed
|
|
10339
|
-
</span>
|
|
10340
|
-
</a>
|
|
10341
|
-
|
|
10342
|
-
</li>
|
|
10343
|
-
|
|
10344
|
-
</ul>
|
|
10345
|
-
</nav>
|
|
10346
|
-
|
|
10347
|
-
</li>
|
|
10348
|
-
|
|
10349
|
-
<li class="md-nav__item">
|
|
10350
|
-
<a href="#v1626-2024-07-22" class="md-nav__link">
|
|
10351
|
-
<span class="md-ellipsis">
|
|
10352
|
-
v1.6.26 (2024-07-22)
|
|
10353
|
-
</span>
|
|
10354
|
-
</a>
|
|
10355
|
-
|
|
10356
|
-
<nav class="md-nav" aria-label="v1.6.26 (2024-07-22)">
|
|
10357
|
-
<ul class="md-nav__list">
|
|
10358
|
-
|
|
10359
|
-
<li class="md-nav__item">
|
|
10360
|
-
<a href="#fixed_3" class="md-nav__link">
|
|
10361
|
-
<span class="md-ellipsis">
|
|
10362
|
-
Fixed
|
|
10381
|
+
Python 3.11 Support (#3561)
|
|
10363
10382
|
</span>
|
|
10364
10383
|
</a>
|
|
10365
10384
|
|
|
@@ -10369,30 +10388,39 @@
|
|
|
10369
10388
|
</nav>
|
|
10370
10389
|
|
|
10371
10390
|
</li>
|
|
10372
|
-
|
|
10373
|
-
|
|
10374
|
-
<a href="#
|
|
10391
|
+
|
|
10392
|
+
<li class="md-nav__item">
|
|
10393
|
+
<a href="#changed" class="md-nav__link">
|
|
10375
10394
|
<span class="md-ellipsis">
|
|
10376
|
-
|
|
10395
|
+
Changed
|
|
10377
10396
|
</span>
|
|
10378
10397
|
</a>
|
|
10379
10398
|
|
|
10380
|
-
<nav class="md-nav" aria-label="
|
|
10399
|
+
<nav class="md-nav" aria-label="Changed">
|
|
10381
10400
|
<ul class="md-nav__list">
|
|
10382
10401
|
|
|
10383
10402
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10403
|
+
<a href="#additional-hide_restricted_ui-effects-for-unauthenticated-users-3646" class="md-nav__link">
|
|
10385
10404
|
<span class="md-ellipsis">
|
|
10386
|
-
|
|
10405
|
+
Additional HIDE_RESTRICTED_UI Effects for Unauthenticated Users (#3646)
|
|
10387
10406
|
</span>
|
|
10388
10407
|
</a>
|
|
10389
10408
|
|
|
10390
10409
|
</li>
|
|
10391
10410
|
|
|
10392
10411
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
10412
|
+
<a href="#increased-deviceasset_tag-maximum-length-3693" class="md-nav__link">
|
|
10394
10413
|
<span class="md-ellipsis">
|
|
10395
|
-
|
|
10414
|
+
Increased Device.asset_tag maximum length (#3693)
|
|
10415
|
+
</span>
|
|
10416
|
+
</a>
|
|
10417
|
+
|
|
10418
|
+
</li>
|
|
10419
|
+
|
|
10420
|
+
<li class="md-nav__item">
|
|
10421
|
+
<a href="#changed-default-python-version-for-docker-images-4029" class="md-nav__link">
|
|
10422
|
+
<span class="md-ellipsis">
|
|
10423
|
+
Changed Default Python Version for Docker Images (#4029)
|
|
10396
10424
|
</span>
|
|
10397
10425
|
</a>
|
|
10398
10426
|
|
|
@@ -10402,32 +10430,28 @@
|
|
|
10402
10430
|
</nav>
|
|
10403
10431
|
|
|
10404
10432
|
</li>
|
|
10405
|
-
|
|
10406
|
-
|
|
10407
|
-
<a href="#
|
|
10433
|
+
|
|
10434
|
+
<li class="md-nav__item">
|
|
10435
|
+
<a href="#removed" class="md-nav__link">
|
|
10408
10436
|
<span class="md-ellipsis">
|
|
10409
|
-
|
|
10437
|
+
Removed
|
|
10410
10438
|
</span>
|
|
10411
10439
|
</a>
|
|
10412
10440
|
|
|
10413
|
-
<nav class="md-nav" aria-label="
|
|
10441
|
+
<nav class="md-nav" aria-label="Removed">
|
|
10414
10442
|
<ul class="md-nav__list">
|
|
10415
10443
|
|
|
10416
10444
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10445
|
+
<a href="#removed-python-37-support-3561" class="md-nav__link">
|
|
10418
10446
|
<span class="md-ellipsis">
|
|
10419
|
-
|
|
10447
|
+
Removed Python 3.7 Support (#3561)
|
|
10420
10448
|
</span>
|
|
10421
10449
|
</a>
|
|
10422
10450
|
|
|
10423
10451
|
</li>
|
|
10424
10452
|
|
|
10425
|
-
|
|
10426
|
-
|
|
10427
|
-
<span class="md-ellipsis">
|
|
10428
|
-
Housekeeping
|
|
10429
|
-
</span>
|
|
10430
|
-
</a>
|
|
10453
|
+
</ul>
|
|
10454
|
+
</nav>
|
|
10431
10455
|
|
|
10432
10456
|
</li>
|
|
10433
10457
|
|
|
@@ -10447,7 +10471,7 @@
|
|
|
10447
10471
|
<ul class="md-nav__list">
|
|
10448
10472
|
|
|
10449
10473
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10474
|
+
<a href="#security" class="md-nav__link">
|
|
10451
10475
|
<span class="md-ellipsis">
|
|
10452
10476
|
Security
|
|
10453
10477
|
</span>
|
|
@@ -10456,7 +10480,7 @@
|
|
|
10456
10480
|
</li>
|
|
10457
10481
|
|
|
10458
10482
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
10483
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10460
10484
|
<span class="md-ellipsis">
|
|
10461
10485
|
Housekeeping
|
|
10462
10486
|
</span>
|
|
@@ -10480,7 +10504,7 @@
|
|
|
10480
10504
|
<ul class="md-nav__list">
|
|
10481
10505
|
|
|
10482
10506
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
10507
|
+
<a href="#security_1" class="md-nav__link">
|
|
10484
10508
|
<span class="md-ellipsis">
|
|
10485
10509
|
Security
|
|
10486
10510
|
</span>
|
|
@@ -10498,7 +10522,7 @@
|
|
|
10498
10522
|
</li>
|
|
10499
10523
|
|
|
10500
10524
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10525
|
+
<a href="#fixed" class="md-nav__link">
|
|
10502
10526
|
<span class="md-ellipsis">
|
|
10503
10527
|
Fixed
|
|
10504
10528
|
</span>
|
|
@@ -10522,7 +10546,7 @@
|
|
|
10522
10546
|
<ul class="md-nav__list">
|
|
10523
10547
|
|
|
10524
10548
|
<li class="md-nav__item">
|
|
10525
|
-
<a href="#
|
|
10549
|
+
<a href="#security_2" class="md-nav__link">
|
|
10526
10550
|
<span class="md-ellipsis">
|
|
10527
10551
|
Security
|
|
10528
10552
|
</span>
|
|
@@ -10546,7 +10570,7 @@
|
|
|
10546
10570
|
<ul class="md-nav__list">
|
|
10547
10571
|
|
|
10548
10572
|
<li class="md-nav__item">
|
|
10549
|
-
<a href="#
|
|
10573
|
+
<a href="#security_3" class="md-nav__link">
|
|
10550
10574
|
<span class="md-ellipsis">
|
|
10551
10575
|
Security
|
|
10552
10576
|
</span>
|
|
@@ -10555,7 +10579,7 @@
|
|
|
10555
10579
|
</li>
|
|
10556
10580
|
|
|
10557
10581
|
<li class="md-nav__item">
|
|
10558
|
-
<a href="#
|
|
10582
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10559
10583
|
<span class="md-ellipsis">
|
|
10560
10584
|
Fixed
|
|
10561
10585
|
</span>
|
|
@@ -10579,7 +10603,7 @@
|
|
|
10579
10603
|
<ul class="md-nav__list">
|
|
10580
10604
|
|
|
10581
10605
|
<li class="md-nav__item">
|
|
10582
|
-
<a href="#
|
|
10606
|
+
<a href="#security_4" class="md-nav__link">
|
|
10583
10607
|
<span class="md-ellipsis">
|
|
10584
10608
|
Security
|
|
10585
10609
|
</span>
|
|
@@ -10588,7 +10612,7 @@
|
|
|
10588
10612
|
</li>
|
|
10589
10613
|
|
|
10590
10614
|
<li class="md-nav__item">
|
|
10591
|
-
<a href="#
|
|
10615
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10592
10616
|
<span class="md-ellipsis">
|
|
10593
10617
|
Fixed
|
|
10594
10618
|
</span>
|
|
@@ -10612,7 +10636,7 @@
|
|
|
10612
10636
|
<ul class="md-nav__list">
|
|
10613
10637
|
|
|
10614
10638
|
<li class="md-nav__item">
|
|
10615
|
-
<a href="#
|
|
10639
|
+
<a href="#security_5" class="md-nav__link">
|
|
10616
10640
|
<span class="md-ellipsis">
|
|
10617
10641
|
Security
|
|
10618
10642
|
</span>
|
|
@@ -10621,7 +10645,7 @@
|
|
|
10621
10645
|
</li>
|
|
10622
10646
|
|
|
10623
10647
|
<li class="md-nav__item">
|
|
10624
|
-
<a href="#
|
|
10648
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10625
10649
|
<span class="md-ellipsis">
|
|
10626
10650
|
Dependencies
|
|
10627
10651
|
</span>
|
|
@@ -10645,7 +10669,7 @@
|
|
|
10645
10669
|
<ul class="md-nav__list">
|
|
10646
10670
|
|
|
10647
10671
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
10672
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10649
10673
|
<span class="md-ellipsis">
|
|
10650
10674
|
Dependencies
|
|
10651
10675
|
</span>
|
|
@@ -10669,7 +10693,7 @@
|
|
|
10669
10693
|
<ul class="md-nav__list">
|
|
10670
10694
|
|
|
10671
10695
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10696
|
+
<a href="#security_6" class="md-nav__link">
|
|
10673
10697
|
<span class="md-ellipsis">
|
|
10674
10698
|
Security
|
|
10675
10699
|
</span>
|
|
@@ -10696,7 +10720,7 @@
|
|
|
10696
10720
|
</li>
|
|
10697
10721
|
|
|
10698
10722
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
10723
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10700
10724
|
<span class="md-ellipsis">
|
|
10701
10725
|
Fixed
|
|
10702
10726
|
</span>
|
|
@@ -10714,7 +10738,7 @@
|
|
|
10714
10738
|
</li>
|
|
10715
10739
|
|
|
10716
10740
|
<li class="md-nav__item">
|
|
10717
|
-
<a href="#
|
|
10741
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10718
10742
|
<span class="md-ellipsis">
|
|
10719
10743
|
Housekeeping
|
|
10720
10744
|
</span>
|
|
@@ -10747,7 +10771,7 @@
|
|
|
10747
10771
|
</li>
|
|
10748
10772
|
|
|
10749
10773
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10774
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10751
10775
|
<span class="md-ellipsis">
|
|
10752
10776
|
Fixed
|
|
10753
10777
|
</span>
|
|
@@ -10756,7 +10780,7 @@
|
|
|
10756
10780
|
</li>
|
|
10757
10781
|
|
|
10758
10782
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
10783
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10760
10784
|
<span class="md-ellipsis">
|
|
10761
10785
|
Housekeeping
|
|
10762
10786
|
</span>
|
|
@@ -10780,7 +10804,7 @@
|
|
|
10780
10804
|
<ul class="md-nav__list">
|
|
10781
10805
|
|
|
10782
10806
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
10807
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10784
10808
|
<span class="md-ellipsis">
|
|
10785
10809
|
Fixed
|
|
10786
10810
|
</span>
|
|
@@ -10822,7 +10846,7 @@
|
|
|
10822
10846
|
</li>
|
|
10823
10847
|
|
|
10824
10848
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
10849
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10826
10850
|
<span class="md-ellipsis">
|
|
10827
10851
|
Fixed
|
|
10828
10852
|
</span>
|
|
@@ -10864,7 +10888,7 @@
|
|
|
10864
10888
|
</li>
|
|
10865
10889
|
|
|
10866
10890
|
<li class="md-nav__item">
|
|
10867
|
-
<a href="#
|
|
10891
|
+
<a href="#security_7" class="md-nav__link">
|
|
10868
10892
|
<span class="md-ellipsis">
|
|
10869
10893
|
Security
|
|
10870
10894
|
</span>
|
|
@@ -10882,7 +10906,7 @@
|
|
|
10882
10906
|
</li>
|
|
10883
10907
|
|
|
10884
10908
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
10909
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10886
10910
|
<span class="md-ellipsis">
|
|
10887
10911
|
Fixed
|
|
10888
10912
|
</span>
|
|
@@ -10906,7 +10930,7 @@
|
|
|
10906
10930
|
<ul class="md-nav__list">
|
|
10907
10931
|
|
|
10908
10932
|
<li class="md-nav__item">
|
|
10909
|
-
<a href="#
|
|
10933
|
+
<a href="#security_8" class="md-nav__link">
|
|
10910
10934
|
<span class="md-ellipsis">
|
|
10911
10935
|
Security
|
|
10912
10936
|
</span>
|
|
@@ -10924,7 +10948,7 @@
|
|
|
10924
10948
|
</li>
|
|
10925
10949
|
|
|
10926
10950
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
10951
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10928
10952
|
<span class="md-ellipsis">
|
|
10929
10953
|
Fixed
|
|
10930
10954
|
</span>
|
|
@@ -10948,7 +10972,7 @@
|
|
|
10948
10972
|
<ul class="md-nav__list">
|
|
10949
10973
|
|
|
10950
10974
|
<li class="md-nav__item">
|
|
10951
|
-
<a href="#
|
|
10975
|
+
<a href="#security_9" class="md-nav__link">
|
|
10952
10976
|
<span class="md-ellipsis">
|
|
10953
10977
|
Security
|
|
10954
10978
|
</span>
|
|
@@ -10975,7 +10999,7 @@
|
|
|
10975
10999
|
</li>
|
|
10976
11000
|
|
|
10977
11001
|
<li class="md-nav__item">
|
|
10978
|
-
<a href="#
|
|
11002
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10979
11003
|
<span class="md-ellipsis">
|
|
10980
11004
|
Dependencies
|
|
10981
11005
|
</span>
|
|
@@ -10999,7 +11023,7 @@
|
|
|
10999
11023
|
<ul class="md-nav__list">
|
|
11000
11024
|
|
|
11001
11025
|
<li class="md-nav__item">
|
|
11002
|
-
<a href="#
|
|
11026
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
11003
11027
|
<span class="md-ellipsis">
|
|
11004
11028
|
Fixed
|
|
11005
11029
|
</span>
|
|
@@ -11023,7 +11047,7 @@
|
|
|
11023
11047
|
<ul class="md-nav__list">
|
|
11024
11048
|
|
|
11025
11049
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
11050
|
+
<a href="#security_10" class="md-nav__link">
|
|
11027
11051
|
<span class="md-ellipsis">
|
|
11028
11052
|
Security
|
|
11029
11053
|
</span>
|
|
@@ -11050,7 +11074,7 @@
|
|
|
11050
11074
|
</li>
|
|
11051
11075
|
|
|
11052
11076
|
<li class="md-nav__item">
|
|
11053
|
-
<a href="#
|
|
11077
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
11054
11078
|
<span class="md-ellipsis">
|
|
11055
11079
|
Fixed
|
|
11056
11080
|
</span>
|
|
@@ -11059,7 +11083,7 @@
|
|
|
11059
11083
|
</li>
|
|
11060
11084
|
|
|
11061
11085
|
<li class="md-nav__item">
|
|
11062
|
-
<a href="#
|
|
11086
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
11063
11087
|
<span class="md-ellipsis">
|
|
11064
11088
|
Housekeeping
|
|
11065
11089
|
</span>
|
|
@@ -11083,7 +11107,7 @@
|
|
|
11083
11107
|
<ul class="md-nav__list">
|
|
11084
11108
|
|
|
11085
11109
|
<li class="md-nav__item">
|
|
11086
|
-
<a href="#
|
|
11110
|
+
<a href="#security_11" class="md-nav__link">
|
|
11087
11111
|
<span class="md-ellipsis">
|
|
11088
11112
|
Security
|
|
11089
11113
|
</span>
|
|
@@ -11110,7 +11134,7 @@
|
|
|
11110
11134
|
</li>
|
|
11111
11135
|
|
|
11112
11136
|
<li class="md-nav__item">
|
|
11113
|
-
<a href="#
|
|
11137
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
11114
11138
|
<span class="md-ellipsis">
|
|
11115
11139
|
Fixed
|
|
11116
11140
|
</span>
|
|
@@ -11134,7 +11158,7 @@
|
|
|
11134
11158
|
<ul class="md-nav__list">
|
|
11135
11159
|
|
|
11136
11160
|
<li class="md-nav__item">
|
|
11137
|
-
<a href="#
|
|
11161
|
+
<a href="#security_12" class="md-nav__link">
|
|
11138
11162
|
<span class="md-ellipsis">
|
|
11139
11163
|
Security
|
|
11140
11164
|
</span>
|
|
@@ -11152,7 +11176,7 @@
|
|
|
11152
11176
|
</li>
|
|
11153
11177
|
|
|
11154
11178
|
<li class="md-nav__item">
|
|
11155
|
-
<a href="#
|
|
11179
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
11156
11180
|
<span class="md-ellipsis">
|
|
11157
11181
|
Fixed
|
|
11158
11182
|
</span>
|
|
@@ -11161,7 +11185,7 @@
|
|
|
11161
11185
|
</li>
|
|
11162
11186
|
|
|
11163
11187
|
<li class="md-nav__item">
|
|
11164
|
-
<a href="#
|
|
11188
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
11165
11189
|
<span class="md-ellipsis">
|
|
11166
11190
|
Dependencies
|
|
11167
11191
|
</span>
|
|
@@ -11170,7 +11194,7 @@
|
|
|
11170
11194
|
</li>
|
|
11171
11195
|
|
|
11172
11196
|
<li class="md-nav__item">
|
|
11173
|
-
<a href="#
|
|
11197
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
11174
11198
|
<span class="md-ellipsis">
|
|
11175
11199
|
Housekeeping
|
|
11176
11200
|
</span>
|
|
@@ -11194,7 +11218,7 @@
|
|
|
11194
11218
|
<ul class="md-nav__list">
|
|
11195
11219
|
|
|
11196
11220
|
<li class="md-nav__item">
|
|
11197
|
-
<a href="#
|
|
11221
|
+
<a href="#security_13" class="md-nav__link">
|
|
11198
11222
|
<span class="md-ellipsis">
|
|
11199
11223
|
Security
|
|
11200
11224
|
</span>
|
|
@@ -11212,7 +11236,7 @@
|
|
|
11212
11236
|
</li>
|
|
11213
11237
|
|
|
11214
11238
|
<li class="md-nav__item">
|
|
11215
|
-
<a href="#
|
|
11239
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
11216
11240
|
<span class="md-ellipsis">
|
|
11217
11241
|
Fixed
|
|
11218
11242
|
</span>
|
|
@@ -11230,7 +11254,7 @@
|
|
|
11230
11254
|
</li>
|
|
11231
11255
|
|
|
11232
11256
|
<li class="md-nav__item">
|
|
11233
|
-
<a href="#
|
|
11257
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
11234
11258
|
<span class="md-ellipsis">
|
|
11235
11259
|
Housekeeping
|
|
11236
11260
|
</span>
|
|
@@ -11281,7 +11305,7 @@
|
|
|
11281
11305
|
</li>
|
|
11282
11306
|
|
|
11283
11307
|
<li class="md-nav__item">
|
|
11284
|
-
<a href="#
|
|
11308
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
11285
11309
|
<span class="md-ellipsis">
|
|
11286
11310
|
Housekeeping
|
|
11287
11311
|
</span>
|
|
@@ -11305,7 +11329,7 @@
|
|
|
11305
11329
|
<ul class="md-nav__list">
|
|
11306
11330
|
|
|
11307
11331
|
<li class="md-nav__item">
|
|
11308
|
-
<a href="#
|
|
11332
|
+
<a href="#security_14" class="md-nav__link">
|
|
11309
11333
|
<span class="md-ellipsis">
|
|
11310
11334
|
Security
|
|
11311
11335
|
</span>
|
|
@@ -11323,7 +11347,7 @@
|
|
|
11323
11347
|
</li>
|
|
11324
11348
|
|
|
11325
11349
|
<li class="md-nav__item">
|
|
11326
|
-
<a href="#
|
|
11350
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
11327
11351
|
<span class="md-ellipsis">
|
|
11328
11352
|
Fixed
|
|
11329
11353
|
</span>
|
|
@@ -11332,7 +11356,7 @@
|
|
|
11332
11356
|
</li>
|
|
11333
11357
|
|
|
11334
11358
|
<li class="md-nav__item">
|
|
11335
|
-
<a href="#
|
|
11359
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
11336
11360
|
<span class="md-ellipsis">
|
|
11337
11361
|
Housekeeping
|
|
11338
11362
|
</span>
|
|
@@ -11374,7 +11398,7 @@
|
|
|
11374
11398
|
</li>
|
|
11375
11399
|
|
|
11376
11400
|
<li class="md-nav__item">
|
|
11377
|
-
<a href="#
|
|
11401
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
11378
11402
|
<span class="md-ellipsis">
|
|
11379
11403
|
Fixed
|
|
11380
11404
|
</span>
|
|
@@ -11392,7 +11416,7 @@
|
|
|
11392
11416
|
</li>
|
|
11393
11417
|
|
|
11394
11418
|
<li class="md-nav__item">
|
|
11395
|
-
<a href="#
|
|
11419
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
11396
11420
|
<span class="md-ellipsis">
|
|
11397
11421
|
Housekeeping
|
|
11398
11422
|
</span>
|
|
@@ -11425,7 +11449,7 @@
|
|
|
11425
11449
|
</li>
|
|
11426
11450
|
|
|
11427
11451
|
<li class="md-nav__item">
|
|
11428
|
-
<a href="#
|
|
11452
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
11429
11453
|
<span class="md-ellipsis">
|
|
11430
11454
|
Fixed
|
|
11431
11455
|
</span>
|
|
@@ -11443,7 +11467,7 @@
|
|
|
11443
11467
|
</li>
|
|
11444
11468
|
|
|
11445
11469
|
<li class="md-nav__item">
|
|
11446
|
-
<a href="#
|
|
11470
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
11447
11471
|
<span class="md-ellipsis">
|
|
11448
11472
|
Housekeeping
|
|
11449
11473
|
</span>
|
|
@@ -11476,7 +11500,7 @@
|
|
|
11476
11500
|
</li>
|
|
11477
11501
|
|
|
11478
11502
|
<li class="md-nav__item">
|
|
11479
|
-
<a href="#
|
|
11503
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
11480
11504
|
<span class="md-ellipsis">
|
|
11481
11505
|
Fixed
|
|
11482
11506
|
</span>
|
|
@@ -11485,7 +11509,7 @@
|
|
|
11485
11509
|
</li>
|
|
11486
11510
|
|
|
11487
11511
|
<li class="md-nav__item">
|
|
11488
|
-
<a href="#
|
|
11512
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
11489
11513
|
<span class="md-ellipsis">
|
|
11490
11514
|
Dependencies
|
|
11491
11515
|
</span>
|
|
@@ -11545,7 +11569,7 @@
|
|
|
11545
11569
|
</li>
|
|
11546
11570
|
|
|
11547
11571
|
<li class="md-nav__item">
|
|
11548
|
-
<a href="#
|
|
11572
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
11549
11573
|
<span class="md-ellipsis">
|
|
11550
11574
|
Fixed
|
|
11551
11575
|
</span>
|
|
@@ -11554,7 +11578,7 @@
|
|
|
11554
11578
|
</li>
|
|
11555
11579
|
|
|
11556
11580
|
<li class="md-nav__item">
|
|
11557
|
-
<a href="#
|
|
11581
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
11558
11582
|
<span class="md-ellipsis">
|
|
11559
11583
|
Dependencies
|
|
11560
11584
|
</span>
|
|
@@ -11637,75 +11661,18 @@
|
|
|
11637
11661
|
<h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">¶</a></h4>
|
|
11638
11662
|
<p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
|
|
11639
11663
|
<!-- towncrier release notes start -->
|
|
11640
|
-
<h2 id="v1629-2024-12-09">v1.6.29 (2024-12-09)<a class="headerlink" href="#v1629-2024-12-09" title="Permanent link">¶</a></h2>
|
|
11641
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11642
|
-
<ul>
|
|
11643
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.2</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11644
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6625">#6625</a> - Patched <code>set_values()</code> method of Query class from django.db.models.sql.query to address <code>CVE-2024-42005</code>.</li>
|
|
11645
|
-
</ul>
|
|
11646
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11647
|
-
<ul>
|
|
11648
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
|
|
11649
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed a bug in the Dockerfile that prevented <code>docker build</code> from working on some platforms.</li>
|
|
11650
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed Docker builds failing in Gitlab CI.</li>
|
|
11651
|
-
</ul>
|
|
11652
|
-
<h2 id="v1628-2024-09-24">v1.6.28 (2024-09-24)<a class="headerlink" href="#v1628-2024-09-24" title="Permanent link">¶</a></h2>
|
|
11653
|
-
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11654
|
-
<ul>
|
|
11655
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6152">#6152</a> - Fixed table column ordering.</li>
|
|
11656
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6237">#6237</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
|
|
11657
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Fixed invalid installation of <code>xmlsec</code> library in the Nautobot Docker images.</li>
|
|
11658
|
-
</ul>
|
|
11659
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11660
|
-
<ul>
|
|
11661
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed "version" from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
11662
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
11663
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Brought <code>.gitignore</code> up to date with latest to aid in branch switching.</li>
|
|
11664
|
-
</ul>
|
|
11665
|
-
<h2 id="v1627-2024-09-03">v1.6.27 (2024-09-03)<a class="headerlink" href="#v1627-2024-09-03" title="Permanent link">¶</a></h2>
|
|
11666
|
-
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11667
|
-
<ul>
|
|
11668
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11669
|
-
</ul>
|
|
11670
|
-
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11671
|
-
<ul>
|
|
11672
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6081">#6081</a> - Fixed AttributeError during pre_migrate when permission constraints are applied to custom fields.</li>
|
|
11673
|
-
</ul>
|
|
11674
|
-
<h2 id="v1626-2024-07-22">v1.6.26 (2024-07-22)<a class="headerlink" href="#v1626-2024-07-22" title="Permanent link">¶</a></h2>
|
|
11675
|
-
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11676
|
-
<ul>
|
|
11677
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
11678
|
-
</ul>
|
|
11679
|
-
<h2 id="v1625-2024-07-09">v1.6.25 (2024-07-09)<a class="headerlink" href="#v1625-2024-07-09" title="Permanent link">¶</a></h2>
|
|
11680
|
-
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11681
|
-
<ul>
|
|
11682
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11683
|
-
</ul>
|
|
11684
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11685
|
-
<ul>
|
|
11686
|
-
<li><a href="https://github.com/nautobot/nautobot/pull/5897">#5897</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
11687
|
-
</ul>
|
|
11688
|
-
<h2 id="v1624-2024-06-24">v1.6.24 (2024-06-24)<a class="headerlink" href="#v1624-2024-06-24" title="Permanent link">¶</a></h2>
|
|
11689
|
-
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11690
|
-
<ul>
|
|
11691
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11692
|
-
</ul>
|
|
11693
|
-
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11694
|
-
<ul>
|
|
11695
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependency <code>requests</code> to <code>~2.32.2</code>.</li>
|
|
11696
|
-
</ul>
|
|
11697
11664
|
<h2 id="v1623-2024-05-28">v1.6.23 (2024-05-28)<a class="headerlink" href="#v1623-2024-05-28" title="Permanent link">¶</a></h2>
|
|
11698
|
-
<h3 id="
|
|
11665
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11699
11666
|
<ul>
|
|
11700
11667
|
<li><a href="https://github.com/nautobot/nautobot/issues/5762">#5762</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
11701
11668
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11702
11669
|
</ul>
|
|
11703
|
-
<h3 id="
|
|
11670
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11704
11671
|
<ul>
|
|
11705
11672
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
11706
11673
|
</ul>
|
|
11707
11674
|
<h2 id="v1622-2024-05-13">v1.6.22 (2024-05-13)<a class="headerlink" href="#v1622-2024-05-13" title="Permanent link">¶</a></h2>
|
|
11708
|
-
<h3 id="
|
|
11675
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11709
11676
|
<ul>
|
|
11710
11677
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
11711
11678
|
</ul>
|
|
@@ -11714,12 +11681,12 @@
|
|
|
11714
11681
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
11715
11682
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
11716
11683
|
</ul>
|
|
11717
|
-
<h3 id="
|
|
11684
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11718
11685
|
<ul>
|
|
11719
11686
|
<li><a href="https://github.com/nautobot/nautobot/issues/2974">#2974</a> - Fixed an error when deleting and then recreating a GitRepository that provides Jobs.</li>
|
|
11720
11687
|
</ul>
|
|
11721
11688
|
<h2 id="v1621-2024-05-07">v1.6.21 (2024-05-07)<a class="headerlink" href="#v1621-2024-05-07" title="Permanent link">¶</a></h2>
|
|
11722
|
-
<h3 id="
|
|
11689
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11723
11690
|
<ul>
|
|
11724
11691
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
11725
11692
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to <code>3.7</code> due to <code>CVE-2024-3651</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
@@ -11727,40 +11694,40 @@
|
|
|
11727
11694
|
<li><a href="https://github.com/nautobot/nautobot/issues/5675">#5675</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
11728
11695
|
</ul>
|
|
11729
11696
|
<h2 id="v1620-2024-04-30">v1.6.20 (2024-04-30)<a class="headerlink" href="#v1620-2024-04-30" title="Permanent link">¶</a></h2>
|
|
11730
|
-
<h3 id="
|
|
11697
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11731
11698
|
<ul>
|
|
11732
11699
|
<li><a href="https://github.com/nautobot/nautobot/issues/5647">#5647</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
11733
11700
|
</ul>
|
|
11734
|
-
<h3 id="
|
|
11701
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11735
11702
|
<ul>
|
|
11736
11703
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Increased performance of <code>brief=true</code> in API endpoints by eliminating unnecessary database joins.</li>
|
|
11737
11704
|
</ul>
|
|
11738
11705
|
<h2 id="v1619-2024-04-23">v1.6.19 (2024-04-23)<a class="headerlink" href="#v1619-2024-04-23" title="Permanent link">¶</a></h2>
|
|
11739
|
-
<h3 id="
|
|
11706
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
11740
11707
|
<ul>
|
|
11741
11708
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11742
11709
|
</ul>
|
|
11743
|
-
<h3 id="
|
|
11710
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11744
11711
|
<ul>
|
|
11745
11712
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Fixed static media failure on <code>/graphql/</code> and <code>/admin/</code> pages.</li>
|
|
11746
11713
|
</ul>
|
|
11747
11714
|
<h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">¶</a></h2>
|
|
11748
|
-
<h3 id="
|
|
11715
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
11749
11716
|
<ul>
|
|
11750
11717
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
11751
11718
|
</ul>
|
|
11752
|
-
<h3 id="
|
|
11719
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11753
11720
|
<ul>
|
|
11754
11721
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
11755
11722
|
</ul>
|
|
11756
11723
|
<h2 id="v1617-2024-04-01">v1.6.17 (2024-04-01)<a class="headerlink" href="#v1617-2024-04-01" title="Permanent link">¶</a></h2>
|
|
11757
|
-
<h3 id="
|
|
11724
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11758
11725
|
<ul>
|
|
11759
11726
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & its dependency on <code>ecdsa</code>.</li>
|
|
11760
11727
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>>=4.7.0,<4.18.0</code> to <code>^4.7.0</code>.</li>
|
|
11761
11728
|
</ul>
|
|
11762
11729
|
<h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">¶</a></h2>
|
|
11763
|
-
<h3 id="
|
|
11730
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
11764
11731
|
<ul>
|
|
11765
11732
|
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
11766
11733
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -11783,7 +11750,7 @@
|
|
|
11783
11750
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
11784
11751
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
|
|
11785
11752
|
</ul>
|
|
11786
|
-
<h3 id="
|
|
11753
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11787
11754
|
<ul>
|
|
11788
11755
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
11789
11756
|
</ul>
|
|
@@ -11791,7 +11758,7 @@
|
|
|
11791
11758
|
<ul>
|
|
11792
11759
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
11793
11760
|
</ul>
|
|
11794
|
-
<h3 id="
|
|
11761
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11795
11762
|
<ul>
|
|
11796
11763
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
11797
11764
|
</ul>
|
|
@@ -11801,18 +11768,18 @@
|
|
|
11801
11768
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
11802
11769
|
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
11803
11770
|
</ul>
|
|
11804
|
-
<h3 id="
|
|
11771
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11805
11772
|
<ul>
|
|
11806
11773
|
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
11807
11774
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
11808
11775
|
</ul>
|
|
11809
|
-
<h3 id="
|
|
11776
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11810
11777
|
<ul>
|
|
11811
11778
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
11812
11779
|
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
11813
11780
|
</ul>
|
|
11814
11781
|
<h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">¶</a></h2>
|
|
11815
|
-
<h3 id="
|
|
11782
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11816
11783
|
<ul>
|
|
11817
11784
|
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
11818
11785
|
</ul>
|
|
@@ -11822,7 +11789,7 @@
|
|
|
11822
11789
|
<ul>
|
|
11823
11790
|
<li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
|
|
11824
11791
|
</ul>
|
|
11825
|
-
<h3 id="
|
|
11792
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11826
11793
|
<ul>
|
|
11827
11794
|
<li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
|
|
11828
11795
|
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
@@ -11838,7 +11805,7 @@
|
|
|
11838
11805
|
<ul>
|
|
11839
11806
|
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
11840
11807
|
</ul>
|
|
11841
|
-
<h3 id="
|
|
11808
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
11842
11809
|
<ul>
|
|
11843
11810
|
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
11844
11811
|
</ul>
|
|
@@ -11847,13 +11814,13 @@
|
|
|
11847
11814
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
11848
11815
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
11849
11816
|
</ul>
|
|
11850
|
-
<h3 id="
|
|
11817
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11851
11818
|
<ul>
|
|
11852
11819
|
<li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
|
|
11853
11820
|
<li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
|
|
11854
11821
|
</ul>
|
|
11855
11822
|
<h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">¶</a></h2>
|
|
11856
|
-
<h3 id="
|
|
11823
|
+
<h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">¶</a></h3>
|
|
11857
11824
|
<ul>
|
|
11858
11825
|
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
11859
11826
|
</ul>
|
|
@@ -11861,13 +11828,13 @@
|
|
|
11861
11828
|
<ul>
|
|
11862
11829
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
11863
11830
|
</ul>
|
|
11864
|
-
<h3 id="
|
|
11831
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11865
11832
|
<ul>
|
|
11866
11833
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
11867
11834
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
11868
11835
|
</ul>
|
|
11869
11836
|
<h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">¶</a></h2>
|
|
11870
|
-
<h3 id="
|
|
11837
|
+
<h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">¶</a></h3>
|
|
11871
11838
|
<ul>
|
|
11872
11839
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
11873
11840
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
@@ -11880,19 +11847,19 @@
|
|
|
11880
11847
|
<ul>
|
|
11881
11848
|
<li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
|
|
11882
11849
|
</ul>
|
|
11883
|
-
<h3 id="
|
|
11850
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11884
11851
|
<ul>
|
|
11885
11852
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
11886
11853
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
11887
11854
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
11888
11855
|
</ul>
|
|
11889
11856
|
<h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">¶</a></h2>
|
|
11890
|
-
<h3 id="
|
|
11857
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11891
11858
|
<ul>
|
|
11892
11859
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11893
11860
|
</ul>
|
|
11894
11861
|
<h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">¶</a></h2>
|
|
11895
|
-
<h3 id="
|
|
11862
|
+
<h3 id="security_10">Security<a class="headerlink" href="#security_10" title="Permanent link">¶</a></h3>
|
|
11896
11863
|
<ul>
|
|
11897
11864
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11898
11865
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
@@ -11907,16 +11874,16 @@
|
|
|
11907
11874
|
<ul>
|
|
11908
11875
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
11909
11876
|
</ul>
|
|
11910
|
-
<h3 id="
|
|
11877
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11911
11878
|
<ul>
|
|
11912
11879
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11913
11880
|
</ul>
|
|
11914
|
-
<h3 id="
|
|
11881
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11915
11882
|
<ul>
|
|
11916
11883
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
11917
11884
|
</ul>
|
|
11918
11885
|
<h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">¶</a></h2>
|
|
11919
|
-
<h3 id="
|
|
11886
|
+
<h3 id="security_11">Security<a class="headerlink" href="#security_11" title="Permanent link">¶</a></h3>
|
|
11920
11887
|
<ul>
|
|
11921
11888
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
11922
11889
|
</ul>
|
|
@@ -11929,14 +11896,14 @@
|
|
|
11929
11896
|
<li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
|
|
11930
11897
|
<li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
11931
11898
|
</ul>
|
|
11932
|
-
<h3 id="
|
|
11899
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11933
11900
|
<ul>
|
|
11934
11901
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
11935
11902
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
11936
11903
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
11937
11904
|
</ul>
|
|
11938
11905
|
<h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">¶</a></h2>
|
|
11939
|
-
<h3 id="
|
|
11906
|
+
<h3 id="security_12">Security<a class="headerlink" href="#security_12" title="Permanent link">¶</a></h3>
|
|
11940
11907
|
<ul>
|
|
11941
11908
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
11942
11909
|
</ul>
|
|
@@ -11944,22 +11911,22 @@
|
|
|
11944
11911
|
<ul>
|
|
11945
11912
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
11946
11913
|
</ul>
|
|
11947
|
-
<h3 id="
|
|
11914
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
11948
11915
|
<ul>
|
|
11949
11916
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
|
|
11950
11917
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
|
|
11951
11918
|
</ul>
|
|
11952
|
-
<h3 id="
|
|
11919
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11953
11920
|
<ul>
|
|
11954
11921
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
11955
11922
|
</ul>
|
|
11956
|
-
<h3 id="
|
|
11923
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11957
11924
|
<ul>
|
|
11958
11925
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
11959
11926
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
11960
11927
|
</ul>
|
|
11961
11928
|
<h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">¶</a></h2>
|
|
11962
|
-
<h3 id="
|
|
11929
|
+
<h3 id="security_13">Security<a class="headerlink" href="#security_13" title="Permanent link">¶</a></h3>
|
|
11963
11930
|
<ul>
|
|
11964
11931
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11965
11932
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
@@ -11968,7 +11935,7 @@
|
|
|
11968
11935
|
<ul>
|
|
11969
11936
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
11970
11937
|
</ul>
|
|
11971
|
-
<h3 id="
|
|
11938
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
11972
11939
|
<ul>
|
|
11973
11940
|
<li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group API.</li>
|
|
11974
11941
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -11980,7 +11947,7 @@
|
|
|
11980
11947
|
<ul>
|
|
11981
11948
|
<li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
|
|
11982
11949
|
</ul>
|
|
11983
|
-
<h3 id="
|
|
11950
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11984
11951
|
<ul>
|
|
11985
11952
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
|
|
11986
11953
|
</ul>
|
|
@@ -11998,12 +11965,12 @@
|
|
|
11998
11965
|
<ul>
|
|
11999
11966
|
<li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
|
|
12000
11967
|
</ul>
|
|
12001
|
-
<h3 id="
|
|
11968
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
12002
11969
|
<ul>
|
|
12003
11970
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
12004
11971
|
</ul>
|
|
12005
11972
|
<h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">¶</a></h2>
|
|
12006
|
-
<h3 id="
|
|
11973
|
+
<h3 id="security_14">Security<a class="headerlink" href="#security_14" title="Permanent link">¶</a></h3>
|
|
12007
11974
|
<ul>
|
|
12008
11975
|
<li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
12009
11976
|
</ul>
|
|
@@ -12011,11 +11978,11 @@
|
|
|
12011
11978
|
<ul>
|
|
12012
11979
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
|
|
12013
11980
|
</ul>
|
|
12014
|
-
<h3 id="
|
|
11981
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
12015
11982
|
<ul>
|
|
12016
11983
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
12017
11984
|
</ul>
|
|
12018
|
-
<h3 id="
|
|
11985
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
12019
11986
|
<ul>
|
|
12020
11987
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
|
|
12021
11988
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
|
|
@@ -12033,7 +12000,7 @@
|
|
|
12033
12000
|
<li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
|
|
12034
12001
|
<li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
|
|
12035
12002
|
</ul>
|
|
12036
|
-
<h3 id="
|
|
12003
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
12037
12004
|
<ul>
|
|
12038
12005
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
|
|
12039
12006
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
|
|
@@ -12044,7 +12011,7 @@
|
|
|
12044
12011
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
12045
12012
|
<li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
|
|
12046
12013
|
</ul>
|
|
12047
|
-
<h3 id="
|
|
12014
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
12048
12015
|
<ul>
|
|
12049
12016
|
<li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
|
|
12050
12017
|
<li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
|
|
@@ -12054,7 +12021,7 @@
|
|
|
12054
12021
|
<ul>
|
|
12055
12022
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
12056
12023
|
</ul>
|
|
12057
|
-
<h3 id="
|
|
12024
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
12058
12025
|
<ul>
|
|
12059
12026
|
<li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
|
|
12060
12027
|
<li><a href="https://github.com/nautobot/nautobot/issues/4149">#4149</a> - Fixed a bug that prevented renaming a <code>Rack</code> if it contained any devices whose names were not globally unique.</li>
|
|
@@ -12066,7 +12033,7 @@
|
|
|
12066
12033
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Updated docs at <code>nautobot/docs/installation/nautobot.md</code> and <code>nautobot/docs/installation/http-server.md</code> to adopt tabbed interfaces.</li>
|
|
12067
12034
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
12068
12035
|
</ul>
|
|
12069
|
-
<h3 id="
|
|
12036
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
12070
12037
|
<ul>
|
|
12071
12038
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
12072
12039
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
@@ -12077,7 +12044,7 @@
|
|
|
12077
12044
|
<ul>
|
|
12078
12045
|
<li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
|
|
12079
12046
|
</ul>
|
|
12080
|
-
<h3 id="
|
|
12047
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
12081
12048
|
<ul>
|
|
12082
12049
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
|
|
12083
12050
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
|
|
@@ -12086,7 +12053,7 @@
|
|
|
12086
12053
|
<li><a href="https://github.com/nautobot/nautobot/issues/4205">#4205</a> - Fixed failing Apps CI due to missing dependency of <code>toml</code>.</li>
|
|
12087
12054
|
<li><a href="https://github.com/nautobot/nautobot/issues/4222">#4222</a> - Fixed a bug in which <code>Job</code> <code>ChoiceVars</code> could sometimes get rendered incorrectly in the UI as multiple-choice fields.</li>
|
|
12088
12055
|
</ul>
|
|
12089
|
-
<h3 id="
|
|
12056
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
12090
12057
|
<ul>
|
|
12091
12058
|
<li><a href="https://github.com/nautobot/nautobot/issues/4208">#4208</a> - Updated django-rq to 2.8.1.</li>
|
|
12092
12059
|
<li><a href="https://github.com/nautobot/nautobot/issues/4209">#4209</a> - Relaxed constraint on prometheus-client minimum version to <code>0.14.1</code>.</li>
|
|
@@ -12127,11 +12094,11 @@
|
|
|
12127
12094
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
|
|
12128
12095
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>pycryptodome</code> as Nautobot does not currently use this library and hasn't for some time.</li>
|
|
12129
12096
|
</ul>
|
|
12130
|
-
<h3 id="
|
|
12097
|
+
<h3 id="fixed_18">Fixed<a class="headerlink" href="#fixed_18" title="Permanent link">¶</a></h3>
|
|
12131
12098
|
<ul>
|
|
12132
12099
|
<li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
|
|
12133
12100
|
</ul>
|
|
12134
|
-
<h3 id="
|
|
12101
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
12135
12102
|
<ul>
|
|
12136
12103
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>celery</code> dependency to <code>~5.3.1</code>.</li>
|
|
12137
12104
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|
|
@@ -12311,10 +12278,10 @@
|
|
|
12311
12278
|
</div>
|
|
12312
12279
|
|
|
12313
12280
|
|
|
12314
|
-
<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>
|
|
12281
|
+
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "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>
|
|
12315
12282
|
|
|
12316
12283
|
|
|
12317
|
-
<script src="../assets/javascripts/bundle.
|
|
12284
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
12318
12285
|
|
|
12319
12286
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12320
12287
|
|