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
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
<link rel="canonical" href="https://docs.nautobot.com/projects/core/en/stable/release-notes/version-2.3.html">
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
<link rel="prev" href="
|
|
14
|
+
<link rel="prev" href="version-2.4.html">
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
<link rel="next" href="version-2.2.html">
|
|
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
|
|
|
@@ -7989,6 +8370,27 @@
|
|
|
7989
8370
|
|
|
7990
8371
|
|
|
7991
8372
|
|
|
8373
|
+
|
|
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
|
+
|
|
7992
8394
|
|
|
7993
8395
|
|
|
7994
8396
|
|
|
@@ -8257,15 +8659,24 @@
|
|
|
8257
8659
|
</li>
|
|
8258
8660
|
|
|
8259
8661
|
<li class="md-nav__item">
|
|
8260
|
-
<a href="#
|
|
8662
|
+
<a href="#v2312-2024-11-25" class="md-nav__link">
|
|
8261
8663
|
<span class="md-ellipsis">
|
|
8262
|
-
v2.3.
|
|
8664
|
+
v2.3.12 (2024-11-25)
|
|
8263
8665
|
</span>
|
|
8264
8666
|
</a>
|
|
8265
8667
|
|
|
8266
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8668
|
+
<nav class="md-nav" aria-label="v2.3.12 (2024-11-25)">
|
|
8267
8669
|
<ul class="md-nav__list">
|
|
8268
8670
|
|
|
8671
|
+
<li class="md-nav__item">
|
|
8672
|
+
<a href="#added_1" class="md-nav__link">
|
|
8673
|
+
<span class="md-ellipsis">
|
|
8674
|
+
Added
|
|
8675
|
+
</span>
|
|
8676
|
+
</a>
|
|
8677
|
+
|
|
8678
|
+
</li>
|
|
8679
|
+
|
|
8269
8680
|
<li class="md-nav__item">
|
|
8270
8681
|
<a href="#fixed" class="md-nav__link">
|
|
8271
8682
|
<span class="md-ellipsis">
|
|
@@ -8273,6 +8684,24 @@
|
|
|
8273
8684
|
</span>
|
|
8274
8685
|
</a>
|
|
8275
8686
|
|
|
8687
|
+
</li>
|
|
8688
|
+
|
|
8689
|
+
<li class="md-nav__item">
|
|
8690
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8691
|
+
<span class="md-ellipsis">
|
|
8692
|
+
Dependencies
|
|
8693
|
+
</span>
|
|
8694
|
+
</a>
|
|
8695
|
+
|
|
8696
|
+
</li>
|
|
8697
|
+
|
|
8698
|
+
<li class="md-nav__item">
|
|
8699
|
+
<a href="#documentation" class="md-nav__link">
|
|
8700
|
+
<span class="md-ellipsis">
|
|
8701
|
+
Documentation
|
|
8702
|
+
</span>
|
|
8703
|
+
</a>
|
|
8704
|
+
|
|
8276
8705
|
</li>
|
|
8277
8706
|
|
|
8278
8707
|
<li class="md-nav__item">
|
|
@@ -8290,26 +8719,17 @@
|
|
|
8290
8719
|
</li>
|
|
8291
8720
|
|
|
8292
8721
|
<li class="md-nav__item">
|
|
8293
|
-
<a href="#
|
|
8722
|
+
<a href="#v2311-2024-11-12" class="md-nav__link">
|
|
8294
8723
|
<span class="md-ellipsis">
|
|
8295
|
-
v2.3.
|
|
8724
|
+
v2.3.11 (2024-11-12)
|
|
8296
8725
|
</span>
|
|
8297
8726
|
</a>
|
|
8298
8727
|
|
|
8299
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8728
|
+
<nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
|
|
8300
8729
|
<ul class="md-nav__list">
|
|
8301
8730
|
|
|
8302
8731
|
<li class="md-nav__item">
|
|
8303
|
-
<a href="#
|
|
8304
|
-
<span class="md-ellipsis">
|
|
8305
|
-
Security
|
|
8306
|
-
</span>
|
|
8307
|
-
</a>
|
|
8308
|
-
|
|
8309
|
-
</li>
|
|
8310
|
-
|
|
8311
|
-
<li class="md-nav__item">
|
|
8312
|
-
<a href="#added_1" class="md-nav__link">
|
|
8732
|
+
<a href="#added_2" class="md-nav__link">
|
|
8313
8733
|
<span class="md-ellipsis">
|
|
8314
8734
|
Added
|
|
8315
8735
|
</span>
|
|
@@ -8336,9 +8756,9 @@
|
|
|
8336
8756
|
</li>
|
|
8337
8757
|
|
|
8338
8758
|
<li class="md-nav__item">
|
|
8339
|
-
<a href="#
|
|
8759
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8340
8760
|
<span class="md-ellipsis">
|
|
8341
|
-
|
|
8761
|
+
Documentation
|
|
8342
8762
|
</span>
|
|
8343
8763
|
</a>
|
|
8344
8764
|
|
|
@@ -8359,17 +8779,17 @@
|
|
|
8359
8779
|
</li>
|
|
8360
8780
|
|
|
8361
8781
|
<li class="md-nav__item">
|
|
8362
|
-
<a href="#
|
|
8782
|
+
<a href="#v2310-2024-10-29" class="md-nav__link">
|
|
8363
8783
|
<span class="md-ellipsis">
|
|
8364
|
-
v2.3.
|
|
8784
|
+
v2.3.10 (2024-10-29)
|
|
8365
8785
|
</span>
|
|
8366
8786
|
</a>
|
|
8367
8787
|
|
|
8368
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8788
|
+
<nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
|
|
8369
8789
|
<ul class="md-nav__list">
|
|
8370
8790
|
|
|
8371
8791
|
<li class="md-nav__item">
|
|
8372
|
-
<a href="#
|
|
8792
|
+
<a href="#added_3" class="md-nav__link">
|
|
8373
8793
|
<span class="md-ellipsis">
|
|
8374
8794
|
Added
|
|
8375
8795
|
</span>
|
|
@@ -8396,9 +8816,9 @@
|
|
|
8396
8816
|
</li>
|
|
8397
8817
|
|
|
8398
8818
|
<li class="md-nav__item">
|
|
8399
|
-
<a href="#
|
|
8819
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8400
8820
|
<span class="md-ellipsis">
|
|
8401
|
-
|
|
8821
|
+
Dependencies
|
|
8402
8822
|
</span>
|
|
8403
8823
|
</a>
|
|
8404
8824
|
|
|
@@ -8419,26 +8839,17 @@
|
|
|
8419
8839
|
</li>
|
|
8420
8840
|
|
|
8421
8841
|
<li class="md-nav__item">
|
|
8422
|
-
<a href="#
|
|
8842
|
+
<a href="#v239-2024-10-28" class="md-nav__link">
|
|
8423
8843
|
<span class="md-ellipsis">
|
|
8424
|
-
v2.3.
|
|
8844
|
+
v2.3.9 (2024-10-28)
|
|
8425
8845
|
</span>
|
|
8426
8846
|
</a>
|
|
8427
8847
|
|
|
8428
|
-
<nav class="md-nav" aria-label="v2.3.
|
|
8848
|
+
<nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
|
|
8429
8849
|
<ul class="md-nav__list">
|
|
8430
8850
|
|
|
8431
8851
|
<li class="md-nav__item">
|
|
8432
|
-
<a href="#
|
|
8433
|
-
<span class="md-ellipsis">
|
|
8434
|
-
Security
|
|
8435
|
-
</span>
|
|
8436
|
-
</a>
|
|
8437
|
-
|
|
8438
|
-
</li>
|
|
8439
|
-
|
|
8440
|
-
<li class="md-nav__item">
|
|
8441
|
-
<a href="#added_3" class="md-nav__link">
|
|
8852
|
+
<a href="#added_4" class="md-nav__link">
|
|
8442
8853
|
<span class="md-ellipsis">
|
|
8443
8854
|
Added
|
|
8444
8855
|
</span>
|
|
@@ -8465,21 +8876,12 @@
|
|
|
8465
8876
|
</li>
|
|
8466
8877
|
|
|
8467
8878
|
<li class="md-nav__item">
|
|
8468
|
-
<a href="#
|
|
8879
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
8469
8880
|
<span class="md-ellipsis">
|
|
8470
8881
|
Dependencies
|
|
8471
8882
|
</span>
|
|
8472
8883
|
</a>
|
|
8473
8884
|
|
|
8474
|
-
</li>
|
|
8475
|
-
|
|
8476
|
-
<li class="md-nav__item">
|
|
8477
|
-
<a href="#documentation_1" class="md-nav__link">
|
|
8478
|
-
<span class="md-ellipsis">
|
|
8479
|
-
Documentation
|
|
8480
|
-
</span>
|
|
8481
|
-
</a>
|
|
8482
|
-
|
|
8483
8885
|
</li>
|
|
8484
8886
|
|
|
8485
8887
|
<li class="md-nav__item">
|
|
@@ -8494,246 +8896,6 @@
|
|
|
8494
8896
|
</ul>
|
|
8495
8897
|
</nav>
|
|
8496
8898
|
|
|
8497
|
-
</li>
|
|
8498
|
-
|
|
8499
|
-
<li class="md-nav__item">
|
|
8500
|
-
<a href="#v2312-2024-11-25" class="md-nav__link">
|
|
8501
|
-
<span class="md-ellipsis">
|
|
8502
|
-
v2.3.12 (2024-11-25)
|
|
8503
|
-
</span>
|
|
8504
|
-
</a>
|
|
8505
|
-
|
|
8506
|
-
<nav class="md-nav" aria-label="v2.3.12 (2024-11-25)">
|
|
8507
|
-
<ul class="md-nav__list">
|
|
8508
|
-
|
|
8509
|
-
<li class="md-nav__item">
|
|
8510
|
-
<a href="#added_4" class="md-nav__link">
|
|
8511
|
-
<span class="md-ellipsis">
|
|
8512
|
-
Added
|
|
8513
|
-
</span>
|
|
8514
|
-
</a>
|
|
8515
|
-
|
|
8516
|
-
</li>
|
|
8517
|
-
|
|
8518
|
-
<li class="md-nav__item">
|
|
8519
|
-
<a href="#fixed_4" class="md-nav__link">
|
|
8520
|
-
<span class="md-ellipsis">
|
|
8521
|
-
Fixed
|
|
8522
|
-
</span>
|
|
8523
|
-
</a>
|
|
8524
|
-
|
|
8525
|
-
</li>
|
|
8526
|
-
|
|
8527
|
-
<li class="md-nav__item">
|
|
8528
|
-
<a href="#dependencies_3" class="md-nav__link">
|
|
8529
|
-
<span class="md-ellipsis">
|
|
8530
|
-
Dependencies
|
|
8531
|
-
</span>
|
|
8532
|
-
</a>
|
|
8533
|
-
|
|
8534
|
-
</li>
|
|
8535
|
-
|
|
8536
|
-
<li class="md-nav__item">
|
|
8537
|
-
<a href="#documentation_2" class="md-nav__link">
|
|
8538
|
-
<span class="md-ellipsis">
|
|
8539
|
-
Documentation
|
|
8540
|
-
</span>
|
|
8541
|
-
</a>
|
|
8542
|
-
|
|
8543
|
-
</li>
|
|
8544
|
-
|
|
8545
|
-
<li class="md-nav__item">
|
|
8546
|
-
<a href="#housekeeping_4" class="md-nav__link">
|
|
8547
|
-
<span class="md-ellipsis">
|
|
8548
|
-
Housekeeping
|
|
8549
|
-
</span>
|
|
8550
|
-
</a>
|
|
8551
|
-
|
|
8552
|
-
</li>
|
|
8553
|
-
|
|
8554
|
-
</ul>
|
|
8555
|
-
</nav>
|
|
8556
|
-
|
|
8557
|
-
</li>
|
|
8558
|
-
|
|
8559
|
-
<li class="md-nav__item">
|
|
8560
|
-
<a href="#v2311-2024-11-12" class="md-nav__link">
|
|
8561
|
-
<span class="md-ellipsis">
|
|
8562
|
-
v2.3.11 (2024-11-12)
|
|
8563
|
-
</span>
|
|
8564
|
-
</a>
|
|
8565
|
-
|
|
8566
|
-
<nav class="md-nav" aria-label="v2.3.11 (2024-11-12)">
|
|
8567
|
-
<ul class="md-nav__list">
|
|
8568
|
-
|
|
8569
|
-
<li class="md-nav__item">
|
|
8570
|
-
<a href="#added_5" class="md-nav__link">
|
|
8571
|
-
<span class="md-ellipsis">
|
|
8572
|
-
Added
|
|
8573
|
-
</span>
|
|
8574
|
-
</a>
|
|
8575
|
-
|
|
8576
|
-
</li>
|
|
8577
|
-
|
|
8578
|
-
<li class="md-nav__item">
|
|
8579
|
-
<a href="#changed_4" class="md-nav__link">
|
|
8580
|
-
<span class="md-ellipsis">
|
|
8581
|
-
Changed
|
|
8582
|
-
</span>
|
|
8583
|
-
</a>
|
|
8584
|
-
|
|
8585
|
-
</li>
|
|
8586
|
-
|
|
8587
|
-
<li class="md-nav__item">
|
|
8588
|
-
<a href="#fixed_5" class="md-nav__link">
|
|
8589
|
-
<span class="md-ellipsis">
|
|
8590
|
-
Fixed
|
|
8591
|
-
</span>
|
|
8592
|
-
</a>
|
|
8593
|
-
|
|
8594
|
-
</li>
|
|
8595
|
-
|
|
8596
|
-
<li class="md-nav__item">
|
|
8597
|
-
<a href="#documentation_3" class="md-nav__link">
|
|
8598
|
-
<span class="md-ellipsis">
|
|
8599
|
-
Documentation
|
|
8600
|
-
</span>
|
|
8601
|
-
</a>
|
|
8602
|
-
|
|
8603
|
-
</li>
|
|
8604
|
-
|
|
8605
|
-
<li class="md-nav__item">
|
|
8606
|
-
<a href="#housekeeping_5" class="md-nav__link">
|
|
8607
|
-
<span class="md-ellipsis">
|
|
8608
|
-
Housekeeping
|
|
8609
|
-
</span>
|
|
8610
|
-
</a>
|
|
8611
|
-
|
|
8612
|
-
</li>
|
|
8613
|
-
|
|
8614
|
-
</ul>
|
|
8615
|
-
</nav>
|
|
8616
|
-
|
|
8617
|
-
</li>
|
|
8618
|
-
|
|
8619
|
-
<li class="md-nav__item">
|
|
8620
|
-
<a href="#v2310-2024-10-29" class="md-nav__link">
|
|
8621
|
-
<span class="md-ellipsis">
|
|
8622
|
-
v2.3.10 (2024-10-29)
|
|
8623
|
-
</span>
|
|
8624
|
-
</a>
|
|
8625
|
-
|
|
8626
|
-
<nav class="md-nav" aria-label="v2.3.10 (2024-10-29)">
|
|
8627
|
-
<ul class="md-nav__list">
|
|
8628
|
-
|
|
8629
|
-
<li class="md-nav__item">
|
|
8630
|
-
<a href="#added_6" class="md-nav__link">
|
|
8631
|
-
<span class="md-ellipsis">
|
|
8632
|
-
Added
|
|
8633
|
-
</span>
|
|
8634
|
-
</a>
|
|
8635
|
-
|
|
8636
|
-
</li>
|
|
8637
|
-
|
|
8638
|
-
<li class="md-nav__item">
|
|
8639
|
-
<a href="#changed_5" class="md-nav__link">
|
|
8640
|
-
<span class="md-ellipsis">
|
|
8641
|
-
Changed
|
|
8642
|
-
</span>
|
|
8643
|
-
</a>
|
|
8644
|
-
|
|
8645
|
-
</li>
|
|
8646
|
-
|
|
8647
|
-
<li class="md-nav__item">
|
|
8648
|
-
<a href="#fixed_6" class="md-nav__link">
|
|
8649
|
-
<span class="md-ellipsis">
|
|
8650
|
-
Fixed
|
|
8651
|
-
</span>
|
|
8652
|
-
</a>
|
|
8653
|
-
|
|
8654
|
-
</li>
|
|
8655
|
-
|
|
8656
|
-
<li class="md-nav__item">
|
|
8657
|
-
<a href="#dependencies_4" class="md-nav__link">
|
|
8658
|
-
<span class="md-ellipsis">
|
|
8659
|
-
Dependencies
|
|
8660
|
-
</span>
|
|
8661
|
-
</a>
|
|
8662
|
-
|
|
8663
|
-
</li>
|
|
8664
|
-
|
|
8665
|
-
<li class="md-nav__item">
|
|
8666
|
-
<a href="#housekeeping_6" class="md-nav__link">
|
|
8667
|
-
<span class="md-ellipsis">
|
|
8668
|
-
Housekeeping
|
|
8669
|
-
</span>
|
|
8670
|
-
</a>
|
|
8671
|
-
|
|
8672
|
-
</li>
|
|
8673
|
-
|
|
8674
|
-
</ul>
|
|
8675
|
-
</nav>
|
|
8676
|
-
|
|
8677
|
-
</li>
|
|
8678
|
-
|
|
8679
|
-
<li class="md-nav__item">
|
|
8680
|
-
<a href="#v239-2024-10-28" class="md-nav__link">
|
|
8681
|
-
<span class="md-ellipsis">
|
|
8682
|
-
v2.3.9 (2024-10-28)
|
|
8683
|
-
</span>
|
|
8684
|
-
</a>
|
|
8685
|
-
|
|
8686
|
-
<nav class="md-nav" aria-label="v2.3.9 (2024-10-28)">
|
|
8687
|
-
<ul class="md-nav__list">
|
|
8688
|
-
|
|
8689
|
-
<li class="md-nav__item">
|
|
8690
|
-
<a href="#added_7" class="md-nav__link">
|
|
8691
|
-
<span class="md-ellipsis">
|
|
8692
|
-
Added
|
|
8693
|
-
</span>
|
|
8694
|
-
</a>
|
|
8695
|
-
|
|
8696
|
-
</li>
|
|
8697
|
-
|
|
8698
|
-
<li class="md-nav__item">
|
|
8699
|
-
<a href="#changed_6" class="md-nav__link">
|
|
8700
|
-
<span class="md-ellipsis">
|
|
8701
|
-
Changed
|
|
8702
|
-
</span>
|
|
8703
|
-
</a>
|
|
8704
|
-
|
|
8705
|
-
</li>
|
|
8706
|
-
|
|
8707
|
-
<li class="md-nav__item">
|
|
8708
|
-
<a href="#fixed_7" class="md-nav__link">
|
|
8709
|
-
<span class="md-ellipsis">
|
|
8710
|
-
Fixed
|
|
8711
|
-
</span>
|
|
8712
|
-
</a>
|
|
8713
|
-
|
|
8714
|
-
</li>
|
|
8715
|
-
|
|
8716
|
-
<li class="md-nav__item">
|
|
8717
|
-
<a href="#dependencies_5" class="md-nav__link">
|
|
8718
|
-
<span class="md-ellipsis">
|
|
8719
|
-
Dependencies
|
|
8720
|
-
</span>
|
|
8721
|
-
</a>
|
|
8722
|
-
|
|
8723
|
-
</li>
|
|
8724
|
-
|
|
8725
|
-
<li class="md-nav__item">
|
|
8726
|
-
<a href="#housekeeping_7" class="md-nav__link">
|
|
8727
|
-
<span class="md-ellipsis">
|
|
8728
|
-
Housekeeping
|
|
8729
|
-
</span>
|
|
8730
|
-
</a>
|
|
8731
|
-
|
|
8732
|
-
</li>
|
|
8733
|
-
|
|
8734
|
-
</ul>
|
|
8735
|
-
</nav>
|
|
8736
|
-
|
|
8737
8899
|
</li>
|
|
8738
8900
|
|
|
8739
8901
|
<li class="md-nav__item">
|
|
@@ -8747,7 +8909,7 @@
|
|
|
8747
8909
|
<ul class="md-nav__list">
|
|
8748
8910
|
|
|
8749
8911
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#
|
|
8912
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8751
8913
|
<span class="md-ellipsis">
|
|
8752
8914
|
Fixed
|
|
8753
8915
|
</span>
|
|
@@ -8771,7 +8933,7 @@
|
|
|
8771
8933
|
<ul class="md-nav__list">
|
|
8772
8934
|
|
|
8773
8935
|
<li class="md-nav__item">
|
|
8774
|
-
<a href="#
|
|
8936
|
+
<a href="#added_5" class="md-nav__link">
|
|
8775
8937
|
<span class="md-ellipsis">
|
|
8776
8938
|
Added
|
|
8777
8939
|
</span>
|
|
@@ -8780,7 +8942,7 @@
|
|
|
8780
8942
|
</li>
|
|
8781
8943
|
|
|
8782
8944
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
8945
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8784
8946
|
<span class="md-ellipsis">
|
|
8785
8947
|
Changed
|
|
8786
8948
|
</span>
|
|
@@ -8789,7 +8951,7 @@
|
|
|
8789
8951
|
</li>
|
|
8790
8952
|
|
|
8791
8953
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
8954
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8793
8955
|
<span class="md-ellipsis">
|
|
8794
8956
|
Fixed
|
|
8795
8957
|
</span>
|
|
@@ -8798,7 +8960,7 @@
|
|
|
8798
8960
|
</li>
|
|
8799
8961
|
|
|
8800
8962
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
8963
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
8802
8964
|
<span class="md-ellipsis">
|
|
8803
8965
|
Dependencies
|
|
8804
8966
|
</span>
|
|
@@ -8807,7 +8969,7 @@
|
|
|
8807
8969
|
</li>
|
|
8808
8970
|
|
|
8809
8971
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
8972
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8811
8973
|
<span class="md-ellipsis">
|
|
8812
8974
|
Housekeeping
|
|
8813
8975
|
</span>
|
|
@@ -8831,7 +8993,7 @@
|
|
|
8831
8993
|
<ul class="md-nav__list">
|
|
8832
8994
|
|
|
8833
8995
|
<li class="md-nav__item">
|
|
8834
|
-
<a href="#
|
|
8996
|
+
<a href="#added_6" class="md-nav__link">
|
|
8835
8997
|
<span class="md-ellipsis">
|
|
8836
8998
|
Added
|
|
8837
8999
|
</span>
|
|
@@ -8840,7 +9002,7 @@
|
|
|
8840
9002
|
</li>
|
|
8841
9003
|
|
|
8842
9004
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#
|
|
9005
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
8844
9006
|
<span class="md-ellipsis">
|
|
8845
9007
|
Fixed
|
|
8846
9008
|
</span>
|
|
@@ -8849,7 +9011,7 @@
|
|
|
8849
9011
|
</li>
|
|
8850
9012
|
|
|
8851
9013
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
9014
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8853
9015
|
<span class="md-ellipsis">
|
|
8854
9016
|
Documentation
|
|
8855
9017
|
</span>
|
|
@@ -8858,7 +9020,7 @@
|
|
|
8858
9020
|
</li>
|
|
8859
9021
|
|
|
8860
9022
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
9023
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
8862
9024
|
<span class="md-ellipsis">
|
|
8863
9025
|
Housekeeping
|
|
8864
9026
|
</span>
|
|
@@ -8882,7 +9044,7 @@
|
|
|
8882
9044
|
<ul class="md-nav__list">
|
|
8883
9045
|
|
|
8884
9046
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
9047
|
+
<a href="#added_7" class="md-nav__link">
|
|
8886
9048
|
<span class="md-ellipsis">
|
|
8887
9049
|
Added
|
|
8888
9050
|
</span>
|
|
@@ -8891,7 +9053,7 @@
|
|
|
8891
9053
|
</li>
|
|
8892
9054
|
|
|
8893
9055
|
<li class="md-nav__item">
|
|
8894
|
-
<a href="#
|
|
9056
|
+
<a href="#changed_5" class="md-nav__link">
|
|
8895
9057
|
<span class="md-ellipsis">
|
|
8896
9058
|
Changed
|
|
8897
9059
|
</span>
|
|
@@ -8900,7 +9062,7 @@
|
|
|
8900
9062
|
</li>
|
|
8901
9063
|
|
|
8902
9064
|
<li class="md-nav__item">
|
|
8903
|
-
<a href="#
|
|
9065
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
8904
9066
|
<span class="md-ellipsis">
|
|
8905
9067
|
Fixed
|
|
8906
9068
|
</span>
|
|
@@ -8909,7 +9071,7 @@
|
|
|
8909
9071
|
</li>
|
|
8910
9072
|
|
|
8911
9073
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
9074
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
8913
9075
|
<span class="md-ellipsis">
|
|
8914
9076
|
Dependencies
|
|
8915
9077
|
</span>
|
|
@@ -8918,7 +9080,7 @@
|
|
|
8918
9080
|
</li>
|
|
8919
9081
|
|
|
8920
9082
|
<li class="md-nav__item">
|
|
8921
|
-
<a href="#
|
|
9083
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8922
9084
|
<span class="md-ellipsis">
|
|
8923
9085
|
Documentation
|
|
8924
9086
|
</span>
|
|
@@ -8927,7 +9089,7 @@
|
|
|
8927
9089
|
</li>
|
|
8928
9090
|
|
|
8929
9091
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
9092
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
8931
9093
|
<span class="md-ellipsis">
|
|
8932
9094
|
Housekeeping
|
|
8933
9095
|
</span>
|
|
@@ -8951,7 +9113,7 @@
|
|
|
8951
9113
|
<ul class="md-nav__list">
|
|
8952
9114
|
|
|
8953
9115
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9116
|
+
<a href="#added_8" class="md-nav__link">
|
|
8955
9117
|
<span class="md-ellipsis">
|
|
8956
9118
|
Added
|
|
8957
9119
|
</span>
|
|
@@ -8960,7 +9122,7 @@
|
|
|
8960
9122
|
</li>
|
|
8961
9123
|
|
|
8962
9124
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9125
|
+
<a href="#changed_6" class="md-nav__link">
|
|
8964
9126
|
<span class="md-ellipsis">
|
|
8965
9127
|
Changed
|
|
8966
9128
|
</span>
|
|
@@ -8969,7 +9131,7 @@
|
|
|
8969
9131
|
</li>
|
|
8970
9132
|
|
|
8971
9133
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9134
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
8973
9135
|
<span class="md-ellipsis">
|
|
8974
9136
|
Fixed
|
|
8975
9137
|
</span>
|
|
@@ -8978,7 +9140,7 @@
|
|
|
8978
9140
|
</li>
|
|
8979
9141
|
|
|
8980
9142
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#
|
|
9143
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8982
9144
|
<span class="md-ellipsis">
|
|
8983
9145
|
Documentation
|
|
8984
9146
|
</span>
|
|
@@ -8987,7 +9149,7 @@
|
|
|
8987
9149
|
</li>
|
|
8988
9150
|
|
|
8989
9151
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9152
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
8991
9153
|
<span class="md-ellipsis">
|
|
8992
9154
|
Housekeeping
|
|
8993
9155
|
</span>
|
|
@@ -9011,7 +9173,7 @@
|
|
|
9011
9173
|
<ul class="md-nav__list">
|
|
9012
9174
|
|
|
9013
9175
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9176
|
+
<a href="#security" class="md-nav__link">
|
|
9015
9177
|
<span class="md-ellipsis">
|
|
9016
9178
|
Security
|
|
9017
9179
|
</span>
|
|
@@ -9020,7 +9182,7 @@
|
|
|
9020
9182
|
</li>
|
|
9021
9183
|
|
|
9022
9184
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9185
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9024
9186
|
<span class="md-ellipsis">
|
|
9025
9187
|
Fixed
|
|
9026
9188
|
</span>
|
|
@@ -9029,7 +9191,7 @@
|
|
|
9029
9191
|
</li>
|
|
9030
9192
|
|
|
9031
9193
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
9194
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
9033
9195
|
<span class="md-ellipsis">
|
|
9034
9196
|
Dependencies
|
|
9035
9197
|
</span>
|
|
@@ -9038,7 +9200,7 @@
|
|
|
9038
9200
|
</li>
|
|
9039
9201
|
|
|
9040
9202
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9203
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9042
9204
|
<span class="md-ellipsis">
|
|
9043
9205
|
Housekeeping
|
|
9044
9206
|
</span>
|
|
@@ -9062,7 +9224,7 @@
|
|
|
9062
9224
|
<ul class="md-nav__list">
|
|
9063
9225
|
|
|
9064
9226
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9227
|
+
<a href="#security_1" class="md-nav__link">
|
|
9066
9228
|
<span class="md-ellipsis">
|
|
9067
9229
|
Security
|
|
9068
9230
|
</span>
|
|
@@ -9071,7 +9233,7 @@
|
|
|
9071
9233
|
</li>
|
|
9072
9234
|
|
|
9073
9235
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9236
|
+
<a href="#added_9" class="md-nav__link">
|
|
9075
9237
|
<span class="md-ellipsis">
|
|
9076
9238
|
Added
|
|
9077
9239
|
</span>
|
|
@@ -9080,7 +9242,7 @@
|
|
|
9080
9242
|
</li>
|
|
9081
9243
|
|
|
9082
9244
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9245
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9084
9246
|
<span class="md-ellipsis">
|
|
9085
9247
|
Fixed
|
|
9086
9248
|
</span>
|
|
@@ -9089,7 +9251,7 @@
|
|
|
9089
9251
|
</li>
|
|
9090
9252
|
|
|
9091
9253
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9254
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
9093
9255
|
<span class="md-ellipsis">
|
|
9094
9256
|
Housekeeping
|
|
9095
9257
|
</span>
|
|
@@ -9113,7 +9275,7 @@
|
|
|
9113
9275
|
<ul class="md-nav__list">
|
|
9114
9276
|
|
|
9115
9277
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9278
|
+
<a href="#added_10" class="md-nav__link">
|
|
9117
9279
|
<span class="md-ellipsis">
|
|
9118
9280
|
Added
|
|
9119
9281
|
</span>
|
|
@@ -9122,7 +9284,7 @@
|
|
|
9122
9284
|
</li>
|
|
9123
9285
|
|
|
9124
9286
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9287
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9126
9288
|
<span class="md-ellipsis">
|
|
9127
9289
|
Changed
|
|
9128
9290
|
</span>
|
|
@@ -9131,7 +9293,7 @@
|
|
|
9131
9293
|
</li>
|
|
9132
9294
|
|
|
9133
9295
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9296
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
9135
9297
|
<span class="md-ellipsis">
|
|
9136
9298
|
Fixed
|
|
9137
9299
|
</span>
|
|
@@ -9140,7 +9302,7 @@
|
|
|
9140
9302
|
</li>
|
|
9141
9303
|
|
|
9142
9304
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9305
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
9144
9306
|
<span class="md-ellipsis">
|
|
9145
9307
|
Housekeeping
|
|
9146
9308
|
</span>
|
|
@@ -9164,7 +9326,7 @@
|
|
|
9164
9326
|
<ul class="md-nav__list">
|
|
9165
9327
|
|
|
9166
9328
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
9329
|
+
<a href="#security_2" class="md-nav__link">
|
|
9168
9330
|
<span class="md-ellipsis">
|
|
9169
9331
|
Security
|
|
9170
9332
|
</span>
|
|
@@ -9173,7 +9335,7 @@
|
|
|
9173
9335
|
</li>
|
|
9174
9336
|
|
|
9175
9337
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#
|
|
9338
|
+
<a href="#added_11" class="md-nav__link">
|
|
9177
9339
|
<span class="md-ellipsis">
|
|
9178
9340
|
Added
|
|
9179
9341
|
</span>
|
|
@@ -9182,7 +9344,7 @@
|
|
|
9182
9344
|
</li>
|
|
9183
9345
|
|
|
9184
9346
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9347
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9186
9348
|
<span class="md-ellipsis">
|
|
9187
9349
|
Changed
|
|
9188
9350
|
</span>
|
|
@@ -9200,7 +9362,7 @@
|
|
|
9200
9362
|
</li>
|
|
9201
9363
|
|
|
9202
9364
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9365
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
9204
9366
|
<span class="md-ellipsis">
|
|
9205
9367
|
Fixed
|
|
9206
9368
|
</span>
|
|
@@ -9209,7 +9371,7 @@
|
|
|
9209
9371
|
</li>
|
|
9210
9372
|
|
|
9211
9373
|
<li class="md-nav__item">
|
|
9212
|
-
<a href="#
|
|
9374
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9213
9375
|
<span class="md-ellipsis">
|
|
9214
9376
|
Documentation
|
|
9215
9377
|
</span>
|
|
@@ -9218,7 +9380,7 @@
|
|
|
9218
9380
|
</li>
|
|
9219
9381
|
|
|
9220
9382
|
<li class="md-nav__item">
|
|
9221
|
-
<a href="#
|
|
9383
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
9222
9384
|
<span class="md-ellipsis">
|
|
9223
9385
|
Housekeeping
|
|
9224
9386
|
</span>
|
|
@@ -9242,7 +9404,7 @@
|
|
|
9242
9404
|
<ul class="md-nav__list">
|
|
9243
9405
|
|
|
9244
9406
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9407
|
+
<a href="#security_3" class="md-nav__link">
|
|
9246
9408
|
<span class="md-ellipsis">
|
|
9247
9409
|
Security
|
|
9248
9410
|
</span>
|
|
@@ -9251,7 +9413,7 @@
|
|
|
9251
9413
|
</li>
|
|
9252
9414
|
|
|
9253
9415
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
9416
|
+
<a href="#added_12" class="md-nav__link">
|
|
9255
9417
|
<span class="md-ellipsis">
|
|
9256
9418
|
Added
|
|
9257
9419
|
</span>
|
|
@@ -9260,7 +9422,7 @@
|
|
|
9260
9422
|
</li>
|
|
9261
9423
|
|
|
9262
9424
|
<li class="md-nav__item">
|
|
9263
|
-
<a href="#
|
|
9425
|
+
<a href="#changed_9" class="md-nav__link">
|
|
9264
9426
|
<span class="md-ellipsis">
|
|
9265
9427
|
Changed
|
|
9266
9428
|
</span>
|
|
@@ -9287,7 +9449,7 @@
|
|
|
9287
9449
|
</li>
|
|
9288
9450
|
|
|
9289
9451
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9452
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
9291
9453
|
<span class="md-ellipsis">
|
|
9292
9454
|
Fixed
|
|
9293
9455
|
</span>
|
|
@@ -9296,7 +9458,7 @@
|
|
|
9296
9458
|
</li>
|
|
9297
9459
|
|
|
9298
9460
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9461
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
9300
9462
|
<span class="md-ellipsis">
|
|
9301
9463
|
Dependencies
|
|
9302
9464
|
</span>
|
|
@@ -9305,7 +9467,7 @@
|
|
|
9305
9467
|
</li>
|
|
9306
9468
|
|
|
9307
9469
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9470
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9309
9471
|
<span class="md-ellipsis">
|
|
9310
9472
|
Documentation
|
|
9311
9473
|
</span>
|
|
@@ -9314,7 +9476,7 @@
|
|
|
9314
9476
|
</li>
|
|
9315
9477
|
|
|
9316
9478
|
<li class="md-nav__item">
|
|
9317
|
-
<a href="#
|
|
9479
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
9318
9480
|
<span class="md-ellipsis">
|
|
9319
9481
|
Housekeeping
|
|
9320
9482
|
</span>
|
|
@@ -10125,246 +10287,6 @@
|
|
|
10125
10287
|
</ul>
|
|
10126
10288
|
</nav>
|
|
10127
10289
|
|
|
10128
|
-
</li>
|
|
10129
|
-
|
|
10130
|
-
<li class="md-nav__item">
|
|
10131
|
-
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
10132
|
-
<span class="md-ellipsis">
|
|
10133
|
-
v2.3.16 (2025-01-06)
|
|
10134
|
-
</span>
|
|
10135
|
-
</a>
|
|
10136
|
-
|
|
10137
|
-
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
10138
|
-
<ul class="md-nav__list">
|
|
10139
|
-
|
|
10140
|
-
<li class="md-nav__item">
|
|
10141
|
-
<a href="#fixed" class="md-nav__link">
|
|
10142
|
-
<span class="md-ellipsis">
|
|
10143
|
-
Fixed
|
|
10144
|
-
</span>
|
|
10145
|
-
</a>
|
|
10146
|
-
|
|
10147
|
-
</li>
|
|
10148
|
-
|
|
10149
|
-
<li class="md-nav__item">
|
|
10150
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10151
|
-
<span class="md-ellipsis">
|
|
10152
|
-
Housekeeping
|
|
10153
|
-
</span>
|
|
10154
|
-
</a>
|
|
10155
|
-
|
|
10156
|
-
</li>
|
|
10157
|
-
|
|
10158
|
-
</ul>
|
|
10159
|
-
</nav>
|
|
10160
|
-
|
|
10161
|
-
</li>
|
|
10162
|
-
|
|
10163
|
-
<li class="md-nav__item">
|
|
10164
|
-
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
10165
|
-
<span class="md-ellipsis">
|
|
10166
|
-
v2.3.15 (2025-01-02)
|
|
10167
|
-
</span>
|
|
10168
|
-
</a>
|
|
10169
|
-
|
|
10170
|
-
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
10171
|
-
<ul class="md-nav__list">
|
|
10172
|
-
|
|
10173
|
-
<li class="md-nav__item">
|
|
10174
|
-
<a href="#security" class="md-nav__link">
|
|
10175
|
-
<span class="md-ellipsis">
|
|
10176
|
-
Security
|
|
10177
|
-
</span>
|
|
10178
|
-
</a>
|
|
10179
|
-
|
|
10180
|
-
</li>
|
|
10181
|
-
|
|
10182
|
-
<li class="md-nav__item">
|
|
10183
|
-
<a href="#added_1" class="md-nav__link">
|
|
10184
|
-
<span class="md-ellipsis">
|
|
10185
|
-
Added
|
|
10186
|
-
</span>
|
|
10187
|
-
</a>
|
|
10188
|
-
|
|
10189
|
-
</li>
|
|
10190
|
-
|
|
10191
|
-
<li class="md-nav__item">
|
|
10192
|
-
<a href="#changed_1" class="md-nav__link">
|
|
10193
|
-
<span class="md-ellipsis">
|
|
10194
|
-
Changed
|
|
10195
|
-
</span>
|
|
10196
|
-
</a>
|
|
10197
|
-
|
|
10198
|
-
</li>
|
|
10199
|
-
|
|
10200
|
-
<li class="md-nav__item">
|
|
10201
|
-
<a href="#fixed_1" class="md-nav__link">
|
|
10202
|
-
<span class="md-ellipsis">
|
|
10203
|
-
Fixed
|
|
10204
|
-
</span>
|
|
10205
|
-
</a>
|
|
10206
|
-
|
|
10207
|
-
</li>
|
|
10208
|
-
|
|
10209
|
-
<li class="md-nav__item">
|
|
10210
|
-
<a href="#dependencies_1" class="md-nav__link">
|
|
10211
|
-
<span class="md-ellipsis">
|
|
10212
|
-
Dependencies
|
|
10213
|
-
</span>
|
|
10214
|
-
</a>
|
|
10215
|
-
|
|
10216
|
-
</li>
|
|
10217
|
-
|
|
10218
|
-
<li class="md-nav__item">
|
|
10219
|
-
<a href="#housekeeping_1" class="md-nav__link">
|
|
10220
|
-
<span class="md-ellipsis">
|
|
10221
|
-
Housekeeping
|
|
10222
|
-
</span>
|
|
10223
|
-
</a>
|
|
10224
|
-
|
|
10225
|
-
</li>
|
|
10226
|
-
|
|
10227
|
-
</ul>
|
|
10228
|
-
</nav>
|
|
10229
|
-
|
|
10230
|
-
</li>
|
|
10231
|
-
|
|
10232
|
-
<li class="md-nav__item">
|
|
10233
|
-
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
10234
|
-
<span class="md-ellipsis">
|
|
10235
|
-
v2.3.14 (2024-12-19)
|
|
10236
|
-
</span>
|
|
10237
|
-
</a>
|
|
10238
|
-
|
|
10239
|
-
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
10240
|
-
<ul class="md-nav__list">
|
|
10241
|
-
|
|
10242
|
-
<li class="md-nav__item">
|
|
10243
|
-
<a href="#added_2" class="md-nav__link">
|
|
10244
|
-
<span class="md-ellipsis">
|
|
10245
|
-
Added
|
|
10246
|
-
</span>
|
|
10247
|
-
</a>
|
|
10248
|
-
|
|
10249
|
-
</li>
|
|
10250
|
-
|
|
10251
|
-
<li class="md-nav__item">
|
|
10252
|
-
<a href="#changed_2" class="md-nav__link">
|
|
10253
|
-
<span class="md-ellipsis">
|
|
10254
|
-
Changed
|
|
10255
|
-
</span>
|
|
10256
|
-
</a>
|
|
10257
|
-
|
|
10258
|
-
</li>
|
|
10259
|
-
|
|
10260
|
-
<li class="md-nav__item">
|
|
10261
|
-
<a href="#fixed_2" class="md-nav__link">
|
|
10262
|
-
<span class="md-ellipsis">
|
|
10263
|
-
Fixed
|
|
10264
|
-
</span>
|
|
10265
|
-
</a>
|
|
10266
|
-
|
|
10267
|
-
</li>
|
|
10268
|
-
|
|
10269
|
-
<li class="md-nav__item">
|
|
10270
|
-
<a href="#documentation" class="md-nav__link">
|
|
10271
|
-
<span class="md-ellipsis">
|
|
10272
|
-
Documentation
|
|
10273
|
-
</span>
|
|
10274
|
-
</a>
|
|
10275
|
-
|
|
10276
|
-
</li>
|
|
10277
|
-
|
|
10278
|
-
<li class="md-nav__item">
|
|
10279
|
-
<a href="#housekeeping_2" class="md-nav__link">
|
|
10280
|
-
<span class="md-ellipsis">
|
|
10281
|
-
Housekeeping
|
|
10282
|
-
</span>
|
|
10283
|
-
</a>
|
|
10284
|
-
|
|
10285
|
-
</li>
|
|
10286
|
-
|
|
10287
|
-
</ul>
|
|
10288
|
-
</nav>
|
|
10289
|
-
|
|
10290
|
-
</li>
|
|
10291
|
-
|
|
10292
|
-
<li class="md-nav__item">
|
|
10293
|
-
<a href="#v2313-2024-12-10" class="md-nav__link">
|
|
10294
|
-
<span class="md-ellipsis">
|
|
10295
|
-
v2.3.13 (2024-12-10)
|
|
10296
|
-
</span>
|
|
10297
|
-
</a>
|
|
10298
|
-
|
|
10299
|
-
<nav class="md-nav" aria-label="v2.3.13 (2024-12-10)">
|
|
10300
|
-
<ul class="md-nav__list">
|
|
10301
|
-
|
|
10302
|
-
<li class="md-nav__item">
|
|
10303
|
-
<a href="#security_1" class="md-nav__link">
|
|
10304
|
-
<span class="md-ellipsis">
|
|
10305
|
-
Security
|
|
10306
|
-
</span>
|
|
10307
|
-
</a>
|
|
10308
|
-
|
|
10309
|
-
</li>
|
|
10310
|
-
|
|
10311
|
-
<li class="md-nav__item">
|
|
10312
|
-
<a href="#added_3" class="md-nav__link">
|
|
10313
|
-
<span class="md-ellipsis">
|
|
10314
|
-
Added
|
|
10315
|
-
</span>
|
|
10316
|
-
</a>
|
|
10317
|
-
|
|
10318
|
-
</li>
|
|
10319
|
-
|
|
10320
|
-
<li class="md-nav__item">
|
|
10321
|
-
<a href="#changed_3" class="md-nav__link">
|
|
10322
|
-
<span class="md-ellipsis">
|
|
10323
|
-
Changed
|
|
10324
|
-
</span>
|
|
10325
|
-
</a>
|
|
10326
|
-
|
|
10327
|
-
</li>
|
|
10328
|
-
|
|
10329
|
-
<li class="md-nav__item">
|
|
10330
|
-
<a href="#fixed_3" class="md-nav__link">
|
|
10331
|
-
<span class="md-ellipsis">
|
|
10332
|
-
Fixed
|
|
10333
|
-
</span>
|
|
10334
|
-
</a>
|
|
10335
|
-
|
|
10336
|
-
</li>
|
|
10337
|
-
|
|
10338
|
-
<li class="md-nav__item">
|
|
10339
|
-
<a href="#dependencies_2" class="md-nav__link">
|
|
10340
|
-
<span class="md-ellipsis">
|
|
10341
|
-
Dependencies
|
|
10342
|
-
</span>
|
|
10343
|
-
</a>
|
|
10344
|
-
|
|
10345
|
-
</li>
|
|
10346
|
-
|
|
10347
|
-
<li class="md-nav__item">
|
|
10348
|
-
<a href="#documentation_1" class="md-nav__link">
|
|
10349
|
-
<span class="md-ellipsis">
|
|
10350
|
-
Documentation
|
|
10351
|
-
</span>
|
|
10352
|
-
</a>
|
|
10353
|
-
|
|
10354
|
-
</li>
|
|
10355
|
-
|
|
10356
|
-
<li class="md-nav__item">
|
|
10357
|
-
<a href="#housekeeping_3" class="md-nav__link">
|
|
10358
|
-
<span class="md-ellipsis">
|
|
10359
|
-
Housekeeping
|
|
10360
|
-
</span>
|
|
10361
|
-
</a>
|
|
10362
|
-
|
|
10363
|
-
</li>
|
|
10364
|
-
|
|
10365
|
-
</ul>
|
|
10366
|
-
</nav>
|
|
10367
|
-
|
|
10368
10290
|
</li>
|
|
10369
10291
|
|
|
10370
10292
|
<li class="md-nav__item">
|
|
@@ -10378,7 +10300,7 @@
|
|
|
10378
10300
|
<ul class="md-nav__list">
|
|
10379
10301
|
|
|
10380
10302
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#
|
|
10303
|
+
<a href="#added_1" class="md-nav__link">
|
|
10382
10304
|
<span class="md-ellipsis">
|
|
10383
10305
|
Added
|
|
10384
10306
|
</span>
|
|
@@ -10387,7 +10309,7 @@
|
|
|
10387
10309
|
</li>
|
|
10388
10310
|
|
|
10389
10311
|
<li class="md-nav__item">
|
|
10390
|
-
<a href="#
|
|
10312
|
+
<a href="#fixed" class="md-nav__link">
|
|
10391
10313
|
<span class="md-ellipsis">
|
|
10392
10314
|
Fixed
|
|
10393
10315
|
</span>
|
|
@@ -10396,7 +10318,7 @@
|
|
|
10396
10318
|
</li>
|
|
10397
10319
|
|
|
10398
10320
|
<li class="md-nav__item">
|
|
10399
|
-
<a href="#
|
|
10321
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10400
10322
|
<span class="md-ellipsis">
|
|
10401
10323
|
Dependencies
|
|
10402
10324
|
</span>
|
|
@@ -10405,7 +10327,7 @@
|
|
|
10405
10327
|
</li>
|
|
10406
10328
|
|
|
10407
10329
|
<li class="md-nav__item">
|
|
10408
|
-
<a href="#
|
|
10330
|
+
<a href="#documentation" class="md-nav__link">
|
|
10409
10331
|
<span class="md-ellipsis">
|
|
10410
10332
|
Documentation
|
|
10411
10333
|
</span>
|
|
@@ -10414,7 +10336,7 @@
|
|
|
10414
10336
|
</li>
|
|
10415
10337
|
|
|
10416
10338
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10339
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10418
10340
|
<span class="md-ellipsis">
|
|
10419
10341
|
Housekeeping
|
|
10420
10342
|
</span>
|
|
@@ -10438,7 +10360,7 @@
|
|
|
10438
10360
|
<ul class="md-nav__list">
|
|
10439
10361
|
|
|
10440
10362
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10363
|
+
<a href="#added_2" class="md-nav__link">
|
|
10442
10364
|
<span class="md-ellipsis">
|
|
10443
10365
|
Added
|
|
10444
10366
|
</span>
|
|
@@ -10447,7 +10369,7 @@
|
|
|
10447
10369
|
</li>
|
|
10448
10370
|
|
|
10449
10371
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10372
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10451
10373
|
<span class="md-ellipsis">
|
|
10452
10374
|
Changed
|
|
10453
10375
|
</span>
|
|
@@ -10456,7 +10378,7 @@
|
|
|
10456
10378
|
</li>
|
|
10457
10379
|
|
|
10458
10380
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
10381
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10460
10382
|
<span class="md-ellipsis">
|
|
10461
10383
|
Fixed
|
|
10462
10384
|
</span>
|
|
@@ -10465,7 +10387,7 @@
|
|
|
10465
10387
|
</li>
|
|
10466
10388
|
|
|
10467
10389
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10390
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10469
10391
|
<span class="md-ellipsis">
|
|
10470
10392
|
Documentation
|
|
10471
10393
|
</span>
|
|
@@ -10474,7 +10396,7 @@
|
|
|
10474
10396
|
</li>
|
|
10475
10397
|
|
|
10476
10398
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10399
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10478
10400
|
<span class="md-ellipsis">
|
|
10479
10401
|
Housekeeping
|
|
10480
10402
|
</span>
|
|
@@ -10498,7 +10420,7 @@
|
|
|
10498
10420
|
<ul class="md-nav__list">
|
|
10499
10421
|
|
|
10500
10422
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10423
|
+
<a href="#added_3" class="md-nav__link">
|
|
10502
10424
|
<span class="md-ellipsis">
|
|
10503
10425
|
Added
|
|
10504
10426
|
</span>
|
|
@@ -10507,7 +10429,7 @@
|
|
|
10507
10429
|
</li>
|
|
10508
10430
|
|
|
10509
10431
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
10432
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10511
10433
|
<span class="md-ellipsis">
|
|
10512
10434
|
Changed
|
|
10513
10435
|
</span>
|
|
@@ -10516,7 +10438,7 @@
|
|
|
10516
10438
|
</li>
|
|
10517
10439
|
|
|
10518
10440
|
<li class="md-nav__item">
|
|
10519
|
-
<a href="#
|
|
10441
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10520
10442
|
<span class="md-ellipsis">
|
|
10521
10443
|
Fixed
|
|
10522
10444
|
</span>
|
|
@@ -10525,7 +10447,7 @@
|
|
|
10525
10447
|
</li>
|
|
10526
10448
|
|
|
10527
10449
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
10450
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10529
10451
|
<span class="md-ellipsis">
|
|
10530
10452
|
Dependencies
|
|
10531
10453
|
</span>
|
|
@@ -10534,7 +10456,7 @@
|
|
|
10534
10456
|
</li>
|
|
10535
10457
|
|
|
10536
10458
|
<li class="md-nav__item">
|
|
10537
|
-
<a href="#
|
|
10459
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10538
10460
|
<span class="md-ellipsis">
|
|
10539
10461
|
Housekeeping
|
|
10540
10462
|
</span>
|
|
@@ -10558,7 +10480,7 @@
|
|
|
10558
10480
|
<ul class="md-nav__list">
|
|
10559
10481
|
|
|
10560
10482
|
<li class="md-nav__item">
|
|
10561
|
-
<a href="#
|
|
10483
|
+
<a href="#added_4" class="md-nav__link">
|
|
10562
10484
|
<span class="md-ellipsis">
|
|
10563
10485
|
Added
|
|
10564
10486
|
</span>
|
|
@@ -10567,7 +10489,7 @@
|
|
|
10567
10489
|
</li>
|
|
10568
10490
|
|
|
10569
10491
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10492
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10571
10493
|
<span class="md-ellipsis">
|
|
10572
10494
|
Changed
|
|
10573
10495
|
</span>
|
|
@@ -10576,7 +10498,7 @@
|
|
|
10576
10498
|
</li>
|
|
10577
10499
|
|
|
10578
10500
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
10501
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10580
10502
|
<span class="md-ellipsis">
|
|
10581
10503
|
Fixed
|
|
10582
10504
|
</span>
|
|
@@ -10585,7 +10507,7 @@
|
|
|
10585
10507
|
</li>
|
|
10586
10508
|
|
|
10587
10509
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
10510
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
10589
10511
|
<span class="md-ellipsis">
|
|
10590
10512
|
Dependencies
|
|
10591
10513
|
</span>
|
|
@@ -10594,7 +10516,7 @@
|
|
|
10594
10516
|
</li>
|
|
10595
10517
|
|
|
10596
10518
|
<li class="md-nav__item">
|
|
10597
|
-
<a href="#
|
|
10519
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10598
10520
|
<span class="md-ellipsis">
|
|
10599
10521
|
Housekeeping
|
|
10600
10522
|
</span>
|
|
@@ -10618,7 +10540,7 @@
|
|
|
10618
10540
|
<ul class="md-nav__list">
|
|
10619
10541
|
|
|
10620
10542
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10543
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10622
10544
|
<span class="md-ellipsis">
|
|
10623
10545
|
Fixed
|
|
10624
10546
|
</span>
|
|
@@ -10642,7 +10564,7 @@
|
|
|
10642
10564
|
<ul class="md-nav__list">
|
|
10643
10565
|
|
|
10644
10566
|
<li class="md-nav__item">
|
|
10645
|
-
<a href="#
|
|
10567
|
+
<a href="#added_5" class="md-nav__link">
|
|
10646
10568
|
<span class="md-ellipsis">
|
|
10647
10569
|
Added
|
|
10648
10570
|
</span>
|
|
@@ -10651,7 +10573,7 @@
|
|
|
10651
10573
|
</li>
|
|
10652
10574
|
|
|
10653
10575
|
<li class="md-nav__item">
|
|
10654
|
-
<a href="#
|
|
10576
|
+
<a href="#changed_4" class="md-nav__link">
|
|
10655
10577
|
<span class="md-ellipsis">
|
|
10656
10578
|
Changed
|
|
10657
10579
|
</span>
|
|
@@ -10660,7 +10582,7 @@
|
|
|
10660
10582
|
</li>
|
|
10661
10583
|
|
|
10662
10584
|
<li class="md-nav__item">
|
|
10663
|
-
<a href="#
|
|
10585
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10664
10586
|
<span class="md-ellipsis">
|
|
10665
10587
|
Fixed
|
|
10666
10588
|
</span>
|
|
@@ -10669,7 +10591,7 @@
|
|
|
10669
10591
|
</li>
|
|
10670
10592
|
|
|
10671
10593
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10594
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
10673
10595
|
<span class="md-ellipsis">
|
|
10674
10596
|
Dependencies
|
|
10675
10597
|
</span>
|
|
@@ -10678,7 +10600,7 @@
|
|
|
10678
10600
|
</li>
|
|
10679
10601
|
|
|
10680
10602
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10603
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10682
10604
|
<span class="md-ellipsis">
|
|
10683
10605
|
Housekeeping
|
|
10684
10606
|
</span>
|
|
@@ -10702,7 +10624,7 @@
|
|
|
10702
10624
|
<ul class="md-nav__list">
|
|
10703
10625
|
|
|
10704
10626
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
10627
|
+
<a href="#added_6" class="md-nav__link">
|
|
10706
10628
|
<span class="md-ellipsis">
|
|
10707
10629
|
Added
|
|
10708
10630
|
</span>
|
|
@@ -10711,7 +10633,7 @@
|
|
|
10711
10633
|
</li>
|
|
10712
10634
|
|
|
10713
10635
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
10636
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10715
10637
|
<span class="md-ellipsis">
|
|
10716
10638
|
Fixed
|
|
10717
10639
|
</span>
|
|
@@ -10720,7 +10642,7 @@
|
|
|
10720
10642
|
</li>
|
|
10721
10643
|
|
|
10722
10644
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
10645
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10724
10646
|
<span class="md-ellipsis">
|
|
10725
10647
|
Documentation
|
|
10726
10648
|
</span>
|
|
@@ -10729,7 +10651,7 @@
|
|
|
10729
10651
|
</li>
|
|
10730
10652
|
|
|
10731
10653
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#
|
|
10654
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10733
10655
|
<span class="md-ellipsis">
|
|
10734
10656
|
Housekeeping
|
|
10735
10657
|
</span>
|
|
@@ -10753,7 +10675,7 @@
|
|
|
10753
10675
|
<ul class="md-nav__list">
|
|
10754
10676
|
|
|
10755
10677
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
10678
|
+
<a href="#added_7" class="md-nav__link">
|
|
10757
10679
|
<span class="md-ellipsis">
|
|
10758
10680
|
Added
|
|
10759
10681
|
</span>
|
|
@@ -10762,7 +10684,7 @@
|
|
|
10762
10684
|
</li>
|
|
10763
10685
|
|
|
10764
10686
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#
|
|
10687
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10766
10688
|
<span class="md-ellipsis">
|
|
10767
10689
|
Changed
|
|
10768
10690
|
</span>
|
|
@@ -10771,7 +10693,7 @@
|
|
|
10771
10693
|
</li>
|
|
10772
10694
|
|
|
10773
10695
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#
|
|
10696
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10775
10697
|
<span class="md-ellipsis">
|
|
10776
10698
|
Fixed
|
|
10777
10699
|
</span>
|
|
@@ -10780,7 +10702,7 @@
|
|
|
10780
10702
|
</li>
|
|
10781
10703
|
|
|
10782
10704
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
10705
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
10784
10706
|
<span class="md-ellipsis">
|
|
10785
10707
|
Dependencies
|
|
10786
10708
|
</span>
|
|
@@ -10789,7 +10711,7 @@
|
|
|
10789
10711
|
</li>
|
|
10790
10712
|
|
|
10791
10713
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
10714
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10793
10715
|
<span class="md-ellipsis">
|
|
10794
10716
|
Documentation
|
|
10795
10717
|
</span>
|
|
@@ -10798,7 +10720,7 @@
|
|
|
10798
10720
|
</li>
|
|
10799
10721
|
|
|
10800
10722
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
10723
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10802
10724
|
<span class="md-ellipsis">
|
|
10803
10725
|
Housekeeping
|
|
10804
10726
|
</span>
|
|
@@ -10822,7 +10744,7 @@
|
|
|
10822
10744
|
<ul class="md-nav__list">
|
|
10823
10745
|
|
|
10824
10746
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
10747
|
+
<a href="#added_8" class="md-nav__link">
|
|
10826
10748
|
<span class="md-ellipsis">
|
|
10827
10749
|
Added
|
|
10828
10750
|
</span>
|
|
@@ -10831,7 +10753,7 @@
|
|
|
10831
10753
|
</li>
|
|
10832
10754
|
|
|
10833
10755
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
10756
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10835
10757
|
<span class="md-ellipsis">
|
|
10836
10758
|
Changed
|
|
10837
10759
|
</span>
|
|
@@ -10840,7 +10762,7 @@
|
|
|
10840
10762
|
</li>
|
|
10841
10763
|
|
|
10842
10764
|
<li class="md-nav__item">
|
|
10843
|
-
<a href="#
|
|
10765
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10844
10766
|
<span class="md-ellipsis">
|
|
10845
10767
|
Fixed
|
|
10846
10768
|
</span>
|
|
@@ -10849,7 +10771,7 @@
|
|
|
10849
10771
|
</li>
|
|
10850
10772
|
|
|
10851
10773
|
<li class="md-nav__item">
|
|
10852
|
-
<a href="#
|
|
10774
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10853
10775
|
<span class="md-ellipsis">
|
|
10854
10776
|
Documentation
|
|
10855
10777
|
</span>
|
|
@@ -10858,7 +10780,7 @@
|
|
|
10858
10780
|
</li>
|
|
10859
10781
|
|
|
10860
10782
|
<li class="md-nav__item">
|
|
10861
|
-
<a href="#
|
|
10783
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10862
10784
|
<span class="md-ellipsis">
|
|
10863
10785
|
Housekeeping
|
|
10864
10786
|
</span>
|
|
@@ -10882,7 +10804,7 @@
|
|
|
10882
10804
|
<ul class="md-nav__list">
|
|
10883
10805
|
|
|
10884
10806
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
10807
|
+
<a href="#security" class="md-nav__link">
|
|
10886
10808
|
<span class="md-ellipsis">
|
|
10887
10809
|
Security
|
|
10888
10810
|
</span>
|
|
@@ -10891,7 +10813,7 @@
|
|
|
10891
10813
|
</li>
|
|
10892
10814
|
|
|
10893
10815
|
<li class="md-nav__item">
|
|
10894
|
-
<a href="#
|
|
10816
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10895
10817
|
<span class="md-ellipsis">
|
|
10896
10818
|
Fixed
|
|
10897
10819
|
</span>
|
|
@@ -10900,7 +10822,7 @@
|
|
|
10900
10822
|
</li>
|
|
10901
10823
|
|
|
10902
10824
|
<li class="md-nav__item">
|
|
10903
|
-
<a href="#
|
|
10825
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
10904
10826
|
<span class="md-ellipsis">
|
|
10905
10827
|
Dependencies
|
|
10906
10828
|
</span>
|
|
@@ -10909,7 +10831,7 @@
|
|
|
10909
10831
|
</li>
|
|
10910
10832
|
|
|
10911
10833
|
<li class="md-nav__item">
|
|
10912
|
-
<a href="#
|
|
10834
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10913
10835
|
<span class="md-ellipsis">
|
|
10914
10836
|
Housekeeping
|
|
10915
10837
|
</span>
|
|
@@ -10933,7 +10855,7 @@
|
|
|
10933
10855
|
<ul class="md-nav__list">
|
|
10934
10856
|
|
|
10935
10857
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
10858
|
+
<a href="#security_1" class="md-nav__link">
|
|
10937
10859
|
<span class="md-ellipsis">
|
|
10938
10860
|
Security
|
|
10939
10861
|
</span>
|
|
@@ -10942,7 +10864,7 @@
|
|
|
10942
10864
|
</li>
|
|
10943
10865
|
|
|
10944
10866
|
<li class="md-nav__item">
|
|
10945
|
-
<a href="#
|
|
10867
|
+
<a href="#added_9" class="md-nav__link">
|
|
10946
10868
|
<span class="md-ellipsis">
|
|
10947
10869
|
Added
|
|
10948
10870
|
</span>
|
|
@@ -10951,7 +10873,7 @@
|
|
|
10951
10873
|
</li>
|
|
10952
10874
|
|
|
10953
10875
|
<li class="md-nav__item">
|
|
10954
|
-
<a href="#
|
|
10876
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10955
10877
|
<span class="md-ellipsis">
|
|
10956
10878
|
Fixed
|
|
10957
10879
|
</span>
|
|
@@ -10960,7 +10882,7 @@
|
|
|
10960
10882
|
</li>
|
|
10961
10883
|
|
|
10962
10884
|
<li class="md-nav__item">
|
|
10963
|
-
<a href="#
|
|
10885
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
10964
10886
|
<span class="md-ellipsis">
|
|
10965
10887
|
Housekeeping
|
|
10966
10888
|
</span>
|
|
@@ -10984,7 +10906,7 @@
|
|
|
10984
10906
|
<ul class="md-nav__list">
|
|
10985
10907
|
|
|
10986
10908
|
<li class="md-nav__item">
|
|
10987
|
-
<a href="#
|
|
10909
|
+
<a href="#added_10" class="md-nav__link">
|
|
10988
10910
|
<span class="md-ellipsis">
|
|
10989
10911
|
Added
|
|
10990
10912
|
</span>
|
|
@@ -10993,7 +10915,7 @@
|
|
|
10993
10915
|
</li>
|
|
10994
10916
|
|
|
10995
10917
|
<li class="md-nav__item">
|
|
10996
|
-
<a href="#
|
|
10918
|
+
<a href="#changed_7" class="md-nav__link">
|
|
10997
10919
|
<span class="md-ellipsis">
|
|
10998
10920
|
Changed
|
|
10999
10921
|
</span>
|
|
@@ -11002,7 +10924,7 @@
|
|
|
11002
10924
|
</li>
|
|
11003
10925
|
|
|
11004
10926
|
<li class="md-nav__item">
|
|
11005
|
-
<a href="#
|
|
10927
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
11006
10928
|
<span class="md-ellipsis">
|
|
11007
10929
|
Fixed
|
|
11008
10930
|
</span>
|
|
@@ -11011,7 +10933,7 @@
|
|
|
11011
10933
|
</li>
|
|
11012
10934
|
|
|
11013
10935
|
<li class="md-nav__item">
|
|
11014
|
-
<a href="#
|
|
10936
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
11015
10937
|
<span class="md-ellipsis">
|
|
11016
10938
|
Housekeeping
|
|
11017
10939
|
</span>
|
|
@@ -11035,7 +10957,7 @@
|
|
|
11035
10957
|
<ul class="md-nav__list">
|
|
11036
10958
|
|
|
11037
10959
|
<li class="md-nav__item">
|
|
11038
|
-
<a href="#
|
|
10960
|
+
<a href="#security_2" class="md-nav__link">
|
|
11039
10961
|
<span class="md-ellipsis">
|
|
11040
10962
|
Security
|
|
11041
10963
|
</span>
|
|
@@ -11044,7 +10966,7 @@
|
|
|
11044
10966
|
</li>
|
|
11045
10967
|
|
|
11046
10968
|
<li class="md-nav__item">
|
|
11047
|
-
<a href="#
|
|
10969
|
+
<a href="#added_11" class="md-nav__link">
|
|
11048
10970
|
<span class="md-ellipsis">
|
|
11049
10971
|
Added
|
|
11050
10972
|
</span>
|
|
@@ -11053,7 +10975,7 @@
|
|
|
11053
10975
|
</li>
|
|
11054
10976
|
|
|
11055
10977
|
<li class="md-nav__item">
|
|
11056
|
-
<a href="#
|
|
10978
|
+
<a href="#changed_8" class="md-nav__link">
|
|
11057
10979
|
<span class="md-ellipsis">
|
|
11058
10980
|
Changed
|
|
11059
10981
|
</span>
|
|
@@ -11071,7 +10993,7 @@
|
|
|
11071
10993
|
</li>
|
|
11072
10994
|
|
|
11073
10995
|
<li class="md-nav__item">
|
|
11074
|
-
<a href="#
|
|
10996
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
11075
10997
|
<span class="md-ellipsis">
|
|
11076
10998
|
Fixed
|
|
11077
10999
|
</span>
|
|
@@ -11080,7 +11002,7 @@
|
|
|
11080
11002
|
</li>
|
|
11081
11003
|
|
|
11082
11004
|
<li class="md-nav__item">
|
|
11083
|
-
<a href="#
|
|
11005
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
11084
11006
|
<span class="md-ellipsis">
|
|
11085
11007
|
Documentation
|
|
11086
11008
|
</span>
|
|
@@ -11089,7 +11011,7 @@
|
|
|
11089
11011
|
</li>
|
|
11090
11012
|
|
|
11091
11013
|
<li class="md-nav__item">
|
|
11092
|
-
<a href="#
|
|
11014
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
11093
11015
|
<span class="md-ellipsis">
|
|
11094
11016
|
Housekeeping
|
|
11095
11017
|
</span>
|
|
@@ -11113,7 +11035,7 @@
|
|
|
11113
11035
|
<ul class="md-nav__list">
|
|
11114
11036
|
|
|
11115
11037
|
<li class="md-nav__item">
|
|
11116
|
-
<a href="#
|
|
11038
|
+
<a href="#security_3" class="md-nav__link">
|
|
11117
11039
|
<span class="md-ellipsis">
|
|
11118
11040
|
Security
|
|
11119
11041
|
</span>
|
|
@@ -11122,7 +11044,7 @@
|
|
|
11122
11044
|
</li>
|
|
11123
11045
|
|
|
11124
11046
|
<li class="md-nav__item">
|
|
11125
|
-
<a href="#
|
|
11047
|
+
<a href="#added_12" class="md-nav__link">
|
|
11126
11048
|
<span class="md-ellipsis">
|
|
11127
11049
|
Added
|
|
11128
11050
|
</span>
|
|
@@ -11131,7 +11053,7 @@
|
|
|
11131
11053
|
</li>
|
|
11132
11054
|
|
|
11133
11055
|
<li class="md-nav__item">
|
|
11134
|
-
<a href="#
|
|
11056
|
+
<a href="#changed_9" class="md-nav__link">
|
|
11135
11057
|
<span class="md-ellipsis">
|
|
11136
11058
|
Changed
|
|
11137
11059
|
</span>
|
|
@@ -11158,7 +11080,7 @@
|
|
|
11158
11080
|
</li>
|
|
11159
11081
|
|
|
11160
11082
|
<li class="md-nav__item">
|
|
11161
|
-
<a href="#
|
|
11083
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
11162
11084
|
<span class="md-ellipsis">
|
|
11163
11085
|
Fixed
|
|
11164
11086
|
</span>
|
|
@@ -11167,7 +11089,7 @@
|
|
|
11167
11089
|
</li>
|
|
11168
11090
|
|
|
11169
11091
|
<li class="md-nav__item">
|
|
11170
|
-
<a href="#
|
|
11092
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
11171
11093
|
<span class="md-ellipsis">
|
|
11172
11094
|
Dependencies
|
|
11173
11095
|
</span>
|
|
@@ -11176,7 +11098,7 @@
|
|
|
11176
11098
|
</li>
|
|
11177
11099
|
|
|
11178
11100
|
<li class="md-nav__item">
|
|
11179
|
-
<a href="#
|
|
11101
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
11180
11102
|
<span class="md-ellipsis">
|
|
11181
11103
|
Documentation
|
|
11182
11104
|
</span>
|
|
@@ -11185,7 +11107,7 @@
|
|
|
11185
11107
|
</li>
|
|
11186
11108
|
|
|
11187
11109
|
<li class="md-nav__item">
|
|
11188
|
-
<a href="#
|
|
11110
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
11189
11111
|
<span class="md-ellipsis">
|
|
11190
11112
|
Housekeeping
|
|
11191
11113
|
</span>
|
|
@@ -11308,138 +11230,14 @@
|
|
|
11308
11230
|
<h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">¶</a></h4>
|
|
11309
11231
|
<p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
|
|
11310
11232
|
<!-- towncrier release notes start -->
|
|
11311
|
-
<h2 id="v2316-2025-01-06">v2.3.16 (2025-01-06)<a class="headerlink" href="#v2316-2025-01-06" title="Permanent link">¶</a></h2>
|
|
11312
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11313
|
-
<ul>
|
|
11314
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5805">#5805</a> - Enabled extended filter lookup expressions of the <code>serial</code> filter for Device, Rack, and InventoryItem.</li>
|
|
11315
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5831">#5831</a> - Fixed an issue where the error message for missing custom job templates incorrectly reported "extras/job.html" instead of the actual missing template name.</li>
|
|
11316
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>PowerOutletTemplateTable</code> to use <code>power_port_template</code> instead of the incorrect field <code>power_port</code>.</li>
|
|
11317
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>FrontPortTemplateTable</code> to use <code>rear_port_template</code> instead of the incorrect field <code>rear_port</code>.</li>
|
|
11318
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6527">#6527</a> - Disabled (unsupported) sorting by the <code>Device</code> column in Console Connections, Power Connections, and Interface Connections list views.</li>
|
|
11319
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6669">#6669</a> - Removed the need for <code>available-prefixes</code>, <code>available-ips</code>, and <code>available-vlans</code> API endpoints to run validation multiple times.</li>
|
|
11320
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6676">#6676</a> - Resolved issue with IPAddressQuerySet get_or_create method signature not matching the base method signature.</li>
|
|
11321
|
-
</ul>
|
|
11322
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11323
|
-
<ul>
|
|
11324
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6714">#6714</a> - Enabled and addressed pylint checkers <code>arguments-differ</code>, <code>arguments-renamed</code>, <code>exec-used</code>, <code>hard-coded-auth-user</code>, <code>super-init-not-called</code>.</li>
|
|
11325
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6722">#6722</a> - Enabled pylint <code>not-callable</code> and <code>no-member</code> checkers and addressed issues reported thereby.</li>
|
|
11326
|
-
</ul>
|
|
11327
|
-
<h2 id="v2315-2025-01-02">v2.3.15 (2025-01-02)<a class="headerlink" href="#v2315-2025-01-02" title="Permanent link">¶</a></h2>
|
|
11328
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11329
|
-
<ul>
|
|
11330
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6695">#6695</a> - Updated dependency <code>Jinja2</code> to <code>~3.1.5</code> to address <code>CVE-2024-56201</code> and <code>CVE-2024-56326</code>.</li>
|
|
11331
|
-
</ul>
|
|
11332
|
-
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
11333
|
-
<ul>
|
|
11334
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6410">#6410</a> - Added <code>settings.PUBLISH_ROBOTS_TXT</code> configuration option, defaulting to <code>True</code>.</li>
|
|
11335
|
-
</ul>
|
|
11336
|
-
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
11337
|
-
<ul>
|
|
11338
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Changed <code>available-vlans</code> API endpoint to additionally require <code>ipam.view_vlan</code> permission to view available VLANs under VLAN Group.</li>
|
|
11339
|
-
</ul>
|
|
11340
|
-
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11341
|
-
<ul>
|
|
11342
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5545">#5545</a> - Fixed an issue in Dynamic Group Edit View where saving a valid choice in a Select-type CustomField triggered an error.</li>
|
|
11343
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Fixed <code>available-vlans</code>, <code>available-ips</code>, <code>available-prefixes</code> API endpoints to check object-level constrained permissions.</li>
|
|
11344
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6702">#6702</a> - Resolved issue with TagsBulkEditFormMixin missing self.model.</li>
|
|
11345
|
-
</ul>
|
|
11346
|
-
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11347
|
-
<ul>
|
|
11348
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>nh3</code> dependency to <code>~0.2.20</code>.</li>
|
|
11349
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>django-tables2</code> dependency to <code>~2.7.4</code> in Python 3.9 and later, and pinned it to <code>==2.7.0</code> under Python 3.8.</li>
|
|
11350
|
-
</ul>
|
|
11351
|
-
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11352
|
-
<ul>
|
|
11353
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6688">#6688</a> - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.</li>
|
|
11354
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.49</code>.</li>
|
|
11355
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6693">#6693</a> - Changed <code>poetry install</code> in prerelease and release workflows from parallel mode to serial mode.</li>
|
|
11356
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6706">#6706</a> - Removed unnecessary <code>user-data.json</code> integration-test fixture file.</li>
|
|
11357
|
-
</ul>
|
|
11358
|
-
<h2 id="v2314-2024-12-19">v2.3.14 (2024-12-19)<a class="headerlink" href="#v2314-2024-12-19" title="Permanent link">¶</a></h2>
|
|
11359
|
-
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
11360
|
-
<ul>
|
|
11361
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Added logic to set the <code>parent</code> in the <code>clean()</code> method of the Prefix model, ensuring correct assignment during validation.</li>
|
|
11362
|
-
</ul>
|
|
11363
|
-
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11364
|
-
<ul>
|
|
11365
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6518">#6518</a> - Added VRFs column to Prefixes and Child Prefixes tables.</li>
|
|
11366
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6531">#6531</a> - Restrict the <code>id</code> filter field to use to only the <code>__n</code> (negation) lookup filter.</li>
|
|
11367
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Changed the save method of the <code>Prefix</code> model to reparent subnets and IPs only when the <code>network</code>, <code>namespace</code>, or <code>prefix_length</code> fields are updated.</li>
|
|
11368
|
-
</ul>
|
|
11369
|
-
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11370
|
-
<ul>
|
|
11371
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/4056">#4056</a> - Fixed filter of add_tags and remove_tags of bulkedit based on content type</li>
|
|
11372
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6204">#6204</a> - Fixed out-of-memory errors when <code>LogsCleanup</code> system job resulted in cascade deletion of many related objects (such as <code>JobLogEntry</code> or <code>nautobot_ssot.SyncLogEntry</code> records).</li>
|
|
11373
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6470">#6470</a> - Fixed untagged VLAN dropdown options mismatch in InterfaceEditForm and in InterfaceBulkEditForm.</li>
|
|
11374
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6496">#6496</a> - Fixed <code>/ipam/prefixes/<UUID>/available-ips/</code> to correctly consider IPs under child Prefixes.</li>
|
|
11375
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6496">#6496</a> - Fixed <code>Prefix.get_first_available_ip()</code> method to not return IP taken by child Prefixes.</li>
|
|
11376
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6664">#6664</a> - Fixed <code>circuit_type</code> column not included correctly in CircuitTable default columns.</li>
|
|
11377
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6678">#6678</a> - Fixed incorrect copy button behavior on global search page.</li>
|
|
11378
|
-
</ul>
|
|
11379
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11380
|
-
<ul>
|
|
11381
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6590">#6590</a> - Added an <code>ExampleEverythingJob</code> to the Example App and updated Job developer documentation to reference it as an example.</li>
|
|
11382
|
-
</ul>
|
|
11383
|
-
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11384
|
-
<ul>
|
|
11385
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6657">#6657</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.48</code>.</li>
|
|
11386
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6659">#6659</a> - Enhanced development environment and associated <code>invoke</code> tasks to be Nautobot major/minor version aware, such that a different Docker compose <code>project-name</code> (and different local Docker image label) will be used for containers in a <code>develop</code>-based branch versus a <code>next</code>-based branch.</li>
|
|
11387
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6679">#6679</a> - Added <code>logs</code> task to <code>tasks.py</code> to view the logs of a docker compose service.</li>
|
|
11388
|
-
</ul>
|
|
11389
|
-
<h2 id="v2313-2024-12-10">v2.3.13 (2024-12-10)<a class="headerlink" href="#v2313-2024-12-10" title="Permanent link">¶</a></h2>
|
|
11390
|
-
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11391
|
-
<ul>
|
|
11392
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>Django</code> to <code>~4.2.17</code> due to <code>CVE-2024-53907</code> and <code>CVE-2024-53908</code>.</li>
|
|
11393
|
-
</ul>
|
|
11394
|
-
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11395
|
-
<ul>
|
|
11396
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
|
|
11397
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
|
|
11398
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Added support for an additional <code>suffix</code> when utilizing TableExtension to support tables like IPAddressDetailTable.</li>
|
|
11399
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6586">#6586</a> - Added description and weight on RoleBulkEditForm.</li>
|
|
11400
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Added <code>BaseTable</code> support for a <code>data_transform_callback</code> function that can be used to modify the table data after performing automatic QuerySet optimizations. (Several IPAM tables now use this functionality).</li>
|
|
11401
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Enhanced <code>LinkedCountColumn</code> to support a <code>distinct</code> parameter to handle cases where counts may otherwise be incorrect.</li>
|
|
11402
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Added <code>ip_addresses</code> and <code>has_ip_addresses</code> filter support to Device, Interface, and VirtualMachine FilterSets.</li>
|
|
11403
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6613">#6613</a> - Enhanced Prefix detail view "Child Prefixes" table to render associated Locations more intelligently.</li>
|
|
11404
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6614">#6614</a> - Enhanced IP Address tables to show the name of the associated Interface or VM Interface if only a single such association is present for a given IP Address.</li>
|
|
11405
|
-
</ul>
|
|
11406
|
-
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11407
|
-
<ul>
|
|
11408
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6166">#6166</a> - Enhanced the REST API to generally make it possible to create objects with known ids on request.</li>
|
|
11409
|
-
</ul>
|
|
11410
|
-
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11411
|
-
<ul>
|
|
11412
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3124">#3124</a> - Fixed inability of ImageAttachment and DeviceType API endpoints to accept <code>multipart/form-data</code> file uploads.</li>
|
|
11413
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5166">#5166</a> - Fixed a <code>ProgrammingError</code> when applying permissions containing network-address-based constraints.</li>
|
|
11414
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6466">#6466</a> - Fixed <code>table_config</code> field not showing up correctly in the Saved View modal.</li>
|
|
11415
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Fixed error when using TableExtension when the table is missing Meta.default_columns.</li>
|
|
11416
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Improved rendering performance of the IPAddress list view in cases where the <code>Interfaces</code>, <code>Devices</code>, <code>VM Interfaces</code>, <code>Virtual Machines</code>, and/or <code>Assigned</code> columns are not shown.</li>
|
|
11417
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Improved performance of <code>TreeModel.display</code> calculation by making better use of the cache.</li>
|
|
11418
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6609">#6609</a> - Fixed unnecessary call to the database when logging from a Job with the parameter <code>extra={"skip_db_logging": True}</code>.</li>
|
|
11419
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed issue with <code>group_sync.py</code> where it was accessing the settings using environment variable name vs the actual settings name.</li>
|
|
11420
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed the <code>SOCIAL_AUTH_PIPELINE</code> settings to include the entire path of the <code>group_sync</code> function.</li>
|
|
11421
|
-
</ul>
|
|
11422
|
-
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11423
|
-
<ul>
|
|
11424
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
|
|
11425
|
-
</ul>
|
|
11426
|
-
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
11427
|
-
<ul>
|
|
11428
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11429
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed group_sync path in the SSO documentation.</li>
|
|
11430
|
-
</ul>
|
|
11431
|
-
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11432
|
-
<ul>
|
|
11433
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.47</code>.</li>
|
|
11434
|
-
</ul>
|
|
11435
11233
|
<h2 id="v2312-2024-11-25">v2.3.12 (2024-11-25)<a class="headerlink" href="#v2312-2024-11-25" title="Permanent link">¶</a></h2>
|
|
11436
|
-
<h3 id="
|
|
11234
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
11437
11235
|
<ul>
|
|
11438
11236
|
<li><a href="https://github.com/nautobot/nautobot/issues/6532">#6532</a> - Added a keyboard shortcut (⌘+enter or ctrl+enter) to submit forms when typing in a textarea.</li>
|
|
11439
11237
|
<li><a href="https://github.com/nautobot/nautobot/issues/6543">#6543</a> - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.</li>
|
|
11440
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11441
11239
|
</ul>
|
|
11442
|
-
<h3 id="
|
|
11240
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11443
11241
|
<ul>
|
|
11444
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/6242">#6242</a> - Fixed "copy" button on Device tabbed views to now only copy the device name.</li>
|
|
11445
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11451,34 +11249,34 @@
|
|
|
11451
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/6547">#6547</a> - Fixed incorrect VRF filter specified on VRF column on Prefix Table.</li>
|
|
11452
11250
|
<li><a href="https://github.com/nautobot/nautobot/issues/6564">#6564</a> - Fixed an <code>AttributeError</code> raised when an App overrides a NautobotUIViewSet view.</li>
|
|
11453
11251
|
</ul>
|
|
11454
|
-
<h3 id="
|
|
11252
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11455
11253
|
<ul>
|
|
11456
11254
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated <code>mysqlclient</code> dependency to <code>~2.2.6</code>.</li>
|
|
11457
11255
|
</ul>
|
|
11458
|
-
<h3 id="
|
|
11256
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11459
11257
|
<ul>
|
|
11460
11258
|
<li><a href="https://github.com/nautobot/nautobot/issues/6516">#6516</a> - Updated release notes to make it clearer which are model changes.</li>
|
|
11461
11259
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11462
11260
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11463
11261
|
</ul>
|
|
11464
|
-
<h3 id="
|
|
11262
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11465
11263
|
<ul>
|
|
11466
11264
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated documentation dependencies <code>mkdocs-redirects</code> to <code>1.2.2</code> and <code>mkdocs-material</code> to <code>9.5.46</code>.</li>
|
|
11467
11265
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11468
11266
|
</ul>
|
|
11469
11267
|
<h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">¶</a></h2>
|
|
11470
|
-
<h3 id="
|
|
11268
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
11471
11269
|
<ul>
|
|
11472
11270
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added <code>nautobot.apps.utils.get_related_field_for_models()</code> helper function.</li>
|
|
11473
11271
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11474
11272
|
</ul>
|
|
11475
|
-
<h3 id="
|
|
11273
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
11476
11274
|
<ul>
|
|
11477
11275
|
<li><a href="https://github.com/nautobot/nautobot/issues/5321">#5321</a> - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.</li>
|
|
11478
11276
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying <code>1</code>.</li>
|
|
11479
11277
|
<li><a href="https://github.com/nautobot/nautobot/issues/6465">#6465</a> - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.</li>
|
|
11480
11278
|
</ul>
|
|
11481
|
-
<h3 id="
|
|
11279
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11482
11280
|
<ul>
|
|
11483
11281
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11484
11282
|
<li><a href="https://github.com/nautobot/nautobot/issues/6442">#6442</a> - Fixed an issue where GitLab CI pipelines fail using all versions of official Docker images.</li>
|
|
@@ -11489,11 +11287,11 @@
|
|
|
11489
11287
|
<li><a href="https://github.com/nautobot/nautobot/issues/6491">#6491</a> - Added missing <code>vrf</code> field to <code>VMInterfaceForm</code> and <code>VMInterfaceCreateForm</code>.</li>
|
|
11490
11288
|
<li><a href="https://github.com/nautobot/nautobot/issues/6492">#6492</a> - Fixed <code>vlan_group</code> field is not filtered by <code>locations</code> field input on VLANForm.</li>
|
|
11491
11289
|
</ul>
|
|
11492
|
-
<h3 id="
|
|
11290
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
11493
11291
|
<ul>
|
|
11494
11292
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11495
11293
|
</ul>
|
|
11496
|
-
<h3 id="
|
|
11294
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11497
11295
|
<ul>
|
|
11498
11296
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.</li>
|
|
11499
11297
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11502,44 +11300,44 @@
|
|
|
11502
11300
|
<li><a href="https://github.com/nautobot/nautobot/issues/6497">#6497</a> - Added support for <code>--no-reusedb</code> option to <code>invoke integration-test</code> task.</li>
|
|
11503
11301
|
</ul>
|
|
11504
11302
|
<h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">¶</a></h2>
|
|
11505
|
-
<h3 id="
|
|
11303
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11506
11304
|
<ul>
|
|
11507
11305
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
|
|
11508
11306
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
|
|
11509
11307
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11510
11308
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
|
|
11511
11309
|
</ul>
|
|
11512
|
-
<h3 id="
|
|
11310
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11513
11311
|
<ul>
|
|
11514
11312
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
|
|
11515
11313
|
</ul>
|
|
11516
|
-
<h3 id="
|
|
11314
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11517
11315
|
<ul>
|
|
11518
11316
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
|
|
11519
11317
|
<li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
|
|
11520
11318
|
</ul>
|
|
11521
|
-
<h3 id="
|
|
11319
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11522
11320
|
<ul>
|
|
11523
11321
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11524
11322
|
</ul>
|
|
11525
|
-
<h3 id="
|
|
11323
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11526
11324
|
<ul>
|
|
11527
11325
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
|
|
11528
11326
|
</ul>
|
|
11529
11327
|
<h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">¶</a></h2>
|
|
11530
|
-
<h3 id="
|
|
11328
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11531
11329
|
<ul>
|
|
11532
11330
|
<li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
|
|
11533
11331
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
|
|
11534
11332
|
<li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
|
|
11535
11333
|
</ul>
|
|
11536
|
-
<h3 id="
|
|
11334
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11537
11335
|
<ul>
|
|
11538
11336
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
|
|
11539
11337
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
|
|
11540
11338
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
|
|
11541
11339
|
</ul>
|
|
11542
|
-
<h3 id="
|
|
11340
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11543
11341
|
<ul>
|
|
11544
11342
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
|
|
11545
11343
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.</li>
|
|
@@ -11548,16 +11346,16 @@
|
|
|
11548
11346
|
<li><a href="https://github.com/nautobot/nautobot/issues/6415">#6415</a> - Added missing column <code>software_version</code> to the Device Table in Device List View.</li>
|
|
11549
11347
|
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the `role' column on Device/VM interfaces.</li>
|
|
11550
11348
|
</ul>
|
|
11551
|
-
<h3 id="
|
|
11349
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11552
11350
|
<ul>
|
|
11553
11351
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
|
|
11554
11352
|
</ul>
|
|
11555
|
-
<h3 id="
|
|
11353
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11556
11354
|
<ul>
|
|
11557
11355
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
|
|
11558
11356
|
</ul>
|
|
11559
11357
|
<h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">¶</a></h2>
|
|
11560
|
-
<h3 id="
|
|
11358
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11561
11359
|
<ul>
|
|
11562
11360
|
<li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
|
|
11563
11361
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
|
|
@@ -11566,27 +11364,27 @@
|
|
|
11566
11364
|
<li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
|
|
11567
11365
|
</ul>
|
|
11568
11366
|
<h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">¶</a></h2>
|
|
11569
|
-
<h3 id="
|
|
11367
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11570
11368
|
<ul>
|
|
11571
11369
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
11572
11370
|
</ul>
|
|
11573
|
-
<h3 id="
|
|
11371
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11574
11372
|
<ul>
|
|
11575
11373
|
<li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
|
|
11576
11374
|
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
|
|
11577
11375
|
</ul>
|
|
11578
|
-
<h3 id="
|
|
11376
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11579
11377
|
<ul>
|
|
11580
11378
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11581
11379
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
|
|
11582
11380
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
|
|
11583
11381
|
<li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
|
|
11584
11382
|
</ul>
|
|
11585
|
-
<h3 id="
|
|
11383
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
11586
11384
|
<ul>
|
|
11587
11385
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
|
|
11588
11386
|
</ul>
|
|
11589
|
-
<h3 id="
|
|
11387
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11590
11388
|
<ul>
|
|
11591
11389
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
|
|
11592
11390
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
|
|
@@ -11597,36 +11395,36 @@
|
|
|
11597
11395
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
|
|
11598
11396
|
</ul>
|
|
11599
11397
|
<h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">¶</a></h2>
|
|
11600
|
-
<h3 id="
|
|
11398
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11601
11399
|
<ul>
|
|
11602
11400
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11603
11401
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11604
11402
|
</ul>
|
|
11605
|
-
<h3 id="
|
|
11403
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11606
11404
|
<ul>
|
|
11607
11405
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
|
|
11608
11406
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed a warning during startup about the <code>extras.FileAttachment</code> model.</li>
|
|
11609
11407
|
</ul>
|
|
11610
|
-
<h3 id="
|
|
11408
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
11611
11409
|
<ul>
|
|
11612
11410
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
|
|
11613
11411
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
|
|
11614
11412
|
</ul>
|
|
11615
|
-
<h3 id="
|
|
11413
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11616
11414
|
<ul>
|
|
11617
11415
|
<li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
|
|
11618
11416
|
</ul>
|
|
11619
11417
|
<h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">¶</a></h2>
|
|
11620
|
-
<h3 id="
|
|
11418
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11621
11419
|
<ul>
|
|
11622
11420
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
|
|
11623
11421
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
11624
11422
|
</ul>
|
|
11625
|
-
<h3 id="
|
|
11423
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11626
11424
|
<ul>
|
|
11627
11425
|
<li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
|
|
11628
11426
|
</ul>
|
|
11629
|
-
<h3 id="
|
|
11427
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11630
11428
|
<ul>
|
|
11631
11429
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
11632
11430
|
<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>
|
|
@@ -11637,16 +11435,16 @@
|
|
|
11637
11435
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
|
|
11638
11436
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
11639
11437
|
</ul>
|
|
11640
|
-
<h3 id="
|
|
11438
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
11641
11439
|
<ul>
|
|
11642
11440
|
<li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
|
|
11643
11441
|
<li><a href="https://github.com/nautobot/nautobot/issues/6287">#6287</a> - Replaced incorrect <code>django-structlog[all]</code> dependency with <code>django-structlog[celery]</code>.</li>
|
|
11644
11442
|
</ul>
|
|
11645
|
-
<h3 id="
|
|
11443
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
11646
11444
|
<ul>
|
|
11647
11445
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
|
|
11648
11446
|
</ul>
|
|
11649
|
-
<h3 id="
|
|
11447
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11650
11448
|
<ul>
|
|
11651
11449
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
11652
11450
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
|
|
@@ -11655,22 +11453,22 @@
|
|
|
11655
11453
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
11656
11454
|
</ul>
|
|
11657
11455
|
<h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">¶</a></h2>
|
|
11658
|
-
<h3 id="
|
|
11456
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
11659
11457
|
<ul>
|
|
11660
11458
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
11661
11459
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
|
|
11662
11460
|
</ul>
|
|
11663
|
-
<h3 id="
|
|
11461
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11664
11462
|
<ul>
|
|
11665
11463
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
|
|
11666
11464
|
</ul>
|
|
11667
|
-
<h3 id="
|
|
11465
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11668
11466
|
<ul>
|
|
11669
11467
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11670
11468
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
11671
11469
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
11672
11470
|
</ul>
|
|
11673
|
-
<h3 id="
|
|
11471
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11674
11472
|
<ul>
|
|
11675
11473
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Required Settings" and "Optional Settings" docs into a single unified "Settings" document.</li>
|
|
11676
11474
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
|
|
@@ -11678,7 +11476,7 @@
|
|
|
11678
11476
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
|
|
11679
11477
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
|
|
11680
11478
|
</ul>
|
|
11681
|
-
<h3 id="
|
|
11479
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11682
11480
|
<ul>
|
|
11683
11481
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
|
|
11684
11482
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
|
|
@@ -11686,22 +11484,22 @@
|
|
|
11686
11484
|
<li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
|
|
11687
11485
|
</ul>
|
|
11688
11486
|
<h2 id="v233-2024-09-16">v2.3.3 (2024-09-16)<a class="headerlink" href="#v233-2024-09-16" title="Permanent link">¶</a></h2>
|
|
11689
|
-
<h3 id="
|
|
11487
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11690
11488
|
<ul>
|
|
11691
11489
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
|
|
11692
11490
|
</ul>
|
|
11693
|
-
<h3 id="
|
|
11491
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11694
11492
|
<ul>
|
|
11695
11493
|
<li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
|
|
11696
11494
|
<li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
|
|
11697
11495
|
<li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
|
|
11698
11496
|
<li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
|
|
11699
11497
|
</ul>
|
|
11700
|
-
<h3 id="
|
|
11498
|
+
<h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">¶</a></h3>
|
|
11701
11499
|
<ul>
|
|
11702
11500
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
|
|
11703
11501
|
</ul>
|
|
11704
|
-
<h3 id="
|
|
11502
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11705
11503
|
<ul>
|
|
11706
11504
|
<li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
|
|
11707
11505
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
|
|
@@ -11711,18 +11509,18 @@
|
|
|
11711
11509
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated development dependency <code>pylint</code> to <code>~3.2.7</code>.</li>
|
|
11712
11510
|
</ul>
|
|
11713
11511
|
<h2 id="v232-2024-09-03">v2.3.2 (2024-09-03)<a class="headerlink" href="#v232-2024-09-03" title="Permanent link">¶</a></h2>
|
|
11714
|
-
<h3 id="
|
|
11512
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11715
11513
|
<ul>
|
|
11716
11514
|
<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>
|
|
11717
11515
|
</ul>
|
|
11718
|
-
<h3 id="
|
|
11516
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
11719
11517
|
<ul>
|
|
11720
11518
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
11721
11519
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
11722
11520
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11723
11521
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11724
11522
|
</ul>
|
|
11725
|
-
<h3 id="
|
|
11523
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11726
11524
|
<ul>
|
|
11727
11525
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
|
|
11728
11526
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
|
|
@@ -11731,7 +11529,7 @@
|
|
|
11731
11529
|
<li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
|
|
11732
11530
|
<li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
|
|
11733
11531
|
</ul>
|
|
11734
|
-
<h3 id="
|
|
11532
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
11735
11533
|
<ul>
|
|
11736
11534
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
11737
11535
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
|
|
@@ -11739,33 +11537,33 @@
|
|
|
11739
11537
|
<li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
|
|
11740
11538
|
</ul>
|
|
11741
11539
|
<h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">¶</a></h2>
|
|
11742
|
-
<h3 id="
|
|
11540
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
11743
11541
|
<ul>
|
|
11744
11542
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
11745
11543
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
|
|
11746
11544
|
<li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
|
|
11747
11545
|
</ul>
|
|
11748
|
-
<h3 id="
|
|
11546
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
11749
11547
|
<ul>
|
|
11750
11548
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11751
11549
|
</ul>
|
|
11752
|
-
<h3 id="
|
|
11550
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11753
11551
|
<ul>
|
|
11754
11552
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
|
|
11755
11553
|
<li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
|
|
11756
11554
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11757
11555
|
<li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
|
|
11758
11556
|
</ul>
|
|
11759
|
-
<h3 id="
|
|
11557
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
11760
11558
|
<ul>
|
|
11761
11559
|
<li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
|
|
11762
11560
|
</ul>
|
|
11763
11561
|
<h2 id="v230-2024-08-08">v2.3.0 (2024-08-08)<a class="headerlink" href="#v230-2024-08-08" title="Permanent link">¶</a></h2>
|
|
11764
|
-
<h3 id="
|
|
11562
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11765
11563
|
<ul>
|
|
11766
11564
|
<li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
|
|
11767
11565
|
</ul>
|
|
11768
|
-
<h3 id="
|
|
11566
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
11769
11567
|
<ul>
|
|
11770
11568
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
11771
11569
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -11775,7 +11573,7 @@
|
|
|
11775
11573
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
|
|
11776
11574
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
|
|
11777
11575
|
</ul>
|
|
11778
|
-
<h3 id="
|
|
11576
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
11779
11577
|
<ul>
|
|
11780
11578
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
|
|
11781
11579
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -11789,7 +11587,7 @@
|
|
|
11789
11587
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11790
11588
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11791
11589
|
</ul>
|
|
11792
|
-
<h3 id="
|
|
11590
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
11793
11591
|
<ul>
|
|
11794
11592
|
<li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
|
|
11795
11593
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -11805,7 +11603,7 @@
|
|
|
11805
11603
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
11806
11604
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>ServiceForm.ip_addresses</code> valid addresses.</li>
|
|
11807
11605
|
</ul>
|
|
11808
|
-
<h3 id="
|
|
11606
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11809
11607
|
<ul>
|
|
11810
11608
|
<li><a href="https://github.com/nautobot/nautobot/issues/5920">#5920</a> - Updated documentation for installation under Ubuntu 24.04 LTS, Fedora 40, AlmaLinux 9, and similar distros.</li>
|
|
11811
11609
|
<li><a href="https://github.com/nautobot/nautobot/issues/6019">#6019</a> - Updated the installation documentation to recommend a more secure set of filesystem permissions.</li>
|
|
@@ -11813,7 +11611,7 @@
|
|
|
11813
11611
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11814
11612
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
11815
11613
|
</ul>
|
|
11816
|
-
<h3 id="
|
|
11614
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
11817
11615
|
<ul>
|
|
11818
11616
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
|
|
11819
11617
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
|
|
@@ -11824,11 +11622,11 @@
|
|
|
11824
11622
|
<li><a href="https://github.com/nautobot/nautobot/issues/6071">#6071</a> - Fixed incorrect generic-test logic in <code>FilterTestCase.test_q_filter_valid</code> for <code>q</code> filters containing <code>iexact</code> lookups.</li>
|
|
11825
11623
|
</ul>
|
|
11826
11624
|
<h2 id="v230-beta1-2024-07-25">v2.3.0-beta.1 (2024-07-25)<a class="headerlink" href="#v230-beta1-2024-07-25" title="Permanent link">¶</a></h2>
|
|
11827
|
-
<h3 id="
|
|
11625
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11828
11626
|
<ul>
|
|
11829
11627
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
|
|
11830
11628
|
</ul>
|
|
11831
|
-
<h3 id="
|
|
11629
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
11832
11630
|
<ul>
|
|
11833
11631
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
11834
11632
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
|
|
@@ -11875,7 +11673,7 @@
|
|
|
11875
11673
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
|
|
11876
11674
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
11877
11675
|
</ul>
|
|
11878
|
-
<h3 id="
|
|
11676
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
11879
11677
|
<ul>
|
|
11880
11678
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
|
|
11881
11679
|
<li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Changed behavior of the <code>CHANGELOG_RETENTION</code> setting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job.</li>
|
|
@@ -11919,7 +11717,7 @@
|
|
|
11919
11717
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
|
|
11920
11718
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
|
|
11921
11719
|
</ul>
|
|
11922
|
-
<h3 id="
|
|
11720
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
11923
11721
|
<ul>
|
|
11924
11722
|
<li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
|
|
11925
11723
|
<li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
|
|
@@ -11943,7 +11741,7 @@
|
|
|
11943
11741
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
11944
11742
|
<li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
|
|
11945
11743
|
</ul>
|
|
11946
|
-
<h3 id="
|
|
11744
|
+
<h3 id="dependencies_7">Dependencies<a class="headerlink" href="#dependencies_7" title="Permanent link">¶</a></h3>
|
|
11947
11745
|
<ul>
|
|
11948
11746
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
11949
11747
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -11969,13 +11767,13 @@
|
|
|
11969
11767
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
|
|
11970
11768
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-timezone-field</code> to version <code>~7.0</code>.</li>
|
|
11971
11769
|
</ul>
|
|
11972
|
-
<h3 id="
|
|
11770
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
11973
11771
|
<ul>
|
|
11974
11772
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
11975
11773
|
<li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
|
|
11976
11774
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11977
11775
|
</ul>
|
|
11978
|
-
<h3 id="
|
|
11776
|
+
<h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">¶</a></h3>
|
|
11979
11777
|
<ul>
|
|
11980
11778
|
<li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
|
|
11981
11779
|
<li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>
|
|
@@ -12031,7 +11829,7 @@
|
|
|
12031
11829
|
<nav class="md-footer__inner md-grid" aria-label="Footer" >
|
|
12032
11830
|
|
|
12033
11831
|
|
|
12034
|
-
<a href="
|
|
11832
|
+
<a href="version-2.4.html" class="md-footer__link md-footer__link--prev" aria-label="Previous: Version 2.4">
|
|
12035
11833
|
<div class="md-footer__button md-icon">
|
|
12036
11834
|
|
|
12037
11835
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
|
|
@@ -12041,7 +11839,7 @@
|
|
|
12041
11839
|
Previous
|
|
12042
11840
|
</span>
|
|
12043
11841
|
<div class="md-ellipsis">
|
|
12044
|
-
|
|
11842
|
+
Version 2.4
|
|
12045
11843
|
</div>
|
|
12046
11844
|
</div>
|
|
12047
11845
|
</a>
|
|
@@ -12143,10 +11941,10 @@
|
|
|
12143
11941
|
</div>
|
|
12144
11942
|
|
|
12145
11943
|
|
|
12146
|
-
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
11944
|
+
<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>
|
|
12147
11945
|
|
|
12148
11946
|
|
|
12149
|
-
<script src="../assets/javascripts/bundle.
|
|
11947
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
12150
11948
|
|
|
12151
11949
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12152
11950
|
|