nautobot 2.3.16__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 +140 -23
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/factory.py +4 -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/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 +45 -259
- nautobot/core/api/urls.py +3 -4
- nautobot/core/api/utils.py +0 -62
- nautobot/core/api/views.py +99 -157
- nautobot/core/apps/__init__.py +22 -578
- nautobot/core/celery/__init__.py +13 -0
- nautobot/core/celery/schedulers.py +47 -2
- 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/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +57 -9
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/forms/utils.py +2 -1
- nautobot/core/graphql/schema.py +3 -1
- nautobot/core/jobs/__init__.py +24 -3
- nautobot/core/jobs/bulk_actions.py +248 -0
- nautobot/core/jobs/cleanup.py +1 -1
- nautobot/core/management/commands/generate_test_data.py +21 -0
- nautobot/core/middleware.py +16 -0
- nautobot/core/models/fields.py +11 -7
- nautobot/core/settings.py +68 -4
- nautobot/core/settings.yaml +99 -0
- nautobot/core/tables.py +10 -46
- 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/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 +13 -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 +41 -35
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/views.py +65 -148
- nautobot/core/tests/integration/test_view_authentication.py +1 -1
- nautobot/core/tests/nautobot_config.py +198 -0
- nautobot/core/tests/runner.py +2 -2
- 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 +124 -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 +6 -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 +37 -140
- nautobot/core/views/mixins.py +82 -32
- 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 +34 -141
- 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 +219 -9
- 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/devices.py +180 -2
- nautobot/dcim/models/racks.py +2 -2
- nautobot/dcim/navigation.py +25 -224
- nautobot/dcim/signals.py +44 -0
- nautobot/dcim/tables/__init__.py +2 -0
- nautobot/dcim/tables/devices.py +103 -7
- 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 +171 -76
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +157 -6
- 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 +356 -61
- nautobot/extras/api/serializers.py +39 -18
- nautobot/extras/api/urls.py +4 -0
- nautobot/extras/api/views.py +89 -31
- 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 +2 -2
- nautobot/extras/graphql/types.py +25 -1
- nautobot/extras/jobs.py +109 -15
- 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/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/groups.py +0 -2
- nautobot/extras/models/jobs.py +233 -33
- 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 +103 -60
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/signals.py +39 -1
- nautobot/extras/tables.py +37 -1
- 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/singleton.py +16 -0
- nautobot/extras/tests/test_api.py +145 -43
- nautobot/extras/tests/test_context_managers.py +4 -1
- nautobot/extras/tests/test_filters.py +213 -529
- nautobot/extras/tests/test_job_variables.py +73 -152
- nautobot/extras/tests/test_jobs.py +181 -51
- nautobot/extras/tests/test_models.py +61 -6
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +123 -9
- nautobot/extras/tests/test_utils.py +23 -2
- nautobot/extras/tests/test_views.py +146 -145
- nautobot/extras/tests/test_webhooks.py +2 -1
- nautobot/extras/urls.py +2 -20
- nautobot/extras/utils.py +119 -4
- nautobot/extras/views.py +168 -125
- nautobot/extras/webhooks.py +5 -2
- nautobot/ipam/api/serializers.py +10 -103
- nautobot/ipam/api/views.py +31 -49
- 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/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 +7 -5
- nautobot/ipam/tests/test_filters.py +39 -119
- nautobot/ipam/tests/test_forms.py +0 -2
- nautobot/ipam/tests/test_models.py +56 -36
- 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 +461 -17
- nautobot/project-static/docs/apps/index.html +461 -17
- nautobot/project-static/docs/apps/nautobot-apps.html +462 -19
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/extra.css +5 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +477 -23
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +474 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +790 -289
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +505 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +510 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +471 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +467 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +497 -33
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +9883 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +523 -75
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +546 -51
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +670 -94
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1030 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +524 -49
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +874 -188
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +955 -235
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +475 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +486 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +661 -99
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +947 -479
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +6425 -1234
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +474 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +877 -344
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +828 -171
- nautobot/project-static/docs/development/apps/api/configuration-view.html +461 -17
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +461 -17
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +461 -17
- nautobot/project-static/docs/development/apps/api/models/global-search.html +461 -17
- nautobot/project-static/docs/development/apps/api/models/graphql.html +461 -17
- nautobot/project-static/docs/development/apps/api/models/index.html +461 -17
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +461 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +461 -17
- nautobot/project-static/docs/development/apps/api/prometheus.html +461 -17
- nautobot/project-static/docs/development/apps/api/setup.html +465 -153
- nautobot/project-static/docs/development/apps/api/testing.html +461 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +461 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +461 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +461 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +461 -17
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +741 -128
- nautobot/project-static/docs/development/apps/api/views/base-template.html +461 -17
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +461 -17
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +461 -17
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +461 -17
- nautobot/project-static/docs/development/apps/api/views/index.html +463 -18
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +465 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +491 -17
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +461 -17
- nautobot/project-static/docs/development/apps/api/views/notes.html +461 -17
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +467 -19
- nautobot/project-static/docs/development/apps/api/views/urls.html +461 -17
- nautobot/project-static/docs/development/apps/index.html +461 -17
- nautobot/project-static/docs/development/apps/migration/code-updates.html +462 -50
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +462 -18
- nautobot/project-static/docs/development/apps/migration/from-v1.html +461 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +461 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +461 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +461 -17
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +464 -20
- 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 +464 -20
- nautobot/project-static/docs/development/core/application-registry.html +461 -17
- nautobot/project-static/docs/development/core/best-practices.html +461 -17
- nautobot/project-static/docs/development/core/bootstrap-ui.html +461 -17
- nautobot/project-static/docs/development/core/caching.html +461 -17
- nautobot/project-static/docs/development/core/controllers.html +463 -17
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +464 -20
- nautobot/project-static/docs/development/core/generic-views.html +461 -17
- nautobot/project-static/docs/development/core/getting-started.html +539 -127
- nautobot/project-static/docs/development/core/homepage.html +472 -28
- nautobot/project-static/docs/development/core/index.html +461 -17
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9754 -0
- nautobot/project-static/docs/development/core/model-checklist.html +471 -25
- nautobot/project-static/docs/development/core/model-features.html +461 -17
- nautobot/project-static/docs/development/core/natural-keys.html +461 -17
- nautobot/project-static/docs/development/core/navigation-menu.html +478 -24
- nautobot/project-static/docs/development/core/release-checklist.html +478 -46
- nautobot/project-static/docs/development/core/role-internals.html +461 -17
- nautobot/project-static/docs/development/core/settings.html +461 -17
- nautobot/project-static/docs/development/core/style-guide.html +464 -20
- nautobot/project-static/docs/development/core/templates.html +471 -20
- nautobot/project-static/docs/development/core/testing.html +461 -17
- nautobot/project-static/docs/development/core/ui-component-framework.html +11116 -0
- nautobot/project-static/docs/development/core/user-preferences.html +464 -20
- nautobot/project-static/docs/development/index.html +461 -17
- nautobot/project-static/docs/development/jobs/index.html +499 -19
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +461 -17
- nautobot/project-static/docs/index.html +469 -36
- 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 +467 -21
- nautobot/project-static/docs/overview/design_philosophy.html +461 -17
- nautobot/project-static/docs/release-notes/index.html +483 -20
- nautobot/project-static/docs/release-notes/version-1.0.html +649 -206
- nautobot/project-static/docs/release-notes/version-1.1.html +646 -203
- nautobot/project-static/docs/release-notes/version-1.2.html +721 -278
- nautobot/project-static/docs/release-notes/version-1.3.html +747 -304
- nautobot/project-static/docs/release-notes/version-1.4.html +832 -390
- nautobot/project-static/docs/release-notes/version-1.5.html +1020 -579
- nautobot/project-static/docs/release-notes/version-1.6.html +940 -516
- nautobot/project-static/docs/release-notes/version-2.0.html +943 -502
- nautobot/project-static/docs/release-notes/version-2.1.html +778 -337
- nautobot/project-static/docs/release-notes/version-2.2.html +771 -330
- nautobot/project-static/docs/release-notes/version-2.3.html +914 -471
- nautobot/project-static/docs/release-notes/version-2.4.html +10323 -0
- 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 +461 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +461 -17
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +461 -17
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +473 -30
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +461 -17
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +842 -155
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +461 -17
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +461 -17
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +474 -27
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +461 -17
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +461 -17
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +461 -17
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +461 -17
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +461 -17
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +463 -19
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +461 -17
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +461 -17
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +461 -17
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +481 -21
- nautobot/project-static/docs/user-guide/administration/installation/index.html +466 -18
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +462 -18
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +461 -17
- nautobot/project-static/docs/user-guide/administration/installation/services.html +461 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +461 -17
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +482 -39
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +475 -64
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +475 -64
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +461 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +461 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +461 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +461 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +461 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +464 -21
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +461 -17
- 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 +461 -17
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +467 -19
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +497 -18
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +487 -20
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +461 -17
- 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 +468 -28
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +464 -20
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +461 -17
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +464 -20
- 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 +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +466 -20
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +461 -17
- 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 +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +461 -17
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +464 -20
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
- nautobot/project-static/docs/user-guide/index.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +464 -20
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +465 -21
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +9617 -0
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +464 -20
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +470 -21
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +464 -20
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +464 -20
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +461 -17
- 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 +464 -20
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +465 -21
- 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 +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +509 -38
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +492 -21
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +464 -20
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +529 -54
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +461 -17
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +461 -17
- 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 +2 -0
- nautobot/users/api/views.py +2 -2
- 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/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.16.dist-info → nautobot-2.4.0.dist-info}/METADATA +9 -12
- {nautobot-2.3.16.dist-info → nautobot-2.4.0.dist-info}/RECORD +720 -549
- nautobot/core/utils/navigation.py +0 -54
- {nautobot-2.3.16.dist-info → nautobot-2.4.0.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.3.16.dist-info → nautobot-2.4.0.dist-info}/NOTICE +0 -0
- {nautobot-2.3.16.dist-info → nautobot-2.4.0.dist-info}/WHEEL +0 -0
- {nautobot-2.3.16.dist-info → nautobot-2.4.0.dist-info}/entry_points.txt +0 -0
|
@@ -11,7 +11,7 @@
|
|
|
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">
|
|
@@ -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,6 +7634,123 @@
|
|
|
7370
7634
|
|
|
7371
7635
|
|
|
7372
7636
|
|
|
7637
|
+
|
|
7638
|
+
|
|
7639
|
+
|
|
7640
|
+
|
|
7641
|
+
|
|
7642
|
+
|
|
7643
|
+
|
|
7644
|
+
|
|
7645
|
+
|
|
7646
|
+
|
|
7647
|
+
|
|
7648
|
+
|
|
7649
|
+
|
|
7650
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7651
|
+
|
|
7652
|
+
|
|
7653
|
+
|
|
7654
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_5" >
|
|
7655
|
+
|
|
7656
|
+
|
|
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
|
+
|
|
7661
|
+
|
|
7662
|
+
<span class="md-ellipsis">
|
|
7663
|
+
UI Component Framework
|
|
7664
|
+
</span>
|
|
7665
|
+
|
|
7666
|
+
|
|
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
|
+
|
|
7373
7754
|
</ul>
|
|
7374
7755
|
</nav>
|
|
7375
7756
|
|
|
@@ -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
|
|
|
@@ -8267,18 +8711,18 @@
|
|
|
8267
8711
|
<ul class="md-nav__list">
|
|
8268
8712
|
|
|
8269
8713
|
<li class="md-nav__item">
|
|
8270
|
-
<a href="#fixed" class="md-nav__link">
|
|
8714
|
+
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
8271
8715
|
<span class="md-ellipsis">
|
|
8272
|
-
Fixed
|
|
8716
|
+
Fixed in v2.3.16
|
|
8273
8717
|
</span>
|
|
8274
8718
|
</a>
|
|
8275
8719
|
|
|
8276
8720
|
</li>
|
|
8277
8721
|
|
|
8278
8722
|
<li class="md-nav__item">
|
|
8279
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8723
|
+
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
8280
8724
|
<span class="md-ellipsis">
|
|
8281
|
-
Housekeeping
|
|
8725
|
+
Housekeeping in v2.3.16
|
|
8282
8726
|
</span>
|
|
8283
8727
|
</a>
|
|
8284
8728
|
|
|
@@ -8300,54 +8744,54 @@
|
|
|
8300
8744
|
<ul class="md-nav__list">
|
|
8301
8745
|
|
|
8302
8746
|
<li class="md-nav__item">
|
|
8303
|
-
<a href="#security" class="md-nav__link">
|
|
8747
|
+
<a href="#security-in-v2315" class="md-nav__link">
|
|
8304
8748
|
<span class="md-ellipsis">
|
|
8305
|
-
Security
|
|
8749
|
+
Security in v2.3.15
|
|
8306
8750
|
</span>
|
|
8307
8751
|
</a>
|
|
8308
8752
|
|
|
8309
8753
|
</li>
|
|
8310
8754
|
|
|
8311
8755
|
<li class="md-nav__item">
|
|
8312
|
-
<a href="#
|
|
8756
|
+
<a href="#added-in-v2315" class="md-nav__link">
|
|
8313
8757
|
<span class="md-ellipsis">
|
|
8314
|
-
Added
|
|
8758
|
+
Added in v2.3.15
|
|
8315
8759
|
</span>
|
|
8316
8760
|
</a>
|
|
8317
8761
|
|
|
8318
8762
|
</li>
|
|
8319
8763
|
|
|
8320
8764
|
<li class="md-nav__item">
|
|
8321
|
-
<a href="#
|
|
8765
|
+
<a href="#changed-in-v2315" class="md-nav__link">
|
|
8322
8766
|
<span class="md-ellipsis">
|
|
8323
|
-
Changed
|
|
8767
|
+
Changed in v2.3.15
|
|
8324
8768
|
</span>
|
|
8325
8769
|
</a>
|
|
8326
8770
|
|
|
8327
8771
|
</li>
|
|
8328
8772
|
|
|
8329
8773
|
<li class="md-nav__item">
|
|
8330
|
-
<a href="#
|
|
8774
|
+
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
8331
8775
|
<span class="md-ellipsis">
|
|
8332
|
-
Fixed
|
|
8776
|
+
Fixed in v2.3.15
|
|
8333
8777
|
</span>
|
|
8334
8778
|
</a>
|
|
8335
8779
|
|
|
8336
8780
|
</li>
|
|
8337
8781
|
|
|
8338
8782
|
<li class="md-nav__item">
|
|
8339
|
-
<a href="#
|
|
8783
|
+
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
8340
8784
|
<span class="md-ellipsis">
|
|
8341
|
-
Dependencies
|
|
8785
|
+
Dependencies in v2.3.15
|
|
8342
8786
|
</span>
|
|
8343
8787
|
</a>
|
|
8344
8788
|
|
|
8345
8789
|
</li>
|
|
8346
8790
|
|
|
8347
8791
|
<li class="md-nav__item">
|
|
8348
|
-
<a href="#
|
|
8792
|
+
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
8349
8793
|
<span class="md-ellipsis">
|
|
8350
|
-
Housekeeping
|
|
8794
|
+
Housekeeping in v2.3.15
|
|
8351
8795
|
</span>
|
|
8352
8796
|
</a>
|
|
8353
8797
|
|
|
@@ -8369,45 +8813,45 @@
|
|
|
8369
8813
|
<ul class="md-nav__list">
|
|
8370
8814
|
|
|
8371
8815
|
<li class="md-nav__item">
|
|
8372
|
-
<a href="#
|
|
8816
|
+
<a href="#added-in-v2314" class="md-nav__link">
|
|
8373
8817
|
<span class="md-ellipsis">
|
|
8374
|
-
Added
|
|
8818
|
+
Added in v2.3.14
|
|
8375
8819
|
</span>
|
|
8376
8820
|
</a>
|
|
8377
8821
|
|
|
8378
8822
|
</li>
|
|
8379
8823
|
|
|
8380
8824
|
<li class="md-nav__item">
|
|
8381
|
-
<a href="#
|
|
8825
|
+
<a href="#changed-in-v2314" class="md-nav__link">
|
|
8382
8826
|
<span class="md-ellipsis">
|
|
8383
|
-
Changed
|
|
8827
|
+
Changed in v2.3.14
|
|
8384
8828
|
</span>
|
|
8385
8829
|
</a>
|
|
8386
8830
|
|
|
8387
8831
|
</li>
|
|
8388
8832
|
|
|
8389
8833
|
<li class="md-nav__item">
|
|
8390
|
-
<a href="#
|
|
8834
|
+
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
8391
8835
|
<span class="md-ellipsis">
|
|
8392
|
-
Fixed
|
|
8836
|
+
Fixed in v2.3.14
|
|
8393
8837
|
</span>
|
|
8394
8838
|
</a>
|
|
8395
8839
|
|
|
8396
8840
|
</li>
|
|
8397
8841
|
|
|
8398
8842
|
<li class="md-nav__item">
|
|
8399
|
-
<a href="#documentation" class="md-nav__link">
|
|
8843
|
+
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
8400
8844
|
<span class="md-ellipsis">
|
|
8401
|
-
Documentation
|
|
8845
|
+
Documentation in v2.3.14
|
|
8402
8846
|
</span>
|
|
8403
8847
|
</a>
|
|
8404
8848
|
|
|
8405
8849
|
</li>
|
|
8406
8850
|
|
|
8407
8851
|
<li class="md-nav__item">
|
|
8408
|
-
<a href="#
|
|
8852
|
+
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
8409
8853
|
<span class="md-ellipsis">
|
|
8410
|
-
Housekeeping
|
|
8854
|
+
Housekeeping in v2.3.14
|
|
8411
8855
|
</span>
|
|
8412
8856
|
</a>
|
|
8413
8857
|
|
|
@@ -8429,63 +8873,63 @@
|
|
|
8429
8873
|
<ul class="md-nav__list">
|
|
8430
8874
|
|
|
8431
8875
|
<li class="md-nav__item">
|
|
8432
|
-
<a href="#
|
|
8876
|
+
<a href="#security-in-v2313" class="md-nav__link">
|
|
8433
8877
|
<span class="md-ellipsis">
|
|
8434
|
-
Security
|
|
8878
|
+
Security in v2.3.13
|
|
8435
8879
|
</span>
|
|
8436
8880
|
</a>
|
|
8437
8881
|
|
|
8438
8882
|
</li>
|
|
8439
8883
|
|
|
8440
8884
|
<li class="md-nav__item">
|
|
8441
|
-
<a href="#
|
|
8885
|
+
<a href="#added-in-v2313" class="md-nav__link">
|
|
8442
8886
|
<span class="md-ellipsis">
|
|
8443
|
-
Added
|
|
8887
|
+
Added in v2.3.13
|
|
8444
8888
|
</span>
|
|
8445
8889
|
</a>
|
|
8446
8890
|
|
|
8447
8891
|
</li>
|
|
8448
8892
|
|
|
8449
8893
|
<li class="md-nav__item">
|
|
8450
|
-
<a href="#
|
|
8894
|
+
<a href="#changed-in-v2313" class="md-nav__link">
|
|
8451
8895
|
<span class="md-ellipsis">
|
|
8452
|
-
Changed
|
|
8896
|
+
Changed in v2.3.13
|
|
8453
8897
|
</span>
|
|
8454
8898
|
</a>
|
|
8455
8899
|
|
|
8456
8900
|
</li>
|
|
8457
8901
|
|
|
8458
8902
|
<li class="md-nav__item">
|
|
8459
|
-
<a href="#
|
|
8903
|
+
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
8460
8904
|
<span class="md-ellipsis">
|
|
8461
|
-
Fixed
|
|
8905
|
+
Fixed in v2.3.13
|
|
8462
8906
|
</span>
|
|
8463
8907
|
</a>
|
|
8464
8908
|
|
|
8465
8909
|
</li>
|
|
8466
8910
|
|
|
8467
8911
|
<li class="md-nav__item">
|
|
8468
|
-
<a href="#
|
|
8912
|
+
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
8469
8913
|
<span class="md-ellipsis">
|
|
8470
|
-
Dependencies
|
|
8914
|
+
Dependencies in v2.3.13
|
|
8471
8915
|
</span>
|
|
8472
8916
|
</a>
|
|
8473
8917
|
|
|
8474
8918
|
</li>
|
|
8475
8919
|
|
|
8476
8920
|
<li class="md-nav__item">
|
|
8477
|
-
<a href="#
|
|
8921
|
+
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
8478
8922
|
<span class="md-ellipsis">
|
|
8479
|
-
Documentation
|
|
8923
|
+
Documentation in v2.3.13
|
|
8480
8924
|
</span>
|
|
8481
8925
|
</a>
|
|
8482
8926
|
|
|
8483
8927
|
</li>
|
|
8484
8928
|
|
|
8485
8929
|
<li class="md-nav__item">
|
|
8486
|
-
<a href="#
|
|
8930
|
+
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
8487
8931
|
<span class="md-ellipsis">
|
|
8488
|
-
Housekeeping
|
|
8932
|
+
Housekeeping in v2.3.13
|
|
8489
8933
|
</span>
|
|
8490
8934
|
</a>
|
|
8491
8935
|
|
|
@@ -8507,45 +8951,45 @@
|
|
|
8507
8951
|
<ul class="md-nav__list">
|
|
8508
8952
|
|
|
8509
8953
|
<li class="md-nav__item">
|
|
8510
|
-
<a href="#
|
|
8954
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
8511
8955
|
<span class="md-ellipsis">
|
|
8512
|
-
Added
|
|
8956
|
+
Added in v2.3.12
|
|
8513
8957
|
</span>
|
|
8514
8958
|
</a>
|
|
8515
8959
|
|
|
8516
8960
|
</li>
|
|
8517
8961
|
|
|
8518
8962
|
<li class="md-nav__item">
|
|
8519
|
-
<a href="#
|
|
8963
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
8520
8964
|
<span class="md-ellipsis">
|
|
8521
|
-
Fixed
|
|
8965
|
+
Fixed in v2.3.12
|
|
8522
8966
|
</span>
|
|
8523
8967
|
</a>
|
|
8524
8968
|
|
|
8525
8969
|
</li>
|
|
8526
8970
|
|
|
8527
8971
|
<li class="md-nav__item">
|
|
8528
|
-
<a href="#
|
|
8972
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
8529
8973
|
<span class="md-ellipsis">
|
|
8530
|
-
Dependencies
|
|
8974
|
+
Dependencies in v2.3.12
|
|
8531
8975
|
</span>
|
|
8532
8976
|
</a>
|
|
8533
8977
|
|
|
8534
8978
|
</li>
|
|
8535
8979
|
|
|
8536
8980
|
<li class="md-nav__item">
|
|
8537
|
-
<a href="#
|
|
8981
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
8538
8982
|
<span class="md-ellipsis">
|
|
8539
|
-
Documentation
|
|
8983
|
+
Documentation in v2.3.12
|
|
8540
8984
|
</span>
|
|
8541
8985
|
</a>
|
|
8542
8986
|
|
|
8543
8987
|
</li>
|
|
8544
8988
|
|
|
8545
8989
|
<li class="md-nav__item">
|
|
8546
|
-
<a href="#
|
|
8990
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
8547
8991
|
<span class="md-ellipsis">
|
|
8548
|
-
Housekeeping
|
|
8992
|
+
Housekeeping in v2.3.12
|
|
8549
8993
|
</span>
|
|
8550
8994
|
</a>
|
|
8551
8995
|
|
|
@@ -8567,45 +9011,45 @@
|
|
|
8567
9011
|
<ul class="md-nav__list">
|
|
8568
9012
|
|
|
8569
9013
|
<li class="md-nav__item">
|
|
8570
|
-
<a href="#
|
|
9014
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
8571
9015
|
<span class="md-ellipsis">
|
|
8572
|
-
Added
|
|
9016
|
+
Added in v2.3.11
|
|
8573
9017
|
</span>
|
|
8574
9018
|
</a>
|
|
8575
9019
|
|
|
8576
9020
|
</li>
|
|
8577
9021
|
|
|
8578
9022
|
<li class="md-nav__item">
|
|
8579
|
-
<a href="#
|
|
9023
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
8580
9024
|
<span class="md-ellipsis">
|
|
8581
|
-
Changed
|
|
9025
|
+
Changed in v2.3.11
|
|
8582
9026
|
</span>
|
|
8583
9027
|
</a>
|
|
8584
9028
|
|
|
8585
9029
|
</li>
|
|
8586
9030
|
|
|
8587
9031
|
<li class="md-nav__item">
|
|
8588
|
-
<a href="#
|
|
9032
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
8589
9033
|
<span class="md-ellipsis">
|
|
8590
|
-
Fixed
|
|
9034
|
+
Fixed in v2.3.11
|
|
8591
9035
|
</span>
|
|
8592
9036
|
</a>
|
|
8593
9037
|
|
|
8594
9038
|
</li>
|
|
8595
9039
|
|
|
8596
9040
|
<li class="md-nav__item">
|
|
8597
|
-
<a href="#
|
|
9041
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
8598
9042
|
<span class="md-ellipsis">
|
|
8599
|
-
Documentation
|
|
9043
|
+
Documentation in v2.3.11
|
|
8600
9044
|
</span>
|
|
8601
9045
|
</a>
|
|
8602
9046
|
|
|
8603
9047
|
</li>
|
|
8604
9048
|
|
|
8605
9049
|
<li class="md-nav__item">
|
|
8606
|
-
<a href="#
|
|
9050
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
8607
9051
|
<span class="md-ellipsis">
|
|
8608
|
-
Housekeeping
|
|
9052
|
+
Housekeeping in v2.3.11
|
|
8609
9053
|
</span>
|
|
8610
9054
|
</a>
|
|
8611
9055
|
|
|
@@ -8627,45 +9071,45 @@
|
|
|
8627
9071
|
<ul class="md-nav__list">
|
|
8628
9072
|
|
|
8629
9073
|
<li class="md-nav__item">
|
|
8630
|
-
<a href="#
|
|
9074
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
8631
9075
|
<span class="md-ellipsis">
|
|
8632
|
-
Added
|
|
9076
|
+
Added in v2.3.10
|
|
8633
9077
|
</span>
|
|
8634
9078
|
</a>
|
|
8635
9079
|
|
|
8636
9080
|
</li>
|
|
8637
9081
|
|
|
8638
9082
|
<li class="md-nav__item">
|
|
8639
|
-
<a href="#
|
|
9083
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
8640
9084
|
<span class="md-ellipsis">
|
|
8641
|
-
Changed
|
|
9085
|
+
Changed in v2.3.10
|
|
8642
9086
|
</span>
|
|
8643
9087
|
</a>
|
|
8644
9088
|
|
|
8645
9089
|
</li>
|
|
8646
9090
|
|
|
8647
9091
|
<li class="md-nav__item">
|
|
8648
|
-
<a href="#
|
|
9092
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
8649
9093
|
<span class="md-ellipsis">
|
|
8650
|
-
Fixed
|
|
9094
|
+
Fixed in v2.3.10
|
|
8651
9095
|
</span>
|
|
8652
9096
|
</a>
|
|
8653
9097
|
|
|
8654
9098
|
</li>
|
|
8655
9099
|
|
|
8656
9100
|
<li class="md-nav__item">
|
|
8657
|
-
<a href="#
|
|
9101
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
8658
9102
|
<span class="md-ellipsis">
|
|
8659
|
-
Dependencies
|
|
9103
|
+
Dependencies in v2.3.10
|
|
8660
9104
|
</span>
|
|
8661
9105
|
</a>
|
|
8662
9106
|
|
|
8663
9107
|
</li>
|
|
8664
9108
|
|
|
8665
9109
|
<li class="md-nav__item">
|
|
8666
|
-
<a href="#
|
|
9110
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
8667
9111
|
<span class="md-ellipsis">
|
|
8668
|
-
Housekeeping
|
|
9112
|
+
Housekeeping in v2.3.10
|
|
8669
9113
|
</span>
|
|
8670
9114
|
</a>
|
|
8671
9115
|
|
|
@@ -8687,45 +9131,45 @@
|
|
|
8687
9131
|
<ul class="md-nav__list">
|
|
8688
9132
|
|
|
8689
9133
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#
|
|
9134
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
8691
9135
|
<span class="md-ellipsis">
|
|
8692
|
-
Added
|
|
9136
|
+
Added in v2.3.9
|
|
8693
9137
|
</span>
|
|
8694
9138
|
</a>
|
|
8695
9139
|
|
|
8696
9140
|
</li>
|
|
8697
9141
|
|
|
8698
9142
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#
|
|
9143
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
8700
9144
|
<span class="md-ellipsis">
|
|
8701
|
-
Changed
|
|
9145
|
+
Changed in v2.3.9
|
|
8702
9146
|
</span>
|
|
8703
9147
|
</a>
|
|
8704
9148
|
|
|
8705
9149
|
</li>
|
|
8706
9150
|
|
|
8707
9151
|
<li class="md-nav__item">
|
|
8708
|
-
<a href="#
|
|
9152
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
8709
9153
|
<span class="md-ellipsis">
|
|
8710
|
-
Fixed
|
|
9154
|
+
Fixed in v2.3.9
|
|
8711
9155
|
</span>
|
|
8712
9156
|
</a>
|
|
8713
9157
|
|
|
8714
9158
|
</li>
|
|
8715
9159
|
|
|
8716
9160
|
<li class="md-nav__item">
|
|
8717
|
-
<a href="#
|
|
9161
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
8718
9162
|
<span class="md-ellipsis">
|
|
8719
|
-
Dependencies
|
|
9163
|
+
Dependencies in v2.3.9
|
|
8720
9164
|
</span>
|
|
8721
9165
|
</a>
|
|
8722
9166
|
|
|
8723
9167
|
</li>
|
|
8724
9168
|
|
|
8725
9169
|
<li class="md-nav__item">
|
|
8726
|
-
<a href="#
|
|
9170
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
8727
9171
|
<span class="md-ellipsis">
|
|
8728
|
-
Housekeeping
|
|
9172
|
+
Housekeeping in v2.3.9
|
|
8729
9173
|
</span>
|
|
8730
9174
|
</a>
|
|
8731
9175
|
|
|
@@ -8747,9 +9191,9 @@
|
|
|
8747
9191
|
<ul class="md-nav__list">
|
|
8748
9192
|
|
|
8749
9193
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#
|
|
9194
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
8751
9195
|
<span class="md-ellipsis">
|
|
8752
|
-
Fixed
|
|
9196
|
+
Fixed in v2.3.8
|
|
8753
9197
|
</span>
|
|
8754
9198
|
</a>
|
|
8755
9199
|
|
|
@@ -8771,45 +9215,45 @@
|
|
|
8771
9215
|
<ul class="md-nav__list">
|
|
8772
9216
|
|
|
8773
9217
|
<li class="md-nav__item">
|
|
8774
|
-
<a href="#
|
|
9218
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
8775
9219
|
<span class="md-ellipsis">
|
|
8776
|
-
Added
|
|
9220
|
+
Added in v2.3.7
|
|
8777
9221
|
</span>
|
|
8778
9222
|
</a>
|
|
8779
9223
|
|
|
8780
9224
|
</li>
|
|
8781
9225
|
|
|
8782
9226
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
9227
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
8784
9228
|
<span class="md-ellipsis">
|
|
8785
|
-
Changed
|
|
9229
|
+
Changed in v2.3.7
|
|
8786
9230
|
</span>
|
|
8787
9231
|
</a>
|
|
8788
9232
|
|
|
8789
9233
|
</li>
|
|
8790
9234
|
|
|
8791
9235
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
9236
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
8793
9237
|
<span class="md-ellipsis">
|
|
8794
|
-
Fixed
|
|
9238
|
+
Fixed in v2.3.7
|
|
8795
9239
|
</span>
|
|
8796
9240
|
</a>
|
|
8797
9241
|
|
|
8798
9242
|
</li>
|
|
8799
9243
|
|
|
8800
9244
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
9245
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
8802
9246
|
<span class="md-ellipsis">
|
|
8803
|
-
Dependencies
|
|
9247
|
+
Dependencies in v2.3.7
|
|
8804
9248
|
</span>
|
|
8805
9249
|
</a>
|
|
8806
9250
|
|
|
8807
9251
|
</li>
|
|
8808
9252
|
|
|
8809
9253
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
9254
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
8811
9255
|
<span class="md-ellipsis">
|
|
8812
|
-
Housekeeping
|
|
9256
|
+
Housekeeping in v2.3.7
|
|
8813
9257
|
</span>
|
|
8814
9258
|
</a>
|
|
8815
9259
|
|
|
@@ -8831,36 +9275,36 @@
|
|
|
8831
9275
|
<ul class="md-nav__list">
|
|
8832
9276
|
|
|
8833
9277
|
<li class="md-nav__item">
|
|
8834
|
-
<a href="#
|
|
9278
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
8835
9279
|
<span class="md-ellipsis">
|
|
8836
|
-
Added
|
|
9280
|
+
Added in v2.3.6
|
|
8837
9281
|
</span>
|
|
8838
9282
|
</a>
|
|
8839
9283
|
|
|
8840
9284
|
</li>
|
|
8841
9285
|
|
|
8842
9286
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#
|
|
9287
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
8844
9288
|
<span class="md-ellipsis">
|
|
8845
|
-
Fixed
|
|
9289
|
+
Fixed in v2.3.6
|
|
8846
9290
|
</span>
|
|
8847
9291
|
</a>
|
|
8848
9292
|
|
|
8849
9293
|
</li>
|
|
8850
9294
|
|
|
8851
9295
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
9296
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
8853
9297
|
<span class="md-ellipsis">
|
|
8854
|
-
Documentation
|
|
9298
|
+
Documentation in v2.3.6
|
|
8855
9299
|
</span>
|
|
8856
9300
|
</a>
|
|
8857
9301
|
|
|
8858
9302
|
</li>
|
|
8859
9303
|
|
|
8860
9304
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#
|
|
9305
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
8862
9306
|
<span class="md-ellipsis">
|
|
8863
|
-
Housekeeping
|
|
9307
|
+
Housekeeping in v2.3.6
|
|
8864
9308
|
</span>
|
|
8865
9309
|
</a>
|
|
8866
9310
|
|
|
@@ -8882,54 +9326,54 @@
|
|
|
8882
9326
|
<ul class="md-nav__list">
|
|
8883
9327
|
|
|
8884
9328
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
9329
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
8886
9330
|
<span class="md-ellipsis">
|
|
8887
|
-
Added
|
|
9331
|
+
Added in v2.3.5
|
|
8888
9332
|
</span>
|
|
8889
9333
|
</a>
|
|
8890
9334
|
|
|
8891
9335
|
</li>
|
|
8892
9336
|
|
|
8893
9337
|
<li class="md-nav__item">
|
|
8894
|
-
<a href="#
|
|
9338
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
8895
9339
|
<span class="md-ellipsis">
|
|
8896
|
-
Changed
|
|
9340
|
+
Changed in v2.3.5
|
|
8897
9341
|
</span>
|
|
8898
9342
|
</a>
|
|
8899
9343
|
|
|
8900
9344
|
</li>
|
|
8901
9345
|
|
|
8902
9346
|
<li class="md-nav__item">
|
|
8903
|
-
<a href="#
|
|
9347
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
8904
9348
|
<span class="md-ellipsis">
|
|
8905
|
-
Fixed
|
|
9349
|
+
Fixed in v2.3.5
|
|
8906
9350
|
</span>
|
|
8907
9351
|
</a>
|
|
8908
9352
|
|
|
8909
9353
|
</li>
|
|
8910
9354
|
|
|
8911
9355
|
<li class="md-nav__item">
|
|
8912
|
-
<a href="#
|
|
9356
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
8913
9357
|
<span class="md-ellipsis">
|
|
8914
|
-
Dependencies
|
|
9358
|
+
Dependencies in v2.3.5
|
|
8915
9359
|
</span>
|
|
8916
9360
|
</a>
|
|
8917
9361
|
|
|
8918
9362
|
</li>
|
|
8919
9363
|
|
|
8920
9364
|
<li class="md-nav__item">
|
|
8921
|
-
<a href="#
|
|
9365
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
8922
9366
|
<span class="md-ellipsis">
|
|
8923
|
-
Documentation
|
|
9367
|
+
Documentation in v2.3.5
|
|
8924
9368
|
</span>
|
|
8925
9369
|
</a>
|
|
8926
9370
|
|
|
8927
9371
|
</li>
|
|
8928
9372
|
|
|
8929
9373
|
<li class="md-nav__item">
|
|
8930
|
-
<a href="#
|
|
9374
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
8931
9375
|
<span class="md-ellipsis">
|
|
8932
|
-
Housekeeping
|
|
9376
|
+
Housekeeping in v2.3.5
|
|
8933
9377
|
</span>
|
|
8934
9378
|
</a>
|
|
8935
9379
|
|
|
@@ -8951,45 +9395,45 @@
|
|
|
8951
9395
|
<ul class="md-nav__list">
|
|
8952
9396
|
|
|
8953
9397
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9398
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
8955
9399
|
<span class="md-ellipsis">
|
|
8956
|
-
Added
|
|
9400
|
+
Added in v2.3.4
|
|
8957
9401
|
</span>
|
|
8958
9402
|
</a>
|
|
8959
9403
|
|
|
8960
9404
|
</li>
|
|
8961
9405
|
|
|
8962
9406
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9407
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
8964
9408
|
<span class="md-ellipsis">
|
|
8965
|
-
Changed
|
|
9409
|
+
Changed in v2.3.4
|
|
8966
9410
|
</span>
|
|
8967
9411
|
</a>
|
|
8968
9412
|
|
|
8969
9413
|
</li>
|
|
8970
9414
|
|
|
8971
9415
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
9416
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
8973
9417
|
<span class="md-ellipsis">
|
|
8974
|
-
Fixed
|
|
9418
|
+
Fixed in v2.3.4
|
|
8975
9419
|
</span>
|
|
8976
9420
|
</a>
|
|
8977
9421
|
|
|
8978
9422
|
</li>
|
|
8979
9423
|
|
|
8980
9424
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#
|
|
9425
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
8982
9426
|
<span class="md-ellipsis">
|
|
8983
|
-
Documentation
|
|
9427
|
+
Documentation in v2.3.4
|
|
8984
9428
|
</span>
|
|
8985
9429
|
</a>
|
|
8986
9430
|
|
|
8987
9431
|
</li>
|
|
8988
9432
|
|
|
8989
9433
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
9434
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
8991
9435
|
<span class="md-ellipsis">
|
|
8992
|
-
Housekeeping
|
|
9436
|
+
Housekeeping in v2.3.4
|
|
8993
9437
|
</span>
|
|
8994
9438
|
</a>
|
|
8995
9439
|
|
|
@@ -9011,36 +9455,36 @@
|
|
|
9011
9455
|
<ul class="md-nav__list">
|
|
9012
9456
|
|
|
9013
9457
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9458
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
9015
9459
|
<span class="md-ellipsis">
|
|
9016
|
-
Security
|
|
9460
|
+
Security in v2.3.3
|
|
9017
9461
|
</span>
|
|
9018
9462
|
</a>
|
|
9019
9463
|
|
|
9020
9464
|
</li>
|
|
9021
9465
|
|
|
9022
9466
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
9467
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
9024
9468
|
<span class="md-ellipsis">
|
|
9025
|
-
Fixed
|
|
9469
|
+
Fixed in v2.3.3
|
|
9026
9470
|
</span>
|
|
9027
9471
|
</a>
|
|
9028
9472
|
|
|
9029
9473
|
</li>
|
|
9030
9474
|
|
|
9031
9475
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
9476
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
9033
9477
|
<span class="md-ellipsis">
|
|
9034
|
-
Dependencies
|
|
9478
|
+
Dependencies in v2.3.3
|
|
9035
9479
|
</span>
|
|
9036
9480
|
</a>
|
|
9037
9481
|
|
|
9038
9482
|
</li>
|
|
9039
9483
|
|
|
9040
9484
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
9485
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
9042
9486
|
<span class="md-ellipsis">
|
|
9043
|
-
Housekeeping
|
|
9487
|
+
Housekeeping in v2.3.3
|
|
9044
9488
|
</span>
|
|
9045
9489
|
</a>
|
|
9046
9490
|
|
|
@@ -9062,36 +9506,36 @@
|
|
|
9062
9506
|
<ul class="md-nav__list">
|
|
9063
9507
|
|
|
9064
9508
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9509
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
9066
9510
|
<span class="md-ellipsis">
|
|
9067
|
-
Security
|
|
9511
|
+
Security in v2.3.2
|
|
9068
9512
|
</span>
|
|
9069
9513
|
</a>
|
|
9070
9514
|
|
|
9071
9515
|
</li>
|
|
9072
9516
|
|
|
9073
9517
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9518
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
9075
9519
|
<span class="md-ellipsis">
|
|
9076
|
-
Added
|
|
9520
|
+
Added in v2.3.2
|
|
9077
9521
|
</span>
|
|
9078
9522
|
</a>
|
|
9079
9523
|
|
|
9080
9524
|
</li>
|
|
9081
9525
|
|
|
9082
9526
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9527
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
9084
9528
|
<span class="md-ellipsis">
|
|
9085
|
-
Fixed
|
|
9529
|
+
Fixed in v2.3.2
|
|
9086
9530
|
</span>
|
|
9087
9531
|
</a>
|
|
9088
9532
|
|
|
9089
9533
|
</li>
|
|
9090
9534
|
|
|
9091
9535
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9536
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
9093
9537
|
<span class="md-ellipsis">
|
|
9094
|
-
Housekeeping
|
|
9538
|
+
Housekeeping in v2.3.2
|
|
9095
9539
|
</span>
|
|
9096
9540
|
</a>
|
|
9097
9541
|
|
|
@@ -9113,36 +9557,36 @@
|
|
|
9113
9557
|
<ul class="md-nav__list">
|
|
9114
9558
|
|
|
9115
9559
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9560
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
9117
9561
|
<span class="md-ellipsis">
|
|
9118
|
-
Added
|
|
9562
|
+
Added in v2.3.1
|
|
9119
9563
|
</span>
|
|
9120
9564
|
</a>
|
|
9121
9565
|
|
|
9122
9566
|
</li>
|
|
9123
9567
|
|
|
9124
9568
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9569
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
9126
9570
|
<span class="md-ellipsis">
|
|
9127
|
-
Changed
|
|
9571
|
+
Changed in v2.3.1
|
|
9128
9572
|
</span>
|
|
9129
9573
|
</a>
|
|
9130
9574
|
|
|
9131
9575
|
</li>
|
|
9132
9576
|
|
|
9133
9577
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9578
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
9135
9579
|
<span class="md-ellipsis">
|
|
9136
|
-
Fixed
|
|
9580
|
+
Fixed in v2.3.1
|
|
9137
9581
|
</span>
|
|
9138
9582
|
</a>
|
|
9139
9583
|
|
|
9140
9584
|
</li>
|
|
9141
9585
|
|
|
9142
9586
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9587
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
9144
9588
|
<span class="md-ellipsis">
|
|
9145
|
-
Housekeeping
|
|
9589
|
+
Housekeeping in v2.3.1
|
|
9146
9590
|
</span>
|
|
9147
9591
|
</a>
|
|
9148
9592
|
|
|
@@ -9164,63 +9608,63 @@
|
|
|
9164
9608
|
<ul class="md-nav__list">
|
|
9165
9609
|
|
|
9166
9610
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
9611
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
9168
9612
|
<span class="md-ellipsis">
|
|
9169
|
-
Security
|
|
9613
|
+
Security in v2.3.0
|
|
9170
9614
|
</span>
|
|
9171
9615
|
</a>
|
|
9172
9616
|
|
|
9173
9617
|
</li>
|
|
9174
9618
|
|
|
9175
9619
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#
|
|
9620
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
9177
9621
|
<span class="md-ellipsis">
|
|
9178
|
-
Added
|
|
9622
|
+
Added in v2.3.0
|
|
9179
9623
|
</span>
|
|
9180
9624
|
</a>
|
|
9181
9625
|
|
|
9182
9626
|
</li>
|
|
9183
9627
|
|
|
9184
9628
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9629
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
9186
9630
|
<span class="md-ellipsis">
|
|
9187
|
-
Changed
|
|
9631
|
+
Changed in v2.3.0
|
|
9188
9632
|
</span>
|
|
9189
9633
|
</a>
|
|
9190
9634
|
|
|
9191
9635
|
</li>
|
|
9192
9636
|
|
|
9193
9637
|
<li class="md-nav__item">
|
|
9194
|
-
<a href="#removed" class="md-nav__link">
|
|
9638
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
9195
9639
|
<span class="md-ellipsis">
|
|
9196
|
-
Removed
|
|
9640
|
+
Removed in v2.3.0
|
|
9197
9641
|
</span>
|
|
9198
9642
|
</a>
|
|
9199
9643
|
|
|
9200
9644
|
</li>
|
|
9201
9645
|
|
|
9202
9646
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9647
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
9204
9648
|
<span class="md-ellipsis">
|
|
9205
|
-
Fixed
|
|
9649
|
+
Fixed in v2.3.0
|
|
9206
9650
|
</span>
|
|
9207
9651
|
</a>
|
|
9208
9652
|
|
|
9209
9653
|
</li>
|
|
9210
9654
|
|
|
9211
9655
|
<li class="md-nav__item">
|
|
9212
|
-
<a href="#
|
|
9656
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
9213
9657
|
<span class="md-ellipsis">
|
|
9214
|
-
Documentation
|
|
9658
|
+
Documentation in v2.3.0
|
|
9215
9659
|
</span>
|
|
9216
9660
|
</a>
|
|
9217
9661
|
|
|
9218
9662
|
</li>
|
|
9219
9663
|
|
|
9220
9664
|
<li class="md-nav__item">
|
|
9221
|
-
<a href="#
|
|
9665
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
9222
9666
|
<span class="md-ellipsis">
|
|
9223
|
-
Housekeeping
|
|
9667
|
+
Housekeeping in v2.3.0
|
|
9224
9668
|
</span>
|
|
9225
9669
|
</a>
|
|
9226
9670
|
|
|
@@ -9242,81 +9686,81 @@
|
|
|
9242
9686
|
<ul class="md-nav__list">
|
|
9243
9687
|
|
|
9244
9688
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9689
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
9246
9690
|
<span class="md-ellipsis">
|
|
9247
|
-
Security
|
|
9691
|
+
Security in v2.3.0-beta.1
|
|
9248
9692
|
</span>
|
|
9249
9693
|
</a>
|
|
9250
9694
|
|
|
9251
9695
|
</li>
|
|
9252
9696
|
|
|
9253
9697
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
9698
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
9255
9699
|
<span class="md-ellipsis">
|
|
9256
|
-
Added
|
|
9700
|
+
Added in v2.3.0-beta.1
|
|
9257
9701
|
</span>
|
|
9258
9702
|
</a>
|
|
9259
9703
|
|
|
9260
9704
|
</li>
|
|
9261
9705
|
|
|
9262
9706
|
<li class="md-nav__item">
|
|
9263
|
-
<a href="#
|
|
9707
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
9264
9708
|
<span class="md-ellipsis">
|
|
9265
|
-
Changed
|
|
9709
|
+
Changed in v2.3.0-beta.1
|
|
9266
9710
|
</span>
|
|
9267
9711
|
</a>
|
|
9268
9712
|
|
|
9269
9713
|
</li>
|
|
9270
9714
|
|
|
9271
9715
|
<li class="md-nav__item">
|
|
9272
|
-
<a href="#deprecated" class="md-nav__link">
|
|
9716
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
9273
9717
|
<span class="md-ellipsis">
|
|
9274
|
-
Deprecated
|
|
9718
|
+
Deprecated in v2.3.0-beta.1
|
|
9275
9719
|
</span>
|
|
9276
9720
|
</a>
|
|
9277
9721
|
|
|
9278
9722
|
</li>
|
|
9279
9723
|
|
|
9280
9724
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9725
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
9282
9726
|
<span class="md-ellipsis">
|
|
9283
|
-
Removed
|
|
9727
|
+
Removed in v2.3.0-beta.1
|
|
9284
9728
|
</span>
|
|
9285
9729
|
</a>
|
|
9286
9730
|
|
|
9287
9731
|
</li>
|
|
9288
9732
|
|
|
9289
9733
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9734
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
9291
9735
|
<span class="md-ellipsis">
|
|
9292
|
-
Fixed
|
|
9736
|
+
Fixed in v2.3.0-beta.1
|
|
9293
9737
|
</span>
|
|
9294
9738
|
</a>
|
|
9295
9739
|
|
|
9296
9740
|
</li>
|
|
9297
9741
|
|
|
9298
9742
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9743
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
9300
9744
|
<span class="md-ellipsis">
|
|
9301
|
-
Dependencies
|
|
9745
|
+
Dependencies in v2.3.0-beta.1
|
|
9302
9746
|
</span>
|
|
9303
9747
|
</a>
|
|
9304
9748
|
|
|
9305
9749
|
</li>
|
|
9306
9750
|
|
|
9307
9751
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9752
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
9309
9753
|
<span class="md-ellipsis">
|
|
9310
|
-
Documentation
|
|
9754
|
+
Documentation in v2.3.0-beta.1
|
|
9311
9755
|
</span>
|
|
9312
9756
|
</a>
|
|
9313
9757
|
|
|
9314
9758
|
</li>
|
|
9315
9759
|
|
|
9316
9760
|
<li class="md-nav__item">
|
|
9317
|
-
<a href="#
|
|
9761
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
9318
9762
|
<span class="md-ellipsis">
|
|
9319
|
-
Housekeeping
|
|
9763
|
+
Housekeeping in v2.3.0-beta.1
|
|
9320
9764
|
</span>
|
|
9321
9765
|
</a>
|
|
9322
9766
|
|
|
@@ -10138,18 +10582,18 @@
|
|
|
10138
10582
|
<ul class="md-nav__list">
|
|
10139
10583
|
|
|
10140
10584
|
<li class="md-nav__item">
|
|
10141
|
-
<a href="#fixed" class="md-nav__link">
|
|
10585
|
+
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
10142
10586
|
<span class="md-ellipsis">
|
|
10143
|
-
Fixed
|
|
10587
|
+
Fixed in v2.3.16
|
|
10144
10588
|
</span>
|
|
10145
10589
|
</a>
|
|
10146
10590
|
|
|
10147
10591
|
</li>
|
|
10148
10592
|
|
|
10149
10593
|
<li class="md-nav__item">
|
|
10150
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10594
|
+
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
10151
10595
|
<span class="md-ellipsis">
|
|
10152
|
-
Housekeeping
|
|
10596
|
+
Housekeeping in v2.3.16
|
|
10153
10597
|
</span>
|
|
10154
10598
|
</a>
|
|
10155
10599
|
|
|
@@ -10171,54 +10615,54 @@
|
|
|
10171
10615
|
<ul class="md-nav__list">
|
|
10172
10616
|
|
|
10173
10617
|
<li class="md-nav__item">
|
|
10174
|
-
<a href="#security" class="md-nav__link">
|
|
10618
|
+
<a href="#security-in-v2315" class="md-nav__link">
|
|
10175
10619
|
<span class="md-ellipsis">
|
|
10176
|
-
Security
|
|
10620
|
+
Security in v2.3.15
|
|
10177
10621
|
</span>
|
|
10178
10622
|
</a>
|
|
10179
10623
|
|
|
10180
10624
|
</li>
|
|
10181
10625
|
|
|
10182
10626
|
<li class="md-nav__item">
|
|
10183
|
-
<a href="#
|
|
10627
|
+
<a href="#added-in-v2315" class="md-nav__link">
|
|
10184
10628
|
<span class="md-ellipsis">
|
|
10185
|
-
Added
|
|
10629
|
+
Added in v2.3.15
|
|
10186
10630
|
</span>
|
|
10187
10631
|
</a>
|
|
10188
10632
|
|
|
10189
10633
|
</li>
|
|
10190
10634
|
|
|
10191
10635
|
<li class="md-nav__item">
|
|
10192
|
-
<a href="#
|
|
10636
|
+
<a href="#changed-in-v2315" class="md-nav__link">
|
|
10193
10637
|
<span class="md-ellipsis">
|
|
10194
|
-
Changed
|
|
10638
|
+
Changed in v2.3.15
|
|
10195
10639
|
</span>
|
|
10196
10640
|
</a>
|
|
10197
10641
|
|
|
10198
10642
|
</li>
|
|
10199
10643
|
|
|
10200
10644
|
<li class="md-nav__item">
|
|
10201
|
-
<a href="#
|
|
10645
|
+
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
10202
10646
|
<span class="md-ellipsis">
|
|
10203
|
-
Fixed
|
|
10647
|
+
Fixed in v2.3.15
|
|
10204
10648
|
</span>
|
|
10205
10649
|
</a>
|
|
10206
10650
|
|
|
10207
10651
|
</li>
|
|
10208
10652
|
|
|
10209
10653
|
<li class="md-nav__item">
|
|
10210
|
-
<a href="#
|
|
10654
|
+
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
10211
10655
|
<span class="md-ellipsis">
|
|
10212
|
-
Dependencies
|
|
10656
|
+
Dependencies in v2.3.15
|
|
10213
10657
|
</span>
|
|
10214
10658
|
</a>
|
|
10215
10659
|
|
|
10216
10660
|
</li>
|
|
10217
10661
|
|
|
10218
10662
|
<li class="md-nav__item">
|
|
10219
|
-
<a href="#
|
|
10663
|
+
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
10220
10664
|
<span class="md-ellipsis">
|
|
10221
|
-
Housekeeping
|
|
10665
|
+
Housekeeping in v2.3.15
|
|
10222
10666
|
</span>
|
|
10223
10667
|
</a>
|
|
10224
10668
|
|
|
@@ -10240,45 +10684,45 @@
|
|
|
10240
10684
|
<ul class="md-nav__list">
|
|
10241
10685
|
|
|
10242
10686
|
<li class="md-nav__item">
|
|
10243
|
-
<a href="#
|
|
10687
|
+
<a href="#added-in-v2314" class="md-nav__link">
|
|
10244
10688
|
<span class="md-ellipsis">
|
|
10245
|
-
Added
|
|
10689
|
+
Added in v2.3.14
|
|
10246
10690
|
</span>
|
|
10247
10691
|
</a>
|
|
10248
10692
|
|
|
10249
10693
|
</li>
|
|
10250
10694
|
|
|
10251
10695
|
<li class="md-nav__item">
|
|
10252
|
-
<a href="#
|
|
10696
|
+
<a href="#changed-in-v2314" class="md-nav__link">
|
|
10253
10697
|
<span class="md-ellipsis">
|
|
10254
|
-
Changed
|
|
10698
|
+
Changed in v2.3.14
|
|
10255
10699
|
</span>
|
|
10256
10700
|
</a>
|
|
10257
10701
|
|
|
10258
10702
|
</li>
|
|
10259
10703
|
|
|
10260
10704
|
<li class="md-nav__item">
|
|
10261
|
-
<a href="#
|
|
10705
|
+
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
10262
10706
|
<span class="md-ellipsis">
|
|
10263
|
-
Fixed
|
|
10707
|
+
Fixed in v2.3.14
|
|
10264
10708
|
</span>
|
|
10265
10709
|
</a>
|
|
10266
10710
|
|
|
10267
10711
|
</li>
|
|
10268
10712
|
|
|
10269
10713
|
<li class="md-nav__item">
|
|
10270
|
-
<a href="#documentation" class="md-nav__link">
|
|
10714
|
+
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
10271
10715
|
<span class="md-ellipsis">
|
|
10272
|
-
Documentation
|
|
10716
|
+
Documentation in v2.3.14
|
|
10273
10717
|
</span>
|
|
10274
10718
|
</a>
|
|
10275
10719
|
|
|
10276
10720
|
</li>
|
|
10277
10721
|
|
|
10278
10722
|
<li class="md-nav__item">
|
|
10279
|
-
<a href="#
|
|
10723
|
+
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
10280
10724
|
<span class="md-ellipsis">
|
|
10281
|
-
Housekeeping
|
|
10725
|
+
Housekeeping in v2.3.14
|
|
10282
10726
|
</span>
|
|
10283
10727
|
</a>
|
|
10284
10728
|
|
|
@@ -10300,63 +10744,63 @@
|
|
|
10300
10744
|
<ul class="md-nav__list">
|
|
10301
10745
|
|
|
10302
10746
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10747
|
+
<a href="#security-in-v2313" class="md-nav__link">
|
|
10304
10748
|
<span class="md-ellipsis">
|
|
10305
|
-
Security
|
|
10749
|
+
Security in v2.3.13
|
|
10306
10750
|
</span>
|
|
10307
10751
|
</a>
|
|
10308
10752
|
|
|
10309
10753
|
</li>
|
|
10310
10754
|
|
|
10311
10755
|
<li class="md-nav__item">
|
|
10312
|
-
<a href="#
|
|
10756
|
+
<a href="#added-in-v2313" class="md-nav__link">
|
|
10313
10757
|
<span class="md-ellipsis">
|
|
10314
|
-
Added
|
|
10758
|
+
Added in v2.3.13
|
|
10315
10759
|
</span>
|
|
10316
10760
|
</a>
|
|
10317
10761
|
|
|
10318
10762
|
</li>
|
|
10319
10763
|
|
|
10320
10764
|
<li class="md-nav__item">
|
|
10321
|
-
<a href="#
|
|
10765
|
+
<a href="#changed-in-v2313" class="md-nav__link">
|
|
10322
10766
|
<span class="md-ellipsis">
|
|
10323
|
-
Changed
|
|
10767
|
+
Changed in v2.3.13
|
|
10324
10768
|
</span>
|
|
10325
10769
|
</a>
|
|
10326
10770
|
|
|
10327
10771
|
</li>
|
|
10328
10772
|
|
|
10329
10773
|
<li class="md-nav__item">
|
|
10330
|
-
<a href="#
|
|
10774
|
+
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
10331
10775
|
<span class="md-ellipsis">
|
|
10332
|
-
Fixed
|
|
10776
|
+
Fixed in v2.3.13
|
|
10333
10777
|
</span>
|
|
10334
10778
|
</a>
|
|
10335
10779
|
|
|
10336
10780
|
</li>
|
|
10337
10781
|
|
|
10338
10782
|
<li class="md-nav__item">
|
|
10339
|
-
<a href="#
|
|
10783
|
+
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
10340
10784
|
<span class="md-ellipsis">
|
|
10341
|
-
Dependencies
|
|
10785
|
+
Dependencies in v2.3.13
|
|
10342
10786
|
</span>
|
|
10343
10787
|
</a>
|
|
10344
10788
|
|
|
10345
10789
|
</li>
|
|
10346
10790
|
|
|
10347
10791
|
<li class="md-nav__item">
|
|
10348
|
-
<a href="#
|
|
10792
|
+
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
10349
10793
|
<span class="md-ellipsis">
|
|
10350
|
-
Documentation
|
|
10794
|
+
Documentation in v2.3.13
|
|
10351
10795
|
</span>
|
|
10352
10796
|
</a>
|
|
10353
10797
|
|
|
10354
10798
|
</li>
|
|
10355
10799
|
|
|
10356
10800
|
<li class="md-nav__item">
|
|
10357
|
-
<a href="#
|
|
10801
|
+
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
10358
10802
|
<span class="md-ellipsis">
|
|
10359
|
-
Housekeeping
|
|
10803
|
+
Housekeeping in v2.3.13
|
|
10360
10804
|
</span>
|
|
10361
10805
|
</a>
|
|
10362
10806
|
|
|
@@ -10378,45 +10822,45 @@
|
|
|
10378
10822
|
<ul class="md-nav__list">
|
|
10379
10823
|
|
|
10380
10824
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#
|
|
10825
|
+
<a href="#added-in-v2312" class="md-nav__link">
|
|
10382
10826
|
<span class="md-ellipsis">
|
|
10383
|
-
Added
|
|
10827
|
+
Added in v2.3.12
|
|
10384
10828
|
</span>
|
|
10385
10829
|
</a>
|
|
10386
10830
|
|
|
10387
10831
|
</li>
|
|
10388
10832
|
|
|
10389
10833
|
<li class="md-nav__item">
|
|
10390
|
-
<a href="#
|
|
10834
|
+
<a href="#fixed-in-v2312" class="md-nav__link">
|
|
10391
10835
|
<span class="md-ellipsis">
|
|
10392
|
-
Fixed
|
|
10836
|
+
Fixed in v2.3.12
|
|
10393
10837
|
</span>
|
|
10394
10838
|
</a>
|
|
10395
10839
|
|
|
10396
10840
|
</li>
|
|
10397
10841
|
|
|
10398
10842
|
<li class="md-nav__item">
|
|
10399
|
-
<a href="#
|
|
10843
|
+
<a href="#dependencies-in-v2312" class="md-nav__link">
|
|
10400
10844
|
<span class="md-ellipsis">
|
|
10401
|
-
Dependencies
|
|
10845
|
+
Dependencies in v2.3.12
|
|
10402
10846
|
</span>
|
|
10403
10847
|
</a>
|
|
10404
10848
|
|
|
10405
10849
|
</li>
|
|
10406
10850
|
|
|
10407
10851
|
<li class="md-nav__item">
|
|
10408
|
-
<a href="#
|
|
10852
|
+
<a href="#documentation-in-v2312" class="md-nav__link">
|
|
10409
10853
|
<span class="md-ellipsis">
|
|
10410
|
-
Documentation
|
|
10854
|
+
Documentation in v2.3.12
|
|
10411
10855
|
</span>
|
|
10412
10856
|
</a>
|
|
10413
10857
|
|
|
10414
10858
|
</li>
|
|
10415
10859
|
|
|
10416
10860
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10861
|
+
<a href="#housekeeping-in-v2312" class="md-nav__link">
|
|
10418
10862
|
<span class="md-ellipsis">
|
|
10419
|
-
Housekeeping
|
|
10863
|
+
Housekeeping in v2.3.12
|
|
10420
10864
|
</span>
|
|
10421
10865
|
</a>
|
|
10422
10866
|
|
|
@@ -10438,45 +10882,45 @@
|
|
|
10438
10882
|
<ul class="md-nav__list">
|
|
10439
10883
|
|
|
10440
10884
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10885
|
+
<a href="#added-in-v2311" class="md-nav__link">
|
|
10442
10886
|
<span class="md-ellipsis">
|
|
10443
|
-
Added
|
|
10887
|
+
Added in v2.3.11
|
|
10444
10888
|
</span>
|
|
10445
10889
|
</a>
|
|
10446
10890
|
|
|
10447
10891
|
</li>
|
|
10448
10892
|
|
|
10449
10893
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10894
|
+
<a href="#changed-in-v2311" class="md-nav__link">
|
|
10451
10895
|
<span class="md-ellipsis">
|
|
10452
|
-
Changed
|
|
10896
|
+
Changed in v2.3.11
|
|
10453
10897
|
</span>
|
|
10454
10898
|
</a>
|
|
10455
10899
|
|
|
10456
10900
|
</li>
|
|
10457
10901
|
|
|
10458
10902
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
10903
|
+
<a href="#fixed-in-v2311" class="md-nav__link">
|
|
10460
10904
|
<span class="md-ellipsis">
|
|
10461
|
-
Fixed
|
|
10905
|
+
Fixed in v2.3.11
|
|
10462
10906
|
</span>
|
|
10463
10907
|
</a>
|
|
10464
10908
|
|
|
10465
10909
|
</li>
|
|
10466
10910
|
|
|
10467
10911
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10912
|
+
<a href="#documentation-in-v2311" class="md-nav__link">
|
|
10469
10913
|
<span class="md-ellipsis">
|
|
10470
|
-
Documentation
|
|
10914
|
+
Documentation in v2.3.11
|
|
10471
10915
|
</span>
|
|
10472
10916
|
</a>
|
|
10473
10917
|
|
|
10474
10918
|
</li>
|
|
10475
10919
|
|
|
10476
10920
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10921
|
+
<a href="#housekeeping-in-v2311" class="md-nav__link">
|
|
10478
10922
|
<span class="md-ellipsis">
|
|
10479
|
-
Housekeeping
|
|
10923
|
+
Housekeeping in v2.3.11
|
|
10480
10924
|
</span>
|
|
10481
10925
|
</a>
|
|
10482
10926
|
|
|
@@ -10498,45 +10942,45 @@
|
|
|
10498
10942
|
<ul class="md-nav__list">
|
|
10499
10943
|
|
|
10500
10944
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10945
|
+
<a href="#added-in-v2310" class="md-nav__link">
|
|
10502
10946
|
<span class="md-ellipsis">
|
|
10503
|
-
Added
|
|
10947
|
+
Added in v2.3.10
|
|
10504
10948
|
</span>
|
|
10505
10949
|
</a>
|
|
10506
10950
|
|
|
10507
10951
|
</li>
|
|
10508
10952
|
|
|
10509
10953
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
10954
|
+
<a href="#changed-in-v2310" class="md-nav__link">
|
|
10511
10955
|
<span class="md-ellipsis">
|
|
10512
|
-
Changed
|
|
10956
|
+
Changed in v2.3.10
|
|
10513
10957
|
</span>
|
|
10514
10958
|
</a>
|
|
10515
10959
|
|
|
10516
10960
|
</li>
|
|
10517
10961
|
|
|
10518
10962
|
<li class="md-nav__item">
|
|
10519
|
-
<a href="#
|
|
10963
|
+
<a href="#fixed-in-v2310" class="md-nav__link">
|
|
10520
10964
|
<span class="md-ellipsis">
|
|
10521
|
-
Fixed
|
|
10965
|
+
Fixed in v2.3.10
|
|
10522
10966
|
</span>
|
|
10523
10967
|
</a>
|
|
10524
10968
|
|
|
10525
10969
|
</li>
|
|
10526
10970
|
|
|
10527
10971
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
10972
|
+
<a href="#dependencies-in-v2310" class="md-nav__link">
|
|
10529
10973
|
<span class="md-ellipsis">
|
|
10530
|
-
Dependencies
|
|
10974
|
+
Dependencies in v2.3.10
|
|
10531
10975
|
</span>
|
|
10532
10976
|
</a>
|
|
10533
10977
|
|
|
10534
10978
|
</li>
|
|
10535
10979
|
|
|
10536
10980
|
<li class="md-nav__item">
|
|
10537
|
-
<a href="#
|
|
10981
|
+
<a href="#housekeeping-in-v2310" class="md-nav__link">
|
|
10538
10982
|
<span class="md-ellipsis">
|
|
10539
|
-
Housekeeping
|
|
10983
|
+
Housekeeping in v2.3.10
|
|
10540
10984
|
</span>
|
|
10541
10985
|
</a>
|
|
10542
10986
|
|
|
@@ -10558,45 +11002,45 @@
|
|
|
10558
11002
|
<ul class="md-nav__list">
|
|
10559
11003
|
|
|
10560
11004
|
<li class="md-nav__item">
|
|
10561
|
-
<a href="#
|
|
11005
|
+
<a href="#added-in-v239" class="md-nav__link">
|
|
10562
11006
|
<span class="md-ellipsis">
|
|
10563
|
-
Added
|
|
11007
|
+
Added in v2.3.9
|
|
10564
11008
|
</span>
|
|
10565
11009
|
</a>
|
|
10566
11010
|
|
|
10567
11011
|
</li>
|
|
10568
11012
|
|
|
10569
11013
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
11014
|
+
<a href="#changed-in-v239" class="md-nav__link">
|
|
10571
11015
|
<span class="md-ellipsis">
|
|
10572
|
-
Changed
|
|
11016
|
+
Changed in v2.3.9
|
|
10573
11017
|
</span>
|
|
10574
11018
|
</a>
|
|
10575
11019
|
|
|
10576
11020
|
</li>
|
|
10577
11021
|
|
|
10578
11022
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
11023
|
+
<a href="#fixed-in-v239" class="md-nav__link">
|
|
10580
11024
|
<span class="md-ellipsis">
|
|
10581
|
-
Fixed
|
|
11025
|
+
Fixed in v2.3.9
|
|
10582
11026
|
</span>
|
|
10583
11027
|
</a>
|
|
10584
11028
|
|
|
10585
11029
|
</li>
|
|
10586
11030
|
|
|
10587
11031
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
11032
|
+
<a href="#dependencies-in-v239" class="md-nav__link">
|
|
10589
11033
|
<span class="md-ellipsis">
|
|
10590
|
-
Dependencies
|
|
11034
|
+
Dependencies in v2.3.9
|
|
10591
11035
|
</span>
|
|
10592
11036
|
</a>
|
|
10593
11037
|
|
|
10594
11038
|
</li>
|
|
10595
11039
|
|
|
10596
11040
|
<li class="md-nav__item">
|
|
10597
|
-
<a href="#
|
|
11041
|
+
<a href="#housekeeping-in-v239" class="md-nav__link">
|
|
10598
11042
|
<span class="md-ellipsis">
|
|
10599
|
-
Housekeeping
|
|
11043
|
+
Housekeeping in v2.3.9
|
|
10600
11044
|
</span>
|
|
10601
11045
|
</a>
|
|
10602
11046
|
|
|
@@ -10618,9 +11062,9 @@
|
|
|
10618
11062
|
<ul class="md-nav__list">
|
|
10619
11063
|
|
|
10620
11064
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
11065
|
+
<a href="#fixed-in-v238" class="md-nav__link">
|
|
10622
11066
|
<span class="md-ellipsis">
|
|
10623
|
-
Fixed
|
|
11067
|
+
Fixed in v2.3.8
|
|
10624
11068
|
</span>
|
|
10625
11069
|
</a>
|
|
10626
11070
|
|
|
@@ -10642,45 +11086,45 @@
|
|
|
10642
11086
|
<ul class="md-nav__list">
|
|
10643
11087
|
|
|
10644
11088
|
<li class="md-nav__item">
|
|
10645
|
-
<a href="#
|
|
11089
|
+
<a href="#added-in-v237" class="md-nav__link">
|
|
10646
11090
|
<span class="md-ellipsis">
|
|
10647
|
-
Added
|
|
11091
|
+
Added in v2.3.7
|
|
10648
11092
|
</span>
|
|
10649
11093
|
</a>
|
|
10650
11094
|
|
|
10651
11095
|
</li>
|
|
10652
11096
|
|
|
10653
11097
|
<li class="md-nav__item">
|
|
10654
|
-
<a href="#
|
|
11098
|
+
<a href="#changed-in-v237" class="md-nav__link">
|
|
10655
11099
|
<span class="md-ellipsis">
|
|
10656
|
-
Changed
|
|
11100
|
+
Changed in v2.3.7
|
|
10657
11101
|
</span>
|
|
10658
11102
|
</a>
|
|
10659
11103
|
|
|
10660
11104
|
</li>
|
|
10661
11105
|
|
|
10662
11106
|
<li class="md-nav__item">
|
|
10663
|
-
<a href="#
|
|
11107
|
+
<a href="#fixed-in-v237" class="md-nav__link">
|
|
10664
11108
|
<span class="md-ellipsis">
|
|
10665
|
-
Fixed
|
|
11109
|
+
Fixed in v2.3.7
|
|
10666
11110
|
</span>
|
|
10667
11111
|
</a>
|
|
10668
11112
|
|
|
10669
11113
|
</li>
|
|
10670
11114
|
|
|
10671
11115
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
11116
|
+
<a href="#dependencies-in-v237" class="md-nav__link">
|
|
10673
11117
|
<span class="md-ellipsis">
|
|
10674
|
-
Dependencies
|
|
11118
|
+
Dependencies in v2.3.7
|
|
10675
11119
|
</span>
|
|
10676
11120
|
</a>
|
|
10677
11121
|
|
|
10678
11122
|
</li>
|
|
10679
11123
|
|
|
10680
11124
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
11125
|
+
<a href="#housekeeping-in-v237" class="md-nav__link">
|
|
10682
11126
|
<span class="md-ellipsis">
|
|
10683
|
-
Housekeeping
|
|
11127
|
+
Housekeeping in v2.3.7
|
|
10684
11128
|
</span>
|
|
10685
11129
|
</a>
|
|
10686
11130
|
|
|
@@ -10702,36 +11146,36 @@
|
|
|
10702
11146
|
<ul class="md-nav__list">
|
|
10703
11147
|
|
|
10704
11148
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
11149
|
+
<a href="#added-in-v236" class="md-nav__link">
|
|
10706
11150
|
<span class="md-ellipsis">
|
|
10707
|
-
Added
|
|
11151
|
+
Added in v2.3.6
|
|
10708
11152
|
</span>
|
|
10709
11153
|
</a>
|
|
10710
11154
|
|
|
10711
11155
|
</li>
|
|
10712
11156
|
|
|
10713
11157
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
11158
|
+
<a href="#fixed-in-v236" class="md-nav__link">
|
|
10715
11159
|
<span class="md-ellipsis">
|
|
10716
|
-
Fixed
|
|
11160
|
+
Fixed in v2.3.6
|
|
10717
11161
|
</span>
|
|
10718
11162
|
</a>
|
|
10719
11163
|
|
|
10720
11164
|
</li>
|
|
10721
11165
|
|
|
10722
11166
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
11167
|
+
<a href="#documentation-in-v236" class="md-nav__link">
|
|
10724
11168
|
<span class="md-ellipsis">
|
|
10725
|
-
Documentation
|
|
11169
|
+
Documentation in v2.3.6
|
|
10726
11170
|
</span>
|
|
10727
11171
|
</a>
|
|
10728
11172
|
|
|
10729
11173
|
</li>
|
|
10730
11174
|
|
|
10731
11175
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#
|
|
11176
|
+
<a href="#housekeeping-in-v236" class="md-nav__link">
|
|
10733
11177
|
<span class="md-ellipsis">
|
|
10734
|
-
Housekeeping
|
|
11178
|
+
Housekeeping in v2.3.6
|
|
10735
11179
|
</span>
|
|
10736
11180
|
</a>
|
|
10737
11181
|
|
|
@@ -10753,54 +11197,54 @@
|
|
|
10753
11197
|
<ul class="md-nav__list">
|
|
10754
11198
|
|
|
10755
11199
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
11200
|
+
<a href="#added-in-v235" class="md-nav__link">
|
|
10757
11201
|
<span class="md-ellipsis">
|
|
10758
|
-
Added
|
|
11202
|
+
Added in v2.3.5
|
|
10759
11203
|
</span>
|
|
10760
11204
|
</a>
|
|
10761
11205
|
|
|
10762
11206
|
</li>
|
|
10763
11207
|
|
|
10764
11208
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#
|
|
11209
|
+
<a href="#changed-in-v235" class="md-nav__link">
|
|
10766
11210
|
<span class="md-ellipsis">
|
|
10767
|
-
Changed
|
|
11211
|
+
Changed in v2.3.5
|
|
10768
11212
|
</span>
|
|
10769
11213
|
</a>
|
|
10770
11214
|
|
|
10771
11215
|
</li>
|
|
10772
11216
|
|
|
10773
11217
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#
|
|
11218
|
+
<a href="#fixed-in-v235" class="md-nav__link">
|
|
10775
11219
|
<span class="md-ellipsis">
|
|
10776
|
-
Fixed
|
|
11220
|
+
Fixed in v2.3.5
|
|
10777
11221
|
</span>
|
|
10778
11222
|
</a>
|
|
10779
11223
|
|
|
10780
11224
|
</li>
|
|
10781
11225
|
|
|
10782
11226
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
11227
|
+
<a href="#dependencies-in-v235" class="md-nav__link">
|
|
10784
11228
|
<span class="md-ellipsis">
|
|
10785
|
-
Dependencies
|
|
11229
|
+
Dependencies in v2.3.5
|
|
10786
11230
|
</span>
|
|
10787
11231
|
</a>
|
|
10788
11232
|
|
|
10789
11233
|
</li>
|
|
10790
11234
|
|
|
10791
11235
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
11236
|
+
<a href="#documentation-in-v235" class="md-nav__link">
|
|
10793
11237
|
<span class="md-ellipsis">
|
|
10794
|
-
Documentation
|
|
11238
|
+
Documentation in v2.3.5
|
|
10795
11239
|
</span>
|
|
10796
11240
|
</a>
|
|
10797
11241
|
|
|
10798
11242
|
</li>
|
|
10799
11243
|
|
|
10800
11244
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
11245
|
+
<a href="#housekeeping-in-v235" class="md-nav__link">
|
|
10802
11246
|
<span class="md-ellipsis">
|
|
10803
|
-
Housekeeping
|
|
11247
|
+
Housekeeping in v2.3.5
|
|
10804
11248
|
</span>
|
|
10805
11249
|
</a>
|
|
10806
11250
|
|
|
@@ -10822,45 +11266,45 @@
|
|
|
10822
11266
|
<ul class="md-nav__list">
|
|
10823
11267
|
|
|
10824
11268
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
11269
|
+
<a href="#added-in-v234" class="md-nav__link">
|
|
10826
11270
|
<span class="md-ellipsis">
|
|
10827
|
-
Added
|
|
11271
|
+
Added in v2.3.4
|
|
10828
11272
|
</span>
|
|
10829
11273
|
</a>
|
|
10830
11274
|
|
|
10831
11275
|
</li>
|
|
10832
11276
|
|
|
10833
11277
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
11278
|
+
<a href="#changed-in-v234" class="md-nav__link">
|
|
10835
11279
|
<span class="md-ellipsis">
|
|
10836
|
-
Changed
|
|
11280
|
+
Changed in v2.3.4
|
|
10837
11281
|
</span>
|
|
10838
11282
|
</a>
|
|
10839
11283
|
|
|
10840
11284
|
</li>
|
|
10841
11285
|
|
|
10842
11286
|
<li class="md-nav__item">
|
|
10843
|
-
<a href="#
|
|
11287
|
+
<a href="#fixed-in-v234" class="md-nav__link">
|
|
10844
11288
|
<span class="md-ellipsis">
|
|
10845
|
-
Fixed
|
|
11289
|
+
Fixed in v2.3.4
|
|
10846
11290
|
</span>
|
|
10847
11291
|
</a>
|
|
10848
11292
|
|
|
10849
11293
|
</li>
|
|
10850
11294
|
|
|
10851
11295
|
<li class="md-nav__item">
|
|
10852
|
-
<a href="#
|
|
11296
|
+
<a href="#documentation-in-v234" class="md-nav__link">
|
|
10853
11297
|
<span class="md-ellipsis">
|
|
10854
|
-
Documentation
|
|
11298
|
+
Documentation in v2.3.4
|
|
10855
11299
|
</span>
|
|
10856
11300
|
</a>
|
|
10857
11301
|
|
|
10858
11302
|
</li>
|
|
10859
11303
|
|
|
10860
11304
|
<li class="md-nav__item">
|
|
10861
|
-
<a href="#
|
|
11305
|
+
<a href="#housekeeping-in-v234" class="md-nav__link">
|
|
10862
11306
|
<span class="md-ellipsis">
|
|
10863
|
-
Housekeeping
|
|
11307
|
+
Housekeeping in v2.3.4
|
|
10864
11308
|
</span>
|
|
10865
11309
|
</a>
|
|
10866
11310
|
|
|
@@ -10882,36 +11326,36 @@
|
|
|
10882
11326
|
<ul class="md-nav__list">
|
|
10883
11327
|
|
|
10884
11328
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
11329
|
+
<a href="#security-in-v233" class="md-nav__link">
|
|
10886
11330
|
<span class="md-ellipsis">
|
|
10887
|
-
Security
|
|
11331
|
+
Security in v2.3.3
|
|
10888
11332
|
</span>
|
|
10889
11333
|
</a>
|
|
10890
11334
|
|
|
10891
11335
|
</li>
|
|
10892
11336
|
|
|
10893
11337
|
<li class="md-nav__item">
|
|
10894
|
-
<a href="#
|
|
11338
|
+
<a href="#fixed-in-v233" class="md-nav__link">
|
|
10895
11339
|
<span class="md-ellipsis">
|
|
10896
|
-
Fixed
|
|
11340
|
+
Fixed in v2.3.3
|
|
10897
11341
|
</span>
|
|
10898
11342
|
</a>
|
|
10899
11343
|
|
|
10900
11344
|
</li>
|
|
10901
11345
|
|
|
10902
11346
|
<li class="md-nav__item">
|
|
10903
|
-
<a href="#
|
|
11347
|
+
<a href="#dependencies-in-v233" class="md-nav__link">
|
|
10904
11348
|
<span class="md-ellipsis">
|
|
10905
|
-
Dependencies
|
|
11349
|
+
Dependencies in v2.3.3
|
|
10906
11350
|
</span>
|
|
10907
11351
|
</a>
|
|
10908
11352
|
|
|
10909
11353
|
</li>
|
|
10910
11354
|
|
|
10911
11355
|
<li class="md-nav__item">
|
|
10912
|
-
<a href="#
|
|
11356
|
+
<a href="#housekeeping-in-v233" class="md-nav__link">
|
|
10913
11357
|
<span class="md-ellipsis">
|
|
10914
|
-
Housekeeping
|
|
11358
|
+
Housekeeping in v2.3.3
|
|
10915
11359
|
</span>
|
|
10916
11360
|
</a>
|
|
10917
11361
|
|
|
@@ -10933,36 +11377,36 @@
|
|
|
10933
11377
|
<ul class="md-nav__list">
|
|
10934
11378
|
|
|
10935
11379
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
11380
|
+
<a href="#security-in-v232" class="md-nav__link">
|
|
10937
11381
|
<span class="md-ellipsis">
|
|
10938
|
-
Security
|
|
11382
|
+
Security in v2.3.2
|
|
10939
11383
|
</span>
|
|
10940
11384
|
</a>
|
|
10941
11385
|
|
|
10942
11386
|
</li>
|
|
10943
11387
|
|
|
10944
11388
|
<li class="md-nav__item">
|
|
10945
|
-
<a href="#
|
|
11389
|
+
<a href="#added-in-v232" class="md-nav__link">
|
|
10946
11390
|
<span class="md-ellipsis">
|
|
10947
|
-
Added
|
|
11391
|
+
Added in v2.3.2
|
|
10948
11392
|
</span>
|
|
10949
11393
|
</a>
|
|
10950
11394
|
|
|
10951
11395
|
</li>
|
|
10952
11396
|
|
|
10953
11397
|
<li class="md-nav__item">
|
|
10954
|
-
<a href="#
|
|
11398
|
+
<a href="#fixed-in-v232" class="md-nav__link">
|
|
10955
11399
|
<span class="md-ellipsis">
|
|
10956
|
-
Fixed
|
|
11400
|
+
Fixed in v2.3.2
|
|
10957
11401
|
</span>
|
|
10958
11402
|
</a>
|
|
10959
11403
|
|
|
10960
11404
|
</li>
|
|
10961
11405
|
|
|
10962
11406
|
<li class="md-nav__item">
|
|
10963
|
-
<a href="#
|
|
11407
|
+
<a href="#housekeeping-in-v232" class="md-nav__link">
|
|
10964
11408
|
<span class="md-ellipsis">
|
|
10965
|
-
Housekeeping
|
|
11409
|
+
Housekeeping in v2.3.2
|
|
10966
11410
|
</span>
|
|
10967
11411
|
</a>
|
|
10968
11412
|
|
|
@@ -10984,36 +11428,36 @@
|
|
|
10984
11428
|
<ul class="md-nav__list">
|
|
10985
11429
|
|
|
10986
11430
|
<li class="md-nav__item">
|
|
10987
|
-
<a href="#
|
|
11431
|
+
<a href="#added-in-v231" class="md-nav__link">
|
|
10988
11432
|
<span class="md-ellipsis">
|
|
10989
|
-
Added
|
|
11433
|
+
Added in v2.3.1
|
|
10990
11434
|
</span>
|
|
10991
11435
|
</a>
|
|
10992
11436
|
|
|
10993
11437
|
</li>
|
|
10994
11438
|
|
|
10995
11439
|
<li class="md-nav__item">
|
|
10996
|
-
<a href="#
|
|
11440
|
+
<a href="#changed-in-v231" class="md-nav__link">
|
|
10997
11441
|
<span class="md-ellipsis">
|
|
10998
|
-
Changed
|
|
11442
|
+
Changed in v2.3.1
|
|
10999
11443
|
</span>
|
|
11000
11444
|
</a>
|
|
11001
11445
|
|
|
11002
11446
|
</li>
|
|
11003
11447
|
|
|
11004
11448
|
<li class="md-nav__item">
|
|
11005
|
-
<a href="#
|
|
11449
|
+
<a href="#fixed-in-v231" class="md-nav__link">
|
|
11006
11450
|
<span class="md-ellipsis">
|
|
11007
|
-
Fixed
|
|
11451
|
+
Fixed in v2.3.1
|
|
11008
11452
|
</span>
|
|
11009
11453
|
</a>
|
|
11010
11454
|
|
|
11011
11455
|
</li>
|
|
11012
11456
|
|
|
11013
11457
|
<li class="md-nav__item">
|
|
11014
|
-
<a href="#
|
|
11458
|
+
<a href="#housekeeping-in-v231" class="md-nav__link">
|
|
11015
11459
|
<span class="md-ellipsis">
|
|
11016
|
-
Housekeeping
|
|
11460
|
+
Housekeeping in v2.3.1
|
|
11017
11461
|
</span>
|
|
11018
11462
|
</a>
|
|
11019
11463
|
|
|
@@ -11035,63 +11479,63 @@
|
|
|
11035
11479
|
<ul class="md-nav__list">
|
|
11036
11480
|
|
|
11037
11481
|
<li class="md-nav__item">
|
|
11038
|
-
<a href="#
|
|
11482
|
+
<a href="#security-in-v230" class="md-nav__link">
|
|
11039
11483
|
<span class="md-ellipsis">
|
|
11040
|
-
Security
|
|
11484
|
+
Security in v2.3.0
|
|
11041
11485
|
</span>
|
|
11042
11486
|
</a>
|
|
11043
11487
|
|
|
11044
11488
|
</li>
|
|
11045
11489
|
|
|
11046
11490
|
<li class="md-nav__item">
|
|
11047
|
-
<a href="#
|
|
11491
|
+
<a href="#added-in-v230" class="md-nav__link">
|
|
11048
11492
|
<span class="md-ellipsis">
|
|
11049
|
-
Added
|
|
11493
|
+
Added in v2.3.0
|
|
11050
11494
|
</span>
|
|
11051
11495
|
</a>
|
|
11052
11496
|
|
|
11053
11497
|
</li>
|
|
11054
11498
|
|
|
11055
11499
|
<li class="md-nav__item">
|
|
11056
|
-
<a href="#
|
|
11500
|
+
<a href="#changed-in-v230" class="md-nav__link">
|
|
11057
11501
|
<span class="md-ellipsis">
|
|
11058
|
-
Changed
|
|
11502
|
+
Changed in v2.3.0
|
|
11059
11503
|
</span>
|
|
11060
11504
|
</a>
|
|
11061
11505
|
|
|
11062
11506
|
</li>
|
|
11063
11507
|
|
|
11064
11508
|
<li class="md-nav__item">
|
|
11065
|
-
<a href="#removed" class="md-nav__link">
|
|
11509
|
+
<a href="#removed-in-v230" class="md-nav__link">
|
|
11066
11510
|
<span class="md-ellipsis">
|
|
11067
|
-
Removed
|
|
11511
|
+
Removed in v2.3.0
|
|
11068
11512
|
</span>
|
|
11069
11513
|
</a>
|
|
11070
11514
|
|
|
11071
11515
|
</li>
|
|
11072
11516
|
|
|
11073
11517
|
<li class="md-nav__item">
|
|
11074
|
-
<a href="#
|
|
11518
|
+
<a href="#fixed-in-v230" class="md-nav__link">
|
|
11075
11519
|
<span class="md-ellipsis">
|
|
11076
|
-
Fixed
|
|
11520
|
+
Fixed in v2.3.0
|
|
11077
11521
|
</span>
|
|
11078
11522
|
</a>
|
|
11079
11523
|
|
|
11080
11524
|
</li>
|
|
11081
11525
|
|
|
11082
11526
|
<li class="md-nav__item">
|
|
11083
|
-
<a href="#
|
|
11527
|
+
<a href="#documentation-in-v230" class="md-nav__link">
|
|
11084
11528
|
<span class="md-ellipsis">
|
|
11085
|
-
Documentation
|
|
11529
|
+
Documentation in v2.3.0
|
|
11086
11530
|
</span>
|
|
11087
11531
|
</a>
|
|
11088
11532
|
|
|
11089
11533
|
</li>
|
|
11090
11534
|
|
|
11091
11535
|
<li class="md-nav__item">
|
|
11092
|
-
<a href="#
|
|
11536
|
+
<a href="#housekeeping-in-v230" class="md-nav__link">
|
|
11093
11537
|
<span class="md-ellipsis">
|
|
11094
|
-
Housekeeping
|
|
11538
|
+
Housekeeping in v2.3.0
|
|
11095
11539
|
</span>
|
|
11096
11540
|
</a>
|
|
11097
11541
|
|
|
@@ -11113,81 +11557,81 @@
|
|
|
11113
11557
|
<ul class="md-nav__list">
|
|
11114
11558
|
|
|
11115
11559
|
<li class="md-nav__item">
|
|
11116
|
-
<a href="#
|
|
11560
|
+
<a href="#security-in-v230-beta1" class="md-nav__link">
|
|
11117
11561
|
<span class="md-ellipsis">
|
|
11118
|
-
Security
|
|
11562
|
+
Security in v2.3.0-beta.1
|
|
11119
11563
|
</span>
|
|
11120
11564
|
</a>
|
|
11121
11565
|
|
|
11122
11566
|
</li>
|
|
11123
11567
|
|
|
11124
11568
|
<li class="md-nav__item">
|
|
11125
|
-
<a href="#
|
|
11569
|
+
<a href="#added-in-v230-beta1" class="md-nav__link">
|
|
11126
11570
|
<span class="md-ellipsis">
|
|
11127
|
-
Added
|
|
11571
|
+
Added in v2.3.0-beta.1
|
|
11128
11572
|
</span>
|
|
11129
11573
|
</a>
|
|
11130
11574
|
|
|
11131
11575
|
</li>
|
|
11132
11576
|
|
|
11133
11577
|
<li class="md-nav__item">
|
|
11134
|
-
<a href="#
|
|
11578
|
+
<a href="#changed-in-v230-beta1" class="md-nav__link">
|
|
11135
11579
|
<span class="md-ellipsis">
|
|
11136
|
-
Changed
|
|
11580
|
+
Changed in v2.3.0-beta.1
|
|
11137
11581
|
</span>
|
|
11138
11582
|
</a>
|
|
11139
11583
|
|
|
11140
11584
|
</li>
|
|
11141
11585
|
|
|
11142
11586
|
<li class="md-nav__item">
|
|
11143
|
-
<a href="#deprecated" class="md-nav__link">
|
|
11587
|
+
<a href="#deprecated-in-v230-beta1" class="md-nav__link">
|
|
11144
11588
|
<span class="md-ellipsis">
|
|
11145
|
-
Deprecated
|
|
11589
|
+
Deprecated in v2.3.0-beta.1
|
|
11146
11590
|
</span>
|
|
11147
11591
|
</a>
|
|
11148
11592
|
|
|
11149
11593
|
</li>
|
|
11150
11594
|
|
|
11151
11595
|
<li class="md-nav__item">
|
|
11152
|
-
<a href="#
|
|
11596
|
+
<a href="#removed-in-v230-beta1" class="md-nav__link">
|
|
11153
11597
|
<span class="md-ellipsis">
|
|
11154
|
-
Removed
|
|
11598
|
+
Removed in v2.3.0-beta.1
|
|
11155
11599
|
</span>
|
|
11156
11600
|
</a>
|
|
11157
11601
|
|
|
11158
11602
|
</li>
|
|
11159
11603
|
|
|
11160
11604
|
<li class="md-nav__item">
|
|
11161
|
-
<a href="#
|
|
11605
|
+
<a href="#fixed-in-v230-beta1" class="md-nav__link">
|
|
11162
11606
|
<span class="md-ellipsis">
|
|
11163
|
-
Fixed
|
|
11607
|
+
Fixed in v2.3.0-beta.1
|
|
11164
11608
|
</span>
|
|
11165
11609
|
</a>
|
|
11166
11610
|
|
|
11167
11611
|
</li>
|
|
11168
11612
|
|
|
11169
11613
|
<li class="md-nav__item">
|
|
11170
|
-
<a href="#
|
|
11614
|
+
<a href="#dependencies-in-v230-beta1" class="md-nav__link">
|
|
11171
11615
|
<span class="md-ellipsis">
|
|
11172
|
-
Dependencies
|
|
11616
|
+
Dependencies in v2.3.0-beta.1
|
|
11173
11617
|
</span>
|
|
11174
11618
|
</a>
|
|
11175
11619
|
|
|
11176
11620
|
</li>
|
|
11177
11621
|
|
|
11178
11622
|
<li class="md-nav__item">
|
|
11179
|
-
<a href="#
|
|
11623
|
+
<a href="#documentation-in-v230-beta1" class="md-nav__link">
|
|
11180
11624
|
<span class="md-ellipsis">
|
|
11181
|
-
Documentation
|
|
11625
|
+
Documentation in v2.3.0-beta.1
|
|
11182
11626
|
</span>
|
|
11183
11627
|
</a>
|
|
11184
11628
|
|
|
11185
11629
|
</li>
|
|
11186
11630
|
|
|
11187
11631
|
<li class="md-nav__item">
|
|
11188
|
-
<a href="#
|
|
11632
|
+
<a href="#housekeeping-in-v230-beta1" class="md-nav__link">
|
|
11189
11633
|
<span class="md-ellipsis">
|
|
11190
|
-
Housekeeping
|
|
11634
|
+
Housekeeping in v2.3.0-beta.1
|
|
11191
11635
|
</span>
|
|
11192
11636
|
</a>
|
|
11193
11637
|
|
|
@@ -11216,8 +11660,6 @@
|
|
|
11216
11660
|
|
|
11217
11661
|
|
|
11218
11662
|
|
|
11219
|
-
<!-- markdownlint-disable MD024 -->
|
|
11220
|
-
|
|
11221
11663
|
<h1 id="nautobot-v23">Nautobot v2.3<a class="headerlink" href="#nautobot-v23" title="Permanent link">¶</a></h1>
|
|
11222
11664
|
<p>This document describes all new features and changes in Nautobot 2.3.</p>
|
|
11223
11665
|
<h2 id="upgrade-actions">Upgrade Actions<a class="headerlink" href="#upgrade-actions" title="Permanent link">¶</a></h2>
|
|
@@ -11307,9 +11749,10 @@
|
|
|
11307
11749
|
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11308
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>
|
|
11309
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 -->
|
|
11310
11753
|
<!-- towncrier release notes start -->
|
|
11311
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>
|
|
11312
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11755
|
+
<h3 id="fixed-in-v2316">Fixed in v2.3.16<a class="headerlink" href="#fixed-in-v2316" title="Permanent link">¶</a></h3>
|
|
11313
11756
|
<ul>
|
|
11314
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>
|
|
11315
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>
|
|
@@ -11317,38 +11760,38 @@
|
|
|
11317
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>
|
|
11318
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>
|
|
11319
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>
|
|
11320
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6676">#6676</a> - Resolved issue with IPAddressQuerySet get_or_create method signature not matching the base method signature.</li>
|
|
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>
|
|
11321
11764
|
</ul>
|
|
11322
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11765
|
+
<h3 id="housekeeping-in-v2316">Housekeeping in v2.3.16<a class="headerlink" href="#housekeeping-in-v2316" title="Permanent link">¶</a></h3>
|
|
11323
11766
|
<ul>
|
|
11324
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>
|
|
11325
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>
|
|
11326
11769
|
</ul>
|
|
11327
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>
|
|
11328
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11771
|
+
<h3 id="security-in-v2315">Security in v2.3.15<a class="headerlink" href="#security-in-v2315" title="Permanent link">¶</a></h3>
|
|
11329
11772
|
<ul>
|
|
11330
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>
|
|
11331
11774
|
</ul>
|
|
11332
|
-
<h3 id="
|
|
11775
|
+
<h3 id="added-in-v2315">Added in v2.3.15<a class="headerlink" href="#added-in-v2315" title="Permanent link">¶</a></h3>
|
|
11333
11776
|
<ul>
|
|
11334
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>
|
|
11335
11778
|
</ul>
|
|
11336
|
-
<h3 id="
|
|
11779
|
+
<h3 id="changed-in-v2315">Changed in v2.3.15<a class="headerlink" href="#changed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11337
11780
|
<ul>
|
|
11338
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>
|
|
11339
11782
|
</ul>
|
|
11340
|
-
<h3 id="
|
|
11783
|
+
<h3 id="fixed-in-v2315">Fixed in v2.3.15<a class="headerlink" href="#fixed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11341
11784
|
<ul>
|
|
11342
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>
|
|
11343
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>
|
|
11344
11787
|
<li><a href="https://github.com/nautobot/nautobot/issues/6702">#6702</a> - Resolved issue with TagsBulkEditFormMixin missing self.model.</li>
|
|
11345
11788
|
</ul>
|
|
11346
|
-
<h3 id="
|
|
11789
|
+
<h3 id="dependencies-in-v2315">Dependencies in v2.3.15<a class="headerlink" href="#dependencies-in-v2315" title="Permanent link">¶</a></h3>
|
|
11347
11790
|
<ul>
|
|
11348
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>
|
|
11349
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>
|
|
11350
11793
|
</ul>
|
|
11351
|
-
<h3 id="
|
|
11794
|
+
<h3 id="housekeeping-in-v2315">Housekeeping in v2.3.15<a class="headerlink" href="#housekeeping-in-v2315" title="Permanent link">¶</a></h3>
|
|
11352
11795
|
<ul>
|
|
11353
11796
|
<li><a href="https://github.com/nautobot/nautobot/issues/6688">#6688</a> - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.</li>
|
|
11354
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>
|
|
@@ -11356,17 +11799,17 @@
|
|
|
11356
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>
|
|
11357
11800
|
</ul>
|
|
11358
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>
|
|
11359
|
-
<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>
|
|
11360
11803
|
<ul>
|
|
11361
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>
|
|
11362
11805
|
</ul>
|
|
11363
|
-
<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>
|
|
11364
11807
|
<ul>
|
|
11365
11808
|
<li><a href="https://github.com/nautobot/nautobot/issues/6518">#6518</a> - Added VRFs column to Prefixes and Child Prefixes tables.</li>
|
|
11366
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>
|
|
11367
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>
|
|
11368
11811
|
</ul>
|
|
11369
|
-
<h3 id="
|
|
11812
|
+
<h3 id="fixed-in-v2314">Fixed in v2.3.14<a class="headerlink" href="#fixed-in-v2314" title="Permanent link">¶</a></h3>
|
|
11370
11813
|
<ul>
|
|
11371
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>
|
|
11372
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>
|
|
@@ -11376,22 +11819,22 @@
|
|
|
11376
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>
|
|
11377
11820
|
<li><a href="https://github.com/nautobot/nautobot/issues/6678">#6678</a> - Fixed incorrect copy button behavior on global search page.</li>
|
|
11378
11821
|
</ul>
|
|
11379
|
-
<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>
|
|
11380
11823
|
<ul>
|
|
11381
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>
|
|
11382
11825
|
</ul>
|
|
11383
|
-
<h3 id="
|
|
11826
|
+
<h3 id="housekeeping-in-v2314">Housekeeping in v2.3.14<a class="headerlink" href="#housekeeping-in-v2314" title="Permanent link">¶</a></h3>
|
|
11384
11827
|
<ul>
|
|
11385
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>
|
|
11386
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>
|
|
11387
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>
|
|
11388
11831
|
</ul>
|
|
11389
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>
|
|
11390
|
-
<h3 id="
|
|
11833
|
+
<h3 id="security-in-v2313">Security in v2.3.13<a class="headerlink" href="#security-in-v2313" title="Permanent link">¶</a></h3>
|
|
11391
11834
|
<ul>
|
|
11392
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>
|
|
11393
11836
|
</ul>
|
|
11394
|
-
<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>
|
|
11395
11838
|
<ul>
|
|
11396
11839
|
<li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
|
|
11397
11840
|
<li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
|
|
@@ -11403,43 +11846,43 @@
|
|
|
11403
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>
|
|
11404
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>
|
|
11405
11848
|
</ul>
|
|
11406
|
-
<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>
|
|
11407
11850
|
<ul>
|
|
11408
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>
|
|
11409
11852
|
</ul>
|
|
11410
|
-
<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>
|
|
11411
11854
|
<ul>
|
|
11412
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>
|
|
11413
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>
|
|
11414
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>
|
|
11415
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Fixed error when using TableExtension when the table is missing Meta.default_columns
|
|
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>
|
|
11416
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>
|
|
11417
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>
|
|
11418
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>
|
|
11419
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>
|
|
11420
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>
|
|
11421
11864
|
</ul>
|
|
11422
|
-
<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>
|
|
11423
11866
|
<ul>
|
|
11424
11867
|
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
|
|
11425
11868
|
</ul>
|
|
11426
|
-
<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>
|
|
11427
11870
|
<ul>
|
|
11428
11871
|
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11429
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed group_sync path in the SSO documentation.</li>
|
|
11872
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed <code>group_sync</code> path in the SSO documentation.</li>
|
|
11430
11873
|
</ul>
|
|
11431
|
-
<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>
|
|
11432
11875
|
<ul>
|
|
11433
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>
|
|
11434
11877
|
</ul>
|
|
11435
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>
|
|
11436
|
-
<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>
|
|
11437
11880
|
<ul>
|
|
11438
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>
|
|
11439
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>
|
|
11440
11883
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11441
11884
|
</ul>
|
|
11442
|
-
<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>
|
|
11443
11886
|
<ul>
|
|
11444
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>
|
|
11445
11888
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11451,34 +11894,34 @@
|
|
|
11451
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>
|
|
11452
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>
|
|
11453
11896
|
</ul>
|
|
11454
|
-
<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>
|
|
11455
11898
|
<ul>
|
|
11456
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>
|
|
11457
11900
|
</ul>
|
|
11458
|
-
<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>
|
|
11459
11902
|
<ul>
|
|
11460
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>
|
|
11461
11904
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11462
11905
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11463
11906
|
</ul>
|
|
11464
|
-
<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>
|
|
11465
11908
|
<ul>
|
|
11466
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>
|
|
11467
11910
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11468
11911
|
</ul>
|
|
11469
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>
|
|
11470
|
-
<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>
|
|
11471
11914
|
<ul>
|
|
11472
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>
|
|
11473
11916
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11474
11917
|
</ul>
|
|
11475
|
-
<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>
|
|
11476
11919
|
<ul>
|
|
11477
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>
|
|
11478
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>
|
|
11479
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>
|
|
11480
11923
|
</ul>
|
|
11481
|
-
<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>
|
|
11482
11925
|
<ul>
|
|
11483
11926
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11484
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>
|
|
@@ -11489,11 +11932,11 @@
|
|
|
11489
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>
|
|
11490
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>
|
|
11491
11934
|
</ul>
|
|
11492
|
-
<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>
|
|
11493
11936
|
<ul>
|
|
11494
11937
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11495
11938
|
</ul>
|
|
11496
|
-
<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>
|
|
11497
11940
|
<ul>
|
|
11498
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>
|
|
11499
11942
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11502,62 +11945,62 @@
|
|
|
11502
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>
|
|
11503
11946
|
</ul>
|
|
11504
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>
|
|
11505
|
-
<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>
|
|
11506
11949
|
<ul>
|
|
11507
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>
|
|
11508
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>
|
|
11509
11952
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11510
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>
|
|
11511
11954
|
</ul>
|
|
11512
|
-
<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>
|
|
11513
11956
|
<ul>
|
|
11514
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>
|
|
11515
11958
|
</ul>
|
|
11516
|
-
<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>
|
|
11517
11960
|
<ul>
|
|
11518
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>
|
|
11519
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>
|
|
11520
11963
|
</ul>
|
|
11521
|
-
<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>
|
|
11522
11965
|
<ul>
|
|
11523
11966
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11524
11967
|
</ul>
|
|
11525
|
-
<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>
|
|
11526
11969
|
<ul>
|
|
11527
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>
|
|
11528
11971
|
</ul>
|
|
11529
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>
|
|
11530
|
-
<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>
|
|
11531
11974
|
<ul>
|
|
11532
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>
|
|
11533
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>
|
|
11534
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>
|
|
11535
11978
|
</ul>
|
|
11536
|
-
<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>
|
|
11537
11980
|
<ul>
|
|
11538
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>
|
|
11539
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>
|
|
11540
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>
|
|
11541
11984
|
</ul>
|
|
11542
|
-
<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>
|
|
11543
11986
|
<ul>
|
|
11544
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>
|
|
11545
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>
|
|
11546
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>
|
|
11547
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>
|
|
11548
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>
|
|
11549
|
-
<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>
|
|
11550
11993
|
</ul>
|
|
11551
|
-
<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>
|
|
11552
11995
|
<ul>
|
|
11553
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>
|
|
11554
11997
|
</ul>
|
|
11555
|
-
<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>
|
|
11556
11999
|
<ul>
|
|
11557
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>
|
|
11558
12001
|
</ul>
|
|
11559
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>
|
|
11560
|
-
<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>
|
|
11561
12004
|
<ul>
|
|
11562
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>
|
|
11563
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>
|
|
@@ -11566,27 +12009,27 @@
|
|
|
11566
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>
|
|
11567
12010
|
</ul>
|
|
11568
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>
|
|
11569
|
-
<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>
|
|
11570
12013
|
<ul>
|
|
11571
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>
|
|
11572
12015
|
</ul>
|
|
11573
|
-
<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>
|
|
11574
12017
|
<ul>
|
|
11575
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>
|
|
11576
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>
|
|
11577
12020
|
</ul>
|
|
11578
|
-
<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>
|
|
11579
12022
|
<ul>
|
|
11580
12023
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
11581
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>
|
|
11582
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>
|
|
11583
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>
|
|
11584
12027
|
</ul>
|
|
11585
|
-
<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>
|
|
11586
12029
|
<ul>
|
|
11587
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>
|
|
11588
12031
|
</ul>
|
|
11589
|
-
<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>
|
|
11590
12033
|
<ul>
|
|
11591
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>
|
|
11592
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>
|
|
@@ -11597,36 +12040,36 @@
|
|
|
11597
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>
|
|
11598
12041
|
</ul>
|
|
11599
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>
|
|
11600
|
-
<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>
|
|
11601
12044
|
<ul>
|
|
11602
12045
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
11603
12046
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
11604
12047
|
</ul>
|
|
11605
|
-
<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>
|
|
11606
12049
|
<ul>
|
|
11607
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>
|
|
11608
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>
|
|
11609
12052
|
</ul>
|
|
11610
|
-
<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>
|
|
11611
12054
|
<ul>
|
|
11612
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>
|
|
11613
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>
|
|
11614
12057
|
</ul>
|
|
11615
|
-
<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>
|
|
11616
12059
|
<ul>
|
|
11617
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>
|
|
11618
12061
|
</ul>
|
|
11619
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>
|
|
11620
|
-
<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>
|
|
11621
12064
|
<ul>
|
|
11622
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>
|
|
11623
12066
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
11624
12067
|
</ul>
|
|
11625
|
-
<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>
|
|
11626
12069
|
<ul>
|
|
11627
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>
|
|
11628
12071
|
</ul>
|
|
11629
|
-
<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>
|
|
11630
12073
|
<ul>
|
|
11631
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>
|
|
11632
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>
|
|
@@ -11637,16 +12080,16 @@
|
|
|
11637
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>
|
|
11638
12081
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
11639
12082
|
</ul>
|
|
11640
|
-
<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>
|
|
11641
12084
|
<ul>
|
|
11642
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>
|
|
11643
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>
|
|
11644
12087
|
</ul>
|
|
11645
|
-
<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>
|
|
11646
12089
|
<ul>
|
|
11647
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>
|
|
11648
12091
|
</ul>
|
|
11649
|
-
<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>
|
|
11650
12093
|
<ul>
|
|
11651
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>
|
|
11652
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>
|
|
@@ -11655,22 +12098,22 @@
|
|
|
11655
12098
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
11656
12099
|
</ul>
|
|
11657
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>
|
|
11658
|
-
<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>
|
|
11659
12102
|
<ul>
|
|
11660
12103
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
11661
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>
|
|
11662
12105
|
</ul>
|
|
11663
|
-
<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>
|
|
11664
12107
|
<ul>
|
|
11665
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>
|
|
11666
12109
|
</ul>
|
|
11667
|
-
<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>
|
|
11668
12111
|
<ul>
|
|
11669
12112
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
11670
12113
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
11671
12114
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
11672
12115
|
</ul>
|
|
11673
|
-
<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>
|
|
11674
12117
|
<ul>
|
|
11675
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>
|
|
11676
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>
|
|
@@ -11678,7 +12121,7 @@
|
|
|
11678
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>
|
|
11679
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>
|
|
11680
12123
|
</ul>
|
|
11681
|
-
<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>
|
|
11682
12125
|
<ul>
|
|
11683
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>
|
|
11684
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>
|
|
@@ -11686,22 +12129,22 @@
|
|
|
11686
12129
|
<li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
|
|
11687
12130
|
</ul>
|
|
11688
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>
|
|
11689
|
-
<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>
|
|
11690
12133
|
<ul>
|
|
11691
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>
|
|
11692
12135
|
</ul>
|
|
11693
|
-
<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>
|
|
11694
12137
|
<ul>
|
|
11695
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>
|
|
11696
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>
|
|
11697
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>
|
|
11698
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>
|
|
11699
12142
|
</ul>
|
|
11700
|
-
<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>
|
|
11701
12144
|
<ul>
|
|
11702
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>
|
|
11703
12146
|
</ul>
|
|
11704
|
-
<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>
|
|
11705
12148
|
<ul>
|
|
11706
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>
|
|
11707
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>
|
|
@@ -11711,18 +12154,18 @@
|
|
|
11711
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>
|
|
11712
12155
|
</ul>
|
|
11713
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>
|
|
11714
|
-
<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>
|
|
11715
12158
|
<ul>
|
|
11716
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>
|
|
11717
12160
|
</ul>
|
|
11718
|
-
<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>
|
|
11719
12162
|
<ul>
|
|
11720
12163
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
11721
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>
|
|
11722
12165
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
11723
12166
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
11724
12167
|
</ul>
|
|
11725
|
-
<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>
|
|
11726
12169
|
<ul>
|
|
11727
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>
|
|
11728
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>
|
|
@@ -11731,7 +12174,7 @@
|
|
|
11731
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>
|
|
11732
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>
|
|
11733
12176
|
</ul>
|
|
11734
|
-
<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>
|
|
11735
12178
|
<ul>
|
|
11736
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>
|
|
11737
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>
|
|
@@ -11739,33 +12182,33 @@
|
|
|
11739
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>
|
|
11740
12183
|
</ul>
|
|
11741
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>
|
|
11742
|
-
<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>
|
|
11743
12186
|
<ul>
|
|
11744
12187
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
11745
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>
|
|
11746
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>
|
|
11747
12190
|
</ul>
|
|
11748
|
-
<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>
|
|
11749
12192
|
<ul>
|
|
11750
12193
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
11751
12194
|
</ul>
|
|
11752
|
-
<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>
|
|
11753
12196
|
<ul>
|
|
11754
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>
|
|
11755
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>
|
|
11756
12199
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
11757
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>
|
|
11758
12201
|
</ul>
|
|
11759
|
-
<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>
|
|
11760
12203
|
<ul>
|
|
11761
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>
|
|
11762
12205
|
</ul>
|
|
11763
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>
|
|
11764
|
-
<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>
|
|
11765
12208
|
<ul>
|
|
11766
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>
|
|
11767
12210
|
</ul>
|
|
11768
|
-
<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>
|
|
11769
12212
|
<ul>
|
|
11770
12213
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
11771
12214
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -11775,7 +12218,7 @@
|
|
|
11775
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>
|
|
11776
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>
|
|
11777
12220
|
</ul>
|
|
11778
|
-
<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>
|
|
11779
12222
|
<ul>
|
|
11780
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>
|
|
11781
12224
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -11784,12 +12227,12 @@
|
|
|
11784
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>
|
|
11785
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>
|
|
11786
12229
|
</ul>
|
|
11787
|
-
<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>
|
|
11788
12231
|
<ul>
|
|
11789
12232
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
11790
12233
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
11791
12234
|
</ul>
|
|
11792
|
-
<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>
|
|
11793
12236
|
<ul>
|
|
11794
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>
|
|
11795
12238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -11805,7 +12248,7 @@
|
|
|
11805
12248
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
11806
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>
|
|
11807
12250
|
</ul>
|
|
11808
|
-
<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>
|
|
11809
12252
|
<ul>
|
|
11810
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>
|
|
11811
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>
|
|
@@ -11813,7 +12256,7 @@
|
|
|
11813
12256
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
11814
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>
|
|
11815
12258
|
</ul>
|
|
11816
|
-
<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>
|
|
11817
12260
|
<ul>
|
|
11818
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>
|
|
11819
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>
|
|
@@ -11824,11 +12267,11 @@
|
|
|
11824
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>
|
|
11825
12268
|
</ul>
|
|
11826
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>
|
|
11827
|
-
<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>
|
|
11828
12271
|
<ul>
|
|
11829
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>
|
|
11830
12273
|
</ul>
|
|
11831
|
-
<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>
|
|
11832
12275
|
<ul>
|
|
11833
12276
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
11834
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>
|
|
@@ -11875,7 +12318,7 @@
|
|
|
11875
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>
|
|
11876
12319
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
11877
12320
|
</ul>
|
|
11878
|
-
<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>
|
|
11879
12322
|
<ul>
|
|
11880
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>
|
|
11881
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>
|
|
@@ -11907,19 +12350,19 @@
|
|
|
11907
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>
|
|
11908
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>
|
|
11909
12352
|
</ul>
|
|
11910
|
-
<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>
|
|
11911
12354
|
<ul>
|
|
11912
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>
|
|
11913
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>
|
|
11914
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>
|
|
11915
12358
|
</ul>
|
|
11916
|
-
<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>
|
|
11917
12360
|
<ul>
|
|
11918
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>
|
|
11919
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>
|
|
11920
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>
|
|
11921
12364
|
</ul>
|
|
11922
|
-
<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>
|
|
11923
12366
|
<ul>
|
|
11924
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>
|
|
11925
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>
|
|
@@ -11943,7 +12386,7 @@
|
|
|
11943
12386
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
11944
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>
|
|
11945
12388
|
</ul>
|
|
11946
|
-
<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>
|
|
11947
12390
|
<ul>
|
|
11948
12391
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
11949
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>
|
|
@@ -11969,13 +12412,13 @@
|
|
|
11969
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>
|
|
11970
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>
|
|
11971
12414
|
</ul>
|
|
11972
|
-
<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>
|
|
11973
12416
|
<ul>
|
|
11974
12417
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
11975
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>
|
|
11976
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
11977
12420
|
</ul>
|
|
11978
|
-
<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>
|
|
11979
12422
|
<ul>
|
|
11980
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>
|
|
11981
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>
|
|
@@ -12031,7 +12474,7 @@
|
|
|
12031
12474
|
<nav class="md-footer__inner md-grid" aria-label="Footer" >
|
|
12032
12475
|
|
|
12033
12476
|
|
|
12034
|
-
<a href="
|
|
12477
|
+
<a href="version-2.4.html" class="md-footer__link md-footer__link--prev" aria-label="Previous: Version 2.4">
|
|
12035
12478
|
<div class="md-footer__button md-icon">
|
|
12036
12479
|
|
|
12037
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>
|
|
@@ -12041,7 +12484,7 @@
|
|
|
12041
12484
|
Previous
|
|
12042
12485
|
</span>
|
|
12043
12486
|
<div class="md-ellipsis">
|
|
12044
|
-
|
|
12487
|
+
Version 2.4
|
|
12045
12488
|
</div>
|
|
12046
12489
|
</div>
|
|
12047
12490
|
</a>
|
|
@@ -12143,7 +12586,7 @@
|
|
|
12143
12586
|
</div>
|
|
12144
12587
|
|
|
12145
12588
|
|
|
12146
|
-
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
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>
|
|
12147
12590
|
|
|
12148
12591
|
|
|
12149
12592
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|