nautobot 2.3.15b1__py3-none-any.whl → 2.4.0__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/__init__.py +1 -1
- nautobot/apps/api.py +8 -10
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/config.py +32 -3
- nautobot/apps/events.py +19 -0
- nautobot/apps/exceptions.py +0 -2
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +44 -9
- nautobot/apps/utils.py +7 -15
- nautobot/apps/views.py +8 -6
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/navigation.py +0 -57
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- 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/api/views.py +6 -10
- nautobot/cloud/factory.py +4 -1
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/tests/test_filters.py +5 -4
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/metadata.py +28 -256
- nautobot/core/api/pagination.py +3 -2
- nautobot/core/api/renderers.py +3 -0
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +54 -268
- nautobot/core/api/urls.py +3 -4
- nautobot/core/api/utils.py +0 -62
- nautobot/core/api/views.py +102 -159
- nautobot/core/apps/__init__.py +22 -575
- nautobot/core/celery/__init__.py +13 -0
- nautobot/core/celery/schedulers.py +48 -3
- nautobot/core/choices.py +2 -2
- 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 +19 -16
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +62 -14
- nautobot/core/forms/forms.py +33 -2
- 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 +28 -7
- nautobot/core/jobs/bulk_actions.py +248 -0
- nautobot/core/jobs/cleanup.py +2 -2
- 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 +2 -2
- nautobot/core/settings.py +71 -4
- nautobot/core/settings.yaml +107 -0
- nautobot/core/tables.py +15 -51
- nautobot/core/tasks.py +1 -1
- nautobot/core/templates/about.html +67 -0
- 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 +3 -0
- nautobot/core/templates/inc/nav_menu.html +2 -1
- nautobot/core/templates/inc/relationships_panel.html +1 -1
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +16 -0
- nautobot/core/templates/panel_table.html +12 -0
- nautobot/core/templates/utilities/render_jinja2.html +117 -0
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +104 -6
- nautobot/core/templatetags/ui_framework.py +40 -0
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +187 -137
- nautobot/core/testing/context.py +18 -0
- nautobot/core/testing/filters.py +44 -34
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/views.py +68 -146
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +2 -1
- nautobot/core/tests/nautobot_config.py +198 -0
- nautobot/core/tests/runner.py +3 -3
- nautobot/core/tests/test_api.py +154 -176
- nautobot/core/tests/test_events.py +214 -0
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jinja_filters.py +1 -0
- nautobot/core/tests/test_jobs.py +387 -14
- nautobot/core/tests/test_navigations.py +7 -241
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_templatetags_helpers.py +16 -0
- nautobot/core/tests/test_ui.py +150 -0
- nautobot/core/tests/test_utils.py +55 -18
- nautobot/core/tests/test_views.py +153 -5
- 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 +280 -0
- nautobot/core/ui/object_detail.py +1855 -0
- nautobot/core/ui/utils.py +36 -0
- nautobot/core/urls.py +15 -0
- nautobot/core/utils/config.py +30 -3
- nautobot/core/utils/lookup.py +12 -2
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +48 -1
- nautobot/core/views/generic.py +82 -177
- nautobot/core/views/mixins.py +98 -38
- nautobot/core/views/paginator.py +8 -5
- nautobot/core/views/renderers.py +9 -9
- nautobot/core/views/utils.py +11 -0
- nautobot/core/wsgi.py +3 -3
- nautobot/dcim/api/serializers.py +82 -189
- nautobot/dcim/api/urls.py +5 -0
- nautobot/dcim/api/views.py +57 -110
- nautobot/dcim/apps.py +1 -0
- nautobot/dcim/choices.py +28 -0
- nautobot/dcim/factory.py +58 -0
- nautobot/dcim/filters/__init__.py +204 -2
- nautobot/dcim/forms.py +221 -9
- 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/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +5 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +181 -3
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- 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 +103 -7
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller/base.html +10 -0
- nautobot/dcim/templates/dcim/controller_create.html +2 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +6 -10
- nautobot/dcim/templates/dcim/controller_wirelessnetworks.html +25 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +68 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +51 -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 +4 -10
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/interface.html +1 -0
- nautobot/dcim/templates/dcim/interface_edit.html +1 -0
- nautobot/dcim/templates/dcim/location.html +1 -9
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +0 -107
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +8 -0
- nautobot/dcim/templates/dcim/rack.html +1 -9
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackreservation.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +68 -0
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +28 -0
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/test_api.py +188 -64
- nautobot/dcim/tests/test_filters.py +172 -76
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +159 -5
- nautobot/dcim/tests/test_signals.py +1 -0
- nautobot/dcim/tests/test_views.py +118 -88
- nautobot/dcim/urls.py +72 -27
- nautobot/dcim/utils.py +2 -2
- nautobot/dcim/views.py +357 -62
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +111 -87
- nautobot/extras/api/urls.py +4 -0
- nautobot/extras/api/views.py +93 -35
- nautobot/extras/choices.py +13 -0
- nautobot/extras/constants.py +2 -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 +66 -5
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +262 -59
- nautobot/extras/forms/mixins.py +3 -3
- nautobot/extras/graphql/types.py +25 -1
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +114 -20
- 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 +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- 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/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/models/__init__.py +5 -1
- nautobot/extras/models/change_logging.py +7 -3
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +12 -11
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +237 -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 +54 -19
- nautobot/extras/plugins/marketplace_manifest.yml +455 -0
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/urls.py +1 -0
- nautobot/extras/plugins/views.py +104 -61
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/signals.py +39 -1
- nautobot/extras/tables.py +42 -6
- nautobot/extras/templates/extras/dynamicgroup.html +1 -9
- 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 +52 -6
- nautobot/extras/templates/extras/job_edit.html +6 -2
- nautobot/extras/templates/extras/job_list.html +2 -7
- nautobot/extras/templates/extras/jobqueue_retrieve.html +36 -0
- nautobot/extras/templates/extras/marketplace.html +296 -0
- nautobot/extras/templates/extras/plugin_detail.html +32 -15
- nautobot/extras/templates/extras/plugins_list.html +35 -1
- nautobot/extras/templates/extras/plugins_tiles.html +90 -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 +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +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 +2 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +219 -535
- nautobot/extras/tests/test_forms.py +20 -1
- nautobot/extras/tests/test_job_variables.py +73 -152
- nautobot/extras/tests/test_jobs.py +192 -62
- nautobot/extras/tests/test_models.py +71 -16
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +124 -10
- nautobot/extras/tests/test_utils.py +23 -2
- nautobot/extras/tests/test_views.py +162 -161
- nautobot/extras/tests/test_webhooks.py +2 -1
- nautobot/extras/urls.py +2 -20
- nautobot/extras/utils.py +119 -4
- nautobot/extras/views.py +188 -141
- nautobot/extras/webhooks.py +5 -2
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +44 -137
- nautobot/ipam/api/views.py +68 -110
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/models.py +10 -12
- nautobot/ipam/navigation.py +0 -90
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +3 -1
- nautobot/ipam/templates/ipam/ipaddress.html +1 -9
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +1 -9
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/routetarget.html +0 -28
- nautobot/ipam/templates/ipam/vlan.html +1 -9
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vrf.html +0 -47
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +19 -6
- nautobot/ipam/tests/test_filters.py +39 -119
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +56 -36
- nautobot/ipam/tests/test_querysets.py +14 -0
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/urls.py +3 -69
- nautobot/ipam/utils/__init__.py +16 -10
- nautobot/ipam/views.py +91 -162
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/css/base.css +38 -3
- nautobot/project-static/docs/404.html +463 -19
- nautobot/project-static/docs/apps/index.html +463 -19
- nautobot/project-static/docs/apps/nautobot-apps.html +464 -21
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/extra.css +5 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.88dd0f4e.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.88dd0f4e.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +479 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +476 -22
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +792 -291
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +507 -33
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +512 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +473 -22
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +469 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +499 -35
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +9883 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +525 -77
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +548 -53
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +672 -96
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1033 -180
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +526 -51
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +876 -190
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +957 -237
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +477 -23
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +488 -30
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +663 -101
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +949 -481
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +6427 -1236
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +476 -22
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +879 -346
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +830 -173
- nautobot/project-static/docs/development/apps/api/configuration-view.html +463 -19
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/global-search.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/graphql.html +463 -19
- nautobot/project-static/docs/development/apps/api/models/index.html +463 -19
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +463 -19
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +463 -19
- nautobot/project-static/docs/development/apps/api/prometheus.html +463 -19
- nautobot/project-static/docs/development/apps/api/setup.html +467 -155
- nautobot/project-static/docs/development/apps/api/testing.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +463 -19
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +743 -130
- nautobot/project-static/docs/development/apps/api/views/base-template.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/index.html +465 -20
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +467 -19
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +493 -19
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/notes.html +463 -19
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +469 -21
- nautobot/project-static/docs/development/apps/api/views/urls.html +463 -19
- nautobot/project-static/docs/development/apps/index.html +463 -19
- nautobot/project-static/docs/development/apps/migration/code-updates.html +464 -52
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +464 -20
- nautobot/project-static/docs/development/apps/migration/from-v1.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +463 -19
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +466 -22
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +9261 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +9375 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +9671 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +9559 -0
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +466 -22
- nautobot/project-static/docs/development/core/application-registry.html +463 -19
- nautobot/project-static/docs/development/core/best-practices.html +463 -19
- nautobot/project-static/docs/development/core/bootstrap-ui.html +463 -19
- nautobot/project-static/docs/development/core/caching.html +463 -19
- nautobot/project-static/docs/development/core/controllers.html +465 -19
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +491 -90
- nautobot/project-static/docs/development/core/generic-views.html +463 -19
- nautobot/project-static/docs/development/core/getting-started.html +541 -129
- nautobot/project-static/docs/development/core/homepage.html +474 -30
- nautobot/project-static/docs/development/core/index.html +463 -19
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9754 -0
- nautobot/project-static/docs/development/core/model-checklist.html +473 -27
- nautobot/project-static/docs/development/core/model-features.html +463 -19
- nautobot/project-static/docs/development/core/natural-keys.html +463 -19
- nautobot/project-static/docs/development/core/navigation-menu.html +480 -26
- nautobot/project-static/docs/development/core/release-checklist.html +480 -48
- nautobot/project-static/docs/development/core/role-internals.html +463 -19
- nautobot/project-static/docs/development/core/settings.html +463 -19
- nautobot/project-static/docs/development/core/style-guide.html +466 -22
- nautobot/project-static/docs/development/core/templates.html +473 -22
- nautobot/project-static/docs/development/core/testing.html +463 -19
- nautobot/project-static/docs/development/core/ui-component-framework.html +11116 -0
- nautobot/project-static/docs/development/core/user-preferences.html +466 -22
- nautobot/project-static/docs/development/index.html +463 -19
- nautobot/project-static/docs/development/jobs/index.html +501 -21
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +463 -19
- nautobot/project-static/docs/index.html +471 -38
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- 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/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-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/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.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 +469 -23
- nautobot/project-static/docs/overview/design_philosophy.html +463 -19
- nautobot/project-static/docs/release-notes/index.html +485 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +651 -208
- nautobot/project-static/docs/release-notes/version-1.1.html +648 -205
- nautobot/project-static/docs/release-notes/version-1.2.html +723 -280
- nautobot/project-static/docs/release-notes/version-1.3.html +749 -306
- nautobot/project-static/docs/release-notes/version-1.4.html +834 -392
- nautobot/project-static/docs/release-notes/version-1.5.html +1022 -581
- nautobot/project-static/docs/release-notes/version-1.6.html +942 -518
- nautobot/project-static/docs/release-notes/version-2.0.html +945 -504
- nautobot/project-static/docs/release-notes/version-2.1.html +780 -339
- nautobot/project-static/docs/release-notes/version-2.2.html +773 -332
- nautobot/project-static/docs/release-notes/version-2.3.html +1142 -448
- nautobot/project-static/docs/release-notes/version-2.4.html +10323 -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 +342 -270
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +475 -32
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +463 -19
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +894 -180
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +476 -29
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +465 -21
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +483 -23
- nautobot/project-static/docs/user-guide/administration/installation/index.html +468 -20
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +464 -20
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +463 -19
- nautobot/project-static/docs/user-guide/administration/installation/services.html +463 -19
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +463 -19
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +484 -41
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +477 -66
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +477 -66
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +466 -23
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +463 -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 +463 -19
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +469 -21
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +499 -20
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +489 -22
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +9375 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +470 -30
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +466 -22
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +463 -19
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +466 -22
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +9313 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +9217 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +9211 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +9277 -0
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +468 -22
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +463 -19
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +466 -22
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
- nautobot/project-static/docs/user-guide/index.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +467 -23
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +9617 -0
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +472 -23
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +9224 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9722 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +467 -23
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +9292 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +511 -40
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +494 -23
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +466 -22
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +531 -56
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +463 -19
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +463 -19
- nautobot/project-static/img/jinja_logo.svg +97 -0
- nautobot/project-static/js/forms.js +6 -1
- nautobot/project-static/js/nav_menu.js +2 -1
- nautobot/tenancy/api/serializers.py +0 -2
- nautobot/tenancy/api/views.py +9 -13
- 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 +35 -24
- nautobot/users/admin.py +3 -1
- nautobot/users/api/serializers.py +4 -4
- nautobot/users/api/views.py +3 -3
- 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/api/views.py +5 -24
- nautobot/virtualization/filters.py +1 -2
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/navigation.py +0 -48
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/clustertype.html +0 -39
- nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -9
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/tests/test_filters.py +57 -166
- 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 +56 -0
- nautobot/wireless/tests/__init__.py +0 -0
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_api.py +247 -0
- nautobot/wireless/tests/test_filters.py +82 -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 +119 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/METADATA +11 -13
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/RECORD +783 -613
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- nautobot/core/utils/navigation.py +0 -54
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.dist-info}/NOTICE +0 -0
- {nautobot-2.3.15b1.dist-info → nautobot-2.4.0.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.49">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -2112,6 +2112,27 @@
|
|
|
2112
2112
|
|
|
2113
2113
|
|
|
2114
2114
|
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
|
|
2121
|
+
<li class="md-nav__item">
|
|
2122
|
+
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2123
|
+
|
|
2124
|
+
|
|
2125
|
+
<span class="md-ellipsis">
|
|
2126
|
+
Wireless Networks and Controllers
|
|
2127
|
+
</span>
|
|
2128
|
+
|
|
2129
|
+
|
|
2130
|
+
</a>
|
|
2131
|
+
</li>
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
|
|
2115
2136
|
</ul>
|
|
2116
2137
|
</nav>
|
|
2117
2138
|
|
|
@@ -3944,6 +3965,27 @@
|
|
|
3944
3965
|
|
|
3945
3966
|
|
|
3946
3967
|
|
|
3968
|
+
|
|
3969
|
+
|
|
3970
|
+
|
|
3971
|
+
|
|
3972
|
+
|
|
3973
|
+
|
|
3974
|
+
<li class="md-nav__item">
|
|
3975
|
+
<a href="../user-guide/core-data-model/dcim/virtualdevicecontext.html" class="md-nav__link">
|
|
3976
|
+
|
|
3977
|
+
|
|
3978
|
+
<span class="md-ellipsis">
|
|
3979
|
+
Virtual Device Context
|
|
3980
|
+
</span>
|
|
3981
|
+
|
|
3982
|
+
|
|
3983
|
+
</a>
|
|
3984
|
+
</li>
|
|
3985
|
+
|
|
3986
|
+
|
|
3987
|
+
|
|
3988
|
+
|
|
3947
3989
|
</ul>
|
|
3948
3990
|
</nav>
|
|
3949
3991
|
|
|
@@ -4556,6 +4598,123 @@
|
|
|
4556
4598
|
|
|
4557
4599
|
|
|
4558
4600
|
|
|
4601
|
+
|
|
4602
|
+
|
|
4603
|
+
|
|
4604
|
+
|
|
4605
|
+
|
|
4606
|
+
|
|
4607
|
+
|
|
4608
|
+
|
|
4609
|
+
|
|
4610
|
+
|
|
4611
|
+
|
|
4612
|
+
|
|
4613
|
+
|
|
4614
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4615
|
+
|
|
4616
|
+
|
|
4617
|
+
|
|
4618
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_9" >
|
|
4619
|
+
|
|
4620
|
+
|
|
4621
|
+
|
|
4622
|
+
<div class="md-nav__link md-nav__container">
|
|
4623
|
+
<a href="../user-guide/core-data-model/wireless/index.html" class="md-nav__link ">
|
|
4624
|
+
|
|
4625
|
+
|
|
4626
|
+
<span class="md-ellipsis">
|
|
4627
|
+
Wireless
|
|
4628
|
+
</span>
|
|
4629
|
+
|
|
4630
|
+
|
|
4631
|
+
</a>
|
|
4632
|
+
|
|
4633
|
+
|
|
4634
|
+
<label class="md-nav__link " for="__nav_2_3_9" id="__nav_2_3_9_label" tabindex="0">
|
|
4635
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4636
|
+
</label>
|
|
4637
|
+
|
|
4638
|
+
</div>
|
|
4639
|
+
|
|
4640
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_9_label" aria-expanded="false">
|
|
4641
|
+
<label class="md-nav__title" for="__nav_2_3_9">
|
|
4642
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4643
|
+
Wireless
|
|
4644
|
+
</label>
|
|
4645
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
4646
|
+
|
|
4647
|
+
|
|
4648
|
+
|
|
4649
|
+
|
|
4650
|
+
|
|
4651
|
+
|
|
4652
|
+
|
|
4653
|
+
<li class="md-nav__item">
|
|
4654
|
+
<a href="../user-guide/core-data-model/wireless/supporteddatarate.html" class="md-nav__link">
|
|
4655
|
+
|
|
4656
|
+
|
|
4657
|
+
<span class="md-ellipsis">
|
|
4658
|
+
Supported Data Rate
|
|
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/radioprofile.html" class="md-nav__link">
|
|
4676
|
+
|
|
4677
|
+
|
|
4678
|
+
<span class="md-ellipsis">
|
|
4679
|
+
Radio Profile
|
|
4680
|
+
</span>
|
|
4681
|
+
|
|
4682
|
+
|
|
4683
|
+
</a>
|
|
4684
|
+
</li>
|
|
4685
|
+
|
|
4686
|
+
|
|
4687
|
+
|
|
4688
|
+
|
|
4689
|
+
|
|
4690
|
+
|
|
4691
|
+
|
|
4692
|
+
|
|
4693
|
+
|
|
4694
|
+
|
|
4695
|
+
<li class="md-nav__item">
|
|
4696
|
+
<a href="../user-guide/core-data-model/wireless/wirelessnetwork.html" class="md-nav__link">
|
|
4697
|
+
|
|
4698
|
+
|
|
4699
|
+
<span class="md-ellipsis">
|
|
4700
|
+
Wireless Network
|
|
4701
|
+
</span>
|
|
4702
|
+
|
|
4703
|
+
|
|
4704
|
+
</a>
|
|
4705
|
+
</li>
|
|
4706
|
+
|
|
4707
|
+
|
|
4708
|
+
|
|
4709
|
+
|
|
4710
|
+
</ul>
|
|
4711
|
+
</nav>
|
|
4712
|
+
|
|
4713
|
+
</li>
|
|
4714
|
+
|
|
4715
|
+
|
|
4716
|
+
|
|
4717
|
+
|
|
4559
4718
|
</ul>
|
|
4560
4719
|
</nav>
|
|
4561
4720
|
|
|
@@ -4767,6 +4926,27 @@
|
|
|
4767
4926
|
|
|
4768
4927
|
|
|
4769
4928
|
|
|
4929
|
+
<li class="md-nav__item">
|
|
4930
|
+
<a href="../user-guide/platform-functionality/events.html" class="md-nav__link">
|
|
4931
|
+
|
|
4932
|
+
|
|
4933
|
+
<span class="md-ellipsis">
|
|
4934
|
+
Event Notifications
|
|
4935
|
+
</span>
|
|
4936
|
+
|
|
4937
|
+
|
|
4938
|
+
</a>
|
|
4939
|
+
</li>
|
|
4940
|
+
|
|
4941
|
+
|
|
4942
|
+
|
|
4943
|
+
|
|
4944
|
+
|
|
4945
|
+
|
|
4946
|
+
|
|
4947
|
+
|
|
4948
|
+
|
|
4949
|
+
|
|
4770
4950
|
<li class="md-nav__item">
|
|
4771
4951
|
<a href="../user-guide/platform-functionality/exporttemplate.html" class="md-nav__link">
|
|
4772
4952
|
|
|
@@ -4841,7 +5021,7 @@
|
|
|
4841
5021
|
|
|
4842
5022
|
|
|
4843
5023
|
|
|
4844
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5024
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_10" >
|
|
4845
5025
|
|
|
4846
5026
|
|
|
4847
5027
|
|
|
@@ -4857,14 +5037,14 @@
|
|
|
4857
5037
|
</a>
|
|
4858
5038
|
|
|
4859
5039
|
|
|
4860
|
-
<label class="md-nav__link " for="
|
|
5040
|
+
<label class="md-nav__link " for="__nav_2_4_10" id="__nav_2_4_10_label" tabindex="0">
|
|
4861
5041
|
<span class="md-nav__icon md-icon"></span>
|
|
4862
5042
|
</label>
|
|
4863
5043
|
|
|
4864
5044
|
</div>
|
|
4865
5045
|
|
|
4866
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4867
|
-
<label class="md-nav__title" for="
|
|
5046
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_10_label" aria-expanded="false">
|
|
5047
|
+
<label class="md-nav__title" for="__nav_2_4_10">
|
|
4868
5048
|
<span class="md-nav__icon md-icon"></span>
|
|
4869
5049
|
GraphQL
|
|
4870
5050
|
</label>
|
|
@@ -4937,7 +5117,7 @@
|
|
|
4937
5117
|
|
|
4938
5118
|
|
|
4939
5119
|
|
|
4940
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5120
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_12" >
|
|
4941
5121
|
|
|
4942
5122
|
|
|
4943
5123
|
|
|
@@ -4953,14 +5133,14 @@
|
|
|
4953
5133
|
</a>
|
|
4954
5134
|
|
|
4955
5135
|
|
|
4956
|
-
<label class="md-nav__link " for="
|
|
5136
|
+
<label class="md-nav__link " for="__nav_2_4_12" id="__nav_2_4_12_label" tabindex="0">
|
|
4957
5137
|
<span class="md-nav__icon md-icon"></span>
|
|
4958
5138
|
</label>
|
|
4959
5139
|
|
|
4960
5140
|
</div>
|
|
4961
5141
|
|
|
4962
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4963
|
-
<label class="md-nav__title" for="
|
|
5142
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_12_label" aria-expanded="false">
|
|
5143
|
+
<label class="md-nav__title" for="__nav_2_4_12">
|
|
4964
5144
|
<span class="md-nav__icon md-icon"></span>
|
|
4965
5145
|
Jobs
|
|
4966
5146
|
</label>
|
|
@@ -4972,6 +5152,27 @@
|
|
|
4972
5152
|
|
|
4973
5153
|
|
|
4974
5154
|
|
|
5155
|
+
<li class="md-nav__item">
|
|
5156
|
+
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5157
|
+
|
|
5158
|
+
|
|
5159
|
+
<span class="md-ellipsis">
|
|
5160
|
+
Kubernetes Job Support
|
|
5161
|
+
</span>
|
|
5162
|
+
|
|
5163
|
+
|
|
5164
|
+
</a>
|
|
5165
|
+
</li>
|
|
5166
|
+
|
|
5167
|
+
|
|
5168
|
+
|
|
5169
|
+
|
|
5170
|
+
|
|
5171
|
+
|
|
5172
|
+
|
|
5173
|
+
|
|
5174
|
+
|
|
5175
|
+
|
|
4975
5176
|
<li class="md-nav__item">
|
|
4976
5177
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
4977
5178
|
|
|
@@ -5035,6 +5236,27 @@
|
|
|
5035
5236
|
|
|
5036
5237
|
|
|
5037
5238
|
|
|
5239
|
+
<li class="md-nav__item">
|
|
5240
|
+
<a href="../user-guide/platform-functionality/jobs/jobqueue.html" class="md-nav__link">
|
|
5241
|
+
|
|
5242
|
+
|
|
5243
|
+
<span class="md-ellipsis">
|
|
5244
|
+
Job Queues
|
|
5245
|
+
</span>
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
</a>
|
|
5249
|
+
</li>
|
|
5250
|
+
|
|
5251
|
+
|
|
5252
|
+
|
|
5253
|
+
|
|
5254
|
+
|
|
5255
|
+
|
|
5256
|
+
|
|
5257
|
+
|
|
5258
|
+
|
|
5259
|
+
|
|
5038
5260
|
<li class="md-nav__item">
|
|
5039
5261
|
<a href="../user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html" class="md-nav__link">
|
|
5040
5262
|
|
|
@@ -5148,6 +5370,27 @@
|
|
|
5148
5370
|
|
|
5149
5371
|
|
|
5150
5372
|
|
|
5373
|
+
<li class="md-nav__item">
|
|
5374
|
+
<a href="../user-guide/platform-functionality/rendering-jinja-templates.html" class="md-nav__link">
|
|
5375
|
+
|
|
5376
|
+
|
|
5377
|
+
<span class="md-ellipsis">
|
|
5378
|
+
Rendering Jinja Templates
|
|
5379
|
+
</span>
|
|
5380
|
+
|
|
5381
|
+
|
|
5382
|
+
</a>
|
|
5383
|
+
</li>
|
|
5384
|
+
|
|
5385
|
+
|
|
5386
|
+
|
|
5387
|
+
|
|
5388
|
+
|
|
5389
|
+
|
|
5390
|
+
|
|
5391
|
+
|
|
5392
|
+
|
|
5393
|
+
|
|
5151
5394
|
|
|
5152
5395
|
|
|
5153
5396
|
|
|
@@ -5159,7 +5402,7 @@
|
|
|
5159
5402
|
|
|
5160
5403
|
|
|
5161
5404
|
|
|
5162
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5405
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_18" >
|
|
5163
5406
|
|
|
5164
5407
|
|
|
5165
5408
|
|
|
@@ -5175,14 +5418,14 @@
|
|
|
5175
5418
|
</a>
|
|
5176
5419
|
|
|
5177
5420
|
|
|
5178
|
-
<label class="md-nav__link " for="
|
|
5421
|
+
<label class="md-nav__link " for="__nav_2_4_18" id="__nav_2_4_18_label" tabindex="0">
|
|
5179
5422
|
<span class="md-nav__icon md-icon"></span>
|
|
5180
5423
|
</label>
|
|
5181
5424
|
|
|
5182
5425
|
</div>
|
|
5183
5426
|
|
|
5184
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
5185
|
-
<label class="md-nav__title" for="
|
|
5427
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_18_label" aria-expanded="false">
|
|
5428
|
+
<label class="md-nav__title" for="__nav_2_4_18">
|
|
5186
5429
|
<span class="md-nav__icon md-icon"></span>
|
|
5187
5430
|
REST API
|
|
5188
5431
|
</label>
|
|
@@ -5402,10 +5645,10 @@
|
|
|
5402
5645
|
|
|
5403
5646
|
|
|
5404
5647
|
|
|
5405
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5648
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_25" >
|
|
5406
5649
|
|
|
5407
5650
|
|
|
5408
|
-
<label class="md-nav__link" for="
|
|
5651
|
+
<label class="md-nav__link" for="__nav_2_4_25" id="__nav_2_4_25_label" tabindex="0">
|
|
5409
5652
|
|
|
5410
5653
|
|
|
5411
5654
|
<span class="md-ellipsis">
|
|
@@ -5416,8 +5659,8 @@
|
|
|
5416
5659
|
<span class="md-nav__icon md-icon"></span>
|
|
5417
5660
|
</label>
|
|
5418
5661
|
|
|
5419
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
5420
|
-
<label class="md-nav__title" for="
|
|
5662
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_25_label" aria-expanded="false">
|
|
5663
|
+
<label class="md-nav__title" for="__nav_2_4_25">
|
|
5421
5664
|
<span class="md-nav__icon md-icon"></span>
|
|
5422
5665
|
Users
|
|
5423
5666
|
</label>
|
|
@@ -6822,6 +7065,27 @@
|
|
|
6822
7065
|
|
|
6823
7066
|
|
|
6824
7067
|
|
|
7068
|
+
<li class="md-nav__item">
|
|
7069
|
+
<a href="../code-reference/nautobot/apps/events.html" class="md-nav__link">
|
|
7070
|
+
|
|
7071
|
+
|
|
7072
|
+
<span class="md-ellipsis">
|
|
7073
|
+
nautobot.apps.events
|
|
7074
|
+
</span>
|
|
7075
|
+
|
|
7076
|
+
|
|
7077
|
+
</a>
|
|
7078
|
+
</li>
|
|
7079
|
+
|
|
7080
|
+
|
|
7081
|
+
|
|
7082
|
+
|
|
7083
|
+
|
|
7084
|
+
|
|
7085
|
+
|
|
7086
|
+
|
|
7087
|
+
|
|
7088
|
+
|
|
6825
7089
|
<li class="md-nav__item">
|
|
6826
7090
|
<a href="../code-reference/nautobot/apps/exceptions.html" class="md-nav__link">
|
|
6827
7091
|
|
|
@@ -7370,14 +7634,6 @@
|
|
|
7370
7634
|
|
|
7371
7635
|
|
|
7372
7636
|
|
|
7373
|
-
</ul>
|
|
7374
|
-
</nav>
|
|
7375
|
-
|
|
7376
|
-
</li>
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
7637
|
|
|
7382
7638
|
|
|
7383
7639
|
|
|
@@ -7395,21 +7651,146 @@
|
|
|
7395
7651
|
|
|
7396
7652
|
|
|
7397
7653
|
|
|
7398
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
7654
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_5" >
|
|
7399
7655
|
|
|
7400
7656
|
|
|
7401
|
-
|
|
7402
|
-
|
|
7657
|
+
|
|
7658
|
+
<div class="md-nav__link md-nav__container">
|
|
7659
|
+
<a href="../development/apps/migration/ui-component-framework/index.html" class="md-nav__link ">
|
|
7660
|
+
|
|
7403
7661
|
|
|
7404
7662
|
<span class="md-ellipsis">
|
|
7405
|
-
|
|
7663
|
+
UI Component Framework
|
|
7406
7664
|
</span>
|
|
7407
7665
|
|
|
7408
7666
|
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7667
|
+
</a>
|
|
7668
|
+
|
|
7669
|
+
|
|
7670
|
+
<label class="md-nav__link " for="__nav_3_2_9_5" id="__nav_3_2_9_5_label" tabindex="0">
|
|
7671
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7672
|
+
</label>
|
|
7673
|
+
|
|
7674
|
+
</div>
|
|
7675
|
+
|
|
7676
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_3_2_9_5_label" aria-expanded="false">
|
|
7677
|
+
<label class="md-nav__title" for="__nav_3_2_9_5">
|
|
7678
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7679
|
+
UI Component Framework
|
|
7680
|
+
</label>
|
|
7681
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
7682
|
+
|
|
7683
|
+
|
|
7684
|
+
|
|
7685
|
+
|
|
7686
|
+
|
|
7687
|
+
|
|
7688
|
+
|
|
7689
|
+
<li class="md-nav__item">
|
|
7690
|
+
<a href="../development/apps/migration/ui-component-framework/migration-steps.html" class="md-nav__link">
|
|
7691
|
+
|
|
7692
|
+
|
|
7693
|
+
<span class="md-ellipsis">
|
|
7694
|
+
Migration steps
|
|
7695
|
+
</span>
|
|
7696
|
+
|
|
7697
|
+
|
|
7698
|
+
</a>
|
|
7699
|
+
</li>
|
|
7700
|
+
|
|
7701
|
+
|
|
7702
|
+
|
|
7703
|
+
|
|
7704
|
+
|
|
7705
|
+
|
|
7706
|
+
|
|
7707
|
+
|
|
7708
|
+
|
|
7709
|
+
|
|
7710
|
+
<li class="md-nav__item">
|
|
7711
|
+
<a href="../development/apps/migration/ui-component-framework/custom-content.html" class="md-nav__link">
|
|
7712
|
+
|
|
7713
|
+
|
|
7714
|
+
<span class="md-ellipsis">
|
|
7715
|
+
Custom content
|
|
7716
|
+
</span>
|
|
7717
|
+
|
|
7718
|
+
|
|
7719
|
+
</a>
|
|
7720
|
+
</li>
|
|
7721
|
+
|
|
7722
|
+
|
|
7723
|
+
|
|
7724
|
+
|
|
7725
|
+
|
|
7726
|
+
|
|
7727
|
+
|
|
7728
|
+
|
|
7729
|
+
|
|
7730
|
+
|
|
7731
|
+
<li class="md-nav__item">
|
|
7732
|
+
<a href="../development/apps/migration/ui-component-framework/best-practices.html" class="md-nav__link">
|
|
7733
|
+
|
|
7734
|
+
|
|
7735
|
+
<span class="md-ellipsis">
|
|
7736
|
+
Best practices
|
|
7737
|
+
</span>
|
|
7738
|
+
|
|
7739
|
+
|
|
7740
|
+
</a>
|
|
7741
|
+
</li>
|
|
7742
|
+
|
|
7743
|
+
|
|
7744
|
+
|
|
7745
|
+
|
|
7746
|
+
</ul>
|
|
7747
|
+
</nav>
|
|
7748
|
+
|
|
7749
|
+
</li>
|
|
7750
|
+
|
|
7751
|
+
|
|
7752
|
+
|
|
7753
|
+
|
|
7754
|
+
</ul>
|
|
7755
|
+
</nav>
|
|
7756
|
+
|
|
7757
|
+
</li>
|
|
7758
|
+
|
|
7759
|
+
|
|
7760
|
+
|
|
7761
|
+
|
|
7762
|
+
|
|
7763
|
+
|
|
7764
|
+
|
|
7765
|
+
|
|
7766
|
+
|
|
7767
|
+
|
|
7768
|
+
|
|
7769
|
+
|
|
7770
|
+
|
|
7771
|
+
|
|
7772
|
+
|
|
7773
|
+
|
|
7774
|
+
|
|
7775
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7776
|
+
|
|
7777
|
+
|
|
7778
|
+
|
|
7779
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
7780
|
+
|
|
7781
|
+
|
|
7782
|
+
<label class="md-nav__link" for="__nav_3_2_10" id="__nav_3_2_10_label" tabindex="0">
|
|
7783
|
+
|
|
7784
|
+
|
|
7785
|
+
<span class="md-ellipsis">
|
|
7786
|
+
Advanced
|
|
7787
|
+
</span>
|
|
7788
|
+
|
|
7789
|
+
|
|
7790
|
+
<span class="md-nav__icon md-icon"></span>
|
|
7791
|
+
</label>
|
|
7792
|
+
|
|
7793
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_10_label" aria-expanded="false">
|
|
7413
7794
|
<label class="md-nav__title" for="__nav_3_2_10">
|
|
7414
7795
|
<span class="md-nav__icon md-icon"></span>
|
|
7415
7796
|
Advanced
|
|
@@ -7715,6 +8096,27 @@
|
|
|
7715
8096
|
|
|
7716
8097
|
|
|
7717
8098
|
|
|
8099
|
+
<li class="md-nav__item">
|
|
8100
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8101
|
+
|
|
8102
|
+
|
|
8103
|
+
<span class="md-ellipsis">
|
|
8104
|
+
Minikube Dev Environment for K8s Jobs
|
|
8105
|
+
</span>
|
|
8106
|
+
|
|
8107
|
+
|
|
8108
|
+
</a>
|
|
8109
|
+
</li>
|
|
8110
|
+
|
|
8111
|
+
|
|
8112
|
+
|
|
8113
|
+
|
|
8114
|
+
|
|
8115
|
+
|
|
8116
|
+
|
|
8117
|
+
|
|
8118
|
+
|
|
8119
|
+
|
|
7718
8120
|
<li class="md-nav__item">
|
|
7719
8121
|
<a href="../development/core/model-checklist.html" class="md-nav__link">
|
|
7720
8122
|
|
|
@@ -7904,6 +8306,27 @@
|
|
|
7904
8306
|
|
|
7905
8307
|
|
|
7906
8308
|
|
|
8309
|
+
<li class="md-nav__item">
|
|
8310
|
+
<a href="../development/core/ui-component-framework.html" class="md-nav__link">
|
|
8311
|
+
|
|
8312
|
+
|
|
8313
|
+
<span class="md-ellipsis">
|
|
8314
|
+
UI Component Framework
|
|
8315
|
+
</span>
|
|
8316
|
+
|
|
8317
|
+
|
|
8318
|
+
</a>
|
|
8319
|
+
</li>
|
|
8320
|
+
|
|
8321
|
+
|
|
8322
|
+
|
|
8323
|
+
|
|
8324
|
+
|
|
8325
|
+
|
|
8326
|
+
|
|
8327
|
+
|
|
8328
|
+
|
|
8329
|
+
|
|
7907
8330
|
<li class="md-nav__item">
|
|
7908
8331
|
<a href="../development/core/release-checklist.html" class="md-nav__link">
|
|
7909
8332
|
|
|
@@ -7989,6 +8412,27 @@
|
|
|
7989
8412
|
|
|
7990
8413
|
|
|
7991
8414
|
|
|
8415
|
+
|
|
8416
|
+
|
|
8417
|
+
<li class="md-nav__item">
|
|
8418
|
+
<a href="version-2.4.html" class="md-nav__link">
|
|
8419
|
+
|
|
8420
|
+
|
|
8421
|
+
<span class="md-ellipsis">
|
|
8422
|
+
Version 2.4
|
|
8423
|
+
</span>
|
|
8424
|
+
|
|
8425
|
+
|
|
8426
|
+
</a>
|
|
8427
|
+
</li>
|
|
8428
|
+
|
|
8429
|
+
|
|
8430
|
+
|
|
8431
|
+
|
|
8432
|
+
|
|
8433
|
+
|
|
8434
|
+
|
|
8435
|
+
|
|
7992
8436
|
|
|
7993
8437
|
|
|
7994
8438
|
|
|
@@ -8254,6 +8698,108 @@
|
|
|
8254
8698
|
</ul>
|
|
8255
8699
|
</nav>
|
|
8256
8700
|
|
|
8701
|
+
</li>
|
|
8702
|
+
|
|
8703
|
+
<li class="md-nav__item">
|
|
8704
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
8705
|
+
<span class="md-ellipsis">
|
|
8706
|
+
v2.3.16 (2025-01-06)
|
|
8707
|
+
</span>
|
|
8708
|
+
</a>
|
|
8709
|
+
|
|
8710
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
8711
|
+
<ul class="md-nav__list">
|
|
8712
|
+
|
|
8713
|
+
<li class="md-nav__item">
|
|
8714
|
+
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
8715
|
+
<span class="md-ellipsis">
|
|
8716
|
+
Fixed in v2.3.16
|
|
8717
|
+
</span>
|
|
8718
|
+
</a>
|
|
8719
|
+
|
|
8720
|
+
</li>
|
|
8721
|
+
|
|
8722
|
+
<li class="md-nav__item">
|
|
8723
|
+
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
8724
|
+
<span class="md-ellipsis">
|
|
8725
|
+
Housekeeping in v2.3.16
|
|
8726
|
+
</span>
|
|
8727
|
+
</a>
|
|
8728
|
+
|
|
8729
|
+
</li>
|
|
8730
|
+
|
|
8731
|
+
</ul>
|
|
8732
|
+
</nav>
|
|
8733
|
+
|
|
8734
|
+
</li>
|
|
8735
|
+
|
|
8736
|
+
<li class="md-nav__item">
|
|
8737
|
+
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
8738
|
+
<span class="md-ellipsis">
|
|
8739
|
+
v2.3.15 (2025-01-02)
|
|
8740
|
+
</span>
|
|
8741
|
+
</a>
|
|
8742
|
+
|
|
8743
|
+
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
8744
|
+
<ul class="md-nav__list">
|
|
8745
|
+
|
|
8746
|
+
<li class="md-nav__item">
|
|
8747
|
+
<a href="#security-in-v2315" class="md-nav__link">
|
|
8748
|
+
<span class="md-ellipsis">
|
|
8749
|
+
Security in v2.3.15
|
|
8750
|
+
</span>
|
|
8751
|
+
</a>
|
|
8752
|
+
|
|
8753
|
+
</li>
|
|
8754
|
+
|
|
8755
|
+
<li class="md-nav__item">
|
|
8756
|
+
<a href="#added-in-v2315" class="md-nav__link">
|
|
8757
|
+
<span class="md-ellipsis">
|
|
8758
|
+
Added in v2.3.15
|
|
8759
|
+
</span>
|
|
8760
|
+
</a>
|
|
8761
|
+
|
|
8762
|
+
</li>
|
|
8763
|
+
|
|
8764
|
+
<li class="md-nav__item">
|
|
8765
|
+
<a href="#changed-in-v2315" class="md-nav__link">
|
|
8766
|
+
<span class="md-ellipsis">
|
|
8767
|
+
Changed in v2.3.15
|
|
8768
|
+
</span>
|
|
8769
|
+
</a>
|
|
8770
|
+
|
|
8771
|
+
</li>
|
|
8772
|
+
|
|
8773
|
+
<li class="md-nav__item">
|
|
8774
|
+
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
8775
|
+
<span class="md-ellipsis">
|
|
8776
|
+
Fixed in v2.3.15
|
|
8777
|
+
</span>
|
|
8778
|
+
</a>
|
|
8779
|
+
|
|
8780
|
+
</li>
|
|
8781
|
+
|
|
8782
|
+
<li class="md-nav__item">
|
|
8783
|
+
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
8784
|
+
<span class="md-ellipsis">
|
|
8785
|
+
Dependencies in v2.3.15
|
|
8786
|
+
</span>
|
|
8787
|
+
</a>
|
|
8788
|
+
|
|
8789
|
+
</li>
|
|
8790
|
+
|
|
8791
|
+
<li class="md-nav__item">
|
|
8792
|
+
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
8793
|
+
<span class="md-ellipsis">
|
|
8794
|
+
Housekeeping in v2.3.15
|
|
8795
|
+
</span>
|
|
8796
|
+
</a>
|
|
8797
|
+
|
|
8798
|
+
</li>
|
|
8799
|
+
|
|
8800
|
+
</ul>
|
|
8801
|
+
</nav>
|
|
8802
|
+
|
|
8257
8803
|
</li>
|
|
8258
8804
|
|
|
8259
8805
|
<li class="md-nav__item">
|
|
@@ -8267,45 +8813,45 @@
|
|
|
8267
8813
|
<ul class="md-nav__list">
|
|
8268
8814
|
|
|
8269
8815
|
<li class="md-nav__item">
|
|
8270
|
-
<a href="#
|
|
8816
|
+
<a href="#added-in-v2314" class="md-nav__link">
|
|
8271
8817
|
<span class="md-ellipsis">
|
|
8272
|
-
Added
|
|
8818
|
+
Added in v2.3.14
|
|
8273
8819
|
</span>
|
|
8274
8820
|
</a>
|
|
8275
8821
|
|
|
8276
8822
|
</li>
|
|
8277
8823
|
|
|
8278
8824
|
<li class="md-nav__item">
|
|
8279
|
-
<a href="#
|
|
8825
|
+
<a href="#changed-in-v2314" class="md-nav__link">
|
|
8280
8826
|
<span class="md-ellipsis">
|
|
8281
|
-
Changed
|
|
8827
|
+
Changed in v2.3.14
|
|
8282
8828
|
</span>
|
|
8283
8829
|
</a>
|
|
8284
8830
|
|
|
8285
8831
|
</li>
|
|
8286
8832
|
|
|
8287
8833
|
<li class="md-nav__item">
|
|
8288
|
-
<a href="#fixed" class="md-nav__link">
|
|
8834
|
+
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
8289
8835
|
<span class="md-ellipsis">
|
|
8290
|
-
Fixed
|
|
8836
|
+
Fixed in v2.3.14
|
|
8291
8837
|
</span>
|
|
8292
8838
|
</a>
|
|
8293
8839
|
|
|
8294
8840
|
</li>
|
|
8295
8841
|
|
|
8296
8842
|
<li class="md-nav__item">
|
|
8297
|
-
<a href="#documentation" class="md-nav__link">
|
|
8843
|
+
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
8298
8844
|
<span class="md-ellipsis">
|
|
8299
|
-
Documentation
|
|
8845
|
+
Documentation in v2.3.14
|
|
8300
8846
|
</span>
|
|
8301
8847
|
</a>
|
|
8302
8848
|
|
|
8303
8849
|
</li>
|
|
8304
8850
|
|
|
8305
8851
|
<li class="md-nav__item">
|
|
8306
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8852
|
+
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
8307
8853
|
<span class="md-ellipsis">
|
|
8308
|
-
Housekeeping
|
|
8854
|
+
Housekeeping in v2.3.14
|
|
8309
8855
|
</span>
|
|
8310
8856
|
</a>
|
|
8311
8857
|
|
|
@@ -8327,63 +8873,63 @@
|
|
|
8327
8873
|
<ul class="md-nav__list">
|
|
8328
8874
|
|
|
8329
8875
|
<li class="md-nav__item">
|
|
8330
|
-
<a href="#security" class="md-nav__link">
|
|
8876
|
+
<a href="#security-in-v2313" class="md-nav__link">
|
|
8331
8877
|
<span class="md-ellipsis">
|
|
8332
|
-
Security
|
|
8878
|
+
Security in v2.3.13
|
|
8333
8879
|
</span>
|
|
8334
8880
|
</a>
|
|
8335
8881
|
|
|
8336
8882
|
</li>
|
|
8337
8883
|
|
|
8338
8884
|
<li class="md-nav__item">
|
|
8339
|
-
<a href="#
|
|
8885
|
+
<a href="#added-in-v2313" class="md-nav__link">
|
|
8340
8886
|
<span class="md-ellipsis">
|
|
8341
|
-
Added
|
|
8887
|
+
Added in v2.3.13
|
|
8342
8888
|
</span>
|
|
8343
8889
|
</a>
|
|
8344
8890
|
|
|
8345
8891
|
</li>
|
|
8346
8892
|
|
|
8347
8893
|
<li class="md-nav__item">
|
|
8348
|
-
<a href="#
|
|
8894
|
+
<a href="#changed-in-v2313" class="md-nav__link">
|
|
8349
8895
|
<span class="md-ellipsis">
|
|
8350
|
-
Changed
|
|
8896
|
+
Changed in v2.3.13
|
|
8351
8897
|
</span>
|
|
8352
8898
|
</a>
|
|
8353
8899
|
|
|
8354
8900
|
</li>
|
|
8355
8901
|
|
|
8356
8902
|
<li class="md-nav__item">
|
|
8357
|
-
<a href="#
|
|
8903
|
+
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
8358
8904
|
<span class="md-ellipsis">
|
|
8359
|
-
Fixed
|
|
8905
|
+
Fixed in v2.3.13
|
|
8360
8906
|
</span>
|
|
8361
8907
|
</a>
|
|
8362
8908
|
|
|
8363
8909
|
</li>
|
|
8364
8910
|
|
|
8365
8911
|
<li class="md-nav__item">
|
|
8366
|
-
<a href="#
|
|
8912
|
+
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
8367
8913
|
<span class="md-ellipsis">
|
|
8368
|
-
Dependencies
|
|
8914
|
+
Dependencies in v2.3.13
|
|
8369
8915
|
</span>
|
|
8370
8916
|
</a>
|
|
8371
8917
|
|
|
8372
8918
|
</li>
|
|
8373
8919
|
|
|
8374
8920
|
<li class="md-nav__item">
|
|
8375
|
-
<a href="#
|
|
8921
|
+
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
8376
8922
|
<span class="md-ellipsis">
|
|
8377
|
-
Documentation
|
|
8923
|
+
Documentation in v2.3.13
|
|
8378
8924
|
</span>
|
|
8379
8925
|
</a>
|
|
8380
8926
|
|
|
8381
8927
|
</li>
|
|
8382
8928
|
|
|
8383
8929
|
<li class="md-nav__item">
|
|
8384
|
-
<a href="#
|
|
8930
|
+
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
8385
8931
|
<span class="md-ellipsis">
|
|
8386
|
-
Housekeeping
|
|
8932
|
+
Housekeeping in v2.3.13
|
|
8387
8933
|
</span>
|
|
8388
8934
|
</a>
|
|
8389
8935
|
|
|
@@ -8405,45 +8951,45 @@
|
|
|
8405
8951
|
<ul class="md-nav__list">
|
|
8406
8952
|
|
|
8407
8953
|
<li class="md-nav__item">
|
|
8408
|
-
<a href="#
|
|
8954
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
8409
8955
|
<span class="md-ellipsis">
|
|
8410
|
-
Added
|
|
8956
|
+
Added in v2.3.12
|
|
8411
8957
|
</span>
|
|
8412
8958
|
</a>
|
|
8413
8959
|
|
|
8414
8960
|
</li>
|
|
8415
8961
|
|
|
8416
8962
|
<li class="md-nav__item">
|
|
8417
|
-
<a href="#
|
|
8963
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
8418
8964
|
<span class="md-ellipsis">
|
|
8419
|
-
Fixed
|
|
8965
|
+
Fixed in v2.3.12
|
|
8420
8966
|
</span>
|
|
8421
8967
|
</a>
|
|
8422
8968
|
|
|
8423
8969
|
</li>
|
|
8424
8970
|
|
|
8425
8971
|
<li class="md-nav__item">
|
|
8426
|
-
<a href="#
|
|
8972
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
8427
8973
|
<span class="md-ellipsis">
|
|
8428
|
-
Dependencies
|
|
8974
|
+
Dependencies in v2.3.12
|
|
8429
8975
|
</span>
|
|
8430
8976
|
</a>
|
|
8431
8977
|
|
|
8432
8978
|
</li>
|
|
8433
8979
|
|
|
8434
8980
|
<li class="md-nav__item">
|
|
8435
|
-
<a href="#
|
|
8981
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
8436
8982
|
<span class="md-ellipsis">
|
|
8437
|
-
Documentation
|
|
8983
|
+
Documentation in v2.3.12
|
|
8438
8984
|
</span>
|
|
8439
8985
|
</a>
|
|
8440
8986
|
|
|
8441
8987
|
</li>
|
|
8442
8988
|
|
|
8443
8989
|
<li class="md-nav__item">
|
|
8444
|
-
<a href="#
|
|
8990
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
8445
8991
|
<span class="md-ellipsis">
|
|
8446
|
-
Housekeeping
|
|
8992
|
+
Housekeeping in v2.3.12
|
|
8447
8993
|
</span>
|
|
8448
8994
|
</a>
|
|
8449
8995
|
|
|
@@ -8465,45 +9011,45 @@
|
|
|
8465
9011
|
<ul class="md-nav__list">
|
|
8466
9012
|
|
|
8467
9013
|
<li class="md-nav__item">
|
|
8468
|
-
<a href="#
|
|
9014
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
8469
9015
|
<span class="md-ellipsis">
|
|
8470
|
-
Added
|
|
9016
|
+
Added in v2.3.11
|
|
8471
9017
|
</span>
|
|
8472
9018
|
</a>
|
|
8473
9019
|
|
|
8474
9020
|
</li>
|
|
8475
9021
|
|
|
8476
9022
|
<li class="md-nav__item">
|
|
8477
|
-
<a href="#
|
|
9023
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
8478
9024
|
<span class="md-ellipsis">
|
|
8479
|
-
Changed
|
|
9025
|
+
Changed in v2.3.11
|
|
8480
9026
|
</span>
|
|
8481
9027
|
</a>
|
|
8482
9028
|
|
|
8483
9029
|
</li>
|
|
8484
9030
|
|
|
8485
9031
|
<li class="md-nav__item">
|
|
8486
|
-
<a href="#
|
|
9032
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
8487
9033
|
<span class="md-ellipsis">
|
|
8488
|
-
Fixed
|
|
9034
|
+
Fixed in v2.3.11
|
|
8489
9035
|
</span>
|
|
8490
9036
|
</a>
|
|
8491
9037
|
|
|
8492
9038
|
</li>
|
|
8493
9039
|
|
|
8494
9040
|
<li class="md-nav__item">
|
|
8495
|
-
<a href="#
|
|
9041
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
8496
9042
|
<span class="md-ellipsis">
|
|
8497
|
-
Documentation
|
|
9043
|
+
Documentation in v2.3.11
|
|
8498
9044
|
</span>
|
|
8499
9045
|
</a>
|
|
8500
9046
|
|
|
8501
9047
|
</li>
|
|
8502
9048
|
|
|
8503
9049
|
<li class="md-nav__item">
|
|
8504
|
-
<a href="#
|
|
9050
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
8505
9051
|
<span class="md-ellipsis">
|
|
8506
|
-
Housekeeping
|
|
9052
|
+
Housekeeping in v2.3.11
|
|
8507
9053
|
</span>
|
|
8508
9054
|
</a>
|
|
8509
9055
|
|
|
@@ -8525,45 +9071,45 @@
|
|
|
8525
9071
|
<ul class="md-nav__list">
|
|
8526
9072
|
|
|
8527
9073
|
<li class="md-nav__item">
|
|
8528
|
-
<a href="#
|
|
9074
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
8529
9075
|
<span class="md-ellipsis">
|
|
8530
|
-
Added
|
|
9076
|
+
Added in v2.3.10
|
|
8531
9077
|
</span>
|
|
8532
9078
|
</a>
|
|
8533
9079
|
|
|
8534
9080
|
</li>
|
|
8535
9081
|
|
|
8536
9082
|
<li class="md-nav__item">
|
|
8537
|
-
<a href="#
|
|
9083
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
8538
9084
|
<span class="md-ellipsis">
|
|
8539
|
-
Changed
|
|
9085
|
+
Changed in v2.3.10
|
|
8540
9086
|
</span>
|
|
8541
9087
|
</a>
|
|
8542
9088
|
|
|
8543
9089
|
</li>
|
|
8544
9090
|
|
|
8545
9091
|
<li class="md-nav__item">
|
|
8546
|
-
<a href="#
|
|
9092
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
8547
9093
|
<span class="md-ellipsis">
|
|
8548
|
-
Fixed
|
|
9094
|
+
Fixed in v2.3.10
|
|
8549
9095
|
</span>
|
|
8550
9096
|
</a>
|
|
8551
9097
|
|
|
8552
9098
|
</li>
|
|
8553
9099
|
|
|
8554
9100
|
<li class="md-nav__item">
|
|
8555
|
-
<a href="#
|
|
9101
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
8556
9102
|
<span class="md-ellipsis">
|
|
8557
|
-
Dependencies
|
|
9103
|
+
Dependencies in v2.3.10
|
|
8558
9104
|
</span>
|
|
8559
9105
|
</a>
|
|
8560
9106
|
|
|
8561
9107
|
</li>
|
|
8562
9108
|
|
|
8563
9109
|
<li class="md-nav__item">
|
|
8564
|
-
<a href="#
|
|
9110
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
8565
9111
|
<span class="md-ellipsis">
|
|
8566
|
-
Housekeeping
|
|
9112
|
+
Housekeeping in v2.3.10
|
|
8567
9113
|
</span>
|
|
8568
9114
|
</a>
|
|
8569
9115
|
|
|
@@ -8585,45 +9131,45 @@
|
|
|
8585
9131
|
<ul class="md-nav__list">
|
|
8586
9132
|
|
|
8587
9133
|
<li class="md-nav__item">
|
|
8588
|
-
<a href="#
|
|
9134
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
8589
9135
|
<span class="md-ellipsis">
|
|
8590
|
-
Added
|
|
9136
|
+
Added in v2.3.9
|
|
8591
9137
|
</span>
|
|
8592
9138
|
</a>
|
|
8593
9139
|
|
|
8594
9140
|
</li>
|
|
8595
9141
|
|
|
8596
9142
|
<li class="md-nav__item">
|
|
8597
|
-
<a href="#
|
|
9143
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
8598
9144
|
<span class="md-ellipsis">
|
|
8599
|
-
Changed
|
|
9145
|
+
Changed in v2.3.9
|
|
8600
9146
|
</span>
|
|
8601
9147
|
</a>
|
|
8602
9148
|
|
|
8603
9149
|
</li>
|
|
8604
9150
|
|
|
8605
9151
|
<li class="md-nav__item">
|
|
8606
|
-
<a href="#
|
|
9152
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
8607
9153
|
<span class="md-ellipsis">
|
|
8608
|
-
Fixed
|
|
9154
|
+
Fixed in v2.3.9
|
|
8609
9155
|
</span>
|
|
8610
9156
|
</a>
|
|
8611
9157
|
|
|
8612
9158
|
</li>
|
|
8613
9159
|
|
|
8614
9160
|
<li class="md-nav__item">
|
|
8615
|
-
<a href="#
|
|
9161
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
8616
9162
|
<span class="md-ellipsis">
|
|
8617
|
-
Dependencies
|
|
9163
|
+
Dependencies in v2.3.9
|
|
8618
9164
|
</span>
|
|
8619
9165
|
</a>
|
|
8620
9166
|
|
|
8621
9167
|
</li>
|
|
8622
9168
|
|
|
8623
9169
|
<li class="md-nav__item">
|
|
8624
|
-
<a href="#
|
|
9170
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
8625
9171
|
<span class="md-ellipsis">
|
|
8626
|
-
Housekeeping
|
|
9172
|
+
Housekeeping in v2.3.9
|
|
8627
9173
|
</span>
|
|
8628
9174
|
</a>
|
|
8629
9175
|
|
|
@@ -8645,9 +9191,9 @@
|
|
|
8645
9191
|
<ul class="md-nav__list">
|
|
8646
9192
|
|
|
8647
9193
|
<li class="md-nav__item">
|
|
8648
|
-
<a href="#
|
|
9194
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
8649
9195
|
<span class="md-ellipsis">
|
|
8650
|
-
Fixed
|
|
9196
|
+
Fixed in v2.3.8
|
|
8651
9197
|
</span>
|
|
8652
9198
|
</a>
|
|
8653
9199
|
|
|
@@ -8669,45 +9215,45 @@
|
|
|
8669
9215
|
<ul class="md-nav__list">
|
|
8670
9216
|
|
|
8671
9217
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
9218
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
8673
9219
|
<span class="md-ellipsis">
|
|
8674
|
-
Added
|
|
9220
|
+
Added in v2.3.7
|
|
8675
9221
|
</span>
|
|
8676
9222
|
</a>
|
|
8677
9223
|
|
|
8678
9224
|
</li>
|
|
8679
9225
|
|
|
8680
9226
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
9227
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
8682
9228
|
<span class="md-ellipsis">
|
|
8683
|
-
Changed
|
|
9229
|
+
Changed in v2.3.7
|
|
8684
9230
|
</span>
|
|
8685
9231
|
</a>
|
|
8686
9232
|
|
|
8687
9233
|
</li>
|
|
8688
9234
|
|
|
8689
9235
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#
|
|
9236
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
8691
9237
|
<span class="md-ellipsis">
|
|
8692
|
-
Fixed
|
|
9238
|
+
Fixed in v2.3.7
|
|
8693
9239
|
</span>
|
|
8694
9240
|
</a>
|
|
8695
9241
|
|
|
8696
9242
|
</li>
|
|
8697
9243
|
|
|
8698
9244
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#
|
|
9245
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
8700
9246
|
<span class="md-ellipsis">
|
|
8701
|
-
Dependencies
|
|
9247
|
+
Dependencies in v2.3.7
|
|
8702
9248
|
</span>
|
|
8703
9249
|
</a>
|
|
8704
9250
|
|
|
8705
9251
|
</li>
|
|
8706
9252
|
|
|
8707
9253
|
<li class="md-nav__item">
|
|
8708
|
-
<a href="#
|
|
9254
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
8709
9255
|
<span class="md-ellipsis">
|
|
8710
|
-
Housekeeping
|
|
9256
|
+
Housekeeping in v2.3.7
|
|
8711
9257
|
</span>
|
|
8712
9258
|
</a>
|
|
8713
9259
|
|
|
@@ -8729,36 +9275,36 @@
|
|
|
8729
9275
|
<ul class="md-nav__list">
|
|
8730
9276
|
|
|
8731
9277
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
9278
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
8733
9279
|
<span class="md-ellipsis">
|
|
8734
|
-
Added
|
|
9280
|
+
Added in v2.3.6
|
|
8735
9281
|
</span>
|
|
8736
9282
|
</a>
|
|
8737
9283
|
|
|
8738
9284
|
</li>
|
|
8739
9285
|
|
|
8740
9286
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
9287
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
8742
9288
|
<span class="md-ellipsis">
|
|
8743
|
-
Fixed
|
|
9289
|
+
Fixed in v2.3.6
|
|
8744
9290
|
</span>
|
|
8745
9291
|
</a>
|
|
8746
9292
|
|
|
8747
9293
|
</li>
|
|
8748
9294
|
|
|
8749
9295
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#
|
|
9296
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
8751
9297
|
<span class="md-ellipsis">
|
|
8752
|
-
Documentation
|
|
9298
|
+
Documentation in v2.3.6
|
|
8753
9299
|
</span>
|
|
8754
9300
|
</a>
|
|
8755
9301
|
|
|
8756
9302
|
</li>
|
|
8757
9303
|
|
|
8758
9304
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
9305
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
8760
9306
|
<span class="md-ellipsis">
|
|
8761
|
-
Housekeeping
|
|
9307
|
+
Housekeeping in v2.3.6
|
|
8762
9308
|
</span>
|
|
8763
9309
|
</a>
|
|
8764
9310
|
|
|
@@ -8780,54 +9326,54 @@
|
|
|
8780
9326
|
<ul class="md-nav__list">
|
|
8781
9327
|
|
|
8782
9328
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
9329
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
8784
9330
|
<span class="md-ellipsis">
|
|
8785
|
-
Added
|
|
9331
|
+
Added in v2.3.5
|
|
8786
9332
|
</span>
|
|
8787
9333
|
</a>
|
|
8788
9334
|
|
|
8789
9335
|
</li>
|
|
8790
9336
|
|
|
8791
9337
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
9338
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
8793
9339
|
<span class="md-ellipsis">
|
|
8794
|
-
Changed
|
|
9340
|
+
Changed in v2.3.5
|
|
8795
9341
|
</span>
|
|
8796
9342
|
</a>
|
|
8797
9343
|
|
|
8798
9344
|
</li>
|
|
8799
9345
|
|
|
8800
9346
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
9347
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
8802
9348
|
<span class="md-ellipsis">
|
|
8803
|
-
Fixed
|
|
9349
|
+
Fixed in v2.3.5
|
|
8804
9350
|
</span>
|
|
8805
9351
|
</a>
|
|
8806
9352
|
|
|
8807
9353
|
</li>
|
|
8808
9354
|
|
|
8809
9355
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
9356
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
8811
9357
|
<span class="md-ellipsis">
|
|
8812
|
-
Dependencies
|
|
9358
|
+
Dependencies in v2.3.5
|
|
8813
9359
|
</span>
|
|
8814
9360
|
</a>
|
|
8815
9361
|
|
|
8816
9362
|
</li>
|
|
8817
9363
|
|
|
8818
9364
|
<li class="md-nav__item">
|
|
8819
|
-
<a href="#
|
|
9365
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
8820
9366
|
<span class="md-ellipsis">
|
|
8821
|
-
Documentation
|
|
9367
|
+
Documentation in v2.3.5
|
|
8822
9368
|
</span>
|
|
8823
9369
|
</a>
|
|
8824
9370
|
|
|
8825
9371
|
</li>
|
|
8826
9372
|
|
|
8827
9373
|
<li class="md-nav__item">
|
|
8828
|
-
<a href="#
|
|
9374
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
8829
9375
|
<span class="md-ellipsis">
|
|
8830
|
-
Housekeeping
|
|
9376
|
+
Housekeeping in v2.3.5
|
|
8831
9377
|
</span>
|
|
8832
9378
|
</a>
|
|
8833
9379
|
|
|
@@ -8849,45 +9395,45 @@
|
|
|
8849
9395
|
<ul class="md-nav__list">
|
|
8850
9396
|
|
|
8851
9397
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
9398
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
8853
9399
|
<span class="md-ellipsis">
|
|
8854
|
-
Added
|
|
9400
|
+
Added in v2.3.4
|
|
8855
9401
|
</span>
|
|
8856
9402
|
</a>
|
|
8857
9403
|
|
|
8858
9404
|
</li>
|
|
8859
9405
|
|
|
8860
9406
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
9407
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
8862
9408
|
<span class="md-ellipsis">
|
|
8863
|
-
Changed
|
|
9409
|
+
Changed in v2.3.4
|
|
8864
9410
|
</span>
|
|
8865
9411
|
</a>
|
|
8866
9412
|
|
|
8867
9413
|
</li>
|
|
8868
9414
|
|
|
8869
9415
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
9416
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
8871
9417
|
<span class="md-ellipsis">
|
|
8872
|
-
Fixed
|
|
9418
|
+
Fixed in v2.3.4
|
|
8873
9419
|
</span>
|
|
8874
9420
|
</a>
|
|
8875
9421
|
|
|
8876
9422
|
</li>
|
|
8877
9423
|
|
|
8878
9424
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#
|
|
9425
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
8880
9426
|
<span class="md-ellipsis">
|
|
8881
|
-
Documentation
|
|
9427
|
+
Documentation in v2.3.4
|
|
8882
9428
|
</span>
|
|
8883
9429
|
</a>
|
|
8884
9430
|
|
|
8885
9431
|
</li>
|
|
8886
9432
|
|
|
8887
9433
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
9434
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
8889
9435
|
<span class="md-ellipsis">
|
|
8890
|
-
Housekeeping
|
|
9436
|
+
Housekeeping in v2.3.4
|
|
8891
9437
|
</span>
|
|
8892
9438
|
</a>
|
|
8893
9439
|
|
|
@@ -8909,36 +9455,36 @@
|
|
|
8909
9455
|
<ul class="md-nav__list">
|
|
8910
9456
|
|
|
8911
9457
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
9458
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
8913
9459
|
<span class="md-ellipsis">
|
|
8914
|
-
Security
|
|
9460
|
+
Security in v2.3.3
|
|
8915
9461
|
</span>
|
|
8916
9462
|
</a>
|
|
8917
9463
|
|
|
8918
9464
|
</li>
|
|
8919
9465
|
|
|
8920
9466
|
<li class="md-nav__item">
|
|
8921
|
-
<a href="#
|
|
9467
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
8922
9468
|
<span class="md-ellipsis">
|
|
8923
|
-
Fixed
|
|
9469
|
+
Fixed in v2.3.3
|
|
8924
9470
|
</span>
|
|
8925
9471
|
</a>
|
|
8926
9472
|
|
|
8927
9473
|
</li>
|
|
8928
9474
|
|
|
8929
9475
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
9476
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
8931
9477
|
<span class="md-ellipsis">
|
|
8932
|
-
Dependencies
|
|
9478
|
+
Dependencies in v2.3.3
|
|
8933
9479
|
</span>
|
|
8934
9480
|
</a>
|
|
8935
9481
|
|
|
8936
9482
|
</li>
|
|
8937
9483
|
|
|
8938
9484
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#
|
|
9485
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
8940
9486
|
<span class="md-ellipsis">
|
|
8941
|
-
Housekeeping
|
|
9487
|
+
Housekeeping in v2.3.3
|
|
8942
9488
|
</span>
|
|
8943
9489
|
</a>
|
|
8944
9490
|
|
|
@@ -8960,36 +9506,36 @@
|
|
|
8960
9506
|
<ul class="md-nav__list">
|
|
8961
9507
|
|
|
8962
9508
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9509
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
8964
9510
|
<span class="md-ellipsis">
|
|
8965
|
-
Security
|
|
9511
|
+
Security in v2.3.2
|
|
8966
9512
|
</span>
|
|
8967
9513
|
</a>
|
|
8968
9514
|
|
|
8969
9515
|
</li>
|
|
8970
9516
|
|
|
8971
9517
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9518
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
8973
9519
|
<span class="md-ellipsis">
|
|
8974
|
-
Added
|
|
9520
|
+
Added in v2.3.2
|
|
8975
9521
|
</span>
|
|
8976
9522
|
</a>
|
|
8977
9523
|
|
|
8978
9524
|
</li>
|
|
8979
9525
|
|
|
8980
9526
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#
|
|
9527
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
8982
9528
|
<span class="md-ellipsis">
|
|
8983
|
-
Fixed
|
|
9529
|
+
Fixed in v2.3.2
|
|
8984
9530
|
</span>
|
|
8985
9531
|
</a>
|
|
8986
9532
|
|
|
8987
9533
|
</li>
|
|
8988
9534
|
|
|
8989
9535
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9536
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
8991
9537
|
<span class="md-ellipsis">
|
|
8992
|
-
Housekeeping
|
|
9538
|
+
Housekeeping in v2.3.2
|
|
8993
9539
|
</span>
|
|
8994
9540
|
</a>
|
|
8995
9541
|
|
|
@@ -9011,36 +9557,36 @@
|
|
|
9011
9557
|
<ul class="md-nav__list">
|
|
9012
9558
|
|
|
9013
9559
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9560
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
9015
9561
|
<span class="md-ellipsis">
|
|
9016
|
-
Added
|
|
9562
|
+
Added in v2.3.1
|
|
9017
9563
|
</span>
|
|
9018
9564
|
</a>
|
|
9019
9565
|
|
|
9020
9566
|
</li>
|
|
9021
9567
|
|
|
9022
9568
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9569
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
9024
9570
|
<span class="md-ellipsis">
|
|
9025
|
-
Changed
|
|
9571
|
+
Changed in v2.3.1
|
|
9026
9572
|
</span>
|
|
9027
9573
|
</a>
|
|
9028
9574
|
|
|
9029
9575
|
</li>
|
|
9030
9576
|
|
|
9031
9577
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
9578
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
9033
9579
|
<span class="md-ellipsis">
|
|
9034
|
-
Fixed
|
|
9580
|
+
Fixed in v2.3.1
|
|
9035
9581
|
</span>
|
|
9036
9582
|
</a>
|
|
9037
9583
|
|
|
9038
9584
|
</li>
|
|
9039
9585
|
|
|
9040
9586
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9587
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
9042
9588
|
<span class="md-ellipsis">
|
|
9043
|
-
Housekeeping
|
|
9589
|
+
Housekeeping in v2.3.1
|
|
9044
9590
|
</span>
|
|
9045
9591
|
</a>
|
|
9046
9592
|
|
|
@@ -9062,63 +9608,63 @@
|
|
|
9062
9608
|
<ul class="md-nav__list">
|
|
9063
9609
|
|
|
9064
9610
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9611
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
9066
9612
|
<span class="md-ellipsis">
|
|
9067
|
-
Security
|
|
9613
|
+
Security in v2.3.0
|
|
9068
9614
|
</span>
|
|
9069
9615
|
</a>
|
|
9070
9616
|
|
|
9071
9617
|
</li>
|
|
9072
9618
|
|
|
9073
9619
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9620
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
9075
9621
|
<span class="md-ellipsis">
|
|
9076
|
-
Added
|
|
9622
|
+
Added in v2.3.0
|
|
9077
9623
|
</span>
|
|
9078
9624
|
</a>
|
|
9079
9625
|
|
|
9080
9626
|
</li>
|
|
9081
9627
|
|
|
9082
9628
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9629
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
9084
9630
|
<span class="md-ellipsis">
|
|
9085
|
-
Changed
|
|
9631
|
+
Changed in v2.3.0
|
|
9086
9632
|
</span>
|
|
9087
9633
|
</a>
|
|
9088
9634
|
|
|
9089
9635
|
</li>
|
|
9090
9636
|
|
|
9091
9637
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#removed" class="md-nav__link">
|
|
9638
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
9093
9639
|
<span class="md-ellipsis">
|
|
9094
|
-
Removed
|
|
9640
|
+
Removed in v2.3.0
|
|
9095
9641
|
</span>
|
|
9096
9642
|
</a>
|
|
9097
9643
|
|
|
9098
9644
|
</li>
|
|
9099
9645
|
|
|
9100
9646
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
9647
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
9102
9648
|
<span class="md-ellipsis">
|
|
9103
|
-
Fixed
|
|
9649
|
+
Fixed in v2.3.0
|
|
9104
9650
|
</span>
|
|
9105
9651
|
</a>
|
|
9106
9652
|
|
|
9107
9653
|
</li>
|
|
9108
9654
|
|
|
9109
9655
|
<li class="md-nav__item">
|
|
9110
|
-
<a href="#
|
|
9656
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
9111
9657
|
<span class="md-ellipsis">
|
|
9112
|
-
Documentation
|
|
9658
|
+
Documentation in v2.3.0
|
|
9113
9659
|
</span>
|
|
9114
9660
|
</a>
|
|
9115
9661
|
|
|
9116
9662
|
</li>
|
|
9117
9663
|
|
|
9118
9664
|
<li class="md-nav__item">
|
|
9119
|
-
<a href="#
|
|
9665
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
9120
9666
|
<span class="md-ellipsis">
|
|
9121
|
-
Housekeeping
|
|
9667
|
+
Housekeeping in v2.3.0
|
|
9122
9668
|
</span>
|
|
9123
9669
|
</a>
|
|
9124
9670
|
|
|
@@ -9140,81 +9686,81 @@
|
|
|
9140
9686
|
<ul class="md-nav__list">
|
|
9141
9687
|
|
|
9142
9688
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9689
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
9144
9690
|
<span class="md-ellipsis">
|
|
9145
|
-
Security
|
|
9691
|
+
Security in v2.3.0-beta.1
|
|
9146
9692
|
</span>
|
|
9147
9693
|
</a>
|
|
9148
9694
|
|
|
9149
9695
|
</li>
|
|
9150
9696
|
|
|
9151
9697
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
9698
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
9153
9699
|
<span class="md-ellipsis">
|
|
9154
|
-
Added
|
|
9700
|
+
Added in v2.3.0-beta.1
|
|
9155
9701
|
</span>
|
|
9156
9702
|
</a>
|
|
9157
9703
|
|
|
9158
9704
|
</li>
|
|
9159
9705
|
|
|
9160
9706
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9707
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
9162
9708
|
<span class="md-ellipsis">
|
|
9163
|
-
Changed
|
|
9709
|
+
Changed in v2.3.0-beta.1
|
|
9164
9710
|
</span>
|
|
9165
9711
|
</a>
|
|
9166
9712
|
|
|
9167
9713
|
</li>
|
|
9168
9714
|
|
|
9169
9715
|
<li class="md-nav__item">
|
|
9170
|
-
<a href="#deprecated" class="md-nav__link">
|
|
9716
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
9171
9717
|
<span class="md-ellipsis">
|
|
9172
|
-
Deprecated
|
|
9718
|
+
Deprecated in v2.3.0-beta.1
|
|
9173
9719
|
</span>
|
|
9174
9720
|
</a>
|
|
9175
9721
|
|
|
9176
9722
|
</li>
|
|
9177
9723
|
|
|
9178
9724
|
<li class="md-nav__item">
|
|
9179
|
-
<a href="#
|
|
9725
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
9180
9726
|
<span class="md-ellipsis">
|
|
9181
|
-
Removed
|
|
9727
|
+
Removed in v2.3.0-beta.1
|
|
9182
9728
|
</span>
|
|
9183
9729
|
</a>
|
|
9184
9730
|
|
|
9185
9731
|
</li>
|
|
9186
9732
|
|
|
9187
9733
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9734
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
9189
9735
|
<span class="md-ellipsis">
|
|
9190
|
-
Fixed
|
|
9736
|
+
Fixed in v2.3.0-beta.1
|
|
9191
9737
|
</span>
|
|
9192
9738
|
</a>
|
|
9193
9739
|
|
|
9194
9740
|
</li>
|
|
9195
9741
|
|
|
9196
9742
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9743
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
9198
9744
|
<span class="md-ellipsis">
|
|
9199
|
-
Dependencies
|
|
9745
|
+
Dependencies in v2.3.0-beta.1
|
|
9200
9746
|
</span>
|
|
9201
9747
|
</a>
|
|
9202
9748
|
|
|
9203
9749
|
</li>
|
|
9204
9750
|
|
|
9205
9751
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9752
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
9207
9753
|
<span class="md-ellipsis">
|
|
9208
|
-
Documentation
|
|
9754
|
+
Documentation in v2.3.0-beta.1
|
|
9209
9755
|
</span>
|
|
9210
9756
|
</a>
|
|
9211
9757
|
|
|
9212
9758
|
</li>
|
|
9213
9759
|
|
|
9214
9760
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9761
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
9216
9762
|
<span class="md-ellipsis">
|
|
9217
|
-
Housekeeping
|
|
9763
|
+
Housekeeping in v2.3.0-beta.1
|
|
9218
9764
|
</span>
|
|
9219
9765
|
</a>
|
|
9220
9766
|
|
|
@@ -10023,6 +10569,108 @@
|
|
|
10023
10569
|
</ul>
|
|
10024
10570
|
</nav>
|
|
10025
10571
|
|
|
10572
|
+
</li>
|
|
10573
|
+
|
|
10574
|
+
<li class="md-nav__item">
|
|
10575
|
+
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
10576
|
+
<span class="md-ellipsis">
|
|
10577
|
+
v2.3.16 (2025-01-06)
|
|
10578
|
+
</span>
|
|
10579
|
+
</a>
|
|
10580
|
+
|
|
10581
|
+
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
10582
|
+
<ul class="md-nav__list">
|
|
10583
|
+
|
|
10584
|
+
<li class="md-nav__item">
|
|
10585
|
+
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
10586
|
+
<span class="md-ellipsis">
|
|
10587
|
+
Fixed in v2.3.16
|
|
10588
|
+
</span>
|
|
10589
|
+
</a>
|
|
10590
|
+
|
|
10591
|
+
</li>
|
|
10592
|
+
|
|
10593
|
+
<li class="md-nav__item">
|
|
10594
|
+
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
10595
|
+
<span class="md-ellipsis">
|
|
10596
|
+
Housekeeping in v2.3.16
|
|
10597
|
+
</span>
|
|
10598
|
+
</a>
|
|
10599
|
+
|
|
10600
|
+
</li>
|
|
10601
|
+
|
|
10602
|
+
</ul>
|
|
10603
|
+
</nav>
|
|
10604
|
+
|
|
10605
|
+
</li>
|
|
10606
|
+
|
|
10607
|
+
<li class="md-nav__item">
|
|
10608
|
+
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
10609
|
+
<span class="md-ellipsis">
|
|
10610
|
+
v2.3.15 (2025-01-02)
|
|
10611
|
+
</span>
|
|
10612
|
+
</a>
|
|
10613
|
+
|
|
10614
|
+
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
10615
|
+
<ul class="md-nav__list">
|
|
10616
|
+
|
|
10617
|
+
<li class="md-nav__item">
|
|
10618
|
+
<a href="#security-in-v2315" class="md-nav__link">
|
|
10619
|
+
<span class="md-ellipsis">
|
|
10620
|
+
Security in v2.3.15
|
|
10621
|
+
</span>
|
|
10622
|
+
</a>
|
|
10623
|
+
|
|
10624
|
+
</li>
|
|
10625
|
+
|
|
10626
|
+
<li class="md-nav__item">
|
|
10627
|
+
<a href="#added-in-v2315" class="md-nav__link">
|
|
10628
|
+
<span class="md-ellipsis">
|
|
10629
|
+
Added in v2.3.15
|
|
10630
|
+
</span>
|
|
10631
|
+
</a>
|
|
10632
|
+
|
|
10633
|
+
</li>
|
|
10634
|
+
|
|
10635
|
+
<li class="md-nav__item">
|
|
10636
|
+
<a href="#changed-in-v2315" class="md-nav__link">
|
|
10637
|
+
<span class="md-ellipsis">
|
|
10638
|
+
Changed in v2.3.15
|
|
10639
|
+
</span>
|
|
10640
|
+
</a>
|
|
10641
|
+
|
|
10642
|
+
</li>
|
|
10643
|
+
|
|
10644
|
+
<li class="md-nav__item">
|
|
10645
|
+
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
10646
|
+
<span class="md-ellipsis">
|
|
10647
|
+
Fixed in v2.3.15
|
|
10648
|
+
</span>
|
|
10649
|
+
</a>
|
|
10650
|
+
|
|
10651
|
+
</li>
|
|
10652
|
+
|
|
10653
|
+
<li class="md-nav__item">
|
|
10654
|
+
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
10655
|
+
<span class="md-ellipsis">
|
|
10656
|
+
Dependencies in v2.3.15
|
|
10657
|
+
</span>
|
|
10658
|
+
</a>
|
|
10659
|
+
|
|
10660
|
+
</li>
|
|
10661
|
+
|
|
10662
|
+
<li class="md-nav__item">
|
|
10663
|
+
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
10664
|
+
<span class="md-ellipsis">
|
|
10665
|
+
Housekeeping in v2.3.15
|
|
10666
|
+
</span>
|
|
10667
|
+
</a>
|
|
10668
|
+
|
|
10669
|
+
</li>
|
|
10670
|
+
|
|
10671
|
+
</ul>
|
|
10672
|
+
</nav>
|
|
10673
|
+
|
|
10026
10674
|
</li>
|
|
10027
10675
|
|
|
10028
10676
|
<li class="md-nav__item">
|
|
@@ -10036,45 +10684,45 @@
|
|
|
10036
10684
|
<ul class="md-nav__list">
|
|
10037
10685
|
|
|
10038
10686
|
<li class="md-nav__item">
|
|
10039
|
-
<a href="#
|
|
10687
|
+
<a href="#added-in-v2314" class="md-nav__link">
|
|
10040
10688
|
<span class="md-ellipsis">
|
|
10041
|
-
Added
|
|
10689
|
+
Added in v2.3.14
|
|
10042
10690
|
</span>
|
|
10043
10691
|
</a>
|
|
10044
10692
|
|
|
10045
10693
|
</li>
|
|
10046
10694
|
|
|
10047
10695
|
<li class="md-nav__item">
|
|
10048
|
-
<a href="#
|
|
10696
|
+
<a href="#changed-in-v2314" class="md-nav__link">
|
|
10049
10697
|
<span class="md-ellipsis">
|
|
10050
|
-
Changed
|
|
10698
|
+
Changed in v2.3.14
|
|
10051
10699
|
</span>
|
|
10052
10700
|
</a>
|
|
10053
10701
|
|
|
10054
10702
|
</li>
|
|
10055
10703
|
|
|
10056
10704
|
<li class="md-nav__item">
|
|
10057
|
-
<a href="#fixed" class="md-nav__link">
|
|
10705
|
+
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
10058
10706
|
<span class="md-ellipsis">
|
|
10059
|
-
Fixed
|
|
10707
|
+
Fixed in v2.3.14
|
|
10060
10708
|
</span>
|
|
10061
10709
|
</a>
|
|
10062
10710
|
|
|
10063
10711
|
</li>
|
|
10064
10712
|
|
|
10065
10713
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#documentation" class="md-nav__link">
|
|
10714
|
+
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
10067
10715
|
<span class="md-ellipsis">
|
|
10068
|
-
Documentation
|
|
10716
|
+
Documentation in v2.3.14
|
|
10069
10717
|
</span>
|
|
10070
10718
|
</a>
|
|
10071
10719
|
|
|
10072
10720
|
</li>
|
|
10073
10721
|
|
|
10074
10722
|
<li class="md-nav__item">
|
|
10075
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10723
|
+
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
10076
10724
|
<span class="md-ellipsis">
|
|
10077
|
-
Housekeeping
|
|
10725
|
+
Housekeeping in v2.3.14
|
|
10078
10726
|
</span>
|
|
10079
10727
|
</a>
|
|
10080
10728
|
|
|
@@ -10096,63 +10744,63 @@
|
|
|
10096
10744
|
<ul class="md-nav__list">
|
|
10097
10745
|
|
|
10098
10746
|
<li class="md-nav__item">
|
|
10099
|
-
<a href="#security" class="md-nav__link">
|
|
10747
|
+
<a href="#security-in-v2313" class="md-nav__link">
|
|
10100
10748
|
<span class="md-ellipsis">
|
|
10101
|
-
Security
|
|
10749
|
+
Security in v2.3.13
|
|
10102
10750
|
</span>
|
|
10103
10751
|
</a>
|
|
10104
10752
|
|
|
10105
10753
|
</li>
|
|
10106
10754
|
|
|
10107
10755
|
<li class="md-nav__item">
|
|
10108
|
-
<a href="#
|
|
10756
|
+
<a href="#added-in-v2313" class="md-nav__link">
|
|
10109
10757
|
<span class="md-ellipsis">
|
|
10110
|
-
Added
|
|
10758
|
+
Added in v2.3.13
|
|
10111
10759
|
</span>
|
|
10112
10760
|
</a>
|
|
10113
10761
|
|
|
10114
10762
|
</li>
|
|
10115
10763
|
|
|
10116
10764
|
<li class="md-nav__item">
|
|
10117
|
-
<a href="#
|
|
10765
|
+
<a href="#changed-in-v2313" class="md-nav__link">
|
|
10118
10766
|
<span class="md-ellipsis">
|
|
10119
|
-
Changed
|
|
10767
|
+
Changed in v2.3.13
|
|
10120
10768
|
</span>
|
|
10121
10769
|
</a>
|
|
10122
10770
|
|
|
10123
10771
|
</li>
|
|
10124
10772
|
|
|
10125
10773
|
<li class="md-nav__item">
|
|
10126
|
-
<a href="#
|
|
10774
|
+
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
10127
10775
|
<span class="md-ellipsis">
|
|
10128
|
-
Fixed
|
|
10776
|
+
Fixed in v2.3.13
|
|
10129
10777
|
</span>
|
|
10130
10778
|
</a>
|
|
10131
10779
|
|
|
10132
10780
|
</li>
|
|
10133
10781
|
|
|
10134
10782
|
<li class="md-nav__item">
|
|
10135
|
-
<a href="#
|
|
10783
|
+
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
10136
10784
|
<span class="md-ellipsis">
|
|
10137
|
-
Dependencies
|
|
10785
|
+
Dependencies in v2.3.13
|
|
10138
10786
|
</span>
|
|
10139
10787
|
</a>
|
|
10140
10788
|
|
|
10141
10789
|
</li>
|
|
10142
10790
|
|
|
10143
10791
|
<li class="md-nav__item">
|
|
10144
|
-
<a href="#
|
|
10792
|
+
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
10145
10793
|
<span class="md-ellipsis">
|
|
10146
|
-
Documentation
|
|
10794
|
+
Documentation in v2.3.13
|
|
10147
10795
|
</span>
|
|
10148
10796
|
</a>
|
|
10149
10797
|
|
|
10150
10798
|
</li>
|
|
10151
10799
|
|
|
10152
10800
|
<li class="md-nav__item">
|
|
10153
|
-
<a href="#
|
|
10801
|
+
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
10154
10802
|
<span class="md-ellipsis">
|
|
10155
|
-
Housekeeping
|
|
10803
|
+
Housekeeping in v2.3.13
|
|
10156
10804
|
</span>
|
|
10157
10805
|
</a>
|
|
10158
10806
|
|
|
@@ -10174,45 +10822,45 @@
|
|
|
10174
10822
|
<ul class="md-nav__list">
|
|
10175
10823
|
|
|
10176
10824
|
<li class="md-nav__item">
|
|
10177
|
-
<a href="#
|
|
10825
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
10178
10826
|
<span class="md-ellipsis">
|
|
10179
|
-
Added
|
|
10827
|
+
Added in v2.3.12
|
|
10180
10828
|
</span>
|
|
10181
10829
|
</a>
|
|
10182
10830
|
|
|
10183
10831
|
</li>
|
|
10184
10832
|
|
|
10185
10833
|
<li class="md-nav__item">
|
|
10186
|
-
<a href="#
|
|
10834
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
10187
10835
|
<span class="md-ellipsis">
|
|
10188
|
-
Fixed
|
|
10836
|
+
Fixed in v2.3.12
|
|
10189
10837
|
</span>
|
|
10190
10838
|
</a>
|
|
10191
10839
|
|
|
10192
10840
|
</li>
|
|
10193
10841
|
|
|
10194
10842
|
<li class="md-nav__item">
|
|
10195
|
-
<a href="#
|
|
10843
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
10196
10844
|
<span class="md-ellipsis">
|
|
10197
|
-
Dependencies
|
|
10845
|
+
Dependencies in v2.3.12
|
|
10198
10846
|
</span>
|
|
10199
10847
|
</a>
|
|
10200
10848
|
|
|
10201
10849
|
</li>
|
|
10202
10850
|
|
|
10203
10851
|
<li class="md-nav__item">
|
|
10204
|
-
<a href="#
|
|
10852
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
10205
10853
|
<span class="md-ellipsis">
|
|
10206
|
-
Documentation
|
|
10854
|
+
Documentation in v2.3.12
|
|
10207
10855
|
</span>
|
|
10208
10856
|
</a>
|
|
10209
10857
|
|
|
10210
10858
|
</li>
|
|
10211
10859
|
|
|
10212
10860
|
<li class="md-nav__item">
|
|
10213
|
-
<a href="#
|
|
10861
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
10214
10862
|
<span class="md-ellipsis">
|
|
10215
|
-
Housekeeping
|
|
10863
|
+
Housekeeping in v2.3.12
|
|
10216
10864
|
</span>
|
|
10217
10865
|
</a>
|
|
10218
10866
|
|
|
@@ -10234,45 +10882,45 @@
|
|
|
10234
10882
|
<ul class="md-nav__list">
|
|
10235
10883
|
|
|
10236
10884
|
<li class="md-nav__item">
|
|
10237
|
-
<a href="#
|
|
10885
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
10238
10886
|
<span class="md-ellipsis">
|
|
10239
|
-
Added
|
|
10887
|
+
Added in v2.3.11
|
|
10240
10888
|
</span>
|
|
10241
10889
|
</a>
|
|
10242
10890
|
|
|
10243
10891
|
</li>
|
|
10244
10892
|
|
|
10245
10893
|
<li class="md-nav__item">
|
|
10246
|
-
<a href="#
|
|
10894
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
10247
10895
|
<span class="md-ellipsis">
|
|
10248
|
-
Changed
|
|
10896
|
+
Changed in v2.3.11
|
|
10249
10897
|
</span>
|
|
10250
10898
|
</a>
|
|
10251
10899
|
|
|
10252
10900
|
</li>
|
|
10253
10901
|
|
|
10254
10902
|
<li class="md-nav__item">
|
|
10255
|
-
<a href="#
|
|
10903
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
10256
10904
|
<span class="md-ellipsis">
|
|
10257
|
-
Fixed
|
|
10905
|
+
Fixed in v2.3.11
|
|
10258
10906
|
</span>
|
|
10259
10907
|
</a>
|
|
10260
10908
|
|
|
10261
10909
|
</li>
|
|
10262
10910
|
|
|
10263
10911
|
<li class="md-nav__item">
|
|
10264
|
-
<a href="#
|
|
10912
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
10265
10913
|
<span class="md-ellipsis">
|
|
10266
|
-
Documentation
|
|
10914
|
+
Documentation in v2.3.11
|
|
10267
10915
|
</span>
|
|
10268
10916
|
</a>
|
|
10269
10917
|
|
|
10270
10918
|
</li>
|
|
10271
10919
|
|
|
10272
10920
|
<li class="md-nav__item">
|
|
10273
|
-
<a href="#
|
|
10921
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
10274
10922
|
<span class="md-ellipsis">
|
|
10275
|
-
Housekeeping
|
|
10923
|
+
Housekeeping in v2.3.11
|
|
10276
10924
|
</span>
|
|
10277
10925
|
</a>
|
|
10278
10926
|
|
|
@@ -10294,45 +10942,45 @@
|
|
|
10294
10942
|
<ul class="md-nav__list">
|
|
10295
10943
|
|
|
10296
10944
|
<li class="md-nav__item">
|
|
10297
|
-
<a href="#
|
|
10945
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
10298
10946
|
<span class="md-ellipsis">
|
|
10299
|
-
Added
|
|
10947
|
+
Added in v2.3.10
|
|
10300
10948
|
</span>
|
|
10301
10949
|
</a>
|
|
10302
10950
|
|
|
10303
10951
|
</li>
|
|
10304
10952
|
|
|
10305
10953
|
<li class="md-nav__item">
|
|
10306
|
-
<a href="#
|
|
10954
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
10307
10955
|
<span class="md-ellipsis">
|
|
10308
|
-
Changed
|
|
10956
|
+
Changed in v2.3.10
|
|
10309
10957
|
</span>
|
|
10310
10958
|
</a>
|
|
10311
10959
|
|
|
10312
10960
|
</li>
|
|
10313
10961
|
|
|
10314
10962
|
<li class="md-nav__item">
|
|
10315
|
-
<a href="#
|
|
10963
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
10316
10964
|
<span class="md-ellipsis">
|
|
10317
|
-
Fixed
|
|
10965
|
+
Fixed in v2.3.10
|
|
10318
10966
|
</span>
|
|
10319
10967
|
</a>
|
|
10320
10968
|
|
|
10321
10969
|
</li>
|
|
10322
10970
|
|
|
10323
10971
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10972
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
10325
10973
|
<span class="md-ellipsis">
|
|
10326
|
-
Dependencies
|
|
10974
|
+
Dependencies in v2.3.10
|
|
10327
10975
|
</span>
|
|
10328
10976
|
</a>
|
|
10329
10977
|
|
|
10330
10978
|
</li>
|
|
10331
10979
|
|
|
10332
10980
|
<li class="md-nav__item">
|
|
10333
|
-
<a href="#
|
|
10981
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
10334
10982
|
<span class="md-ellipsis">
|
|
10335
|
-
Housekeeping
|
|
10983
|
+
Housekeeping in v2.3.10
|
|
10336
10984
|
</span>
|
|
10337
10985
|
</a>
|
|
10338
10986
|
|
|
@@ -10354,45 +11002,45 @@
|
|
|
10354
11002
|
<ul class="md-nav__list">
|
|
10355
11003
|
|
|
10356
11004
|
<li class="md-nav__item">
|
|
10357
|
-
<a href="#
|
|
11005
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
10358
11006
|
<span class="md-ellipsis">
|
|
10359
|
-
Added
|
|
11007
|
+
Added in v2.3.9
|
|
10360
11008
|
</span>
|
|
10361
11009
|
</a>
|
|
10362
11010
|
|
|
10363
11011
|
</li>
|
|
10364
11012
|
|
|
10365
11013
|
<li class="md-nav__item">
|
|
10366
|
-
<a href="#
|
|
11014
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
10367
11015
|
<span class="md-ellipsis">
|
|
10368
|
-
Changed
|
|
11016
|
+
Changed in v2.3.9
|
|
10369
11017
|
</span>
|
|
10370
11018
|
</a>
|
|
10371
11019
|
|
|
10372
11020
|
</li>
|
|
10373
11021
|
|
|
10374
11022
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
11023
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
10376
11024
|
<span class="md-ellipsis">
|
|
10377
|
-
Fixed
|
|
11025
|
+
Fixed in v2.3.9
|
|
10378
11026
|
</span>
|
|
10379
11027
|
</a>
|
|
10380
11028
|
|
|
10381
11029
|
</li>
|
|
10382
11030
|
|
|
10383
11031
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
11032
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
10385
11033
|
<span class="md-ellipsis">
|
|
10386
|
-
Dependencies
|
|
11034
|
+
Dependencies in v2.3.9
|
|
10387
11035
|
</span>
|
|
10388
11036
|
</a>
|
|
10389
11037
|
|
|
10390
11038
|
</li>
|
|
10391
11039
|
|
|
10392
11040
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
11041
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
10394
11042
|
<span class="md-ellipsis">
|
|
10395
|
-
Housekeeping
|
|
11043
|
+
Housekeeping in v2.3.9
|
|
10396
11044
|
</span>
|
|
10397
11045
|
</a>
|
|
10398
11046
|
|
|
@@ -10414,9 +11062,9 @@
|
|
|
10414
11062
|
<ul class="md-nav__list">
|
|
10415
11063
|
|
|
10416
11064
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
11065
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
10418
11066
|
<span class="md-ellipsis">
|
|
10419
|
-
Fixed
|
|
11067
|
+
Fixed in v2.3.8
|
|
10420
11068
|
</span>
|
|
10421
11069
|
</a>
|
|
10422
11070
|
|
|
@@ -10438,45 +11086,45 @@
|
|
|
10438
11086
|
<ul class="md-nav__list">
|
|
10439
11087
|
|
|
10440
11088
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
11089
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
10442
11090
|
<span class="md-ellipsis">
|
|
10443
|
-
Added
|
|
11091
|
+
Added in v2.3.7
|
|
10444
11092
|
</span>
|
|
10445
11093
|
</a>
|
|
10446
11094
|
|
|
10447
11095
|
</li>
|
|
10448
11096
|
|
|
10449
11097
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
11098
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
10451
11099
|
<span class="md-ellipsis">
|
|
10452
|
-
Changed
|
|
11100
|
+
Changed in v2.3.7
|
|
10453
11101
|
</span>
|
|
10454
11102
|
</a>
|
|
10455
11103
|
|
|
10456
11104
|
</li>
|
|
10457
11105
|
|
|
10458
11106
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
11107
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
10460
11108
|
<span class="md-ellipsis">
|
|
10461
|
-
Fixed
|
|
11109
|
+
Fixed in v2.3.7
|
|
10462
11110
|
</span>
|
|
10463
11111
|
</a>
|
|
10464
11112
|
|
|
10465
11113
|
</li>
|
|
10466
11114
|
|
|
10467
11115
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
11116
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
10469
11117
|
<span class="md-ellipsis">
|
|
10470
|
-
Dependencies
|
|
11118
|
+
Dependencies in v2.3.7
|
|
10471
11119
|
</span>
|
|
10472
11120
|
</a>
|
|
10473
11121
|
|
|
10474
11122
|
</li>
|
|
10475
11123
|
|
|
10476
11124
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
11125
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
10478
11126
|
<span class="md-ellipsis">
|
|
10479
|
-
Housekeeping
|
|
11127
|
+
Housekeeping in v2.3.7
|
|
10480
11128
|
</span>
|
|
10481
11129
|
</a>
|
|
10482
11130
|
|
|
@@ -10498,36 +11146,36 @@
|
|
|
10498
11146
|
<ul class="md-nav__list">
|
|
10499
11147
|
|
|
10500
11148
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
11149
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
10502
11150
|
<span class="md-ellipsis">
|
|
10503
|
-
Added
|
|
11151
|
+
Added in v2.3.6
|
|
10504
11152
|
</span>
|
|
10505
11153
|
</a>
|
|
10506
11154
|
|
|
10507
11155
|
</li>
|
|
10508
11156
|
|
|
10509
11157
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
11158
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
10511
11159
|
<span class="md-ellipsis">
|
|
10512
|
-
Fixed
|
|
11160
|
+
Fixed in v2.3.6
|
|
10513
11161
|
</span>
|
|
10514
11162
|
</a>
|
|
10515
11163
|
|
|
10516
11164
|
</li>
|
|
10517
11165
|
|
|
10518
11166
|
<li class="md-nav__item">
|
|
10519
|
-
<a href="#
|
|
11167
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
10520
11168
|
<span class="md-ellipsis">
|
|
10521
|
-
Documentation
|
|
11169
|
+
Documentation in v2.3.6
|
|
10522
11170
|
</span>
|
|
10523
11171
|
</a>
|
|
10524
11172
|
|
|
10525
11173
|
</li>
|
|
10526
11174
|
|
|
10527
11175
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
11176
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
10529
11177
|
<span class="md-ellipsis">
|
|
10530
|
-
Housekeeping
|
|
11178
|
+
Housekeeping in v2.3.6
|
|
10531
11179
|
</span>
|
|
10532
11180
|
</a>
|
|
10533
11181
|
|
|
@@ -10549,54 +11197,54 @@
|
|
|
10549
11197
|
<ul class="md-nav__list">
|
|
10550
11198
|
|
|
10551
11199
|
<li class="md-nav__item">
|
|
10552
|
-
<a href="#
|
|
11200
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
10553
11201
|
<span class="md-ellipsis">
|
|
10554
|
-
Added
|
|
11202
|
+
Added in v2.3.5
|
|
10555
11203
|
</span>
|
|
10556
11204
|
</a>
|
|
10557
11205
|
|
|
10558
11206
|
</li>
|
|
10559
11207
|
|
|
10560
11208
|
<li class="md-nav__item">
|
|
10561
|
-
<a href="#
|
|
11209
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
10562
11210
|
<span class="md-ellipsis">
|
|
10563
|
-
Changed
|
|
11211
|
+
Changed in v2.3.5
|
|
10564
11212
|
</span>
|
|
10565
11213
|
</a>
|
|
10566
11214
|
|
|
10567
11215
|
</li>
|
|
10568
11216
|
|
|
10569
11217
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
11218
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
10571
11219
|
<span class="md-ellipsis">
|
|
10572
|
-
Fixed
|
|
11220
|
+
Fixed in v2.3.5
|
|
10573
11221
|
</span>
|
|
10574
11222
|
</a>
|
|
10575
11223
|
|
|
10576
11224
|
</li>
|
|
10577
11225
|
|
|
10578
11226
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
11227
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
10580
11228
|
<span class="md-ellipsis">
|
|
10581
|
-
Dependencies
|
|
11229
|
+
Dependencies in v2.3.5
|
|
10582
11230
|
</span>
|
|
10583
11231
|
</a>
|
|
10584
11232
|
|
|
10585
11233
|
</li>
|
|
10586
11234
|
|
|
10587
11235
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
11236
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
10589
11237
|
<span class="md-ellipsis">
|
|
10590
|
-
Documentation
|
|
11238
|
+
Documentation in v2.3.5
|
|
10591
11239
|
</span>
|
|
10592
11240
|
</a>
|
|
10593
11241
|
|
|
10594
11242
|
</li>
|
|
10595
11243
|
|
|
10596
11244
|
<li class="md-nav__item">
|
|
10597
|
-
<a href="#
|
|
11245
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
10598
11246
|
<span class="md-ellipsis">
|
|
10599
|
-
Housekeeping
|
|
11247
|
+
Housekeeping in v2.3.5
|
|
10600
11248
|
</span>
|
|
10601
11249
|
</a>
|
|
10602
11250
|
|
|
@@ -10618,45 +11266,45 @@
|
|
|
10618
11266
|
<ul class="md-nav__list">
|
|
10619
11267
|
|
|
10620
11268
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
11269
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
10622
11270
|
<span class="md-ellipsis">
|
|
10623
|
-
Added
|
|
11271
|
+
Added in v2.3.4
|
|
10624
11272
|
</span>
|
|
10625
11273
|
</a>
|
|
10626
11274
|
|
|
10627
11275
|
</li>
|
|
10628
11276
|
|
|
10629
11277
|
<li class="md-nav__item">
|
|
10630
|
-
<a href="#
|
|
11278
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
10631
11279
|
<span class="md-ellipsis">
|
|
10632
|
-
Changed
|
|
11280
|
+
Changed in v2.3.4
|
|
10633
11281
|
</span>
|
|
10634
11282
|
</a>
|
|
10635
11283
|
|
|
10636
11284
|
</li>
|
|
10637
11285
|
|
|
10638
11286
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
11287
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
10640
11288
|
<span class="md-ellipsis">
|
|
10641
|
-
Fixed
|
|
11289
|
+
Fixed in v2.3.4
|
|
10642
11290
|
</span>
|
|
10643
11291
|
</a>
|
|
10644
11292
|
|
|
10645
11293
|
</li>
|
|
10646
11294
|
|
|
10647
11295
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
11296
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
10649
11297
|
<span class="md-ellipsis">
|
|
10650
|
-
Documentation
|
|
11298
|
+
Documentation in v2.3.4
|
|
10651
11299
|
</span>
|
|
10652
11300
|
</a>
|
|
10653
11301
|
|
|
10654
11302
|
</li>
|
|
10655
11303
|
|
|
10656
11304
|
<li class="md-nav__item">
|
|
10657
|
-
<a href="#
|
|
11305
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
10658
11306
|
<span class="md-ellipsis">
|
|
10659
|
-
Housekeeping
|
|
11307
|
+
Housekeeping in v2.3.4
|
|
10660
11308
|
</span>
|
|
10661
11309
|
</a>
|
|
10662
11310
|
|
|
@@ -10678,36 +11326,36 @@
|
|
|
10678
11326
|
<ul class="md-nav__list">
|
|
10679
11327
|
|
|
10680
11328
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
11329
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
10682
11330
|
<span class="md-ellipsis">
|
|
10683
|
-
Security
|
|
11331
|
+
Security in v2.3.3
|
|
10684
11332
|
</span>
|
|
10685
11333
|
</a>
|
|
10686
11334
|
|
|
10687
11335
|
</li>
|
|
10688
11336
|
|
|
10689
11337
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#
|
|
11338
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
10691
11339
|
<span class="md-ellipsis">
|
|
10692
|
-
Fixed
|
|
11340
|
+
Fixed in v2.3.3
|
|
10693
11341
|
</span>
|
|
10694
11342
|
</a>
|
|
10695
11343
|
|
|
10696
11344
|
</li>
|
|
10697
11345
|
|
|
10698
11346
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
11347
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
10700
11348
|
<span class="md-ellipsis">
|
|
10701
|
-
Dependencies
|
|
11349
|
+
Dependencies in v2.3.3
|
|
10702
11350
|
</span>
|
|
10703
11351
|
</a>
|
|
10704
11352
|
|
|
10705
11353
|
</li>
|
|
10706
11354
|
|
|
10707
11355
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
11356
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
10709
11357
|
<span class="md-ellipsis">
|
|
10710
|
-
Housekeeping
|
|
11358
|
+
Housekeeping in v2.3.3
|
|
10711
11359
|
</span>
|
|
10712
11360
|
</a>
|
|
10713
11361
|
|
|
@@ -10729,36 +11377,36 @@
|
|
|
10729
11377
|
<ul class="md-nav__list">
|
|
10730
11378
|
|
|
10731
11379
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#
|
|
11380
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
10733
11381
|
<span class="md-ellipsis">
|
|
10734
|
-
Security
|
|
11382
|
+
Security in v2.3.2
|
|
10735
11383
|
</span>
|
|
10736
11384
|
</a>
|
|
10737
11385
|
|
|
10738
11386
|
</li>
|
|
10739
11387
|
|
|
10740
11388
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
11389
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
10742
11390
|
<span class="md-ellipsis">
|
|
10743
|
-
Added
|
|
11391
|
+
Added in v2.3.2
|
|
10744
11392
|
</span>
|
|
10745
11393
|
</a>
|
|
10746
11394
|
|
|
10747
11395
|
</li>
|
|
10748
11396
|
|
|
10749
11397
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
11398
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
10751
11399
|
<span class="md-ellipsis">
|
|
10752
|
-
Fixed
|
|
11400
|
+
Fixed in v2.3.2
|
|
10753
11401
|
</span>
|
|
10754
11402
|
</a>
|
|
10755
11403
|
|
|
10756
11404
|
</li>
|
|
10757
11405
|
|
|
10758
11406
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
11407
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
10760
11408
|
<span class="md-ellipsis">
|
|
10761
|
-
Housekeeping
|
|
11409
|
+
Housekeeping in v2.3.2
|
|
10762
11410
|
</span>
|
|
10763
11411
|
</a>
|
|
10764
11412
|
|
|
@@ -10780,36 +11428,36 @@
|
|
|
10780
11428
|
<ul class="md-nav__list">
|
|
10781
11429
|
|
|
10782
11430
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
11431
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
10784
11432
|
<span class="md-ellipsis">
|
|
10785
|
-
Added
|
|
11433
|
+
Added in v2.3.1
|
|
10786
11434
|
</span>
|
|
10787
11435
|
</a>
|
|
10788
11436
|
|
|
10789
11437
|
</li>
|
|
10790
11438
|
|
|
10791
11439
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
11440
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
10793
11441
|
<span class="md-ellipsis">
|
|
10794
|
-
Changed
|
|
11442
|
+
Changed in v2.3.1
|
|
10795
11443
|
</span>
|
|
10796
11444
|
</a>
|
|
10797
11445
|
|
|
10798
11446
|
</li>
|
|
10799
11447
|
|
|
10800
11448
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
11449
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
10802
11450
|
<span class="md-ellipsis">
|
|
10803
|
-
Fixed
|
|
11451
|
+
Fixed in v2.3.1
|
|
10804
11452
|
</span>
|
|
10805
11453
|
</a>
|
|
10806
11454
|
|
|
10807
11455
|
</li>
|
|
10808
11456
|
|
|
10809
11457
|
<li class="md-nav__item">
|
|
10810
|
-
<a href="#
|
|
11458
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
10811
11459
|
<span class="md-ellipsis">
|
|
10812
|
-
Housekeeping
|
|
11460
|
+
Housekeeping in v2.3.1
|
|
10813
11461
|
</span>
|
|
10814
11462
|
</a>
|
|
10815
11463
|
|
|
@@ -10831,63 +11479,63 @@
|
|
|
10831
11479
|
<ul class="md-nav__list">
|
|
10832
11480
|
|
|
10833
11481
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
11482
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
10835
11483
|
<span class="md-ellipsis">
|
|
10836
|
-
Security
|
|
11484
|
+
Security in v2.3.0
|
|
10837
11485
|
</span>
|
|
10838
11486
|
</a>
|
|
10839
11487
|
|
|
10840
11488
|
</li>
|
|
10841
11489
|
|
|
10842
11490
|
<li class="md-nav__item">
|
|
10843
|
-
<a href="#
|
|
11491
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
10844
11492
|
<span class="md-ellipsis">
|
|
10845
|
-
Added
|
|
11493
|
+
Added in v2.3.0
|
|
10846
11494
|
</span>
|
|
10847
11495
|
</a>
|
|
10848
11496
|
|
|
10849
11497
|
</li>
|
|
10850
11498
|
|
|
10851
11499
|
<li class="md-nav__item">
|
|
10852
|
-
<a href="#
|
|
11500
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
10853
11501
|
<span class="md-ellipsis">
|
|
10854
|
-
Changed
|
|
11502
|
+
Changed in v2.3.0
|
|
10855
11503
|
</span>
|
|
10856
11504
|
</a>
|
|
10857
11505
|
|
|
10858
11506
|
</li>
|
|
10859
11507
|
|
|
10860
11508
|
<li class="md-nav__item">
|
|
10861
|
-
<a href="#removed" class="md-nav__link">
|
|
11509
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
10862
11510
|
<span class="md-ellipsis">
|
|
10863
|
-
Removed
|
|
11511
|
+
Removed in v2.3.0
|
|
10864
11512
|
</span>
|
|
10865
11513
|
</a>
|
|
10866
11514
|
|
|
10867
11515
|
</li>
|
|
10868
11516
|
|
|
10869
11517
|
<li class="md-nav__item">
|
|
10870
|
-
<a href="#
|
|
11518
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
10871
11519
|
<span class="md-ellipsis">
|
|
10872
|
-
Fixed
|
|
11520
|
+
Fixed in v2.3.0
|
|
10873
11521
|
</span>
|
|
10874
11522
|
</a>
|
|
10875
11523
|
|
|
10876
11524
|
</li>
|
|
10877
11525
|
|
|
10878
11526
|
<li class="md-nav__item">
|
|
10879
|
-
<a href="#
|
|
11527
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
10880
11528
|
<span class="md-ellipsis">
|
|
10881
|
-
Documentation
|
|
11529
|
+
Documentation in v2.3.0
|
|
10882
11530
|
</span>
|
|
10883
11531
|
</a>
|
|
10884
11532
|
|
|
10885
11533
|
</li>
|
|
10886
11534
|
|
|
10887
11535
|
<li class="md-nav__item">
|
|
10888
|
-
<a href="#
|
|
11536
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
10889
11537
|
<span class="md-ellipsis">
|
|
10890
|
-
Housekeeping
|
|
11538
|
+
Housekeeping in v2.3.0
|
|
10891
11539
|
</span>
|
|
10892
11540
|
</a>
|
|
10893
11541
|
|
|
@@ -10909,81 +11557,81 @@
|
|
|
10909
11557
|
<ul class="md-nav__list">
|
|
10910
11558
|
|
|
10911
11559
|
<li class="md-nav__item">
|
|
10912
|
-
<a href="#
|
|
11560
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
10913
11561
|
<span class="md-ellipsis">
|
|
10914
|
-
Security
|
|
11562
|
+
Security in v2.3.0-beta.1
|
|
10915
11563
|
</span>
|
|
10916
11564
|
</a>
|
|
10917
11565
|
|
|
10918
11566
|
</li>
|
|
10919
11567
|
|
|
10920
11568
|
<li class="md-nav__item">
|
|
10921
|
-
<a href="#
|
|
11569
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
10922
11570
|
<span class="md-ellipsis">
|
|
10923
|
-
Added
|
|
11571
|
+
Added in v2.3.0-beta.1
|
|
10924
11572
|
</span>
|
|
10925
11573
|
</a>
|
|
10926
11574
|
|
|
10927
11575
|
</li>
|
|
10928
11576
|
|
|
10929
11577
|
<li class="md-nav__item">
|
|
10930
|
-
<a href="#
|
|
11578
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
10931
11579
|
<span class="md-ellipsis">
|
|
10932
|
-
Changed
|
|
11580
|
+
Changed in v2.3.0-beta.1
|
|
10933
11581
|
</span>
|
|
10934
11582
|
</a>
|
|
10935
11583
|
|
|
10936
11584
|
</li>
|
|
10937
11585
|
|
|
10938
11586
|
<li class="md-nav__item">
|
|
10939
|
-
<a href="#deprecated" class="md-nav__link">
|
|
11587
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
10940
11588
|
<span class="md-ellipsis">
|
|
10941
|
-
Deprecated
|
|
11589
|
+
Deprecated in v2.3.0-beta.1
|
|
10942
11590
|
</span>
|
|
10943
11591
|
</a>
|
|
10944
11592
|
|
|
10945
11593
|
</li>
|
|
10946
11594
|
|
|
10947
11595
|
<li class="md-nav__item">
|
|
10948
|
-
<a href="#
|
|
11596
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
10949
11597
|
<span class="md-ellipsis">
|
|
10950
|
-
Removed
|
|
11598
|
+
Removed in v2.3.0-beta.1
|
|
10951
11599
|
</span>
|
|
10952
11600
|
</a>
|
|
10953
11601
|
|
|
10954
11602
|
</li>
|
|
10955
11603
|
|
|
10956
11604
|
<li class="md-nav__item">
|
|
10957
|
-
<a href="#
|
|
11605
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
10958
11606
|
<span class="md-ellipsis">
|
|
10959
|
-
Fixed
|
|
11607
|
+
Fixed in v2.3.0-beta.1
|
|
10960
11608
|
</span>
|
|
10961
11609
|
</a>
|
|
10962
11610
|
|
|
10963
11611
|
</li>
|
|
10964
11612
|
|
|
10965
11613
|
<li class="md-nav__item">
|
|
10966
|
-
<a href="#
|
|
11614
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
10967
11615
|
<span class="md-ellipsis">
|
|
10968
|
-
Dependencies
|
|
11616
|
+
Dependencies in v2.3.0-beta.1
|
|
10969
11617
|
</span>
|
|
10970
11618
|
</a>
|
|
10971
11619
|
|
|
10972
11620
|
</li>
|
|
10973
11621
|
|
|
10974
11622
|
<li class="md-nav__item">
|
|
10975
|
-
<a href="#
|
|
11623
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
10976
11624
|
<span class="md-ellipsis">
|
|
10977
|
-
Documentation
|
|
11625
|
+
Documentation in v2.3.0-beta.1
|
|
10978
11626
|
</span>
|
|
10979
11627
|
</a>
|
|
10980
11628
|
|
|
10981
11629
|
</li>
|
|
10982
11630
|
|
|
10983
11631
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
11632
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
10985
11633
|
<span class="md-ellipsis">
|
|
10986
|
-
Housekeeping
|
|
11634
|
+
Housekeeping in v2.3.0-beta.1
|
|
10987
11635
|
</span>
|
|
10988
11636
|
</a>
|
|
10989
11637
|
|
|
@@ -11012,8 +11660,6 @@
|
|
|
11012
11660
|
|
|
11013
11661
|
|
|
11014
11662
|
|
|
11015
|
-
<!-- markdownlint-disable MD024 -->
|
|
11016
|
-
|
|
11017
11663
|
<h1 id="nautobot-v23">Nautobot v2.3<a class="headerlink" href="#nautobot-v23" title="Permanent link">¶</a></h1>
|
|
11018
11664
|
<p>This document describes all new features and changes in Nautobot 2.3.</p>
|
|
11019
11665
|
<h2 id="upgrade-actions">Upgrade Actions<a class="headerlink" href="#upgrade-actions" title="Permanent link">¶</a></h2>
|
|
@@ -11103,19 +11749,67 @@
|
|
|
11103
11749
|
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11104
11750
|
<h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">¶</a></h4>
|
|
11105
11751
|
<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>
|
|
11752
|
+
<!-- pyml disable-num-lines 2 blanks-around-headers -->
|
|
11106
11753
|
<!-- towncrier release notes start -->
|
|
11754
|
+
<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>
|
|
11755
|
+
<h3 id="fixed-in-v2316">Fixed in v2.3.16<a class="headerlink" href="#fixed-in-v2316" title="Permanent link">¶</a></h3>
|
|
11756
|
+
<ul>
|
|
11757
|
+
<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>
|
|
11758
|
+
<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>
|
|
11759
|
+
<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>
|
|
11760
|
+
<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>
|
|
11761
|
+
<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>
|
|
11762
|
+
<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>
|
|
11763
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6676">#6676</a> - Resolved issue with IPAddressQuerySet <code>get_or_create</code> method signature not matching the base method signature.</li>
|
|
11764
|
+
</ul>
|
|
11765
|
+
<h3 id="housekeeping-in-v2316">Housekeeping in v2.3.16<a class="headerlink" href="#housekeeping-in-v2316" title="Permanent link">¶</a></h3>
|
|
11766
|
+
<ul>
|
|
11767
|
+
<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>
|
|
11768
|
+
<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>
|
|
11769
|
+
</ul>
|
|
11770
|
+
<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>
|
|
11771
|
+
<h3 id="security-in-v2315">Security in v2.3.15<a class="headerlink" href="#security-in-v2315" title="Permanent link">¶</a></h3>
|
|
11772
|
+
<ul>
|
|
11773
|
+
<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>
|
|
11774
|
+
</ul>
|
|
11775
|
+
<h3 id="added-in-v2315">Added in v2.3.15<a class="headerlink" href="#added-in-v2315" title="Permanent link">¶</a></h3>
|
|
11776
|
+
<ul>
|
|
11777
|
+
<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>
|
|
11778
|
+
</ul>
|
|
11779
|
+
<h3 id="changed-in-v2315">Changed in v2.3.15<a class="headerlink" href="#changed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11780
|
+
<ul>
|
|
11781
|
+
<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>
|
|
11782
|
+
</ul>
|
|
11783
|
+
<h3 id="fixed-in-v2315">Fixed in v2.3.15<a class="headerlink" href="#fixed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11784
|
+
<ul>
|
|
11785
|
+
<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>
|
|
11786
|
+
<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>
|
|
11787
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6702">#6702</a> - Resolved issue with TagsBulkEditFormMixin missing self.model.</li>
|
|
11788
|
+
</ul>
|
|
11789
|
+
<h3 id="dependencies-in-v2315">Dependencies in v2.3.15<a class="headerlink" href="#dependencies-in-v2315" title="Permanent link">¶</a></h3>
|
|
11790
|
+
<ul>
|
|
11791
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>nh3</code> dependency to <code>~0.2.20</code>.</li>
|
|
11792
|
+
<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>
|
|
11793
|
+
</ul>
|
|
11794
|
+
<h3 id="housekeeping-in-v2315">Housekeeping in v2.3.15<a class="headerlink" href="#housekeeping-in-v2315" title="Permanent link">¶</a></h3>
|
|
11795
|
+
<ul>
|
|
11796
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6688">#6688</a> - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.</li>
|
|
11797
|
+
<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>
|
|
11798
|
+
<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>
|
|
11799
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6706">#6706</a> - Removed unnecessary <code>user-data.json</code> integration-test fixture file.</li>
|
|
11800
|
+
</ul>
|
|
11107
11801
|
<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>
|
|
11108
|
-
<h3 id="
|
|
11802
|
+
<h3 id="added-in-v2314">Added in v2.3.14<a class="headerlink" href="#added-in-v2314" title="Permanent link">¶</a></h3>
|
|
11109
11803
|
<ul>
|
|
11110
11804
|
<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>
|
|
11111
11805
|
</ul>
|
|
11112
|
-
<h3 id="
|
|
11806
|
+
<h3 id="changed-in-v2314">Changed in v2.3.14<a class="headerlink" href="#changed-in-v2314" title="Permanent link">¶</a></h3>
|
|
11113
11807
|
<ul>
|
|
11114
11808
|
<li><a href="https://github.com/nautobot/nautobot/issues/6518">#6518</a> - Added VRFs column to Prefixes and Child Prefixes tables.</li>
|
|
11115
11809
|
<li><a href="https://github.com/nautobot/nautobot/issues/6531">#6531</a> - Restrict the <code>id</code> filter field to use to only the <code>__n</code> (negation) lookup filter.</li>
|
|
11116
11810
|
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Changed the save method of the <code>Prefix</code> model to reparent subnets and IPs only when the <code>network</code>, <code>namespace</code>, or <code>prefix_length</code> fields are updated.</li>
|
|
11117
11811
|
</ul>
|
|
11118
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11812
|
+
<h3 id="fixed-in-v2314">Fixed in v2.3.14<a class="headerlink" href="#fixed-in-v2314" title="Permanent link">¶</a></h3>
|
|
11119
11813
|
<ul>
|
|
11120
11814
|
<li><a href="https://github.com/nautobot/nautobot/issues/4056">#4056</a> - Fixed filter of add_tags and remove_tags of bulkedit based on content type</li>
|
|
11121
11815
|
<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>
|
|
@@ -11125,22 +11819,22 @@
|
|
|
11125
11819
|
<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>
|
|
11126
11820
|
<li><a href="https://github.com/nautobot/nautobot/issues/6678">#6678</a> - Fixed incorrect copy button behavior on global search page.</li>
|
|
11127
11821
|
</ul>
|
|
11128
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11822
|
+
<h3 id="documentation-in-v2314">Documentation in v2.3.14<a class="headerlink" href="#documentation-in-v2314" title="Permanent link">¶</a></h3>
|
|
11129
11823
|
<ul>
|
|
11130
11824
|
<li><a href="https://github.com/nautobot/nautobot/issues/6590">#6590</a> - Added an <code>ExampleEverythingJob</code> to the Example App and updated Job developer documentation to reference it as an example.</li>
|
|
11131
11825
|
</ul>
|
|
11132
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11826
|
+
<h3 id="housekeeping-in-v2314">Housekeeping in v2.3.14<a class="headerlink" href="#housekeeping-in-v2314" title="Permanent link">¶</a></h3>
|
|
11133
11827
|
<ul>
|
|
11134
11828
|
<li><a href="https://github.com/nautobot/nautobot/issues/6657">#6657</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.48</code>.</li>
|
|
11135
11829
|
<li><a href="https://github.com/nautobot/nautobot/issues/6659">#6659</a> - Enhanced development environment and associated <code>invoke</code> tasks to be Nautobot major/minor version aware, such that a different Docker compose <code>project-name</code> (and different local Docker image label) will be used for containers in a <code>develop</code>-based branch versus a <code>next</code>-based branch.</li>
|
|
11136
11830
|
<li><a href="https://github.com/nautobot/nautobot/issues/6679">#6679</a> - Added <code>logs</code> task to <code>tasks.py</code> to view the logs of a docker compose service.</li>
|
|
11137
11831
|
</ul>
|
|
11138
11832
|
<h2 id="v2313-2024-12-10">v2.3.13 (2024-12-10)<a class="headerlink" href="#v2313-2024-12-10" title="Permanent link">¶</a></h2>
|
|
11139
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11833
|
+
<h3 id="security-in-v2313">Security in v2.3.13<a class="headerlink" href="#security-in-v2313" title="Permanent link">¶</a></h3>
|
|
11140
11834
|
<ul>
|
|
11141
11835
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>Django</code> to <code>~4.2.17</code> due to <code>CVE-2024-53907</code> and <code>CVE-2024-53908</code>.</li>
|
|
11142
11836
|
</ul>
|
|
11143
|
-
<h3 id="
|
|
11837
|
+
<h3 id="added-in-v2313">Added in v2.3.13<a class="headerlink" href="#added-in-v2313" title="Permanent link">¶</a></h3>
|
|
11144
11838
|
<ul>
|
|
11145
11839
|
<li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
|
|
11146
11840
|
<li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
|
|
@@ -11152,43 +11846,43 @@
|
|
|
11152
11846
|
<li><a href="https://github.com/nautobot/nautobot/issues/6613">#6613</a> - Enhanced Prefix detail view "Child Prefixes" table to render associated Locations more intelligently.</li>
|
|
11153
11847
|
<li><a href="https://github.com/nautobot/nautobot/issues/6614">#6614</a> - Enhanced IP Address tables to show the name of the associated Interface or VM Interface if only a single such association is present for a given IP Address.</li>
|
|
11154
11848
|
</ul>
|
|
11155
|
-
<h3 id="
|
|
11849
|
+
<h3 id="changed-in-v2313">Changed in v2.3.13<a class="headerlink" href="#changed-in-v2313" title="Permanent link">¶</a></h3>
|
|
11156
11850
|
<ul>
|
|
11157
11851
|
<li><a href="https://github.com/nautobot/nautobot/issues/6166">#6166</a> - Enhanced the REST API to generally make it possible to create objects with known ids on request.</li>
|
|
11158
11852
|
</ul>
|
|
11159
|
-
<h3 id="
|
|
11853
|
+
<h3 id="fixed-in-v2313">Fixed in v2.3.13<a class="headerlink" href="#fixed-in-v2313" title="Permanent link">¶</a></h3>
|
|
11160
11854
|
<ul>
|
|
11161
11855
|
<li><a href="https://github.com/nautobot/nautobot/issues/3124">#3124</a> - Fixed inability of ImageAttachment and DeviceType API endpoints to accept <code>multipart/form-data</code> file uploads.</li>
|
|
11162
11856
|
<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>
|
|
11163
11857
|
<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>
|
|
11164
|
-
<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
|
|
11858
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Fixed error when using TableExtension when the table is missing <code>Meta.default_columns</code>.</li>
|
|
11165
11859
|
<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>
|
|
11166
11860
|
<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>
|
|
11167
11861
|
<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>
|
|
11168
11862
|
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed issue with <code>group_sync.py</code> where it was accessing the settings using environment variable name vs the actual settings name.</li>
|
|
11169
11863
|
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed the <code>SOCIAL_AUTH_PIPELINE</code> settings to include the entire path of the <code>group_sync</code> function.</li>
|
|
11170
11864
|
</ul>
|
|
11171
|
-
<h3 id="
|
|
11865
|
+
<h3 id="dependencies-in-v2313">Dependencies in v2.3.13<a class="headerlink" href="#dependencies-in-v2313" title="Permanent link">¶</a></h3>
|
|
11172
11866
|
<ul>
|
|
11173
11867
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
|
|
11174
11868
|
</ul>
|
|
11175
|
-
<h3 id="
|
|
11869
|
+
<h3 id="documentation-in-v2313">Documentation in v2.3.13<a class="headerlink" href="#documentation-in-v2313" title="Permanent link">¶</a></h3>
|
|
11176
11870
|
<ul>
|
|
11177
11871
|
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11178
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed group_sync path in the SSO documentation.</li>
|
|
11872
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed <code>group_sync</code> path in the SSO documentation.</li>
|
|
11179
11873
|
</ul>
|
|
11180
|
-
<h3 id="
|
|
11874
|
+
<h3 id="housekeeping-in-v2313">Housekeeping in v2.3.13<a class="headerlink" href="#housekeeping-in-v2313" title="Permanent link">¶</a></h3>
|
|
11181
11875
|
<ul>
|
|
11182
11876
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.47</code>.</li>
|
|
11183
11877
|
</ul>
|
|
11184
11878
|
<h2 id="v2312-2024-11-25">v2.3.12 (2024-11-25)<a class="headerlink" href="#v2312-2024-11-25" title="Permanent link">¶</a></h2>
|
|
11185
|
-
<h3 id="
|
|
11879
|
+
<h3 id="added-in-v2312">Added in v2.3.12<a class="headerlink" href="#added-in-v2312" title="Permanent link">¶</a></h3>
|
|
11186
11880
|
<ul>
|
|
11187
11881
|
<li><a href="https://github.com/nautobot/nautobot/issues/6532">#6532</a> - Added a keyboard shortcut (⌘+enter or ctrl+enter) to submit forms when typing in a textarea.</li>
|
|
11188
11882
|
<li><a href="https://github.com/nautobot/nautobot/issues/6543">#6543</a> - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.</li>
|
|
11189
11883
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11190
11884
|
</ul>
|
|
11191
|
-
<h3 id="
|
|
11885
|
+
<h3 id="fixed-in-v2312">Fixed in v2.3.12<a class="headerlink" href="#fixed-in-v2312" title="Permanent link">¶</a></h3>
|
|
11192
11886
|
<ul>
|
|
11193
11887
|
<li><a href="https://github.com/nautobot/nautobot/issues/6242">#6242</a> - Fixed "copy" button on Device tabbed views to now only copy the device name.</li>
|
|
11194
11888
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11200,34 +11894,34 @@
|
|
|
11200
11894
|
<li><a href="https://github.com/nautobot/nautobot/issues/6547">#6547</a> - Fixed incorrect VRF filter specified on VRF column on Prefix Table.</li>
|
|
11201
11895
|
<li><a href="https://github.com/nautobot/nautobot/issues/6564">#6564</a> - Fixed an <code>AttributeError</code> raised when an App overrides a NautobotUIViewSet view.</li>
|
|
11202
11896
|
</ul>
|
|
11203
|
-
<h3 id="
|
|
11897
|
+
<h3 id="dependencies-in-v2312">Dependencies in v2.3.12<a class="headerlink" href="#dependencies-in-v2312" title="Permanent link">¶</a></h3>
|
|
11204
11898
|
<ul>
|
|
11205
11899
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated <code>mysqlclient</code> dependency to <code>~2.2.6</code>.</li>
|
|
11206
11900
|
</ul>
|
|
11207
|
-
<h3 id="
|
|
11901
|
+
<h3 id="documentation-in-v2312">Documentation in v2.3.12<a class="headerlink" href="#documentation-in-v2312" title="Permanent link">¶</a></h3>
|
|
11208
11902
|
<ul>
|
|
11209
11903
|
<li><a href="https://github.com/nautobot/nautobot/issues/6516">#6516</a> - Updated release notes to make it clearer which are model changes.</li>
|
|
11210
11904
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11211
11905
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11212
11906
|
</ul>
|
|
11213
|
-
<h3 id="
|
|
11907
|
+
<h3 id="housekeeping-in-v2312">Housekeeping in v2.3.12<a class="headerlink" href="#housekeeping-in-v2312" title="Permanent link">¶</a></h3>
|
|
11214
11908
|
<ul>
|
|
11215
11909
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated documentation dependencies <code>mkdocs-redirects</code> to <code>1.2.2</code> and <code>mkdocs-material</code> to <code>9.5.46</code>.</li>
|
|
11216
11910
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11217
11911
|
</ul>
|
|
11218
11912
|
<h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">¶</a></h2>
|
|
11219
|
-
<h3 id="
|
|
11913
|
+
<h3 id="added-in-v2311">Added in v2.3.11<a class="headerlink" href="#added-in-v2311" title="Permanent link">¶</a></h3>
|
|
11220
11914
|
<ul>
|
|
11221
11915
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added <code>nautobot.apps.utils.get_related_field_for_models()</code> helper function.</li>
|
|
11222
11916
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11223
11917
|
</ul>
|
|
11224
|
-
<h3 id="
|
|
11918
|
+
<h3 id="changed-in-v2311">Changed in v2.3.11<a class="headerlink" href="#changed-in-v2311" title="Permanent link">¶</a></h3>
|
|
11225
11919
|
<ul>
|
|
11226
11920
|
<li><a href="https://github.com/nautobot/nautobot/issues/5321">#5321</a> - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.</li>
|
|
11227
11921
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying <code>1</code>.</li>
|
|
11228
11922
|
<li><a href="https://github.com/nautobot/nautobot/issues/6465">#6465</a> - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.</li>
|
|
11229
11923
|
</ul>
|
|
11230
|
-
<h3 id="
|
|
11924
|
+
<h3 id="fixed-in-v2311">Fixed in v2.3.11<a class="headerlink" href="#fixed-in-v2311" title="Permanent link">¶</a></h3>
|
|
11231
11925
|
<ul>
|
|
11232
11926
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11233
11927
|
<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>
|
|
@@ -11238,11 +11932,11 @@
|
|
|
11238
11932
|
<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>
|
|
11239
11933
|
<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>
|
|
11240
11934
|
</ul>
|
|
11241
|
-
<h3 id="
|
|
11935
|
+
<h3 id="documentation-in-v2311">Documentation in v2.3.11<a class="headerlink" href="#documentation-in-v2311" title="Permanent link">¶</a></h3>
|
|
11242
11936
|
<ul>
|
|
11243
11937
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11244
11938
|
</ul>
|
|
11245
|
-
<h3 id="
|
|
11939
|
+
<h3 id="housekeeping-in-v2311">Housekeeping in v2.3.11<a class="headerlink" href="#housekeeping-in-v2311" title="Permanent link">¶</a></h3>
|
|
11246
11940
|
<ul>
|
|
11247
11941
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.</li>
|
|
11248
11942
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11251,62 +11945,62 @@
|
|
|
11251
11945
|
<li><a href="https://github.com/nautobot/nautobot/issues/6497">#6497</a> - Added support for <code>--no-reusedb</code> option to <code>invoke integration-test</code> task.</li>
|
|
11252
11946
|
</ul>
|
|
11253
11947
|
<h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">¶</a></h2>
|
|
11254
|
-
<h3 id="
|
|
11948
|
+
<h3 id="added-in-v2310">Added in v2.3.10<a class="headerlink" href="#added-in-v2310" title="Permanent link">¶</a></h3>
|
|
11255
11949
|
<ul>
|
|
11256
11950
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
|
|
11257
11951
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
|
|
11258
11952
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11259
11953
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
|
|
11260
11954
|
</ul>
|
|
11261
|
-
<h3 id="
|
|
11955
|
+
<h3 id="changed-in-v2310">Changed in v2.3.10<a class="headerlink" href="#changed-in-v2310" title="Permanent link">¶</a></h3>
|
|
11262
11956
|
<ul>
|
|
11263
11957
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
|
|
11264
11958
|
</ul>
|
|
11265
|
-
<h3 id="
|
|
11959
|
+
<h3 id="fixed-in-v2310">Fixed in v2.3.10<a class="headerlink" href="#fixed-in-v2310" title="Permanent link">¶</a></h3>
|
|
11266
11960
|
<ul>
|
|
11267
11961
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
|
|
11268
11962
|
<li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
|
|
11269
11963
|
</ul>
|
|
11270
|
-
<h3 id="
|
|
11964
|
+
<h3 id="dependencies-in-v2310">Dependencies in v2.3.10<a class="headerlink" href="#dependencies-in-v2310" title="Permanent link">¶</a></h3>
|
|
11271
11965
|
<ul>
|
|
11272
11966
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11273
11967
|
</ul>
|
|
11274
|
-
<h3 id="
|
|
11968
|
+
<h3 id="housekeeping-in-v2310">Housekeeping in v2.3.10<a class="headerlink" href="#housekeeping-in-v2310" title="Permanent link">¶</a></h3>
|
|
11275
11969
|
<ul>
|
|
11276
11970
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
|
|
11277
11971
|
</ul>
|
|
11278
11972
|
<h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">¶</a></h2>
|
|
11279
|
-
<h3 id="
|
|
11973
|
+
<h3 id="added-in-v239">Added in v2.3.9<a class="headerlink" href="#added-in-v239" title="Permanent link">¶</a></h3>
|
|
11280
11974
|
<ul>
|
|
11281
11975
|
<li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
|
|
11282
11976
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
|
|
11283
11977
|
<li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
|
|
11284
11978
|
</ul>
|
|
11285
|
-
<h3 id="
|
|
11979
|
+
<h3 id="changed-in-v239">Changed in v2.3.9<a class="headerlink" href="#changed-in-v239" title="Permanent link">¶</a></h3>
|
|
11286
11980
|
<ul>
|
|
11287
11981
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
|
|
11288
11982
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
|
|
11289
11983
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
|
|
11290
11984
|
</ul>
|
|
11291
|
-
<h3 id="
|
|
11985
|
+
<h3 id="fixed-in-v239">Fixed in v2.3.9<a class="headerlink" href="#fixed-in-v239" title="Permanent link">¶</a></h3>
|
|
11292
11986
|
<ul>
|
|
11293
11987
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
|
|
11294
11988
|
<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>
|
|
11295
11989
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Fixed reversed chronological ordering of JobHooks and Webhooks sent from a single <code>web_request_context</code> session.</li>
|
|
11296
11990
|
<li><a href="https://github.com/nautobot/nautobot/issues/6400">#6400</a> - Removed misleading help text from ModularComponentForm, as the <code>{module}</code> auto-substitution in names only applies through component <em>templates</em> at present.</li>
|
|
11297
11991
|
<li><a href="https://github.com/nautobot/nautobot/issues/6415">#6415</a> - Added missing column <code>software_version</code> to the Device Table in Device List View.</li>
|
|
11298
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the
|
|
11992
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the <code>role</code> column on Device/VM interfaces.</li>
|
|
11299
11993
|
</ul>
|
|
11300
|
-
<h3 id="
|
|
11994
|
+
<h3 id="dependencies-in-v239">Dependencies in v2.3.9<a class="headerlink" href="#dependencies-in-v239" title="Permanent link">¶</a></h3>
|
|
11301
11995
|
<ul>
|
|
11302
11996
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
|
|
11303
11997
|
</ul>
|
|
11304
|
-
<h3 id="
|
|
11998
|
+
<h3 id="housekeeping-in-v239">Housekeeping in v2.3.9<a class="headerlink" href="#housekeeping-in-v239" title="Permanent link">¶</a></h3>
|
|
11305
11999
|
<ul>
|
|
11306
12000
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
|
|
11307
12001
|
</ul>
|
|
11308
12002
|
<h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">¶</a></h2>
|
|
11309
|
-
<h3 id="
|
|
12003
|
+
<h3 id="fixed-in-v238">Fixed in v2.3.8<a class="headerlink" href="#fixed-in-v238" title="Permanent link">¶</a></h3>
|
|
11310
12004
|
<ul>
|
|
11311
12005
|
<li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
|
|
11312
12006
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
|
|
@@ -11315,27 +12009,27 @@
|
|
|
11315
12009
|
<li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
|
|
11316
12010
|
</ul>
|
|
11317
12011
|
<h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">¶</a></h2>
|
|
11318
|
-
<h3 id="
|
|
12012
|
+
<h3 id="added-in-v237">Added in v2.3.7<a class="headerlink" href="#added-in-v237" title="Permanent link">¶</a></h3>
|
|
11319
12013
|
<ul>
|
|
11320
12014
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
11321
12015
|
</ul>
|
|
11322
|
-
<h3 id="
|
|
12016
|
+
<h3 id="changed-in-v237">Changed in v2.3.7<a class="headerlink" href="#changed-in-v237" title="Permanent link">¶</a></h3>
|
|
11323
12017
|
<ul>
|
|
11324
12018
|
<li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
|
|
11325
12019
|
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
|
|
11326
12020
|
</ul>
|
|
11327
|
-
<h3 id="
|
|
12021
|
+
<h3 id="fixed-in-v237">Fixed in v2.3.7<a class="headerlink" href="#fixed-in-v237" title="Permanent link">¶</a></h3>
|
|
11328
12022
|
<ul>
|
|
11329
12023
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11330
12024
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
|
|
11331
12025
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
|
|
11332
12026
|
<li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
|
|
11333
12027
|
</ul>
|
|
11334
|
-
<h3 id="
|
|
12028
|
+
<h3 id="dependencies-in-v237">Dependencies in v2.3.7<a class="headerlink" href="#dependencies-in-v237" title="Permanent link">¶</a></h3>
|
|
11335
12029
|
<ul>
|
|
11336
12030
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
|
|
11337
12031
|
</ul>
|
|
11338
|
-
<h3 id="
|
|
12032
|
+
<h3 id="housekeeping-in-v237">Housekeeping in v2.3.7<a class="headerlink" href="#housekeeping-in-v237" title="Permanent link">¶</a></h3>
|
|
11339
12033
|
<ul>
|
|
11340
12034
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
|
|
11341
12035
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
|
|
@@ -11346,36 +12040,36 @@
|
|
|
11346
12040
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
|
|
11347
12041
|
</ul>
|
|
11348
12042
|
<h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">¶</a></h2>
|
|
11349
|
-
<h3 id="
|
|
12043
|
+
<h3 id="added-in-v236">Added in v2.3.6<a class="headerlink" href="#added-in-v236" title="Permanent link">¶</a></h3>
|
|
11350
12044
|
<ul>
|
|
11351
12045
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11352
12046
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11353
12047
|
</ul>
|
|
11354
|
-
<h3 id="
|
|
12048
|
+
<h3 id="fixed-in-v236">Fixed in v2.3.6<a class="headerlink" href="#fixed-in-v236" title="Permanent link">¶</a></h3>
|
|
11355
12049
|
<ul>
|
|
11356
12050
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
|
|
11357
12051
|
<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>
|
|
11358
12052
|
</ul>
|
|
11359
|
-
<h3 id="
|
|
12053
|
+
<h3 id="documentation-in-v236">Documentation in v2.3.6<a class="headerlink" href="#documentation-in-v236" title="Permanent link">¶</a></h3>
|
|
11360
12054
|
<ul>
|
|
11361
12055
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
|
|
11362
12056
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
|
|
11363
12057
|
</ul>
|
|
11364
|
-
<h3 id="
|
|
12058
|
+
<h3 id="housekeeping-in-v236">Housekeeping in v2.3.6<a class="headerlink" href="#housekeeping-in-v236" title="Permanent link">¶</a></h3>
|
|
11365
12059
|
<ul>
|
|
11366
12060
|
<li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
|
|
11367
12061
|
</ul>
|
|
11368
12062
|
<h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">¶</a></h2>
|
|
11369
|
-
<h3 id="
|
|
12063
|
+
<h3 id="added-in-v235">Added in v2.3.5<a class="headerlink" href="#added-in-v235" title="Permanent link">¶</a></h3>
|
|
11370
12064
|
<ul>
|
|
11371
12065
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
|
|
11372
12066
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
11373
12067
|
</ul>
|
|
11374
|
-
<h3 id="
|
|
12068
|
+
<h3 id="changed-in-v235">Changed in v2.3.5<a class="headerlink" href="#changed-in-v235" title="Permanent link">¶</a></h3>
|
|
11375
12069
|
<ul>
|
|
11376
12070
|
<li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
|
|
11377
12071
|
</ul>
|
|
11378
|
-
<h3 id="
|
|
12072
|
+
<h3 id="fixed-in-v235">Fixed in v2.3.5<a class="headerlink" href="#fixed-in-v235" title="Permanent link">¶</a></h3>
|
|
11379
12073
|
<ul>
|
|
11380
12074
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
11381
12075
|
<li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
|
|
@@ -11386,16 +12080,16 @@
|
|
|
11386
12080
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
|
|
11387
12081
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
11388
12082
|
</ul>
|
|
11389
|
-
<h3 id="
|
|
12083
|
+
<h3 id="dependencies-in-v235">Dependencies in v2.3.5<a class="headerlink" href="#dependencies-in-v235" title="Permanent link">¶</a></h3>
|
|
11390
12084
|
<ul>
|
|
11391
12085
|
<li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
|
|
11392
12086
|
<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>
|
|
11393
12087
|
</ul>
|
|
11394
|
-
<h3 id="
|
|
12088
|
+
<h3 id="documentation-in-v235">Documentation in v2.3.5<a class="headerlink" href="#documentation-in-v235" title="Permanent link">¶</a></h3>
|
|
11395
12089
|
<ul>
|
|
11396
12090
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
|
|
11397
12091
|
</ul>
|
|
11398
|
-
<h3 id="
|
|
12092
|
+
<h3 id="housekeeping-in-v235">Housekeeping in v2.3.5<a class="headerlink" href="#housekeeping-in-v235" title="Permanent link">¶</a></h3>
|
|
11399
12093
|
<ul>
|
|
11400
12094
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
11401
12095
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
|
|
@@ -11404,22 +12098,22 @@
|
|
|
11404
12098
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
11405
12099
|
</ul>
|
|
11406
12100
|
<h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">¶</a></h2>
|
|
11407
|
-
<h3 id="
|
|
12101
|
+
<h3 id="added-in-v234">Added in v2.3.4<a class="headerlink" href="#added-in-v234" title="Permanent link">¶</a></h3>
|
|
11408
12102
|
<ul>
|
|
11409
12103
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
11410
12104
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
|
|
11411
12105
|
</ul>
|
|
11412
|
-
<h3 id="
|
|
12106
|
+
<h3 id="changed-in-v234">Changed in v2.3.4<a class="headerlink" href="#changed-in-v234" title="Permanent link">¶</a></h3>
|
|
11413
12107
|
<ul>
|
|
11414
12108
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
|
|
11415
12109
|
</ul>
|
|
11416
|
-
<h3 id="
|
|
12110
|
+
<h3 id="fixed-in-v234">Fixed in v2.3.4<a class="headerlink" href="#fixed-in-v234" title="Permanent link">¶</a></h3>
|
|
11417
12111
|
<ul>
|
|
11418
12112
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11419
12113
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
11420
12114
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
11421
12115
|
</ul>
|
|
11422
|
-
<h3 id="
|
|
12116
|
+
<h3 id="documentation-in-v234">Documentation in v2.3.4<a class="headerlink" href="#documentation-in-v234" title="Permanent link">¶</a></h3>
|
|
11423
12117
|
<ul>
|
|
11424
12118
|
<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>
|
|
11425
12119
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
|
|
@@ -11427,7 +12121,7 @@
|
|
|
11427
12121
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
|
|
11428
12122
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
|
|
11429
12123
|
</ul>
|
|
11430
|
-
<h3 id="
|
|
12124
|
+
<h3 id="housekeeping-in-v234">Housekeeping in v2.3.4<a class="headerlink" href="#housekeeping-in-v234" title="Permanent link">¶</a></h3>
|
|
11431
12125
|
<ul>
|
|
11432
12126
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
|
|
11433
12127
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
|
|
@@ -11435,22 +12129,22 @@
|
|
|
11435
12129
|
<li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
|
|
11436
12130
|
</ul>
|
|
11437
12131
|
<h2 id="v233-2024-09-16">v2.3.3 (2024-09-16)<a class="headerlink" href="#v233-2024-09-16" title="Permanent link">¶</a></h2>
|
|
11438
|
-
<h3 id="
|
|
12132
|
+
<h3 id="security-in-v233">Security in v2.3.3<a class="headerlink" href="#security-in-v233" title="Permanent link">¶</a></h3>
|
|
11439
12133
|
<ul>
|
|
11440
12134
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
|
|
11441
12135
|
</ul>
|
|
11442
|
-
<h3 id="
|
|
12136
|
+
<h3 id="fixed-in-v233">Fixed in v2.3.3<a class="headerlink" href="#fixed-in-v233" title="Permanent link">¶</a></h3>
|
|
11443
12137
|
<ul>
|
|
11444
12138
|
<li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
|
|
11445
12139
|
<li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
|
|
11446
12140
|
<li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
|
|
11447
12141
|
<li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
|
|
11448
12142
|
</ul>
|
|
11449
|
-
<h3 id="
|
|
12143
|
+
<h3 id="dependencies-in-v233">Dependencies in v2.3.3<a class="headerlink" href="#dependencies-in-v233" title="Permanent link">¶</a></h3>
|
|
11450
12144
|
<ul>
|
|
11451
12145
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
|
|
11452
12146
|
</ul>
|
|
11453
|
-
<h3 id="
|
|
12147
|
+
<h3 id="housekeeping-in-v233">Housekeeping in v2.3.3<a class="headerlink" href="#housekeeping-in-v233" title="Permanent link">¶</a></h3>
|
|
11454
12148
|
<ul>
|
|
11455
12149
|
<li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
|
|
11456
12150
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
|
|
@@ -11460,18 +12154,18 @@
|
|
|
11460
12154
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated development dependency <code>pylint</code> to <code>~3.2.7</code>.</li>
|
|
11461
12155
|
</ul>
|
|
11462
12156
|
<h2 id="v232-2024-09-03">v2.3.2 (2024-09-03)<a class="headerlink" href="#v232-2024-09-03" title="Permanent link">¶</a></h2>
|
|
11463
|
-
<h3 id="
|
|
12157
|
+
<h3 id="security-in-v232">Security in v2.3.2<a class="headerlink" href="#security-in-v232" title="Permanent link">¶</a></h3>
|
|
11464
12158
|
<ul>
|
|
11465
12159
|
<li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11466
12160
|
</ul>
|
|
11467
|
-
<h3 id="
|
|
12161
|
+
<h3 id="added-in-v232">Added in v2.3.2<a class="headerlink" href="#added-in-v232" title="Permanent link">¶</a></h3>
|
|
11468
12162
|
<ul>
|
|
11469
12163
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
11470
12164
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
11471
12165
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11472
12166
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11473
12167
|
</ul>
|
|
11474
|
-
<h3 id="
|
|
12168
|
+
<h3 id="fixed-in-v232">Fixed in v2.3.2<a class="headerlink" href="#fixed-in-v232" title="Permanent link">¶</a></h3>
|
|
11475
12169
|
<ul>
|
|
11476
12170
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
|
|
11477
12171
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
|
|
@@ -11480,7 +12174,7 @@
|
|
|
11480
12174
|
<li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
|
|
11481
12175
|
<li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
|
|
11482
12176
|
</ul>
|
|
11483
|
-
<h3 id="
|
|
12177
|
+
<h3 id="housekeeping-in-v232">Housekeeping in v2.3.2<a class="headerlink" href="#housekeeping-in-v232" title="Permanent link">¶</a></h3>
|
|
11484
12178
|
<ul>
|
|
11485
12179
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
11486
12180
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
|
|
@@ -11488,33 +12182,33 @@
|
|
|
11488
12182
|
<li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
|
|
11489
12183
|
</ul>
|
|
11490
12184
|
<h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">¶</a></h2>
|
|
11491
|
-
<h3 id="
|
|
12185
|
+
<h3 id="added-in-v231">Added in v2.3.1<a class="headerlink" href="#added-in-v231" title="Permanent link">¶</a></h3>
|
|
11492
12186
|
<ul>
|
|
11493
12187
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
11494
12188
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
|
|
11495
12189
|
<li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
|
|
11496
12190
|
</ul>
|
|
11497
|
-
<h3 id="
|
|
12191
|
+
<h3 id="changed-in-v231">Changed in v2.3.1<a class="headerlink" href="#changed-in-v231" title="Permanent link">¶</a></h3>
|
|
11498
12192
|
<ul>
|
|
11499
12193
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11500
12194
|
</ul>
|
|
11501
|
-
<h3 id="
|
|
12195
|
+
<h3 id="fixed-in-v231">Fixed in v2.3.1<a class="headerlink" href="#fixed-in-v231" title="Permanent link">¶</a></h3>
|
|
11502
12196
|
<ul>
|
|
11503
12197
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
|
|
11504
12198
|
<li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
|
|
11505
12199
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11506
12200
|
<li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
|
|
11507
12201
|
</ul>
|
|
11508
|
-
<h3 id="
|
|
12202
|
+
<h3 id="housekeeping-in-v231">Housekeeping in v2.3.1<a class="headerlink" href="#housekeeping-in-v231" title="Permanent link">¶</a></h3>
|
|
11509
12203
|
<ul>
|
|
11510
12204
|
<li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
|
|
11511
12205
|
</ul>
|
|
11512
12206
|
<h2 id="v230-2024-08-08">v2.3.0 (2024-08-08)<a class="headerlink" href="#v230-2024-08-08" title="Permanent link">¶</a></h2>
|
|
11513
|
-
<h3 id="
|
|
12207
|
+
<h3 id="security-in-v230">Security in v2.3.0<a class="headerlink" href="#security-in-v230" title="Permanent link">¶</a></h3>
|
|
11514
12208
|
<ul>
|
|
11515
12209
|
<li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
|
|
11516
12210
|
</ul>
|
|
11517
|
-
<h3 id="
|
|
12211
|
+
<h3 id="added-in-v230">Added in v2.3.0<a class="headerlink" href="#added-in-v230" title="Permanent link">¶</a></h3>
|
|
11518
12212
|
<ul>
|
|
11519
12213
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
11520
12214
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -11524,7 +12218,7 @@
|
|
|
11524
12218
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
|
|
11525
12219
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
|
|
11526
12220
|
</ul>
|
|
11527
|
-
<h3 id="
|
|
12221
|
+
<h3 id="changed-in-v230">Changed in v2.3.0<a class="headerlink" href="#changed-in-v230" title="Permanent link">¶</a></h3>
|
|
11528
12222
|
<ul>
|
|
11529
12223
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
|
|
11530
12224
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -11533,12 +12227,12 @@
|
|
|
11533
12227
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Changed <code>CloudNetwork.parent</code> foreign-key <code>on_delete</code> behavior to <code>PROTECT</code>.</li>
|
|
11534
12228
|
<li><a href="https://github.com/nautobot/nautobot/issues/6070">#6070</a> - Marked the <code>Note</code> model as <code>is_metadata_associable_model = False</code>.</li>
|
|
11535
12229
|
</ul>
|
|
11536
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12230
|
+
<h3 id="removed-in-v230">Removed in v2.3.0<a class="headerlink" href="#removed-in-v230" title="Permanent link">¶</a></h3>
|
|
11537
12231
|
<ul>
|
|
11538
12232
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11539
12233
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11540
12234
|
</ul>
|
|
11541
|
-
<h3 id="
|
|
12235
|
+
<h3 id="fixed-in-v230">Fixed in v2.3.0<a class="headerlink" href="#fixed-in-v230" title="Permanent link">¶</a></h3>
|
|
11542
12236
|
<ul>
|
|
11543
12237
|
<li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
|
|
11544
12238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -11554,7 +12248,7 @@
|
|
|
11554
12248
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
11555
12249
|
<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>
|
|
11556
12250
|
</ul>
|
|
11557
|
-
<h3 id="
|
|
12251
|
+
<h3 id="documentation-in-v230">Documentation in v2.3.0<a class="headerlink" href="#documentation-in-v230" title="Permanent link">¶</a></h3>
|
|
11558
12252
|
<ul>
|
|
11559
12253
|
<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>
|
|
11560
12254
|
<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>
|
|
@@ -11562,7 +12256,7 @@
|
|
|
11562
12256
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11563
12257
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
11564
12258
|
</ul>
|
|
11565
|
-
<h3 id="
|
|
12259
|
+
<h3 id="housekeeping-in-v230">Housekeeping in v2.3.0<a class="headerlink" href="#housekeeping-in-v230" title="Permanent link">¶</a></h3>
|
|
11566
12260
|
<ul>
|
|
11567
12261
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
|
|
11568
12262
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
|
|
@@ -11573,11 +12267,11 @@
|
|
|
11573
12267
|
<li><a href="https://github.com/nautobot/nautobot/issues/6071">#6071</a> - Fixed incorrect generic-test logic in <code>FilterTestCase.test_q_filter_valid</code> for <code>q</code> filters containing <code>iexact</code> lookups.</li>
|
|
11574
12268
|
</ul>
|
|
11575
12269
|
<h2 id="v230-beta1-2024-07-25">v2.3.0-beta.1 (2024-07-25)<a class="headerlink" href="#v230-beta1-2024-07-25" title="Permanent link">¶</a></h2>
|
|
11576
|
-
<h3 id="
|
|
12270
|
+
<h3 id="security-in-v230-beta1">Security in v2.3.0-beta.1<a class="headerlink" href="#security-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11577
12271
|
<ul>
|
|
11578
12272
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
|
|
11579
12273
|
</ul>
|
|
11580
|
-
<h3 id="
|
|
12274
|
+
<h3 id="added-in-v230-beta1">Added in v2.3.0-beta.1<a class="headerlink" href="#added-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11581
12275
|
<ul>
|
|
11582
12276
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
11583
12277
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
|
|
@@ -11624,7 +12318,7 @@
|
|
|
11624
12318
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
|
|
11625
12319
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
11626
12320
|
</ul>
|
|
11627
|
-
<h3 id="
|
|
12321
|
+
<h3 id="changed-in-v230-beta1">Changed in v2.3.0-beta.1<a class="headerlink" href="#changed-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11628
12322
|
<ul>
|
|
11629
12323
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
|
|
11630
12324
|
<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>
|
|
@@ -11656,19 +12350,19 @@
|
|
|
11656
12350
|
<li><a href="https://github.com/nautobot/nautobot/issues/5977">#5977</a> - Changed the provider field help text of CloudAccount and CloudResourceType model classes and forms.</li>
|
|
11657
12351
|
<li><a href="https://github.com/nautobot/nautobot/issues/5978">#5978</a> - Changed CloudService <code>cloud_network</code> field from a ForeignKey to a ManyToMany called <code>cloud_networks</code>.</li>
|
|
11658
12352
|
</ul>
|
|
11659
|
-
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
12353
|
+
<h3 id="deprecated-in-v230-beta1">Deprecated in v2.3.0-beta.1<a class="headerlink" href="#deprecated-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11660
12354
|
<ul>
|
|
11661
12355
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Deprecated the properties <code>DynamicGroup.members_cached</code>, <code>DynamicGroup.members_cache_key</code>, <code>DynamicGroupMixin.dynamic_groups_cached</code>, <code>DynamicGroupMixin.dynamic_groups_list</code>, and <code>DynamicGroupMixin.dynamic_groups_list_cached</code>.</li>
|
|
11662
12356
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Deprecated the <code>DynamicGroupMixin</code> model mixin class. Models supporting Dynamic Groups should use <code>DynamicGroupsModelMixin</code> instead.</li>
|
|
11663
12357
|
<li><a href="https://github.com/nautobot/nautobot/issues/5870">#5870</a> - Deprecated the blocks <code>block export_button</code> and <code>block import_button</code> in <code>generic/object_list.html</code>. Apps and templates should migrate to using <code>block export_list_element</code> and <code>block import_list_element</code> respectively.</li>
|
|
11664
12358
|
</ul>
|
|
11665
|
-
<h3 id="
|
|
12359
|
+
<h3 id="removed-in-v230-beta1">Removed in v2.3.0-beta.1<a class="headerlink" href="#removed-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11666
12360
|
<ul>
|
|
11667
12361
|
<li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Removed automatic random cleanup of ObjectChange records when processing requests and signals.</li>
|
|
11668
12362
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
|
|
11669
12363
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
|
|
11670
12364
|
</ul>
|
|
11671
|
-
<h3 id="
|
|
12365
|
+
<h3 id="fixed-in-v230-beta1">Fixed in v2.3.0-beta.1<a class="headerlink" href="#fixed-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11672
12366
|
<ul>
|
|
11673
12367
|
<li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
|
|
11674
12368
|
<li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
|
|
@@ -11692,7 +12386,7 @@
|
|
|
11692
12386
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
11693
12387
|
<li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
|
|
11694
12388
|
</ul>
|
|
11695
|
-
<h3 id="
|
|
12389
|
+
<h3 id="dependencies-in-v230-beta1">Dependencies in v2.3.0-beta.1<a class="headerlink" href="#dependencies-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11696
12390
|
<ul>
|
|
11697
12391
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
11698
12392
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -11718,13 +12412,13 @@
|
|
|
11718
12412
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
|
|
11719
12413
|
<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>
|
|
11720
12414
|
</ul>
|
|
11721
|
-
<h3 id="
|
|
12415
|
+
<h3 id="documentation-in-v230-beta1">Documentation in v2.3.0-beta.1<a class="headerlink" href="#documentation-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11722
12416
|
<ul>
|
|
11723
12417
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
11724
12418
|
<li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
|
|
11725
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11726
12420
|
</ul>
|
|
11727
|
-
<h3 id="
|
|
12421
|
+
<h3 id="housekeeping-in-v230-beta1">Housekeeping in v2.3.0-beta.1<a class="headerlink" href="#housekeeping-in-v230-beta1" title="Permanent link">¶</a></h3>
|
|
11728
12422
|
<ul>
|
|
11729
12423
|
<li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
|
|
11730
12424
|
<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>
|
|
@@ -11780,7 +12474,7 @@
|
|
|
11780
12474
|
<nav class="md-footer__inner md-grid" aria-label="Footer" >
|
|
11781
12475
|
|
|
11782
12476
|
|
|
11783
|
-
<a href="
|
|
12477
|
+
<a href="version-2.4.html" class="md-footer__link md-footer__link--prev" aria-label="Previous: Version 2.4">
|
|
11784
12478
|
<div class="md-footer__button md-icon">
|
|
11785
12479
|
|
|
11786
12480
|
<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>
|
|
@@ -11790,7 +12484,7 @@
|
|
|
11790
12484
|
Previous
|
|
11791
12485
|
</span>
|
|
11792
12486
|
<div class="md-ellipsis">
|
|
11793
|
-
|
|
12487
|
+
Version 2.4
|
|
11794
12488
|
</div>
|
|
11795
12489
|
</div>
|
|
11796
12490
|
</a>
|
|
@@ -11892,10 +12586,10 @@
|
|
|
11892
12586
|
</div>
|
|
11893
12587
|
|
|
11894
12588
|
|
|
11895
|
-
<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>
|
|
12589
|
+
<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>
|
|
11896
12590
|
|
|
11897
12591
|
|
|
11898
|
-
<script src="../assets/javascripts/bundle.
|
|
12592
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
11899
12593
|
|
|
11900
12594
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11901
12595
|
|