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
|
@@ -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
|
|
|
@@ -7991,6 +8414,27 @@
|
|
|
7991
8414
|
|
|
7992
8415
|
|
|
7993
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
|
+
|
|
8436
|
+
|
|
8437
|
+
|
|
7994
8438
|
<li class="md-nav__item">
|
|
7995
8439
|
<a href="version-2.3.html" class="md-nav__link">
|
|
7996
8440
|
|
|
@@ -8297,18 +8741,18 @@
|
|
|
8297
8741
|
<ul class="md-nav__list">
|
|
8298
8742
|
|
|
8299
8743
|
<li class="md-nav__item">
|
|
8300
|
-
<a href="#security" class="md-nav__link">
|
|
8744
|
+
<a href="#security-in-v1524" class="md-nav__link">
|
|
8301
8745
|
<span class="md-ellipsis">
|
|
8302
|
-
Security
|
|
8746
|
+
Security in v1.5.24
|
|
8303
8747
|
</span>
|
|
8304
8748
|
</a>
|
|
8305
8749
|
|
|
8306
8750
|
</li>
|
|
8307
8751
|
|
|
8308
8752
|
<li class="md-nav__item">
|
|
8309
|
-
<a href="#fixed" class="md-nav__link">
|
|
8753
|
+
<a href="#fixed-in-v1524" class="md-nav__link">
|
|
8310
8754
|
<span class="md-ellipsis">
|
|
8311
|
-
Fixed
|
|
8755
|
+
Fixed in v1.5.24
|
|
8312
8756
|
</span>
|
|
8313
8757
|
</a>
|
|
8314
8758
|
|
|
@@ -8330,63 +8774,63 @@
|
|
|
8330
8774
|
<ul class="md-nav__list">
|
|
8331
8775
|
|
|
8332
8776
|
<li class="md-nav__item">
|
|
8333
|
-
<a href="#
|
|
8777
|
+
<a href="#security-in-v1523" class="md-nav__link">
|
|
8334
8778
|
<span class="md-ellipsis">
|
|
8335
|
-
Security
|
|
8779
|
+
Security in v1.5.23
|
|
8336
8780
|
</span>
|
|
8337
8781
|
</a>
|
|
8338
8782
|
|
|
8339
8783
|
</li>
|
|
8340
8784
|
|
|
8341
8785
|
<li class="md-nav__item">
|
|
8342
|
-
<a href="#
|
|
8786
|
+
<a href="#added-in-v1523" class="md-nav__link">
|
|
8343
8787
|
<span class="md-ellipsis">
|
|
8344
|
-
Added
|
|
8788
|
+
Added in v1.5.23
|
|
8345
8789
|
</span>
|
|
8346
8790
|
</a>
|
|
8347
8791
|
|
|
8348
8792
|
</li>
|
|
8349
8793
|
|
|
8350
8794
|
<li class="md-nav__item">
|
|
8351
|
-
<a href="#
|
|
8795
|
+
<a href="#changed-in-v1523" class="md-nav__link">
|
|
8352
8796
|
<span class="md-ellipsis">
|
|
8353
|
-
Changed
|
|
8797
|
+
Changed in v1.5.23
|
|
8354
8798
|
</span>
|
|
8355
8799
|
</a>
|
|
8356
8800
|
|
|
8357
8801
|
</li>
|
|
8358
8802
|
|
|
8359
8803
|
<li class="md-nav__item">
|
|
8360
|
-
<a href="#
|
|
8804
|
+
<a href="#fixed-in-v1523" class="md-nav__link">
|
|
8361
8805
|
<span class="md-ellipsis">
|
|
8362
|
-
Fixed
|
|
8806
|
+
Fixed in v1.5.23
|
|
8363
8807
|
</span>
|
|
8364
8808
|
</a>
|
|
8365
8809
|
|
|
8366
8810
|
</li>
|
|
8367
8811
|
|
|
8368
8812
|
<li class="md-nav__item">
|
|
8369
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8813
|
+
<a href="#dependencies-in-v1523" class="md-nav__link">
|
|
8370
8814
|
<span class="md-ellipsis">
|
|
8371
|
-
Dependencies
|
|
8815
|
+
Dependencies in v1.5.23
|
|
8372
8816
|
</span>
|
|
8373
8817
|
</a>
|
|
8374
8818
|
|
|
8375
8819
|
</li>
|
|
8376
8820
|
|
|
8377
8821
|
<li class="md-nav__item">
|
|
8378
|
-
<a href="#documentation" class="md-nav__link">
|
|
8822
|
+
<a href="#documentation-in-v1523" class="md-nav__link">
|
|
8379
8823
|
<span class="md-ellipsis">
|
|
8380
|
-
Documentation
|
|
8824
|
+
Documentation in v1.5.23
|
|
8381
8825
|
</span>
|
|
8382
8826
|
</a>
|
|
8383
8827
|
|
|
8384
8828
|
</li>
|
|
8385
8829
|
|
|
8386
8830
|
<li class="md-nav__item">
|
|
8387
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8831
|
+
<a href="#housekeeping-in-v1523" class="md-nav__link">
|
|
8388
8832
|
<span class="md-ellipsis">
|
|
8389
|
-
Housekeeping
|
|
8833
|
+
Housekeeping in v1.5.23
|
|
8390
8834
|
</span>
|
|
8391
8835
|
</a>
|
|
8392
8836
|
|
|
@@ -8408,45 +8852,45 @@
|
|
|
8408
8852
|
<ul class="md-nav__list">
|
|
8409
8853
|
|
|
8410
8854
|
<li class="md-nav__item">
|
|
8411
|
-
<a href="#
|
|
8855
|
+
<a href="#security-in-v1522" class="md-nav__link">
|
|
8412
8856
|
<span class="md-ellipsis">
|
|
8413
|
-
Security
|
|
8857
|
+
Security in v1.5.22
|
|
8414
8858
|
</span>
|
|
8415
8859
|
</a>
|
|
8416
8860
|
|
|
8417
8861
|
</li>
|
|
8418
8862
|
|
|
8419
8863
|
<li class="md-nav__item">
|
|
8420
|
-
<a href="#
|
|
8864
|
+
<a href="#added-in-v1522" class="md-nav__link">
|
|
8421
8865
|
<span class="md-ellipsis">
|
|
8422
|
-
Added
|
|
8866
|
+
Added in v1.5.22
|
|
8423
8867
|
</span>
|
|
8424
8868
|
</a>
|
|
8425
8869
|
|
|
8426
8870
|
</li>
|
|
8427
8871
|
|
|
8428
8872
|
<li class="md-nav__item">
|
|
8429
|
-
<a href="#
|
|
8873
|
+
<a href="#fixed-in-v1522" class="md-nav__link">
|
|
8430
8874
|
<span class="md-ellipsis">
|
|
8431
|
-
Fixed
|
|
8875
|
+
Fixed in v1.5.22
|
|
8432
8876
|
</span>
|
|
8433
8877
|
</a>
|
|
8434
8878
|
|
|
8435
8879
|
</li>
|
|
8436
8880
|
|
|
8437
8881
|
<li class="md-nav__item">
|
|
8438
|
-
<a href="#
|
|
8882
|
+
<a href="#documentation-in-v1522" class="md-nav__link">
|
|
8439
8883
|
<span class="md-ellipsis">
|
|
8440
|
-
Documentation
|
|
8884
|
+
Documentation in v1.5.22
|
|
8441
8885
|
</span>
|
|
8442
8886
|
</a>
|
|
8443
8887
|
|
|
8444
8888
|
</li>
|
|
8445
8889
|
|
|
8446
8890
|
<li class="md-nav__item">
|
|
8447
|
-
<a href="#
|
|
8891
|
+
<a href="#housekeeping-in-v1522" class="md-nav__link">
|
|
8448
8892
|
<span class="md-ellipsis">
|
|
8449
|
-
Housekeeping
|
|
8893
|
+
Housekeeping in v1.5.22
|
|
8450
8894
|
</span>
|
|
8451
8895
|
</a>
|
|
8452
8896
|
|
|
@@ -8468,36 +8912,36 @@
|
|
|
8468
8912
|
<ul class="md-nav__list">
|
|
8469
8913
|
|
|
8470
8914
|
<li class="md-nav__item">
|
|
8471
|
-
<a href="#
|
|
8915
|
+
<a href="#added-in-v1521" class="md-nav__link">
|
|
8472
8916
|
<span class="md-ellipsis">
|
|
8473
|
-
Added
|
|
8917
|
+
Added in v1.5.21
|
|
8474
8918
|
</span>
|
|
8475
8919
|
</a>
|
|
8476
8920
|
|
|
8477
8921
|
</li>
|
|
8478
8922
|
|
|
8479
8923
|
<li class="md-nav__item">
|
|
8480
|
-
<a href="#
|
|
8924
|
+
<a href="#fixed-in-v1521" class="md-nav__link">
|
|
8481
8925
|
<span class="md-ellipsis">
|
|
8482
|
-
Fixed
|
|
8926
|
+
Fixed in v1.5.21
|
|
8483
8927
|
</span>
|
|
8484
8928
|
</a>
|
|
8485
8929
|
|
|
8486
8930
|
</li>
|
|
8487
8931
|
|
|
8488
8932
|
<li class="md-nav__item">
|
|
8489
|
-
<a href="#
|
|
8933
|
+
<a href="#dependencies-in-v1521" class="md-nav__link">
|
|
8490
8934
|
<span class="md-ellipsis">
|
|
8491
|
-
Dependencies
|
|
8935
|
+
Dependencies in v1.5.21
|
|
8492
8936
|
</span>
|
|
8493
8937
|
</a>
|
|
8494
8938
|
|
|
8495
8939
|
</li>
|
|
8496
8940
|
|
|
8497
8941
|
<li class="md-nav__item">
|
|
8498
|
-
<a href="#
|
|
8942
|
+
<a href="#documentation-in-v1521" class="md-nav__link">
|
|
8499
8943
|
<span class="md-ellipsis">
|
|
8500
|
-
Documentation
|
|
8944
|
+
Documentation in v1.5.21
|
|
8501
8945
|
</span>
|
|
8502
8946
|
</a>
|
|
8503
8947
|
|
|
@@ -8519,27 +8963,27 @@
|
|
|
8519
8963
|
<ul class="md-nav__list">
|
|
8520
8964
|
|
|
8521
8965
|
<li class="md-nav__item">
|
|
8522
|
-
<a href="#
|
|
8966
|
+
<a href="#changed-in-v1520" class="md-nav__link">
|
|
8523
8967
|
<span class="md-ellipsis">
|
|
8524
|
-
Changed
|
|
8968
|
+
Changed in v1.5.20
|
|
8525
8969
|
</span>
|
|
8526
8970
|
</a>
|
|
8527
8971
|
|
|
8528
8972
|
</li>
|
|
8529
8973
|
|
|
8530
8974
|
<li class="md-nav__item">
|
|
8531
|
-
<a href="#
|
|
8975
|
+
<a href="#fixed-in-v1520" class="md-nav__link">
|
|
8532
8976
|
<span class="md-ellipsis">
|
|
8533
|
-
Fixed
|
|
8977
|
+
Fixed in v1.5.20
|
|
8534
8978
|
</span>
|
|
8535
8979
|
</a>
|
|
8536
8980
|
|
|
8537
8981
|
</li>
|
|
8538
8982
|
|
|
8539
8983
|
<li class="md-nav__item">
|
|
8540
|
-
<a href="#
|
|
8984
|
+
<a href="#documentation-in-v1520" class="md-nav__link">
|
|
8541
8985
|
<span class="md-ellipsis">
|
|
8542
|
-
Documentation
|
|
8986
|
+
Documentation in v1.5.20
|
|
8543
8987
|
</span>
|
|
8544
8988
|
</a>
|
|
8545
8989
|
|
|
@@ -8561,54 +9005,54 @@
|
|
|
8561
9005
|
<ul class="md-nav__list">
|
|
8562
9006
|
|
|
8563
9007
|
<li class="md-nav__item">
|
|
8564
|
-
<a href="#
|
|
9008
|
+
<a href="#security-in-v1519" class="md-nav__link">
|
|
8565
9009
|
<span class="md-ellipsis">
|
|
8566
|
-
Security
|
|
9010
|
+
Security in v1.5.19
|
|
8567
9011
|
</span>
|
|
8568
9012
|
</a>
|
|
8569
9013
|
|
|
8570
9014
|
</li>
|
|
8571
9015
|
|
|
8572
9016
|
<li class="md-nav__item">
|
|
8573
|
-
<a href="#
|
|
9017
|
+
<a href="#changed-in-v1519" class="md-nav__link">
|
|
8574
9018
|
<span class="md-ellipsis">
|
|
8575
|
-
Changed
|
|
9019
|
+
Changed in v1.5.19
|
|
8576
9020
|
</span>
|
|
8577
9021
|
</a>
|
|
8578
9022
|
|
|
8579
9023
|
</li>
|
|
8580
9024
|
|
|
8581
9025
|
<li class="md-nav__item">
|
|
8582
|
-
<a href="#
|
|
9026
|
+
<a href="#fixed-in-v1519" class="md-nav__link">
|
|
8583
9027
|
<span class="md-ellipsis">
|
|
8584
|
-
Fixed
|
|
9028
|
+
Fixed in v1.5.19
|
|
8585
9029
|
</span>
|
|
8586
9030
|
</a>
|
|
8587
9031
|
|
|
8588
9032
|
</li>
|
|
8589
9033
|
|
|
8590
9034
|
<li class="md-nav__item">
|
|
8591
|
-
<a href="#
|
|
9035
|
+
<a href="#dependencies-in-v1519" class="md-nav__link">
|
|
8592
9036
|
<span class="md-ellipsis">
|
|
8593
|
-
Dependencies
|
|
9037
|
+
Dependencies in v1.5.19
|
|
8594
9038
|
</span>
|
|
8595
9039
|
</a>
|
|
8596
9040
|
|
|
8597
9041
|
</li>
|
|
8598
9042
|
|
|
8599
9043
|
<li class="md-nav__item">
|
|
8600
|
-
<a href="#
|
|
9044
|
+
<a href="#documentation-in-v1519" class="md-nav__link">
|
|
8601
9045
|
<span class="md-ellipsis">
|
|
8602
|
-
Documentation
|
|
9046
|
+
Documentation in v1.5.19
|
|
8603
9047
|
</span>
|
|
8604
9048
|
</a>
|
|
8605
9049
|
|
|
8606
9050
|
</li>
|
|
8607
9051
|
|
|
8608
9052
|
<li class="md-nav__item">
|
|
8609
|
-
<a href="#
|
|
9053
|
+
<a href="#housekeeping-in-v1519" class="md-nav__link">
|
|
8610
9054
|
<span class="md-ellipsis">
|
|
8611
|
-
Housekeeping
|
|
9055
|
+
Housekeeping in v1.5.19
|
|
8612
9056
|
</span>
|
|
8613
9057
|
</a>
|
|
8614
9058
|
|
|
@@ -8630,54 +9074,54 @@
|
|
|
8630
9074
|
<ul class="md-nav__list">
|
|
8631
9075
|
|
|
8632
9076
|
<li class="md-nav__item">
|
|
8633
|
-
<a href="#
|
|
9077
|
+
<a href="#security-in-v1518" class="md-nav__link">
|
|
8634
9078
|
<span class="md-ellipsis">
|
|
8635
|
-
Security
|
|
9079
|
+
Security in v1.5.18
|
|
8636
9080
|
</span>
|
|
8637
9081
|
</a>
|
|
8638
9082
|
|
|
8639
9083
|
</li>
|
|
8640
9084
|
|
|
8641
9085
|
<li class="md-nav__item">
|
|
8642
|
-
<a href="#
|
|
9086
|
+
<a href="#added-in-v1518" class="md-nav__link">
|
|
8643
9087
|
<span class="md-ellipsis">
|
|
8644
|
-
Added
|
|
9088
|
+
Added in v1.5.18
|
|
8645
9089
|
</span>
|
|
8646
9090
|
</a>
|
|
8647
9091
|
|
|
8648
9092
|
</li>
|
|
8649
9093
|
|
|
8650
9094
|
<li class="md-nav__item">
|
|
8651
|
-
<a href="#
|
|
9095
|
+
<a href="#changed-in-v1518" class="md-nav__link">
|
|
8652
9096
|
<span class="md-ellipsis">
|
|
8653
|
-
Changed
|
|
9097
|
+
Changed in v1.5.18
|
|
8654
9098
|
</span>
|
|
8655
9099
|
</a>
|
|
8656
9100
|
|
|
8657
9101
|
</li>
|
|
8658
9102
|
|
|
8659
9103
|
<li class="md-nav__item">
|
|
8660
|
-
<a href="#
|
|
9104
|
+
<a href="#fixed-in-v1518" class="md-nav__link">
|
|
8661
9105
|
<span class="md-ellipsis">
|
|
8662
|
-
Fixed
|
|
9106
|
+
Fixed in v1.5.18
|
|
8663
9107
|
</span>
|
|
8664
9108
|
</a>
|
|
8665
9109
|
|
|
8666
9110
|
</li>
|
|
8667
9111
|
|
|
8668
9112
|
<li class="md-nav__item">
|
|
8669
|
-
<a href="#
|
|
9113
|
+
<a href="#documentation-in-v1518" class="md-nav__link">
|
|
8670
9114
|
<span class="md-ellipsis">
|
|
8671
|
-
Documentation
|
|
9115
|
+
Documentation in v1.5.18
|
|
8672
9116
|
</span>
|
|
8673
9117
|
</a>
|
|
8674
9118
|
|
|
8675
9119
|
</li>
|
|
8676
9120
|
|
|
8677
9121
|
<li class="md-nav__item">
|
|
8678
|
-
<a href="#
|
|
9122
|
+
<a href="#housekeeping-in-v1518" class="md-nav__link">
|
|
8679
9123
|
<span class="md-ellipsis">
|
|
8680
|
-
Housekeeping
|
|
9124
|
+
Housekeeping in v1.5.18
|
|
8681
9125
|
</span>
|
|
8682
9126
|
</a>
|
|
8683
9127
|
|
|
@@ -8699,45 +9143,45 @@
|
|
|
8699
9143
|
<ul class="md-nav__list">
|
|
8700
9144
|
|
|
8701
9145
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#
|
|
9146
|
+
<a href="#added-in-v1517" class="md-nav__link">
|
|
8703
9147
|
<span class="md-ellipsis">
|
|
8704
|
-
Added
|
|
9148
|
+
Added in v1.5.17
|
|
8705
9149
|
</span>
|
|
8706
9150
|
</a>
|
|
8707
9151
|
|
|
8708
9152
|
</li>
|
|
8709
9153
|
|
|
8710
9154
|
<li class="md-nav__item">
|
|
8711
|
-
<a href="#
|
|
9155
|
+
<a href="#changed-in-v1517" class="md-nav__link">
|
|
8712
9156
|
<span class="md-ellipsis">
|
|
8713
|
-
Changed
|
|
9157
|
+
Changed in v1.5.17
|
|
8714
9158
|
</span>
|
|
8715
9159
|
</a>
|
|
8716
9160
|
|
|
8717
9161
|
</li>
|
|
8718
9162
|
|
|
8719
9163
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
9164
|
+
<a href="#fixed-in-v1517" class="md-nav__link">
|
|
8721
9165
|
<span class="md-ellipsis">
|
|
8722
|
-
Fixed
|
|
9166
|
+
Fixed in v1.5.17
|
|
8723
9167
|
</span>
|
|
8724
9168
|
</a>
|
|
8725
9169
|
|
|
8726
9170
|
</li>
|
|
8727
9171
|
|
|
8728
9172
|
<li class="md-nav__item">
|
|
8729
|
-
<a href="#
|
|
9173
|
+
<a href="#dependencies-in-v1517" class="md-nav__link">
|
|
8730
9174
|
<span class="md-ellipsis">
|
|
8731
|
-
Dependencies
|
|
9175
|
+
Dependencies in v1.5.17
|
|
8732
9176
|
</span>
|
|
8733
9177
|
</a>
|
|
8734
9178
|
|
|
8735
9179
|
</li>
|
|
8736
9180
|
|
|
8737
9181
|
<li class="md-nav__item">
|
|
8738
|
-
<a href="#
|
|
9182
|
+
<a href="#documentation-in-v1517" class="md-nav__link">
|
|
8739
9183
|
<span class="md-ellipsis">
|
|
8740
|
-
Documentation
|
|
9184
|
+
Documentation in v1.5.17
|
|
8741
9185
|
</span>
|
|
8742
9186
|
</a>
|
|
8743
9187
|
|
|
@@ -8759,27 +9203,27 @@
|
|
|
8759
9203
|
<ul class="md-nav__list">
|
|
8760
9204
|
|
|
8761
9205
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
9206
|
+
<a href="#fixed-in-v1516" class="md-nav__link">
|
|
8763
9207
|
<span class="md-ellipsis">
|
|
8764
|
-
Fixed
|
|
9208
|
+
Fixed in v1.5.16
|
|
8765
9209
|
</span>
|
|
8766
9210
|
</a>
|
|
8767
9211
|
|
|
8768
9212
|
</li>
|
|
8769
9213
|
|
|
8770
9214
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#
|
|
9215
|
+
<a href="#documentation-in-v1516" class="md-nav__link">
|
|
8772
9216
|
<span class="md-ellipsis">
|
|
8773
|
-
Documentation
|
|
9217
|
+
Documentation in v1.5.16
|
|
8774
9218
|
</span>
|
|
8775
9219
|
</a>
|
|
8776
9220
|
|
|
8777
9221
|
</li>
|
|
8778
9222
|
|
|
8779
9223
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#
|
|
9224
|
+
<a href="#housekeeping-in-v1516" class="md-nav__link">
|
|
8781
9225
|
<span class="md-ellipsis">
|
|
8782
|
-
Housekeeping
|
|
9226
|
+
Housekeeping in v1.5.16
|
|
8783
9227
|
</span>
|
|
8784
9228
|
</a>
|
|
8785
9229
|
|
|
@@ -8801,63 +9245,63 @@
|
|
|
8801
9245
|
<ul class="md-nav__list">
|
|
8802
9246
|
|
|
8803
9247
|
<li class="md-nav__item">
|
|
8804
|
-
<a href="#
|
|
9248
|
+
<a href="#security-in-v1515" class="md-nav__link">
|
|
8805
9249
|
<span class="md-ellipsis">
|
|
8806
|
-
Security
|
|
9250
|
+
Security in v1.5.15
|
|
8807
9251
|
</span>
|
|
8808
9252
|
</a>
|
|
8809
9253
|
|
|
8810
9254
|
</li>
|
|
8811
9255
|
|
|
8812
9256
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#
|
|
9257
|
+
<a href="#changed-in-v1515" class="md-nav__link">
|
|
8814
9258
|
<span class="md-ellipsis">
|
|
8815
|
-
Changed
|
|
9259
|
+
Changed in v1.5.15
|
|
8816
9260
|
</span>
|
|
8817
9261
|
</a>
|
|
8818
9262
|
|
|
8819
9263
|
</li>
|
|
8820
9264
|
|
|
8821
9265
|
<li class="md-nav__item">
|
|
8822
|
-
<a href="#removed" class="md-nav__link">
|
|
9266
|
+
<a href="#removed-in-v1515" class="md-nav__link">
|
|
8823
9267
|
<span class="md-ellipsis">
|
|
8824
|
-
Removed
|
|
9268
|
+
Removed in v1.5.15
|
|
8825
9269
|
</span>
|
|
8826
9270
|
</a>
|
|
8827
9271
|
|
|
8828
9272
|
</li>
|
|
8829
9273
|
|
|
8830
9274
|
<li class="md-nav__item">
|
|
8831
|
-
<a href="#
|
|
9275
|
+
<a href="#fixed-in-v1515" class="md-nav__link">
|
|
8832
9276
|
<span class="md-ellipsis">
|
|
8833
|
-
Fixed
|
|
9277
|
+
Fixed in v1.5.15
|
|
8834
9278
|
</span>
|
|
8835
9279
|
</a>
|
|
8836
9280
|
|
|
8837
9281
|
</li>
|
|
8838
9282
|
|
|
8839
9283
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
9284
|
+
<a href="#dependencies-in-v1515" class="md-nav__link">
|
|
8841
9285
|
<span class="md-ellipsis">
|
|
8842
|
-
Dependencies
|
|
9286
|
+
Dependencies in v1.5.15
|
|
8843
9287
|
</span>
|
|
8844
9288
|
</a>
|
|
8845
9289
|
|
|
8846
9290
|
</li>
|
|
8847
9291
|
|
|
8848
9292
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
9293
|
+
<a href="#documentation-in-v1515" class="md-nav__link">
|
|
8850
9294
|
<span class="md-ellipsis">
|
|
8851
|
-
Documentation
|
|
9295
|
+
Documentation in v1.5.15
|
|
8852
9296
|
</span>
|
|
8853
9297
|
</a>
|
|
8854
9298
|
|
|
8855
9299
|
</li>
|
|
8856
9300
|
|
|
8857
9301
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#
|
|
9302
|
+
<a href="#housekeeping-in-v1515" class="md-nav__link">
|
|
8859
9303
|
<span class="md-ellipsis">
|
|
8860
|
-
Housekeeping
|
|
9304
|
+
Housekeeping in v1.5.15
|
|
8861
9305
|
</span>
|
|
8862
9306
|
</a>
|
|
8863
9307
|
|
|
@@ -8879,27 +9323,27 @@
|
|
|
8879
9323
|
<ul class="md-nav__list">
|
|
8880
9324
|
|
|
8881
9325
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
9326
|
+
<a href="#added-in-v1514" class="md-nav__link">
|
|
8883
9327
|
<span class="md-ellipsis">
|
|
8884
|
-
Added
|
|
9328
|
+
Added in v1.5.14
|
|
8885
9329
|
</span>
|
|
8886
9330
|
</a>
|
|
8887
9331
|
|
|
8888
9332
|
</li>
|
|
8889
9333
|
|
|
8890
9334
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
9335
|
+
<a href="#documentation-in-v1514" class="md-nav__link">
|
|
8892
9336
|
<span class="md-ellipsis">
|
|
8893
|
-
Documentation
|
|
9337
|
+
Documentation in v1.5.14
|
|
8894
9338
|
</span>
|
|
8895
9339
|
</a>
|
|
8896
9340
|
|
|
8897
9341
|
</li>
|
|
8898
9342
|
|
|
8899
9343
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#
|
|
9344
|
+
<a href="#housekeeping-in-v1514" class="md-nav__link">
|
|
8901
9345
|
<span class="md-ellipsis">
|
|
8902
|
-
Housekeeping
|
|
9346
|
+
Housekeeping in v1.5.14
|
|
8903
9347
|
</span>
|
|
8904
9348
|
</a>
|
|
8905
9349
|
|
|
@@ -8921,54 +9365,54 @@
|
|
|
8921
9365
|
<ul class="md-nav__list">
|
|
8922
9366
|
|
|
8923
9367
|
<li class="md-nav__item">
|
|
8924
|
-
<a href="#
|
|
9368
|
+
<a href="#added-in-v1513" class="md-nav__link">
|
|
8925
9369
|
<span class="md-ellipsis">
|
|
8926
|
-
Added
|
|
9370
|
+
Added in v1.5.13
|
|
8927
9371
|
</span>
|
|
8928
9372
|
</a>
|
|
8929
9373
|
|
|
8930
9374
|
</li>
|
|
8931
9375
|
|
|
8932
9376
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#
|
|
9377
|
+
<a href="#changed-in-v1513" class="md-nav__link">
|
|
8934
9378
|
<span class="md-ellipsis">
|
|
8935
|
-
Changed
|
|
9379
|
+
Changed in v1.5.13
|
|
8936
9380
|
</span>
|
|
8937
9381
|
</a>
|
|
8938
9382
|
|
|
8939
9383
|
</li>
|
|
8940
9384
|
|
|
8941
9385
|
<li class="md-nav__item">
|
|
8942
|
-
<a href="#
|
|
9386
|
+
<a href="#removed-in-v1513" class="md-nav__link">
|
|
8943
9387
|
<span class="md-ellipsis">
|
|
8944
|
-
Removed
|
|
9388
|
+
Removed in v1.5.13
|
|
8945
9389
|
</span>
|
|
8946
9390
|
</a>
|
|
8947
9391
|
|
|
8948
9392
|
</li>
|
|
8949
9393
|
|
|
8950
9394
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
9395
|
+
<a href="#fixed-in-v1513" class="md-nav__link">
|
|
8952
9396
|
<span class="md-ellipsis">
|
|
8953
|
-
Fixed
|
|
9397
|
+
Fixed in v1.5.13
|
|
8954
9398
|
</span>
|
|
8955
9399
|
</a>
|
|
8956
9400
|
|
|
8957
9401
|
</li>
|
|
8958
9402
|
|
|
8959
9403
|
<li class="md-nav__item">
|
|
8960
|
-
<a href="#
|
|
9404
|
+
<a href="#dependencies-in-v1513" class="md-nav__link">
|
|
8961
9405
|
<span class="md-ellipsis">
|
|
8962
|
-
Dependencies
|
|
9406
|
+
Dependencies in v1.5.13
|
|
8963
9407
|
</span>
|
|
8964
9408
|
</a>
|
|
8965
9409
|
|
|
8966
9410
|
</li>
|
|
8967
9411
|
|
|
8968
9412
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
9413
|
+
<a href="#documentation-in-v1513" class="md-nav__link">
|
|
8970
9414
|
<span class="md-ellipsis">
|
|
8971
|
-
Documentation
|
|
9415
|
+
Documentation in v1.5.13
|
|
8972
9416
|
</span>
|
|
8973
9417
|
</a>
|
|
8974
9418
|
|
|
@@ -8990,36 +9434,36 @@
|
|
|
8990
9434
|
<ul class="md-nav__list">
|
|
8991
9435
|
|
|
8992
9436
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
9437
|
+
<a href="#added-in-v1512" class="md-nav__link">
|
|
8994
9438
|
<span class="md-ellipsis">
|
|
8995
|
-
Added
|
|
9439
|
+
Added in v1.5.12
|
|
8996
9440
|
</span>
|
|
8997
9441
|
</a>
|
|
8998
9442
|
|
|
8999
9443
|
</li>
|
|
9000
9444
|
|
|
9001
9445
|
<li class="md-nav__item">
|
|
9002
|
-
<a href="#
|
|
9446
|
+
<a href="#changed-in-v1512" class="md-nav__link">
|
|
9003
9447
|
<span class="md-ellipsis">
|
|
9004
|
-
Changed
|
|
9448
|
+
Changed in v1.5.12
|
|
9005
9449
|
</span>
|
|
9006
9450
|
</a>
|
|
9007
9451
|
|
|
9008
9452
|
</li>
|
|
9009
9453
|
|
|
9010
9454
|
<li class="md-nav__item">
|
|
9011
|
-
<a href="#
|
|
9455
|
+
<a href="#fixed-in-v1512" class="md-nav__link">
|
|
9012
9456
|
<span class="md-ellipsis">
|
|
9013
|
-
Fixed
|
|
9457
|
+
Fixed in v1.5.12
|
|
9014
9458
|
</span>
|
|
9015
9459
|
</a>
|
|
9016
9460
|
|
|
9017
9461
|
</li>
|
|
9018
9462
|
|
|
9019
9463
|
<li class="md-nav__item">
|
|
9020
|
-
<a href="#
|
|
9464
|
+
<a href="#dependencies-in-v1512" class="md-nav__link">
|
|
9021
9465
|
<span class="md-ellipsis">
|
|
9022
|
-
Dependencies
|
|
9466
|
+
Dependencies in v1.5.12
|
|
9023
9467
|
</span>
|
|
9024
9468
|
</a>
|
|
9025
9469
|
|
|
@@ -9041,63 +9485,63 @@
|
|
|
9041
9485
|
<ul class="md-nav__list">
|
|
9042
9486
|
|
|
9043
9487
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9488
|
+
<a href="#security-in-v1511" class="md-nav__link">
|
|
9045
9489
|
<span class="md-ellipsis">
|
|
9046
|
-
Security
|
|
9490
|
+
Security in v1.5.11
|
|
9047
9491
|
</span>
|
|
9048
9492
|
</a>
|
|
9049
9493
|
|
|
9050
9494
|
</li>
|
|
9051
9495
|
|
|
9052
9496
|
<li class="md-nav__item">
|
|
9053
|
-
<a href="#
|
|
9497
|
+
<a href="#added-in-v1511" class="md-nav__link">
|
|
9054
9498
|
<span class="md-ellipsis">
|
|
9055
|
-
Added
|
|
9499
|
+
Added in v1.5.11
|
|
9056
9500
|
</span>
|
|
9057
9501
|
</a>
|
|
9058
9502
|
|
|
9059
9503
|
</li>
|
|
9060
9504
|
|
|
9061
9505
|
<li class="md-nav__item">
|
|
9062
|
-
<a href="#
|
|
9506
|
+
<a href="#changed-in-v1511" class="md-nav__link">
|
|
9063
9507
|
<span class="md-ellipsis">
|
|
9064
|
-
Changed
|
|
9508
|
+
Changed in v1.5.11
|
|
9065
9509
|
</span>
|
|
9066
9510
|
</a>
|
|
9067
9511
|
|
|
9068
9512
|
</li>
|
|
9069
9513
|
|
|
9070
9514
|
<li class="md-nav__item">
|
|
9071
|
-
<a href="#
|
|
9515
|
+
<a href="#fixed-in-v1511" class="md-nav__link">
|
|
9072
9516
|
<span class="md-ellipsis">
|
|
9073
|
-
Fixed
|
|
9517
|
+
Fixed in v1.5.11
|
|
9074
9518
|
</span>
|
|
9075
9519
|
</a>
|
|
9076
9520
|
|
|
9077
9521
|
</li>
|
|
9078
9522
|
|
|
9079
9523
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9524
|
+
<a href="#dependencies-in-v1511" class="md-nav__link">
|
|
9081
9525
|
<span class="md-ellipsis">
|
|
9082
|
-
Dependencies
|
|
9526
|
+
Dependencies in v1.5.11
|
|
9083
9527
|
</span>
|
|
9084
9528
|
</a>
|
|
9085
9529
|
|
|
9086
9530
|
</li>
|
|
9087
9531
|
|
|
9088
9532
|
<li class="md-nav__item">
|
|
9089
|
-
<a href="#
|
|
9533
|
+
<a href="#documentation-in-v1511" class="md-nav__link">
|
|
9090
9534
|
<span class="md-ellipsis">
|
|
9091
|
-
Documentation
|
|
9535
|
+
Documentation in v1.5.11
|
|
9092
9536
|
</span>
|
|
9093
9537
|
</a>
|
|
9094
9538
|
|
|
9095
9539
|
</li>
|
|
9096
9540
|
|
|
9097
9541
|
<li class="md-nav__item">
|
|
9098
|
-
<a href="#
|
|
9542
|
+
<a href="#housekeeping-in-v1511" class="md-nav__link">
|
|
9099
9543
|
<span class="md-ellipsis">
|
|
9100
|
-
Housekeeping
|
|
9544
|
+
Housekeeping in v1.5.11
|
|
9101
9545
|
</span>
|
|
9102
9546
|
</a>
|
|
9103
9547
|
|
|
@@ -9119,45 +9563,45 @@
|
|
|
9119
9563
|
<ul class="md-nav__list">
|
|
9120
9564
|
|
|
9121
9565
|
<li class="md-nav__item">
|
|
9122
|
-
<a href="#
|
|
9566
|
+
<a href="#security-in-v1510" class="md-nav__link">
|
|
9123
9567
|
<span class="md-ellipsis">
|
|
9124
|
-
Security
|
|
9568
|
+
Security in v1.5.10
|
|
9125
9569
|
</span>
|
|
9126
9570
|
</a>
|
|
9127
9571
|
|
|
9128
9572
|
</li>
|
|
9129
9573
|
|
|
9130
9574
|
<li class="md-nav__item">
|
|
9131
|
-
<a href="#
|
|
9575
|
+
<a href="#added-in-v1510" class="md-nav__link">
|
|
9132
9576
|
<span class="md-ellipsis">
|
|
9133
|
-
Added
|
|
9577
|
+
Added in v1.5.10
|
|
9134
9578
|
</span>
|
|
9135
9579
|
</a>
|
|
9136
9580
|
|
|
9137
9581
|
</li>
|
|
9138
9582
|
|
|
9139
9583
|
<li class="md-nav__item">
|
|
9140
|
-
<a href="#
|
|
9584
|
+
<a href="#fixed-in-v1510" class="md-nav__link">
|
|
9141
9585
|
<span class="md-ellipsis">
|
|
9142
|
-
Fixed
|
|
9586
|
+
Fixed in v1.5.10
|
|
9143
9587
|
</span>
|
|
9144
9588
|
</a>
|
|
9145
9589
|
|
|
9146
9590
|
</li>
|
|
9147
9591
|
|
|
9148
9592
|
<li class="md-nav__item">
|
|
9149
|
-
<a href="#
|
|
9593
|
+
<a href="#dependencies-in-v1510" class="md-nav__link">
|
|
9150
9594
|
<span class="md-ellipsis">
|
|
9151
|
-
Dependencies
|
|
9595
|
+
Dependencies in v1.5.10
|
|
9152
9596
|
</span>
|
|
9153
9597
|
</a>
|
|
9154
9598
|
|
|
9155
9599
|
</li>
|
|
9156
9600
|
|
|
9157
9601
|
<li class="md-nav__item">
|
|
9158
|
-
<a href="#
|
|
9602
|
+
<a href="#housekeeping-in-v1510" class="md-nav__link">
|
|
9159
9603
|
<span class="md-ellipsis">
|
|
9160
|
-
Housekeeping
|
|
9604
|
+
Housekeeping in v1.5.10
|
|
9161
9605
|
</span>
|
|
9162
9606
|
</a>
|
|
9163
9607
|
|
|
@@ -9179,36 +9623,36 @@
|
|
|
9179
9623
|
<ul class="md-nav__list">
|
|
9180
9624
|
|
|
9181
9625
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9626
|
+
<a href="#changed-in-v159" class="md-nav__link">
|
|
9183
9627
|
<span class="md-ellipsis">
|
|
9184
|
-
Changed
|
|
9628
|
+
Changed in v1.5.9
|
|
9185
9629
|
</span>
|
|
9186
9630
|
</a>
|
|
9187
9631
|
|
|
9188
9632
|
</li>
|
|
9189
9633
|
|
|
9190
9634
|
<li class="md-nav__item">
|
|
9191
|
-
<a href="#
|
|
9635
|
+
<a href="#fixed-in-v159" class="md-nav__link">
|
|
9192
9636
|
<span class="md-ellipsis">
|
|
9193
|
-
Fixed
|
|
9637
|
+
Fixed in v1.5.9
|
|
9194
9638
|
</span>
|
|
9195
9639
|
</a>
|
|
9196
9640
|
|
|
9197
9641
|
</li>
|
|
9198
9642
|
|
|
9199
9643
|
<li class="md-nav__item">
|
|
9200
|
-
<a href="#
|
|
9644
|
+
<a href="#dependencies-in-v159" class="md-nav__link">
|
|
9201
9645
|
<span class="md-ellipsis">
|
|
9202
|
-
Dependencies
|
|
9646
|
+
Dependencies in v1.5.9
|
|
9203
9647
|
</span>
|
|
9204
9648
|
</a>
|
|
9205
9649
|
|
|
9206
9650
|
</li>
|
|
9207
9651
|
|
|
9208
9652
|
<li class="md-nav__item">
|
|
9209
|
-
<a href="#
|
|
9653
|
+
<a href="#housekeeping-in-v159" class="md-nav__link">
|
|
9210
9654
|
<span class="md-ellipsis">
|
|
9211
|
-
Housekeeping
|
|
9655
|
+
Housekeeping in v1.5.9
|
|
9212
9656
|
</span>
|
|
9213
9657
|
</a>
|
|
9214
9658
|
|
|
@@ -9230,45 +9674,45 @@
|
|
|
9230
9674
|
<ul class="md-nav__list">
|
|
9231
9675
|
|
|
9232
9676
|
<li class="md-nav__item">
|
|
9233
|
-
<a href="#
|
|
9677
|
+
<a href="#security-in-v158" class="md-nav__link">
|
|
9234
9678
|
<span class="md-ellipsis">
|
|
9235
|
-
Security
|
|
9679
|
+
Security in v1.5.8
|
|
9236
9680
|
</span>
|
|
9237
9681
|
</a>
|
|
9238
9682
|
|
|
9239
9683
|
</li>
|
|
9240
9684
|
|
|
9241
9685
|
<li class="md-nav__item">
|
|
9242
|
-
<a href="#
|
|
9686
|
+
<a href="#changed-in-v158" class="md-nav__link">
|
|
9243
9687
|
<span class="md-ellipsis">
|
|
9244
|
-
Changed
|
|
9688
|
+
Changed in v1.5.8
|
|
9245
9689
|
</span>
|
|
9246
9690
|
</a>
|
|
9247
9691
|
|
|
9248
9692
|
</li>
|
|
9249
9693
|
|
|
9250
9694
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9695
|
+
<a href="#fixed-in-v158" class="md-nav__link">
|
|
9252
9696
|
<span class="md-ellipsis">
|
|
9253
|
-
Fixed
|
|
9697
|
+
Fixed in v1.5.8
|
|
9254
9698
|
</span>
|
|
9255
9699
|
</a>
|
|
9256
9700
|
|
|
9257
9701
|
</li>
|
|
9258
9702
|
|
|
9259
9703
|
<li class="md-nav__item">
|
|
9260
|
-
<a href="#
|
|
9704
|
+
<a href="#documentation-in-v158" class="md-nav__link">
|
|
9261
9705
|
<span class="md-ellipsis">
|
|
9262
|
-
Documentation
|
|
9706
|
+
Documentation in v1.5.8
|
|
9263
9707
|
</span>
|
|
9264
9708
|
</a>
|
|
9265
9709
|
|
|
9266
9710
|
</li>
|
|
9267
9711
|
|
|
9268
9712
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9713
|
+
<a href="#housekeeping-in-v158" class="md-nav__link">
|
|
9270
9714
|
<span class="md-ellipsis">
|
|
9271
|
-
Housekeeping
|
|
9715
|
+
Housekeeping in v1.5.8
|
|
9272
9716
|
</span>
|
|
9273
9717
|
</a>
|
|
9274
9718
|
|
|
@@ -9290,18 +9734,18 @@
|
|
|
9290
9734
|
<ul class="md-nav__list">
|
|
9291
9735
|
|
|
9292
9736
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9737
|
+
<a href="#security-in-v157" class="md-nav__link">
|
|
9294
9738
|
<span class="md-ellipsis">
|
|
9295
|
-
Security
|
|
9739
|
+
Security in v1.5.7
|
|
9296
9740
|
</span>
|
|
9297
9741
|
</a>
|
|
9298
9742
|
|
|
9299
9743
|
</li>
|
|
9300
9744
|
|
|
9301
9745
|
<li class="md-nav__item">
|
|
9302
|
-
<a href="#
|
|
9746
|
+
<a href="#fixed-in-v157" class="md-nav__link">
|
|
9303
9747
|
<span class="md-ellipsis">
|
|
9304
|
-
Fixed
|
|
9748
|
+
Fixed in v1.5.7
|
|
9305
9749
|
</span>
|
|
9306
9750
|
</a>
|
|
9307
9751
|
|
|
@@ -9323,45 +9767,45 @@
|
|
|
9323
9767
|
<ul class="md-nav__list">
|
|
9324
9768
|
|
|
9325
9769
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9770
|
+
<a href="#added-in-v156" class="md-nav__link">
|
|
9327
9771
|
<span class="md-ellipsis">
|
|
9328
|
-
Added
|
|
9772
|
+
Added in v1.5.6
|
|
9329
9773
|
</span>
|
|
9330
9774
|
</a>
|
|
9331
9775
|
|
|
9332
9776
|
</li>
|
|
9333
9777
|
|
|
9334
9778
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9779
|
+
<a href="#fixed-in-v156" class="md-nav__link">
|
|
9336
9780
|
<span class="md-ellipsis">
|
|
9337
|
-
Fixed
|
|
9781
|
+
Fixed in v1.5.6
|
|
9338
9782
|
</span>
|
|
9339
9783
|
</a>
|
|
9340
9784
|
|
|
9341
9785
|
</li>
|
|
9342
9786
|
|
|
9343
9787
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9788
|
+
<a href="#dependencies-in-v156" class="md-nav__link">
|
|
9345
9789
|
<span class="md-ellipsis">
|
|
9346
|
-
Dependencies
|
|
9790
|
+
Dependencies in v1.5.6
|
|
9347
9791
|
</span>
|
|
9348
9792
|
</a>
|
|
9349
9793
|
|
|
9350
9794
|
</li>
|
|
9351
9795
|
|
|
9352
9796
|
<li class="md-nav__item">
|
|
9353
|
-
<a href="#
|
|
9797
|
+
<a href="#documentation-in-v156" class="md-nav__link">
|
|
9354
9798
|
<span class="md-ellipsis">
|
|
9355
|
-
Documentation
|
|
9799
|
+
Documentation in v1.5.6
|
|
9356
9800
|
</span>
|
|
9357
9801
|
</a>
|
|
9358
9802
|
|
|
9359
9803
|
</li>
|
|
9360
9804
|
|
|
9361
9805
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9806
|
+
<a href="#housekeeping-in-v156" class="md-nav__link">
|
|
9363
9807
|
<span class="md-ellipsis">
|
|
9364
|
-
Housekeeping
|
|
9808
|
+
Housekeeping in v1.5.6
|
|
9365
9809
|
</span>
|
|
9366
9810
|
</a>
|
|
9367
9811
|
|
|
@@ -9383,27 +9827,27 @@
|
|
|
9383
9827
|
<ul class="md-nav__list">
|
|
9384
9828
|
|
|
9385
9829
|
<li class="md-nav__item">
|
|
9386
|
-
<a href="#
|
|
9830
|
+
<a href="#changed-in-v155" class="md-nav__link">
|
|
9387
9831
|
<span class="md-ellipsis">
|
|
9388
|
-
Changed
|
|
9832
|
+
Changed in v1.5.5
|
|
9389
9833
|
</span>
|
|
9390
9834
|
</a>
|
|
9391
9835
|
|
|
9392
9836
|
</li>
|
|
9393
9837
|
|
|
9394
9838
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9839
|
+
<a href="#fixed-in-v155" class="md-nav__link">
|
|
9396
9840
|
<span class="md-ellipsis">
|
|
9397
|
-
Fixed
|
|
9841
|
+
Fixed in v1.5.5
|
|
9398
9842
|
</span>
|
|
9399
9843
|
</a>
|
|
9400
9844
|
|
|
9401
9845
|
</li>
|
|
9402
9846
|
|
|
9403
9847
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9848
|
+
<a href="#housekeeping-in-v155" class="md-nav__link">
|
|
9405
9849
|
<span class="md-ellipsis">
|
|
9406
|
-
Housekeeping
|
|
9850
|
+
Housekeeping in v1.5.5
|
|
9407
9851
|
</span>
|
|
9408
9852
|
</a>
|
|
9409
9853
|
|
|
@@ -9425,18 +9869,18 @@
|
|
|
9425
9869
|
<ul class="md-nav__list">
|
|
9426
9870
|
|
|
9427
9871
|
<li class="md-nav__item">
|
|
9428
|
-
<a href="#
|
|
9872
|
+
<a href="#fixed-in-v154" class="md-nav__link">
|
|
9429
9873
|
<span class="md-ellipsis">
|
|
9430
|
-
Fixed
|
|
9874
|
+
Fixed in v1.5.4
|
|
9431
9875
|
</span>
|
|
9432
9876
|
</a>
|
|
9433
9877
|
|
|
9434
9878
|
</li>
|
|
9435
9879
|
|
|
9436
9880
|
<li class="md-nav__item">
|
|
9437
|
-
<a href="#
|
|
9881
|
+
<a href="#documentation-in-v154" class="md-nav__link">
|
|
9438
9882
|
<span class="md-ellipsis">
|
|
9439
|
-
Documentation
|
|
9883
|
+
Documentation in v1.5.4
|
|
9440
9884
|
</span>
|
|
9441
9885
|
</a>
|
|
9442
9886
|
|
|
@@ -9458,9 +9902,9 @@
|
|
|
9458
9902
|
<ul class="md-nav__list">
|
|
9459
9903
|
|
|
9460
9904
|
<li class="md-nav__item">
|
|
9461
|
-
<a href="#
|
|
9905
|
+
<a href="#fixed-in-v153" class="md-nav__link">
|
|
9462
9906
|
<span class="md-ellipsis">
|
|
9463
|
-
Fixed
|
|
9907
|
+
Fixed in v1.5.3
|
|
9464
9908
|
</span>
|
|
9465
9909
|
</a>
|
|
9466
9910
|
|
|
@@ -9482,54 +9926,54 @@
|
|
|
9482
9926
|
<ul class="md-nav__list">
|
|
9483
9927
|
|
|
9484
9928
|
<li class="md-nav__item">
|
|
9485
|
-
<a href="#
|
|
9929
|
+
<a href="#added-in-v152" class="md-nav__link">
|
|
9486
9930
|
<span class="md-ellipsis">
|
|
9487
|
-
Added
|
|
9931
|
+
Added in v1.5.2
|
|
9488
9932
|
</span>
|
|
9489
9933
|
</a>
|
|
9490
9934
|
|
|
9491
9935
|
</li>
|
|
9492
9936
|
|
|
9493
9937
|
<li class="md-nav__item">
|
|
9494
|
-
<a href="#
|
|
9938
|
+
<a href="#changed-in-v152" class="md-nav__link">
|
|
9495
9939
|
<span class="md-ellipsis">
|
|
9496
|
-
Changed
|
|
9940
|
+
Changed in v1.5.2
|
|
9497
9941
|
</span>
|
|
9498
9942
|
</a>
|
|
9499
9943
|
|
|
9500
9944
|
</li>
|
|
9501
9945
|
|
|
9502
9946
|
<li class="md-nav__item">
|
|
9503
|
-
<a href="#
|
|
9947
|
+
<a href="#fixed-in-v152" class="md-nav__link">
|
|
9504
9948
|
<span class="md-ellipsis">
|
|
9505
|
-
Fixed
|
|
9949
|
+
Fixed in v1.5.2
|
|
9506
9950
|
</span>
|
|
9507
9951
|
</a>
|
|
9508
9952
|
|
|
9509
9953
|
</li>
|
|
9510
9954
|
|
|
9511
9955
|
<li class="md-nav__item">
|
|
9512
|
-
<a href="#
|
|
9956
|
+
<a href="#dependencies-in-v152" class="md-nav__link">
|
|
9513
9957
|
<span class="md-ellipsis">
|
|
9514
|
-
Dependencies
|
|
9958
|
+
Dependencies in v1.5.2
|
|
9515
9959
|
</span>
|
|
9516
9960
|
</a>
|
|
9517
9961
|
|
|
9518
9962
|
</li>
|
|
9519
9963
|
|
|
9520
9964
|
<li class="md-nav__item">
|
|
9521
|
-
<a href="#
|
|
9965
|
+
<a href="#documentation-in-v152" class="md-nav__link">
|
|
9522
9966
|
<span class="md-ellipsis">
|
|
9523
|
-
Documentation
|
|
9967
|
+
Documentation in v1.5.2
|
|
9524
9968
|
</span>
|
|
9525
9969
|
</a>
|
|
9526
9970
|
|
|
9527
9971
|
</li>
|
|
9528
9972
|
|
|
9529
9973
|
<li class="md-nav__item">
|
|
9530
|
-
<a href="#
|
|
9974
|
+
<a href="#housekeeping-in-v152" class="md-nav__link">
|
|
9531
9975
|
<span class="md-ellipsis">
|
|
9532
|
-
Housekeeping
|
|
9976
|
+
Housekeeping in v1.5.2
|
|
9533
9977
|
</span>
|
|
9534
9978
|
</a>
|
|
9535
9979
|
|
|
@@ -9551,27 +9995,27 @@
|
|
|
9551
9995
|
<ul class="md-nav__list">
|
|
9552
9996
|
|
|
9553
9997
|
<li class="md-nav__item">
|
|
9554
|
-
<a href="#
|
|
9998
|
+
<a href="#added-in-v151" class="md-nav__link">
|
|
9555
9999
|
<span class="md-ellipsis">
|
|
9556
|
-
Added
|
|
10000
|
+
Added in v1.5.1
|
|
9557
10001
|
</span>
|
|
9558
10002
|
</a>
|
|
9559
10003
|
|
|
9560
10004
|
</li>
|
|
9561
10005
|
|
|
9562
10006
|
<li class="md-nav__item">
|
|
9563
|
-
<a href="#
|
|
10007
|
+
<a href="#fixed-in-v151" class="md-nav__link">
|
|
9564
10008
|
<span class="md-ellipsis">
|
|
9565
|
-
Fixed
|
|
10009
|
+
Fixed in v1.5.1
|
|
9566
10010
|
</span>
|
|
9567
10011
|
</a>
|
|
9568
10012
|
|
|
9569
10013
|
</li>
|
|
9570
10014
|
|
|
9571
10015
|
<li class="md-nav__item">
|
|
9572
|
-
<a href="#
|
|
10016
|
+
<a href="#housekeeping-in-v151" class="md-nav__link">
|
|
9573
10017
|
<span class="md-ellipsis">
|
|
9574
|
-
Housekeeping
|
|
10018
|
+
Housekeeping in v1.5.1
|
|
9575
10019
|
</span>
|
|
9576
10020
|
</a>
|
|
9577
10021
|
|
|
@@ -9602,54 +10046,54 @@
|
|
|
9602
10046
|
<ul class="md-nav__list">
|
|
9603
10047
|
|
|
9604
10048
|
<li class="md-nav__item">
|
|
9605
|
-
<a href="#
|
|
10049
|
+
<a href="#added-in-v150-beta1" class="md-nav__link">
|
|
9606
10050
|
<span class="md-ellipsis">
|
|
9607
|
-
Added
|
|
10051
|
+
Added in v1.5.0-beta.1
|
|
9608
10052
|
</span>
|
|
9609
10053
|
</a>
|
|
9610
10054
|
|
|
9611
10055
|
</li>
|
|
9612
10056
|
|
|
9613
10057
|
<li class="md-nav__item">
|
|
9614
|
-
<a href="#
|
|
10058
|
+
<a href="#changed-in-v150-beta1" class="md-nav__link">
|
|
9615
10059
|
<span class="md-ellipsis">
|
|
9616
|
-
Changed
|
|
10060
|
+
Changed in v1.5.0-beta.1
|
|
9617
10061
|
</span>
|
|
9618
10062
|
</a>
|
|
9619
10063
|
|
|
9620
10064
|
</li>
|
|
9621
10065
|
|
|
9622
10066
|
<li class="md-nav__item">
|
|
9623
|
-
<a href="#
|
|
10067
|
+
<a href="#fixed-in-v150-beta1" class="md-nav__link">
|
|
9624
10068
|
<span class="md-ellipsis">
|
|
9625
|
-
Fixed
|
|
10069
|
+
Fixed in v1.5.0-beta.1
|
|
9626
10070
|
</span>
|
|
9627
10071
|
</a>
|
|
9628
10072
|
|
|
9629
10073
|
</li>
|
|
9630
10074
|
|
|
9631
10075
|
<li class="md-nav__item">
|
|
9632
|
-
<a href="#
|
|
10076
|
+
<a href="#dependencies-in-v150-beta1" class="md-nav__link">
|
|
9633
10077
|
<span class="md-ellipsis">
|
|
9634
|
-
Dependencies
|
|
10078
|
+
Dependencies in v1.5.0-beta.1
|
|
9635
10079
|
</span>
|
|
9636
10080
|
</a>
|
|
9637
10081
|
|
|
9638
10082
|
</li>
|
|
9639
10083
|
|
|
9640
10084
|
<li class="md-nav__item">
|
|
9641
|
-
<a href="#
|
|
10085
|
+
<a href="#documentation-in-v150-beta1" class="md-nav__link">
|
|
9642
10086
|
<span class="md-ellipsis">
|
|
9643
|
-
Documentation
|
|
10087
|
+
Documentation in v1.5.0-beta.1
|
|
9644
10088
|
</span>
|
|
9645
10089
|
</a>
|
|
9646
10090
|
|
|
9647
10091
|
</li>
|
|
9648
10092
|
|
|
9649
10093
|
<li class="md-nav__item">
|
|
9650
|
-
<a href="#
|
|
10094
|
+
<a href="#housekeeping-in-v150-beta1" class="md-nav__link">
|
|
9651
10095
|
<span class="md-ellipsis">
|
|
9652
|
-
Housekeeping
|
|
10096
|
+
Housekeeping in v1.5.0-beta.1
|
|
9653
10097
|
</span>
|
|
9654
10098
|
</a>
|
|
9655
10099
|
|
|
@@ -10291,18 +10735,18 @@
|
|
|
10291
10735
|
<ul class="md-nav__list">
|
|
10292
10736
|
|
|
10293
10737
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#security" class="md-nav__link">
|
|
10738
|
+
<a href="#security-in-v1524" class="md-nav__link">
|
|
10295
10739
|
<span class="md-ellipsis">
|
|
10296
|
-
Security
|
|
10740
|
+
Security in v1.5.24
|
|
10297
10741
|
</span>
|
|
10298
10742
|
</a>
|
|
10299
10743
|
|
|
10300
10744
|
</li>
|
|
10301
10745
|
|
|
10302
10746
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#fixed" class="md-nav__link">
|
|
10747
|
+
<a href="#fixed-in-v1524" class="md-nav__link">
|
|
10304
10748
|
<span class="md-ellipsis">
|
|
10305
|
-
Fixed
|
|
10749
|
+
Fixed in v1.5.24
|
|
10306
10750
|
</span>
|
|
10307
10751
|
</a>
|
|
10308
10752
|
|
|
@@ -10324,63 +10768,63 @@
|
|
|
10324
10768
|
<ul class="md-nav__list">
|
|
10325
10769
|
|
|
10326
10770
|
<li class="md-nav__item">
|
|
10327
|
-
<a href="#
|
|
10771
|
+
<a href="#security-in-v1523" class="md-nav__link">
|
|
10328
10772
|
<span class="md-ellipsis">
|
|
10329
|
-
Security
|
|
10773
|
+
Security in v1.5.23
|
|
10330
10774
|
</span>
|
|
10331
10775
|
</a>
|
|
10332
10776
|
|
|
10333
10777
|
</li>
|
|
10334
10778
|
|
|
10335
10779
|
<li class="md-nav__item">
|
|
10336
|
-
<a href="#
|
|
10780
|
+
<a href="#added-in-v1523" class="md-nav__link">
|
|
10337
10781
|
<span class="md-ellipsis">
|
|
10338
|
-
Added
|
|
10782
|
+
Added in v1.5.23
|
|
10339
10783
|
</span>
|
|
10340
10784
|
</a>
|
|
10341
10785
|
|
|
10342
10786
|
</li>
|
|
10343
10787
|
|
|
10344
10788
|
<li class="md-nav__item">
|
|
10345
|
-
<a href="#
|
|
10789
|
+
<a href="#changed-in-v1523" class="md-nav__link">
|
|
10346
10790
|
<span class="md-ellipsis">
|
|
10347
|
-
Changed
|
|
10791
|
+
Changed in v1.5.23
|
|
10348
10792
|
</span>
|
|
10349
10793
|
</a>
|
|
10350
10794
|
|
|
10351
10795
|
</li>
|
|
10352
10796
|
|
|
10353
10797
|
<li class="md-nav__item">
|
|
10354
|
-
<a href="#
|
|
10798
|
+
<a href="#fixed-in-v1523" class="md-nav__link">
|
|
10355
10799
|
<span class="md-ellipsis">
|
|
10356
|
-
Fixed
|
|
10800
|
+
Fixed in v1.5.23
|
|
10357
10801
|
</span>
|
|
10358
10802
|
</a>
|
|
10359
10803
|
|
|
10360
10804
|
</li>
|
|
10361
10805
|
|
|
10362
10806
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10807
|
+
<a href="#dependencies-in-v1523" class="md-nav__link">
|
|
10364
10808
|
<span class="md-ellipsis">
|
|
10365
|
-
Dependencies
|
|
10809
|
+
Dependencies in v1.5.23
|
|
10366
10810
|
</span>
|
|
10367
10811
|
</a>
|
|
10368
10812
|
|
|
10369
10813
|
</li>
|
|
10370
10814
|
|
|
10371
10815
|
<li class="md-nav__item">
|
|
10372
|
-
<a href="#documentation" class="md-nav__link">
|
|
10816
|
+
<a href="#documentation-in-v1523" class="md-nav__link">
|
|
10373
10817
|
<span class="md-ellipsis">
|
|
10374
|
-
Documentation
|
|
10818
|
+
Documentation in v1.5.23
|
|
10375
10819
|
</span>
|
|
10376
10820
|
</a>
|
|
10377
10821
|
|
|
10378
10822
|
</li>
|
|
10379
10823
|
|
|
10380
10824
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10825
|
+
<a href="#housekeeping-in-v1523" class="md-nav__link">
|
|
10382
10826
|
<span class="md-ellipsis">
|
|
10383
|
-
Housekeeping
|
|
10827
|
+
Housekeeping in v1.5.23
|
|
10384
10828
|
</span>
|
|
10385
10829
|
</a>
|
|
10386
10830
|
|
|
@@ -10402,45 +10846,45 @@
|
|
|
10402
10846
|
<ul class="md-nav__list">
|
|
10403
10847
|
|
|
10404
10848
|
<li class="md-nav__item">
|
|
10405
|
-
<a href="#
|
|
10849
|
+
<a href="#security-in-v1522" class="md-nav__link">
|
|
10406
10850
|
<span class="md-ellipsis">
|
|
10407
|
-
Security
|
|
10851
|
+
Security in v1.5.22
|
|
10408
10852
|
</span>
|
|
10409
10853
|
</a>
|
|
10410
10854
|
|
|
10411
10855
|
</li>
|
|
10412
10856
|
|
|
10413
10857
|
<li class="md-nav__item">
|
|
10414
|
-
<a href="#
|
|
10858
|
+
<a href="#added-in-v1522" class="md-nav__link">
|
|
10415
10859
|
<span class="md-ellipsis">
|
|
10416
|
-
Added
|
|
10860
|
+
Added in v1.5.22
|
|
10417
10861
|
</span>
|
|
10418
10862
|
</a>
|
|
10419
10863
|
|
|
10420
10864
|
</li>
|
|
10421
10865
|
|
|
10422
10866
|
<li class="md-nav__item">
|
|
10423
|
-
<a href="#
|
|
10867
|
+
<a href="#fixed-in-v1522" class="md-nav__link">
|
|
10424
10868
|
<span class="md-ellipsis">
|
|
10425
|
-
Fixed
|
|
10869
|
+
Fixed in v1.5.22
|
|
10426
10870
|
</span>
|
|
10427
10871
|
</a>
|
|
10428
10872
|
|
|
10429
10873
|
</li>
|
|
10430
10874
|
|
|
10431
10875
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
10876
|
+
<a href="#documentation-in-v1522" class="md-nav__link">
|
|
10433
10877
|
<span class="md-ellipsis">
|
|
10434
|
-
Documentation
|
|
10878
|
+
Documentation in v1.5.22
|
|
10435
10879
|
</span>
|
|
10436
10880
|
</a>
|
|
10437
10881
|
|
|
10438
10882
|
</li>
|
|
10439
10883
|
|
|
10440
10884
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10885
|
+
<a href="#housekeeping-in-v1522" class="md-nav__link">
|
|
10442
10886
|
<span class="md-ellipsis">
|
|
10443
|
-
Housekeeping
|
|
10887
|
+
Housekeeping in v1.5.22
|
|
10444
10888
|
</span>
|
|
10445
10889
|
</a>
|
|
10446
10890
|
|
|
@@ -10462,36 +10906,36 @@
|
|
|
10462
10906
|
<ul class="md-nav__list">
|
|
10463
10907
|
|
|
10464
10908
|
<li class="md-nav__item">
|
|
10465
|
-
<a href="#
|
|
10909
|
+
<a href="#added-in-v1521" class="md-nav__link">
|
|
10466
10910
|
<span class="md-ellipsis">
|
|
10467
|
-
Added
|
|
10911
|
+
Added in v1.5.21
|
|
10468
10912
|
</span>
|
|
10469
10913
|
</a>
|
|
10470
10914
|
|
|
10471
10915
|
</li>
|
|
10472
10916
|
|
|
10473
10917
|
<li class="md-nav__item">
|
|
10474
|
-
<a href="#
|
|
10918
|
+
<a href="#fixed-in-v1521" class="md-nav__link">
|
|
10475
10919
|
<span class="md-ellipsis">
|
|
10476
|
-
Fixed
|
|
10920
|
+
Fixed in v1.5.21
|
|
10477
10921
|
</span>
|
|
10478
10922
|
</a>
|
|
10479
10923
|
|
|
10480
10924
|
</li>
|
|
10481
10925
|
|
|
10482
10926
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
10927
|
+
<a href="#dependencies-in-v1521" class="md-nav__link">
|
|
10484
10928
|
<span class="md-ellipsis">
|
|
10485
|
-
Dependencies
|
|
10929
|
+
Dependencies in v1.5.21
|
|
10486
10930
|
</span>
|
|
10487
10931
|
</a>
|
|
10488
10932
|
|
|
10489
10933
|
</li>
|
|
10490
10934
|
|
|
10491
10935
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
10936
|
+
<a href="#documentation-in-v1521" class="md-nav__link">
|
|
10493
10937
|
<span class="md-ellipsis">
|
|
10494
|
-
Documentation
|
|
10938
|
+
Documentation in v1.5.21
|
|
10495
10939
|
</span>
|
|
10496
10940
|
</a>
|
|
10497
10941
|
|
|
@@ -10513,27 +10957,27 @@
|
|
|
10513
10957
|
<ul class="md-nav__list">
|
|
10514
10958
|
|
|
10515
10959
|
<li class="md-nav__item">
|
|
10516
|
-
<a href="#
|
|
10960
|
+
<a href="#changed-in-v1520" class="md-nav__link">
|
|
10517
10961
|
<span class="md-ellipsis">
|
|
10518
|
-
Changed
|
|
10962
|
+
Changed in v1.5.20
|
|
10519
10963
|
</span>
|
|
10520
10964
|
</a>
|
|
10521
10965
|
|
|
10522
10966
|
</li>
|
|
10523
10967
|
|
|
10524
10968
|
<li class="md-nav__item">
|
|
10525
|
-
<a href="#
|
|
10969
|
+
<a href="#fixed-in-v1520" class="md-nav__link">
|
|
10526
10970
|
<span class="md-ellipsis">
|
|
10527
|
-
Fixed
|
|
10971
|
+
Fixed in v1.5.20
|
|
10528
10972
|
</span>
|
|
10529
10973
|
</a>
|
|
10530
10974
|
|
|
10531
10975
|
</li>
|
|
10532
10976
|
|
|
10533
10977
|
<li class="md-nav__item">
|
|
10534
|
-
<a href="#
|
|
10978
|
+
<a href="#documentation-in-v1520" class="md-nav__link">
|
|
10535
10979
|
<span class="md-ellipsis">
|
|
10536
|
-
Documentation
|
|
10980
|
+
Documentation in v1.5.20
|
|
10537
10981
|
</span>
|
|
10538
10982
|
</a>
|
|
10539
10983
|
|
|
@@ -10555,54 +10999,54 @@
|
|
|
10555
10999
|
<ul class="md-nav__list">
|
|
10556
11000
|
|
|
10557
11001
|
<li class="md-nav__item">
|
|
10558
|
-
<a href="#
|
|
11002
|
+
<a href="#security-in-v1519" class="md-nav__link">
|
|
10559
11003
|
<span class="md-ellipsis">
|
|
10560
|
-
Security
|
|
11004
|
+
Security in v1.5.19
|
|
10561
11005
|
</span>
|
|
10562
11006
|
</a>
|
|
10563
11007
|
|
|
10564
11008
|
</li>
|
|
10565
11009
|
|
|
10566
11010
|
<li class="md-nav__item">
|
|
10567
|
-
<a href="#
|
|
11011
|
+
<a href="#changed-in-v1519" class="md-nav__link">
|
|
10568
11012
|
<span class="md-ellipsis">
|
|
10569
|
-
Changed
|
|
11013
|
+
Changed in v1.5.19
|
|
10570
11014
|
</span>
|
|
10571
11015
|
</a>
|
|
10572
11016
|
|
|
10573
11017
|
</li>
|
|
10574
11018
|
|
|
10575
11019
|
<li class="md-nav__item">
|
|
10576
|
-
<a href="#
|
|
11020
|
+
<a href="#fixed-in-v1519" class="md-nav__link">
|
|
10577
11021
|
<span class="md-ellipsis">
|
|
10578
|
-
Fixed
|
|
11022
|
+
Fixed in v1.5.19
|
|
10579
11023
|
</span>
|
|
10580
11024
|
</a>
|
|
10581
11025
|
|
|
10582
11026
|
</li>
|
|
10583
11027
|
|
|
10584
11028
|
<li class="md-nav__item">
|
|
10585
|
-
<a href="#
|
|
11029
|
+
<a href="#dependencies-in-v1519" class="md-nav__link">
|
|
10586
11030
|
<span class="md-ellipsis">
|
|
10587
|
-
Dependencies
|
|
11031
|
+
Dependencies in v1.5.19
|
|
10588
11032
|
</span>
|
|
10589
11033
|
</a>
|
|
10590
11034
|
|
|
10591
11035
|
</li>
|
|
10592
11036
|
|
|
10593
11037
|
<li class="md-nav__item">
|
|
10594
|
-
<a href="#
|
|
11038
|
+
<a href="#documentation-in-v1519" class="md-nav__link">
|
|
10595
11039
|
<span class="md-ellipsis">
|
|
10596
|
-
Documentation
|
|
11040
|
+
Documentation in v1.5.19
|
|
10597
11041
|
</span>
|
|
10598
11042
|
</a>
|
|
10599
11043
|
|
|
10600
11044
|
</li>
|
|
10601
11045
|
|
|
10602
11046
|
<li class="md-nav__item">
|
|
10603
|
-
<a href="#
|
|
11047
|
+
<a href="#housekeeping-in-v1519" class="md-nav__link">
|
|
10604
11048
|
<span class="md-ellipsis">
|
|
10605
|
-
Housekeeping
|
|
11049
|
+
Housekeeping in v1.5.19
|
|
10606
11050
|
</span>
|
|
10607
11051
|
</a>
|
|
10608
11052
|
|
|
@@ -10624,54 +11068,54 @@
|
|
|
10624
11068
|
<ul class="md-nav__list">
|
|
10625
11069
|
|
|
10626
11070
|
<li class="md-nav__item">
|
|
10627
|
-
<a href="#
|
|
11071
|
+
<a href="#security-in-v1518" class="md-nav__link">
|
|
10628
11072
|
<span class="md-ellipsis">
|
|
10629
|
-
Security
|
|
11073
|
+
Security in v1.5.18
|
|
10630
11074
|
</span>
|
|
10631
11075
|
</a>
|
|
10632
11076
|
|
|
10633
11077
|
</li>
|
|
10634
11078
|
|
|
10635
11079
|
<li class="md-nav__item">
|
|
10636
|
-
<a href="#
|
|
11080
|
+
<a href="#added-in-v1518" class="md-nav__link">
|
|
10637
11081
|
<span class="md-ellipsis">
|
|
10638
|
-
Added
|
|
11082
|
+
Added in v1.5.18
|
|
10639
11083
|
</span>
|
|
10640
11084
|
</a>
|
|
10641
11085
|
|
|
10642
11086
|
</li>
|
|
10643
11087
|
|
|
10644
11088
|
<li class="md-nav__item">
|
|
10645
|
-
<a href="#
|
|
11089
|
+
<a href="#changed-in-v1518" class="md-nav__link">
|
|
10646
11090
|
<span class="md-ellipsis">
|
|
10647
|
-
Changed
|
|
11091
|
+
Changed in v1.5.18
|
|
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="#fixed-in-v1518" class="md-nav__link">
|
|
10655
11099
|
<span class="md-ellipsis">
|
|
10656
|
-
Fixed
|
|
11100
|
+
Fixed in v1.5.18
|
|
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="#documentation-in-v1518" class="md-nav__link">
|
|
10664
11108
|
<span class="md-ellipsis">
|
|
10665
|
-
Documentation
|
|
11109
|
+
Documentation in v1.5.18
|
|
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="#housekeeping-in-v1518" class="md-nav__link">
|
|
10673
11117
|
<span class="md-ellipsis">
|
|
10674
|
-
Housekeeping
|
|
11118
|
+
Housekeeping in v1.5.18
|
|
10675
11119
|
</span>
|
|
10676
11120
|
</a>
|
|
10677
11121
|
|
|
@@ -10693,45 +11137,45 @@
|
|
|
10693
11137
|
<ul class="md-nav__list">
|
|
10694
11138
|
|
|
10695
11139
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#
|
|
11140
|
+
<a href="#added-in-v1517" class="md-nav__link">
|
|
10697
11141
|
<span class="md-ellipsis">
|
|
10698
|
-
Added
|
|
11142
|
+
Added in v1.5.17
|
|
10699
11143
|
</span>
|
|
10700
11144
|
</a>
|
|
10701
11145
|
|
|
10702
11146
|
</li>
|
|
10703
11147
|
|
|
10704
11148
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
11149
|
+
<a href="#changed-in-v1517" class="md-nav__link">
|
|
10706
11150
|
<span class="md-ellipsis">
|
|
10707
|
-
Changed
|
|
11151
|
+
Changed in v1.5.17
|
|
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-v1517" class="md-nav__link">
|
|
10715
11159
|
<span class="md-ellipsis">
|
|
10716
|
-
Fixed
|
|
11160
|
+
Fixed in v1.5.17
|
|
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="#dependencies-in-v1517" class="md-nav__link">
|
|
10724
11168
|
<span class="md-ellipsis">
|
|
10725
|
-
Dependencies
|
|
11169
|
+
Dependencies in v1.5.17
|
|
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="#documentation-in-v1517" class="md-nav__link">
|
|
10733
11177
|
<span class="md-ellipsis">
|
|
10734
|
-
Documentation
|
|
11178
|
+
Documentation in v1.5.17
|
|
10735
11179
|
</span>
|
|
10736
11180
|
</a>
|
|
10737
11181
|
|
|
@@ -10753,27 +11197,27 @@
|
|
|
10753
11197
|
<ul class="md-nav__list">
|
|
10754
11198
|
|
|
10755
11199
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
11200
|
+
<a href="#fixed-in-v1516" class="md-nav__link">
|
|
10757
11201
|
<span class="md-ellipsis">
|
|
10758
|
-
Fixed
|
|
11202
|
+
Fixed in v1.5.16
|
|
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="#documentation-in-v1516" class="md-nav__link">
|
|
10766
11210
|
<span class="md-ellipsis">
|
|
10767
|
-
Documentation
|
|
11211
|
+
Documentation in v1.5.16
|
|
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="#housekeeping-in-v1516" class="md-nav__link">
|
|
10775
11219
|
<span class="md-ellipsis">
|
|
10776
|
-
Housekeeping
|
|
11220
|
+
Housekeeping in v1.5.16
|
|
10777
11221
|
</span>
|
|
10778
11222
|
</a>
|
|
10779
11223
|
|
|
@@ -10795,63 +11239,63 @@
|
|
|
10795
11239
|
<ul class="md-nav__list">
|
|
10796
11240
|
|
|
10797
11241
|
<li class="md-nav__item">
|
|
10798
|
-
<a href="#
|
|
11242
|
+
<a href="#security-in-v1515" class="md-nav__link">
|
|
10799
11243
|
<span class="md-ellipsis">
|
|
10800
|
-
Security
|
|
11244
|
+
Security in v1.5.15
|
|
10801
11245
|
</span>
|
|
10802
11246
|
</a>
|
|
10803
11247
|
|
|
10804
11248
|
</li>
|
|
10805
11249
|
|
|
10806
11250
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#
|
|
11251
|
+
<a href="#changed-in-v1515" class="md-nav__link">
|
|
10808
11252
|
<span class="md-ellipsis">
|
|
10809
|
-
Changed
|
|
11253
|
+
Changed in v1.5.15
|
|
10810
11254
|
</span>
|
|
10811
11255
|
</a>
|
|
10812
11256
|
|
|
10813
11257
|
</li>
|
|
10814
11258
|
|
|
10815
11259
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#removed" class="md-nav__link">
|
|
11260
|
+
<a href="#removed-in-v1515" class="md-nav__link">
|
|
10817
11261
|
<span class="md-ellipsis">
|
|
10818
|
-
Removed
|
|
11262
|
+
Removed in v1.5.15
|
|
10819
11263
|
</span>
|
|
10820
11264
|
</a>
|
|
10821
11265
|
|
|
10822
11266
|
</li>
|
|
10823
11267
|
|
|
10824
11268
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
11269
|
+
<a href="#fixed-in-v1515" class="md-nav__link">
|
|
10826
11270
|
<span class="md-ellipsis">
|
|
10827
|
-
Fixed
|
|
11271
|
+
Fixed in v1.5.15
|
|
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="#dependencies-in-v1515" class="md-nav__link">
|
|
10835
11279
|
<span class="md-ellipsis">
|
|
10836
|
-
Dependencies
|
|
11280
|
+
Dependencies in v1.5.15
|
|
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="#documentation-in-v1515" class="md-nav__link">
|
|
10844
11288
|
<span class="md-ellipsis">
|
|
10845
|
-
Documentation
|
|
11289
|
+
Documentation in v1.5.15
|
|
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="#housekeeping-in-v1515" class="md-nav__link">
|
|
10853
11297
|
<span class="md-ellipsis">
|
|
10854
|
-
Housekeeping
|
|
11298
|
+
Housekeeping in v1.5.15
|
|
10855
11299
|
</span>
|
|
10856
11300
|
</a>
|
|
10857
11301
|
|
|
@@ -10873,27 +11317,27 @@
|
|
|
10873
11317
|
<ul class="md-nav__list">
|
|
10874
11318
|
|
|
10875
11319
|
<li class="md-nav__item">
|
|
10876
|
-
<a href="#
|
|
11320
|
+
<a href="#added-in-v1514" class="md-nav__link">
|
|
10877
11321
|
<span class="md-ellipsis">
|
|
10878
|
-
Added
|
|
11322
|
+
Added in v1.5.14
|
|
10879
11323
|
</span>
|
|
10880
11324
|
</a>
|
|
10881
11325
|
|
|
10882
11326
|
</li>
|
|
10883
11327
|
|
|
10884
11328
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
11329
|
+
<a href="#documentation-in-v1514" class="md-nav__link">
|
|
10886
11330
|
<span class="md-ellipsis">
|
|
10887
|
-
Documentation
|
|
11331
|
+
Documentation in v1.5.14
|
|
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="#housekeeping-in-v1514" class="md-nav__link">
|
|
10895
11339
|
<span class="md-ellipsis">
|
|
10896
|
-
Housekeeping
|
|
11340
|
+
Housekeeping in v1.5.14
|
|
10897
11341
|
</span>
|
|
10898
11342
|
</a>
|
|
10899
11343
|
|
|
@@ -10915,54 +11359,54 @@
|
|
|
10915
11359
|
<ul class="md-nav__list">
|
|
10916
11360
|
|
|
10917
11361
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
11362
|
+
<a href="#added-in-v1513" class="md-nav__link">
|
|
10919
11363
|
<span class="md-ellipsis">
|
|
10920
|
-
Added
|
|
11364
|
+
Added in v1.5.13
|
|
10921
11365
|
</span>
|
|
10922
11366
|
</a>
|
|
10923
11367
|
|
|
10924
11368
|
</li>
|
|
10925
11369
|
|
|
10926
11370
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
11371
|
+
<a href="#changed-in-v1513" class="md-nav__link">
|
|
10928
11372
|
<span class="md-ellipsis">
|
|
10929
|
-
Changed
|
|
11373
|
+
Changed in v1.5.13
|
|
10930
11374
|
</span>
|
|
10931
11375
|
</a>
|
|
10932
11376
|
|
|
10933
11377
|
</li>
|
|
10934
11378
|
|
|
10935
11379
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
11380
|
+
<a href="#removed-in-v1513" class="md-nav__link">
|
|
10937
11381
|
<span class="md-ellipsis">
|
|
10938
|
-
Removed
|
|
11382
|
+
Removed in v1.5.13
|
|
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="#fixed-in-v1513" class="md-nav__link">
|
|
10946
11390
|
<span class="md-ellipsis">
|
|
10947
|
-
Fixed
|
|
11391
|
+
Fixed in v1.5.13
|
|
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="#dependencies-in-v1513" class="md-nav__link">
|
|
10955
11399
|
<span class="md-ellipsis">
|
|
10956
|
-
Dependencies
|
|
11400
|
+
Dependencies in v1.5.13
|
|
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="#documentation-in-v1513" class="md-nav__link">
|
|
10964
11408
|
<span class="md-ellipsis">
|
|
10965
|
-
Documentation
|
|
11409
|
+
Documentation in v1.5.13
|
|
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-v1512" class="md-nav__link">
|
|
10988
11432
|
<span class="md-ellipsis">
|
|
10989
|
-
Added
|
|
11433
|
+
Added in v1.5.12
|
|
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-v1512" class="md-nav__link">
|
|
10997
11441
|
<span class="md-ellipsis">
|
|
10998
|
-
Changed
|
|
11442
|
+
Changed in v1.5.12
|
|
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-v1512" class="md-nav__link">
|
|
11006
11450
|
<span class="md-ellipsis">
|
|
11007
|
-
Fixed
|
|
11451
|
+
Fixed in v1.5.12
|
|
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="#dependencies-in-v1512" class="md-nav__link">
|
|
11015
11459
|
<span class="md-ellipsis">
|
|
11016
|
-
Dependencies
|
|
11460
|
+
Dependencies in v1.5.12
|
|
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-v1511" class="md-nav__link">
|
|
11039
11483
|
<span class="md-ellipsis">
|
|
11040
|
-
Security
|
|
11484
|
+
Security in v1.5.11
|
|
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-v1511" class="md-nav__link">
|
|
11048
11492
|
<span class="md-ellipsis">
|
|
11049
|
-
Added
|
|
11493
|
+
Added in v1.5.11
|
|
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-v1511" class="md-nav__link">
|
|
11057
11501
|
<span class="md-ellipsis">
|
|
11058
|
-
Changed
|
|
11502
|
+
Changed in v1.5.11
|
|
11059
11503
|
</span>
|
|
11060
11504
|
</a>
|
|
11061
11505
|
|
|
11062
11506
|
</li>
|
|
11063
11507
|
|
|
11064
11508
|
<li class="md-nav__item">
|
|
11065
|
-
<a href="#
|
|
11509
|
+
<a href="#fixed-in-v1511" class="md-nav__link">
|
|
11066
11510
|
<span class="md-ellipsis">
|
|
11067
|
-
Fixed
|
|
11511
|
+
Fixed in v1.5.11
|
|
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="#dependencies-in-v1511" class="md-nav__link">
|
|
11075
11519
|
<span class="md-ellipsis">
|
|
11076
|
-
Dependencies
|
|
11520
|
+
Dependencies in v1.5.11
|
|
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-v1511" class="md-nav__link">
|
|
11084
11528
|
<span class="md-ellipsis">
|
|
11085
|
-
Documentation
|
|
11529
|
+
Documentation in v1.5.11
|
|
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-v1511" class="md-nav__link">
|
|
11093
11537
|
<span class="md-ellipsis">
|
|
11094
|
-
Housekeeping
|
|
11538
|
+
Housekeeping in v1.5.11
|
|
11095
11539
|
</span>
|
|
11096
11540
|
</a>
|
|
11097
11541
|
|
|
@@ -11113,45 +11557,45 @@
|
|
|
11113
11557
|
<ul class="md-nav__list">
|
|
11114
11558
|
|
|
11115
11559
|
<li class="md-nav__item">
|
|
11116
|
-
<a href="#
|
|
11560
|
+
<a href="#security-in-v1510" class="md-nav__link">
|
|
11117
11561
|
<span class="md-ellipsis">
|
|
11118
|
-
Security
|
|
11562
|
+
Security in v1.5.10
|
|
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-v1510" class="md-nav__link">
|
|
11126
11570
|
<span class="md-ellipsis">
|
|
11127
|
-
Added
|
|
11571
|
+
Added in v1.5.10
|
|
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="#fixed-in-v1510" class="md-nav__link">
|
|
11135
11579
|
<span class="md-ellipsis">
|
|
11136
|
-
Fixed
|
|
11580
|
+
Fixed in v1.5.10
|
|
11137
11581
|
</span>
|
|
11138
11582
|
</a>
|
|
11139
11583
|
|
|
11140
11584
|
</li>
|
|
11141
11585
|
|
|
11142
11586
|
<li class="md-nav__item">
|
|
11143
|
-
<a href="#
|
|
11587
|
+
<a href="#dependencies-in-v1510" class="md-nav__link">
|
|
11144
11588
|
<span class="md-ellipsis">
|
|
11145
|
-
Dependencies
|
|
11589
|
+
Dependencies in v1.5.10
|
|
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="#housekeeping-in-v1510" class="md-nav__link">
|
|
11153
11597
|
<span class="md-ellipsis">
|
|
11154
|
-
Housekeeping
|
|
11598
|
+
Housekeeping in v1.5.10
|
|
11155
11599
|
</span>
|
|
11156
11600
|
</a>
|
|
11157
11601
|
|
|
@@ -11173,36 +11617,36 @@
|
|
|
11173
11617
|
<ul class="md-nav__list">
|
|
11174
11618
|
|
|
11175
11619
|
<li class="md-nav__item">
|
|
11176
|
-
<a href="#
|
|
11620
|
+
<a href="#changed-in-v159" class="md-nav__link">
|
|
11177
11621
|
<span class="md-ellipsis">
|
|
11178
|
-
Changed
|
|
11622
|
+
Changed in v1.5.9
|
|
11179
11623
|
</span>
|
|
11180
11624
|
</a>
|
|
11181
11625
|
|
|
11182
11626
|
</li>
|
|
11183
11627
|
|
|
11184
11628
|
<li class="md-nav__item">
|
|
11185
|
-
<a href="#
|
|
11629
|
+
<a href="#fixed-in-v159" class="md-nav__link">
|
|
11186
11630
|
<span class="md-ellipsis">
|
|
11187
|
-
Fixed
|
|
11631
|
+
Fixed in v1.5.9
|
|
11188
11632
|
</span>
|
|
11189
11633
|
</a>
|
|
11190
11634
|
|
|
11191
11635
|
</li>
|
|
11192
11636
|
|
|
11193
11637
|
<li class="md-nav__item">
|
|
11194
|
-
<a href="#
|
|
11638
|
+
<a href="#dependencies-in-v159" class="md-nav__link">
|
|
11195
11639
|
<span class="md-ellipsis">
|
|
11196
|
-
Dependencies
|
|
11640
|
+
Dependencies in v1.5.9
|
|
11197
11641
|
</span>
|
|
11198
11642
|
</a>
|
|
11199
11643
|
|
|
11200
11644
|
</li>
|
|
11201
11645
|
|
|
11202
11646
|
<li class="md-nav__item">
|
|
11203
|
-
<a href="#
|
|
11647
|
+
<a href="#housekeeping-in-v159" class="md-nav__link">
|
|
11204
11648
|
<span class="md-ellipsis">
|
|
11205
|
-
Housekeeping
|
|
11649
|
+
Housekeeping in v1.5.9
|
|
11206
11650
|
</span>
|
|
11207
11651
|
</a>
|
|
11208
11652
|
|
|
@@ -11224,45 +11668,45 @@
|
|
|
11224
11668
|
<ul class="md-nav__list">
|
|
11225
11669
|
|
|
11226
11670
|
<li class="md-nav__item">
|
|
11227
|
-
<a href="#
|
|
11671
|
+
<a href="#security-in-v158" class="md-nav__link">
|
|
11228
11672
|
<span class="md-ellipsis">
|
|
11229
|
-
Security
|
|
11673
|
+
Security in v1.5.8
|
|
11230
11674
|
</span>
|
|
11231
11675
|
</a>
|
|
11232
11676
|
|
|
11233
11677
|
</li>
|
|
11234
11678
|
|
|
11235
11679
|
<li class="md-nav__item">
|
|
11236
|
-
<a href="#
|
|
11680
|
+
<a href="#changed-in-v158" class="md-nav__link">
|
|
11237
11681
|
<span class="md-ellipsis">
|
|
11238
|
-
Changed
|
|
11682
|
+
Changed in v1.5.8
|
|
11239
11683
|
</span>
|
|
11240
11684
|
</a>
|
|
11241
11685
|
|
|
11242
11686
|
</li>
|
|
11243
11687
|
|
|
11244
11688
|
<li class="md-nav__item">
|
|
11245
|
-
<a href="#
|
|
11689
|
+
<a href="#fixed-in-v158" class="md-nav__link">
|
|
11246
11690
|
<span class="md-ellipsis">
|
|
11247
|
-
Fixed
|
|
11691
|
+
Fixed in v1.5.8
|
|
11248
11692
|
</span>
|
|
11249
11693
|
</a>
|
|
11250
11694
|
|
|
11251
11695
|
</li>
|
|
11252
11696
|
|
|
11253
11697
|
<li class="md-nav__item">
|
|
11254
|
-
<a href="#
|
|
11698
|
+
<a href="#documentation-in-v158" class="md-nav__link">
|
|
11255
11699
|
<span class="md-ellipsis">
|
|
11256
|
-
Documentation
|
|
11700
|
+
Documentation in v1.5.8
|
|
11257
11701
|
</span>
|
|
11258
11702
|
</a>
|
|
11259
11703
|
|
|
11260
11704
|
</li>
|
|
11261
11705
|
|
|
11262
11706
|
<li class="md-nav__item">
|
|
11263
|
-
<a href="#
|
|
11707
|
+
<a href="#housekeeping-in-v158" class="md-nav__link">
|
|
11264
11708
|
<span class="md-ellipsis">
|
|
11265
|
-
Housekeeping
|
|
11709
|
+
Housekeeping in v1.5.8
|
|
11266
11710
|
</span>
|
|
11267
11711
|
</a>
|
|
11268
11712
|
|
|
@@ -11284,18 +11728,18 @@
|
|
|
11284
11728
|
<ul class="md-nav__list">
|
|
11285
11729
|
|
|
11286
11730
|
<li class="md-nav__item">
|
|
11287
|
-
<a href="#
|
|
11731
|
+
<a href="#security-in-v157" class="md-nav__link">
|
|
11288
11732
|
<span class="md-ellipsis">
|
|
11289
|
-
Security
|
|
11733
|
+
Security in v1.5.7
|
|
11290
11734
|
</span>
|
|
11291
11735
|
</a>
|
|
11292
11736
|
|
|
11293
11737
|
</li>
|
|
11294
11738
|
|
|
11295
11739
|
<li class="md-nav__item">
|
|
11296
|
-
<a href="#
|
|
11740
|
+
<a href="#fixed-in-v157" class="md-nav__link">
|
|
11297
11741
|
<span class="md-ellipsis">
|
|
11298
|
-
Fixed
|
|
11742
|
+
Fixed in v1.5.7
|
|
11299
11743
|
</span>
|
|
11300
11744
|
</a>
|
|
11301
11745
|
|
|
@@ -11317,45 +11761,45 @@
|
|
|
11317
11761
|
<ul class="md-nav__list">
|
|
11318
11762
|
|
|
11319
11763
|
<li class="md-nav__item">
|
|
11320
|
-
<a href="#
|
|
11764
|
+
<a href="#added-in-v156" class="md-nav__link">
|
|
11321
11765
|
<span class="md-ellipsis">
|
|
11322
|
-
Added
|
|
11766
|
+
Added in v1.5.6
|
|
11323
11767
|
</span>
|
|
11324
11768
|
</a>
|
|
11325
11769
|
|
|
11326
11770
|
</li>
|
|
11327
11771
|
|
|
11328
11772
|
<li class="md-nav__item">
|
|
11329
|
-
<a href="#
|
|
11773
|
+
<a href="#fixed-in-v156" class="md-nav__link">
|
|
11330
11774
|
<span class="md-ellipsis">
|
|
11331
|
-
Fixed
|
|
11775
|
+
Fixed in v1.5.6
|
|
11332
11776
|
</span>
|
|
11333
11777
|
</a>
|
|
11334
11778
|
|
|
11335
11779
|
</li>
|
|
11336
11780
|
|
|
11337
11781
|
<li class="md-nav__item">
|
|
11338
|
-
<a href="#
|
|
11782
|
+
<a href="#dependencies-in-v156" class="md-nav__link">
|
|
11339
11783
|
<span class="md-ellipsis">
|
|
11340
|
-
Dependencies
|
|
11784
|
+
Dependencies in v1.5.6
|
|
11341
11785
|
</span>
|
|
11342
11786
|
</a>
|
|
11343
11787
|
|
|
11344
11788
|
</li>
|
|
11345
11789
|
|
|
11346
11790
|
<li class="md-nav__item">
|
|
11347
|
-
<a href="#
|
|
11791
|
+
<a href="#documentation-in-v156" class="md-nav__link">
|
|
11348
11792
|
<span class="md-ellipsis">
|
|
11349
|
-
Documentation
|
|
11793
|
+
Documentation in v1.5.6
|
|
11350
11794
|
</span>
|
|
11351
11795
|
</a>
|
|
11352
11796
|
|
|
11353
11797
|
</li>
|
|
11354
11798
|
|
|
11355
11799
|
<li class="md-nav__item">
|
|
11356
|
-
<a href="#
|
|
11800
|
+
<a href="#housekeeping-in-v156" class="md-nav__link">
|
|
11357
11801
|
<span class="md-ellipsis">
|
|
11358
|
-
Housekeeping
|
|
11802
|
+
Housekeeping in v1.5.6
|
|
11359
11803
|
</span>
|
|
11360
11804
|
</a>
|
|
11361
11805
|
|
|
@@ -11377,27 +11821,27 @@
|
|
|
11377
11821
|
<ul class="md-nav__list">
|
|
11378
11822
|
|
|
11379
11823
|
<li class="md-nav__item">
|
|
11380
|
-
<a href="#
|
|
11824
|
+
<a href="#changed-in-v155" class="md-nav__link">
|
|
11381
11825
|
<span class="md-ellipsis">
|
|
11382
|
-
Changed
|
|
11826
|
+
Changed in v1.5.5
|
|
11383
11827
|
</span>
|
|
11384
11828
|
</a>
|
|
11385
11829
|
|
|
11386
11830
|
</li>
|
|
11387
11831
|
|
|
11388
11832
|
<li class="md-nav__item">
|
|
11389
|
-
<a href="#
|
|
11833
|
+
<a href="#fixed-in-v155" class="md-nav__link">
|
|
11390
11834
|
<span class="md-ellipsis">
|
|
11391
|
-
Fixed
|
|
11835
|
+
Fixed in v1.5.5
|
|
11392
11836
|
</span>
|
|
11393
11837
|
</a>
|
|
11394
11838
|
|
|
11395
11839
|
</li>
|
|
11396
11840
|
|
|
11397
11841
|
<li class="md-nav__item">
|
|
11398
|
-
<a href="#
|
|
11842
|
+
<a href="#housekeeping-in-v155" class="md-nav__link">
|
|
11399
11843
|
<span class="md-ellipsis">
|
|
11400
|
-
Housekeeping
|
|
11844
|
+
Housekeeping in v1.5.5
|
|
11401
11845
|
</span>
|
|
11402
11846
|
</a>
|
|
11403
11847
|
|
|
@@ -11419,18 +11863,18 @@
|
|
|
11419
11863
|
<ul class="md-nav__list">
|
|
11420
11864
|
|
|
11421
11865
|
<li class="md-nav__item">
|
|
11422
|
-
<a href="#
|
|
11866
|
+
<a href="#fixed-in-v154" class="md-nav__link">
|
|
11423
11867
|
<span class="md-ellipsis">
|
|
11424
|
-
Fixed
|
|
11868
|
+
Fixed in v1.5.4
|
|
11425
11869
|
</span>
|
|
11426
11870
|
</a>
|
|
11427
11871
|
|
|
11428
11872
|
</li>
|
|
11429
11873
|
|
|
11430
11874
|
<li class="md-nav__item">
|
|
11431
|
-
<a href="#
|
|
11875
|
+
<a href="#documentation-in-v154" class="md-nav__link">
|
|
11432
11876
|
<span class="md-ellipsis">
|
|
11433
|
-
Documentation
|
|
11877
|
+
Documentation in v1.5.4
|
|
11434
11878
|
</span>
|
|
11435
11879
|
</a>
|
|
11436
11880
|
|
|
@@ -11452,9 +11896,9 @@
|
|
|
11452
11896
|
<ul class="md-nav__list">
|
|
11453
11897
|
|
|
11454
11898
|
<li class="md-nav__item">
|
|
11455
|
-
<a href="#
|
|
11899
|
+
<a href="#fixed-in-v153" class="md-nav__link">
|
|
11456
11900
|
<span class="md-ellipsis">
|
|
11457
|
-
Fixed
|
|
11901
|
+
Fixed in v1.5.3
|
|
11458
11902
|
</span>
|
|
11459
11903
|
</a>
|
|
11460
11904
|
|
|
@@ -11476,54 +11920,54 @@
|
|
|
11476
11920
|
<ul class="md-nav__list">
|
|
11477
11921
|
|
|
11478
11922
|
<li class="md-nav__item">
|
|
11479
|
-
<a href="#
|
|
11923
|
+
<a href="#added-in-v152" class="md-nav__link">
|
|
11480
11924
|
<span class="md-ellipsis">
|
|
11481
|
-
Added
|
|
11925
|
+
Added in v1.5.2
|
|
11482
11926
|
</span>
|
|
11483
11927
|
</a>
|
|
11484
11928
|
|
|
11485
11929
|
</li>
|
|
11486
11930
|
|
|
11487
11931
|
<li class="md-nav__item">
|
|
11488
|
-
<a href="#
|
|
11932
|
+
<a href="#changed-in-v152" class="md-nav__link">
|
|
11489
11933
|
<span class="md-ellipsis">
|
|
11490
|
-
Changed
|
|
11934
|
+
Changed in v1.5.2
|
|
11491
11935
|
</span>
|
|
11492
11936
|
</a>
|
|
11493
11937
|
|
|
11494
11938
|
</li>
|
|
11495
11939
|
|
|
11496
11940
|
<li class="md-nav__item">
|
|
11497
|
-
<a href="#
|
|
11941
|
+
<a href="#fixed-in-v152" class="md-nav__link">
|
|
11498
11942
|
<span class="md-ellipsis">
|
|
11499
|
-
Fixed
|
|
11943
|
+
Fixed in v1.5.2
|
|
11500
11944
|
</span>
|
|
11501
11945
|
</a>
|
|
11502
11946
|
|
|
11503
11947
|
</li>
|
|
11504
11948
|
|
|
11505
11949
|
<li class="md-nav__item">
|
|
11506
|
-
<a href="#
|
|
11950
|
+
<a href="#dependencies-in-v152" class="md-nav__link">
|
|
11507
11951
|
<span class="md-ellipsis">
|
|
11508
|
-
Dependencies
|
|
11952
|
+
Dependencies in v1.5.2
|
|
11509
11953
|
</span>
|
|
11510
11954
|
</a>
|
|
11511
11955
|
|
|
11512
11956
|
</li>
|
|
11513
11957
|
|
|
11514
11958
|
<li class="md-nav__item">
|
|
11515
|
-
<a href="#
|
|
11959
|
+
<a href="#documentation-in-v152" class="md-nav__link">
|
|
11516
11960
|
<span class="md-ellipsis">
|
|
11517
|
-
Documentation
|
|
11961
|
+
Documentation in v1.5.2
|
|
11518
11962
|
</span>
|
|
11519
11963
|
</a>
|
|
11520
11964
|
|
|
11521
11965
|
</li>
|
|
11522
11966
|
|
|
11523
11967
|
<li class="md-nav__item">
|
|
11524
|
-
<a href="#
|
|
11968
|
+
<a href="#housekeeping-in-v152" class="md-nav__link">
|
|
11525
11969
|
<span class="md-ellipsis">
|
|
11526
|
-
Housekeeping
|
|
11970
|
+
Housekeeping in v1.5.2
|
|
11527
11971
|
</span>
|
|
11528
11972
|
</a>
|
|
11529
11973
|
|
|
@@ -11545,27 +11989,27 @@
|
|
|
11545
11989
|
<ul class="md-nav__list">
|
|
11546
11990
|
|
|
11547
11991
|
<li class="md-nav__item">
|
|
11548
|
-
<a href="#
|
|
11992
|
+
<a href="#added-in-v151" class="md-nav__link">
|
|
11549
11993
|
<span class="md-ellipsis">
|
|
11550
|
-
Added
|
|
11994
|
+
Added in v1.5.1
|
|
11551
11995
|
</span>
|
|
11552
11996
|
</a>
|
|
11553
11997
|
|
|
11554
11998
|
</li>
|
|
11555
11999
|
|
|
11556
12000
|
<li class="md-nav__item">
|
|
11557
|
-
<a href="#
|
|
12001
|
+
<a href="#fixed-in-v151" class="md-nav__link">
|
|
11558
12002
|
<span class="md-ellipsis">
|
|
11559
|
-
Fixed
|
|
12003
|
+
Fixed in v1.5.1
|
|
11560
12004
|
</span>
|
|
11561
12005
|
</a>
|
|
11562
12006
|
|
|
11563
12007
|
</li>
|
|
11564
12008
|
|
|
11565
12009
|
<li class="md-nav__item">
|
|
11566
|
-
<a href="#
|
|
12010
|
+
<a href="#housekeeping-in-v151" class="md-nav__link">
|
|
11567
12011
|
<span class="md-ellipsis">
|
|
11568
|
-
Housekeeping
|
|
12012
|
+
Housekeeping in v1.5.1
|
|
11569
12013
|
</span>
|
|
11570
12014
|
</a>
|
|
11571
12015
|
|
|
@@ -11596,54 +12040,54 @@
|
|
|
11596
12040
|
<ul class="md-nav__list">
|
|
11597
12041
|
|
|
11598
12042
|
<li class="md-nav__item">
|
|
11599
|
-
<a href="#
|
|
12043
|
+
<a href="#added-in-v150-beta1" class="md-nav__link">
|
|
11600
12044
|
<span class="md-ellipsis">
|
|
11601
|
-
Added
|
|
12045
|
+
Added in v1.5.0-beta.1
|
|
11602
12046
|
</span>
|
|
11603
12047
|
</a>
|
|
11604
12048
|
|
|
11605
12049
|
</li>
|
|
11606
12050
|
|
|
11607
12051
|
<li class="md-nav__item">
|
|
11608
|
-
<a href="#
|
|
12052
|
+
<a href="#changed-in-v150-beta1" class="md-nav__link">
|
|
11609
12053
|
<span class="md-ellipsis">
|
|
11610
|
-
Changed
|
|
12054
|
+
Changed in v1.5.0-beta.1
|
|
11611
12055
|
</span>
|
|
11612
12056
|
</a>
|
|
11613
12057
|
|
|
11614
12058
|
</li>
|
|
11615
12059
|
|
|
11616
12060
|
<li class="md-nav__item">
|
|
11617
|
-
<a href="#
|
|
12061
|
+
<a href="#fixed-in-v150-beta1" class="md-nav__link">
|
|
11618
12062
|
<span class="md-ellipsis">
|
|
11619
|
-
Fixed
|
|
12063
|
+
Fixed in v1.5.0-beta.1
|
|
11620
12064
|
</span>
|
|
11621
12065
|
</a>
|
|
11622
12066
|
|
|
11623
12067
|
</li>
|
|
11624
12068
|
|
|
11625
12069
|
<li class="md-nav__item">
|
|
11626
|
-
<a href="#
|
|
12070
|
+
<a href="#dependencies-in-v150-beta1" class="md-nav__link">
|
|
11627
12071
|
<span class="md-ellipsis">
|
|
11628
|
-
Dependencies
|
|
12072
|
+
Dependencies in v1.5.0-beta.1
|
|
11629
12073
|
</span>
|
|
11630
12074
|
</a>
|
|
11631
12075
|
|
|
11632
12076
|
</li>
|
|
11633
12077
|
|
|
11634
12078
|
<li class="md-nav__item">
|
|
11635
|
-
<a href="#
|
|
12079
|
+
<a href="#documentation-in-v150-beta1" class="md-nav__link">
|
|
11636
12080
|
<span class="md-ellipsis">
|
|
11637
|
-
Documentation
|
|
12081
|
+
Documentation in v1.5.0-beta.1
|
|
11638
12082
|
</span>
|
|
11639
12083
|
</a>
|
|
11640
12084
|
|
|
11641
12085
|
</li>
|
|
11642
12086
|
|
|
11643
12087
|
<li class="md-nav__item">
|
|
11644
|
-
<a href="#
|
|
12088
|
+
<a href="#housekeeping-in-v150-beta1" class="md-nav__link">
|
|
11645
12089
|
<span class="md-ellipsis">
|
|
11646
|
-
Housekeeping
|
|
12090
|
+
Housekeeping in v1.5.0-beta.1
|
|
11647
12091
|
</span>
|
|
11648
12092
|
</a>
|
|
11649
12093
|
|
|
@@ -11672,8 +12116,6 @@
|
|
|
11672
12116
|
|
|
11673
12117
|
|
|
11674
12118
|
|
|
11675
|
-
<!-- markdownlint-disable MD024 -->
|
|
11676
|
-
|
|
11677
12119
|
<h1 id="nautobot-v15">Nautobot v1.5<a class="headerlink" href="#nautobot-v15" title="Permanent link">¶</a></h1>
|
|
11678
12120
|
<p>This document describes all new features and changes in Nautobot 1.5.</p>
|
|
11679
12121
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -11868,51 +12310,50 @@ relationship:</p>
|
|
|
11868
12310
|
</tr>
|
|
11869
12311
|
</tbody>
|
|
11870
12312
|
</table>
|
|
11871
|
-
<!-- towncrier release notes start -->
|
|
11872
12313
|
<h2 id="v1524-2023-07-24">v1.5.24 (2023-07-24)<a class="headerlink" href="#v1524-2023-07-24" title="Permanent link">¶</a></h2>
|
|
11873
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12314
|
+
<h3 id="security-in-v1524">Security in v1.5.24<a class="headerlink" href="#security-in-v1524" title="Permanent link">¶</a></h3>
|
|
11874
12315
|
<ul>
|
|
11875
12316
|
<li><a href="https://github.com/nautobot/nautobot/issues/4126">#4126</a> - Updated <code>cryptography</code> to <code>41.0.2</code> due to CVE-2023-38325. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11876
12317
|
</ul>
|
|
11877
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12318
|
+
<h3 id="fixed-in-v1524">Fixed in v1.5.24<a class="headerlink" href="#fixed-in-v1524" title="Permanent link">¶</a></h3>
|
|
11878
12319
|
<ul>
|
|
11879
12320
|
<li><a href="https://github.com/nautobot/nautobot/issues/3312">#3312</a> - Fixed custom fields not auto-populating when creating objects through the ORM.</li>
|
|
11880
12321
|
<li><a href="https://github.com/nautobot/nautobot/issues/4127">#4127</a> - Fixed JavaScript error with 'Check Secret' button introduced in the previous patch release.</li>
|
|
11881
12322
|
</ul>
|
|
11882
12323
|
<h2 id="v1523-2023-07-10">v1.5.23 (2023-07-10)<a class="headerlink" href="#v1523-2023-07-10" title="Permanent link">¶</a></h2>
|
|
11883
|
-
<h3 id="
|
|
12324
|
+
<h3 id="security-in-v1523">Security in v1.5.23<a class="headerlink" href="#security-in-v1523" title="Permanent link">¶</a></h3>
|
|
11884
12325
|
<ul>
|
|
11885
12326
|
<li><a href="https://github.com/nautobot/nautobot/issues/4064">#4064</a> - Updated <code>Django</code> to <code>3.2.20</code> to address <code>CVE-2023-36053</code>.</li>
|
|
11886
12327
|
</ul>
|
|
11887
|
-
<h3 id="
|
|
12328
|
+
<h3 id="added-in-v1523">Added in v1.5.23<a class="headerlink" href="#added-in-v1523" title="Permanent link">¶</a></h3>
|
|
11888
12329
|
<ul>
|
|
11889
12330
|
<li><a href="https://github.com/nautobot/nautobot/issues/3235">#3235</a> - Added a warning notifying users when the requested <code>per_page</code> on a list page exceeds the <code>MAX_PAGE_SIZE</code> set.</li>
|
|
11890
12331
|
<li><a href="https://github.com/nautobot/nautobot/issues/3937">#3937</a> - Added a Nautobot 2.0 pre-migration management command aptly named <code>pre_migrate</code>.</li>
|
|
11891
12332
|
</ul>
|
|
11892
|
-
<h3 id="
|
|
12333
|
+
<h3 id="changed-in-v1523">Changed in v1.5.23<a class="headerlink" href="#changed-in-v1523" title="Permanent link">¶</a></h3>
|
|
11893
12334
|
<ul>
|
|
11894
12335
|
<li><a href="https://github.com/nautobot/nautobot/issues/1854">#1854</a> - When sorting tables for MPTT models, nesting/indentation of the model name display is disabled as it was misleading.</li>
|
|
11895
12336
|
<li><a href="https://github.com/nautobot/nautobot/issues/1854">#1854</a> - Disabled sorting on TreeNode model tables as TreeNode do not support sorting.</li>
|
|
11896
12337
|
</ul>
|
|
11897
|
-
<h3 id="
|
|
12338
|
+
<h3 id="fixed-in-v1523">Fixed in v1.5.23<a class="headerlink" href="#fixed-in-v1523" title="Permanent link">¶</a></h3>
|
|
11898
12339
|
<ul>
|
|
11899
12340
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Fixed a signal handler that could cause <code>nautobot-server loaddata</code> to abort if certain data is present.</li>
|
|
11900
12341
|
<li><a href="https://github.com/nautobot/nautobot/issues/3109">#3109</a> - Fixed missing trailing slash in NautobotUIViewSet urls.</li>
|
|
11901
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3524">#3524</a> - Fixed the unhandled exception brought on by updating Rack to a new site with a similar device sharing the same name and tenant by catching error in
|
|
12342
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3524">#3524</a> - Fixed the unhandled exception brought on by updating Rack to a new site with a similar device sharing the same name and tenant by catching error in <code>RackForm.clean</code>.</li>
|
|
11902
12343
|
<li><a href="https://github.com/nautobot/nautobot/issues/4021">#4021</a> - Fixed erroneous warning banner on list views when <code>MAX_PAGE_SIZE</code> is set to zero.</li>
|
|
11903
12344
|
<li><a href="https://github.com/nautobot/nautobot/issues/4048">#4048</a> - Fixed broken tab navigation in secrets.</li>
|
|
11904
12345
|
</ul>
|
|
11905
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12346
|
+
<h3 id="dependencies-in-v1523">Dependencies in v1.5.23<a class="headerlink" href="#dependencies-in-v1523" title="Permanent link">¶</a></h3>
|
|
11906
12347
|
<ul>
|
|
11907
12348
|
<li><a href="https://github.com/nautobot/nautobot/issues/4064">#4064</a> - Updated <code>Django</code> to <code>3.2.20</code> to address <code>CVE-2023-36053</code>.</li>
|
|
11908
12349
|
</ul>
|
|
11909
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12350
|
+
<h3 id="documentation-in-v1523">Documentation in v1.5.23<a class="headerlink" href="#documentation-in-v1523" title="Permanent link">¶</a></h3>
|
|
11910
12351
|
<ul>
|
|
11911
12352
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Revised documentation for recommended parameters to use when running <code>nautobot-server dumpdata</code>.</li>
|
|
11912
12353
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Revised documentation around preparing to run <code>nautobot-server loaddata</code>.</li>
|
|
11913
12354
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Added documentation to run <code>nautobot-server trace_paths</code> after <code>nautobot-server loaddata</code>.</li>
|
|
11914
12355
|
</ul>
|
|
11915
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12356
|
+
<h3 id="housekeeping-in-v1523">Housekeeping in v1.5.23<a class="headerlink" href="#housekeeping-in-v1523" title="Permanent link">¶</a></h3>
|
|
11916
12357
|
<ul>
|
|
11917
12358
|
<li><a href="https://github.com/nautobot/nautobot/issues/3422">#3422</a> - Fixed postgres database healthcheck error message in development environment.</li>
|
|
11918
12359
|
<li><a href="https://github.com/nautobot/nautobot/issues/4049">#4049</a> - Restructured non-production dependencies in <code>pyproject.toml</code> to comply with latest Poetry expectations.</li>
|
|
@@ -11920,16 +12361,16 @@ relationship:</p>
|
|
|
11920
12361
|
<li><a href="https://github.com/nautobot/nautobot/issues/4050">#4050</a> - Added <code>develop-1.6</code> to list of target branches to run changelog step in pull request CI workflow.</li>
|
|
11921
12362
|
</ul>
|
|
11922
12363
|
<h2 id="v1522-2023-06-26">v1.5.22 (2023-06-26)<a class="headerlink" href="#v1522-2023-06-26" title="Permanent link">¶</a></h2>
|
|
11923
|
-
<h3 id="
|
|
12364
|
+
<h3 id="security-in-v1522">Security in v1.5.22<a class="headerlink" href="#security-in-v1522" title="Permanent link">¶</a></h3>
|
|
11924
12365
|
<ul>
|
|
11925
12366
|
<li><a href="https://github.com/nautobot/nautobot/issues/3796">#3796</a> - Updated <code>requests</code> to 2.31.0 to address CVE-2023-32681. This is a development dependency and will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11926
12367
|
<li><a href="https://github.com/nautobot/nautobot/issues/3843">#3843</a> - Updated <code>cryptography</code> to 41.0.0 due to a statically linked version of OpenSSL which contained vulnerability CVE-2023-2650. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11927
12368
|
</ul>
|
|
11928
|
-
<h3 id="
|
|
12369
|
+
<h3 id="added-in-v1522">Added in v1.5.22<a class="headerlink" href="#added-in-v1522" title="Permanent link">¶</a></h3>
|
|
11929
12370
|
<ul>
|
|
11930
12371
|
<li><a href="https://github.com/nautobot/nautobot/issues/3534">#3534</a> - Added optional args and kwargs to <code>BaseModel.validated_save()</code> that pass through to the model's <code>save</code> method.</li>
|
|
11931
12372
|
</ul>
|
|
11932
|
-
<h3 id="
|
|
12373
|
+
<h3 id="fixed-in-v1522">Fixed in v1.5.22<a class="headerlink" href="#fixed-in-v1522" title="Permanent link">¶</a></h3>
|
|
11933
12374
|
<ul>
|
|
11934
12375
|
<li><a href="https://github.com/nautobot/nautobot/issues/3658">#3658</a> - Fixed a typo in the success message when removing a child Device from a Device Bay.</li>
|
|
11935
12376
|
<li><a href="https://github.com/nautobot/nautobot/issues/3739">#3739</a> - Fixed change log entries not being created for some long running requests.</li>
|
|
@@ -11938,245 +12379,245 @@ relationship:</p>
|
|
|
11938
12379
|
<li><a href="https://github.com/nautobot/nautobot/issues/3948">#3948</a> - Fixed device name copy button adding an extra space/return.</li>
|
|
11939
12380
|
<li><a href="https://github.com/nautobot/nautobot/issues/3987">#3987</a> - Fixed issue where download SVG download did not actually download.</li>
|
|
11940
12381
|
</ul>
|
|
11941
|
-
<h3 id="
|
|
12382
|
+
<h3 id="documentation-in-v1522">Documentation in v1.5.22<a class="headerlink" href="#documentation-in-v1522" title="Permanent link">¶</a></h3>
|
|
11942
12383
|
<ul>
|
|
11943
12384
|
<li><a href="https://github.com/nautobot/nautobot/issues/3946">#3946</a> - Added warning note to job scheduling documentation for the attributes that can prevent scheduling.</li>
|
|
11944
12385
|
</ul>
|
|
11945
|
-
<h3 id="
|
|
12386
|
+
<h3 id="housekeeping-in-v1522">Housekeeping in v1.5.22<a class="headerlink" href="#housekeeping-in-v1522" title="Permanent link">¶</a></h3>
|
|
11946
12387
|
<ul>
|
|
11947
12388
|
<li><a href="https://github.com/nautobot/nautobot/issues/3534">#3534</a> - Fixed confusing unit test failure message when trying to run a non-existent test.</li>
|
|
11948
12389
|
<li><a href="https://github.com/nautobot/nautobot/issues/3534">#3534</a> - Fixed unit tests sometimes clearing out the default database.</li>
|
|
11949
12390
|
</ul>
|
|
11950
12391
|
<h2 id="v1521-2023-06-12">v1.5.21 (2023-06-12)<a class="headerlink" href="#v1521-2023-06-12" title="Permanent link">¶</a></h2>
|
|
11951
|
-
<h3 id="
|
|
12392
|
+
<h3 id="added-in-v1521">Added in v1.5.21<a class="headerlink" href="#added-in-v1521" title="Permanent link">¶</a></h3>
|
|
11952
12393
|
<ul>
|
|
11953
12394
|
<li><a href="https://github.com/nautobot/nautobot/issues/3897">#3897</a> - Adds log message when a secrets group for a git repository doesn't yield a token.</li>
|
|
11954
12395
|
</ul>
|
|
11955
|
-
<h3 id="
|
|
12396
|
+
<h3 id="fixed-in-v1521">Fixed in v1.5.21<a class="headerlink" href="#fixed-in-v1521" title="Permanent link">¶</a></h3>
|
|
11956
12397
|
<ul>
|
|
11957
12398
|
<li><a href="https://github.com/nautobot/nautobot/issues/3809">#3809</a> - Fixed a bug that prevented <code>__init__()</code> function of <code>bulk_create_form_class</code> being overridden in NautobotUIViewSet.</li>
|
|
11958
12399
|
</ul>
|
|
11959
|
-
<h3 id="
|
|
12400
|
+
<h3 id="dependencies-in-v1521">Dependencies in v1.5.21<a class="headerlink" href="#dependencies-in-v1521" title="Permanent link">¶</a></h3>
|
|
11960
12401
|
<ul>
|
|
11961
12402
|
<li><a href="https://github.com/nautobot/nautobot/issues/3882">#3882</a> - Removed deprecated distutils dependency.</li>
|
|
11962
12403
|
</ul>
|
|
11963
|
-
<h3 id="
|
|
12404
|
+
<h3 id="documentation-in-v1521">Documentation in v1.5.21<a class="headerlink" href="#documentation-in-v1521" title="Permanent link">¶</a></h3>
|
|
11964
12405
|
<ul>
|
|
11965
12406
|
<li><a href="https://github.com/nautobot/nautobot/issues/3806">#3806</a> - Added instructions and examples for SAML SSO using Okta as the IdP.</li>
|
|
11966
12407
|
<li><a href="https://github.com/nautobot/nautobot/issues/3811">#3811</a> - Added a note that addresses UWSGI buffer size concerns with Azure SSO in <code>nautobot/docs/user-guide/administration/configuration/authentication/sso.md</code>.</li>
|
|
11967
12408
|
<li><a href="https://github.com/nautobot/nautobot/issues/3888">#3888</a> - Changed note for celery concurrency in the docs.</li>
|
|
11968
12409
|
</ul>
|
|
11969
12410
|
<h2 id="v1520-2023-05-30">v1.5.20 (2023-05-30)<a class="headerlink" href="#v1520-2023-05-30" title="Permanent link">¶</a></h2>
|
|
11970
|
-
<h3 id="
|
|
12411
|
+
<h3 id="changed-in-v1520">Changed in v1.5.20<a class="headerlink" href="#changed-in-v1520" title="Permanent link">¶</a></h3>
|
|
11971
12412
|
<ul>
|
|
11972
12413
|
<li><a href="https://github.com/nautobot/nautobot/issues/3680">#3680</a> - Changed device component instantiation to be a separate method.</li>
|
|
11973
12414
|
</ul>
|
|
11974
|
-
<h3 id="
|
|
12415
|
+
<h3 id="fixed-in-v1520">Fixed in v1.5.20<a class="headerlink" href="#fixed-in-v1520" title="Permanent link">¶</a></h3>
|
|
11975
12416
|
<ul>
|
|
11976
12417
|
<li><a href="https://github.com/nautobot/nautobot/issues/3503">#3503</a> - Fixed FieldError when sorting VMs list by primary IP.</li>
|
|
11977
12418
|
<li><a href="https://github.com/nautobot/nautobot/issues/3616">#3616</a> - Fixed <code>location</code> filter on <code>CircuitFilterSet</code> and <code>ProviderFilterSet</code>.</li>
|
|
11978
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/3787">#3787</a> - Fixed MySQL <code>Out of sort memory</code> error on <code>JobListView</code> and <code>JobResultListView</code>.</li>
|
|
11979
12420
|
<li><a href="https://github.com/nautobot/nautobot/issues/3789">#3789</a> - Fixed Exception <code>unsupported operand type(s) for -: 'list' and 'list'</code> for MultiObjectVar with missing UUID.</li>
|
|
11980
12421
|
</ul>
|
|
11981
|
-
<h3 id="
|
|
12422
|
+
<h3 id="documentation-in-v1520">Documentation in v1.5.20<a class="headerlink" href="#documentation-in-v1520" title="Permanent link">¶</a></h3>
|
|
11982
12423
|
<ul>
|
|
11983
12424
|
<li><a href="https://github.com/nautobot/nautobot/issues/3766">#3766</a> - Add troubleshooting steps for Azure AD SSO Group Sync example.</li>
|
|
11984
12425
|
<li><a href="https://github.com/nautobot/nautobot/issues/3400">#3400</a> - Added documentation on how to enable Jobs and Job hooks.</li>
|
|
11985
12426
|
</ul>
|
|
11986
12427
|
<h2 id="v1519-2023-05-16">v1.5.19 (2023-05-16)<a class="headerlink" href="#v1519-2023-05-16" title="Permanent link">¶</a></h2>
|
|
11987
|
-
<h3 id="
|
|
12428
|
+
<h3 id="security-in-v1519">Security in v1.5.19<a class="headerlink" href="#security-in-v1519" title="Permanent link">¶</a></h3>
|
|
11988
12429
|
<ul>
|
|
11989
12430
|
<li><a href="https://github.com/nautobot/nautobot/issues/3698">#3698</a> - Updated <code>lxml</code> to <code>~4.9.2</code> to address <code>CVE-2022-2309</code>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11990
12431
|
<li><a href="https://github.com/nautobot/nautobot/issues/3724">#3724</a> - Updated <code>django</code> to <code>~3.2.19</code> due to <code>CVE-2023-31047</code>.</li>
|
|
11991
12432
|
<li><a href="https://github.com/nautobot/nautobot/issues/3753">#3753</a> - Updated indirect dev dependency <code>pymdown-extensions</code> to <code>10.0</code> to address <code>CVE-2023-32309</code>. This should not be installed in a production environment by default but should be updated if you have installed it.</li>
|
|
11992
12433
|
</ul>
|
|
11993
|
-
<h3 id="
|
|
12434
|
+
<h3 id="changed-in-v1519">Changed in v1.5.19<a class="headerlink" href="#changed-in-v1519" title="Permanent link">¶</a></h3>
|
|
11994
12435
|
<ul>
|
|
11995
12436
|
<li><a href="https://github.com/nautobot/nautobot/issues/3617">#3617</a> - SearchForms on Nautobot homepage now redirect users to login page when they are not authenticated.</li>
|
|
11996
12437
|
<li><a href="https://github.com/nautobot/nautobot/issues/3663">#3663</a> - Modified <code>delete_button</code> and <code>edit_button</code> template tags to lookup <code>pk</code> and <code>slug</code> without the need to specify the lookup key.</li>
|
|
11997
12438
|
</ul>
|
|
11998
|
-
<h3 id="
|
|
12439
|
+
<h3 id="fixed-in-v1519">Fixed in v1.5.19<a class="headerlink" href="#fixed-in-v1519" title="Permanent link">¶</a></h3>
|
|
11999
12440
|
<ul>
|
|
12000
12441
|
<li><a href="https://github.com/nautobot/nautobot/issues/3704">#3704</a> - Fixed GitRepository fetching on Home Page when getting repo-based Job's name.</li>
|
|
12001
12442
|
<li><a href="https://github.com/nautobot/nautobot/issues/3726">#3726</a> - Fixed a <code>KeyError</code> when filtering Cables in the UI by <code>termination_a_type</code> or <code>termination_b_type</code>.</li>
|
|
12002
12443
|
</ul>
|
|
12003
|
-
<h3 id="
|
|
12444
|
+
<h3 id="dependencies-in-v1519">Dependencies in v1.5.19<a class="headerlink" href="#dependencies-in-v1519" title="Permanent link">¶</a></h3>
|
|
12004
12445
|
<ul>
|
|
12005
12446
|
<li><a href="https://github.com/nautobot/nautobot/issues/3549">#3549</a> - Updated <code>django</code> to <code>~3.2.19</code> to address <code>CVE-2023-31047</code>.</li>
|
|
12006
12447
|
<li><a href="https://github.com/nautobot/nautobot/issues/3549">#3549</a> - Updated <code>mkdocs</code> to <code>~1.4.3</code>.</li>
|
|
12007
12448
|
<li><a href="https://github.com/nautobot/nautobot/issues/3549">#3549</a> - Updated <code>psycopg2-binary</code> to <code>~2.9.6</code>.</li>
|
|
12008
12449
|
<li><a href="https://github.com/nautobot/nautobot/issues/3698">#3698</a> - Updated <code>social-auth-core</code> to <code>~4.4.0</code> to permit addressing <code>CVE-2022-2309</code>.</li>
|
|
12009
12450
|
</ul>
|
|
12010
|
-
<h3 id="
|
|
12451
|
+
<h3 id="documentation-in-v1519">Documentation in v1.5.19<a class="headerlink" href="#documentation-in-v1519" title="Permanent link">¶</a></h3>
|
|
12011
12452
|
<ul>
|
|
12012
12453
|
<li><a href="https://github.com/nautobot/nautobot/issues/3695">#3695</a> - Added note to documentation about using <code>{{ obj.cf }}</code> to access custom fields in jinja templates.</li>
|
|
12013
12454
|
<li><a href="https://github.com/nautobot/nautobot/issues/3703">#3703</a> - Added generic views documentation to navigation panel.</li>
|
|
12014
12455
|
</ul>
|
|
12015
|
-
<h3 id="
|
|
12456
|
+
<h3 id="housekeeping-in-v1519">Housekeeping in v1.5.19<a class="headerlink" href="#housekeeping-in-v1519" title="Permanent link">¶</a></h3>
|
|
12016
12457
|
<ul>
|
|
12017
12458
|
<li><a href="https://github.com/nautobot/nautobot/issues/3753">#3753</a> - Updated indirect dev dependency <code>pymdown-extensions</code> to <code>10.0</code> to address <code>CVE-2023-32309</code>.</li>
|
|
12018
12459
|
</ul>
|
|
12019
12460
|
<h2 id="v1518-2023-05-01">v1.5.18 (2023-05-01)<a class="headerlink" href="#v1518-2023-05-01" title="Permanent link">¶</a></h2>
|
|
12020
|
-
<h3 id="
|
|
12461
|
+
<h3 id="security-in-v1518">Security in v1.5.18<a class="headerlink" href="#security-in-v1518" title="Permanent link">¶</a></h3>
|
|
12021
12462
|
<ul>
|
|
12022
12463
|
<li><a href="https://github.com/nautobot/nautobot/issues/3642">#3642</a> - Updated <code>sqlparse</code> to <code>0.4.4</code> due to CVE-2023-30608. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
12023
12464
|
</ul>
|
|
12024
|
-
<h3 id="
|
|
12465
|
+
<h3 id="added-in-v1518">Added in v1.5.18<a class="headerlink" href="#added-in-v1518" title="Permanent link">¶</a></h3>
|
|
12025
12466
|
<ul>
|
|
12026
12467
|
<li><a href="https://github.com/nautobot/nautobot/issues/1526">#1526</a> - Added UI button and REST API to validate a <code>Secret</code> can be retrieved.</li>
|
|
12027
12468
|
<li><a href="https://github.com/nautobot/nautobot/issues/3669">#3669</a> - Added indexes to <code>JobResult</code> across common fields: <code>created</code>, <code>completed</code>, and <code>status</code>.</li>
|
|
12028
12469
|
</ul>
|
|
12029
|
-
<h3 id="
|
|
12470
|
+
<h3 id="changed-in-v1518">Changed in v1.5.18<a class="headerlink" href="#changed-in-v1518" title="Permanent link">¶</a></h3>
|
|
12030
12471
|
<ul>
|
|
12031
12472
|
<li><a href="https://github.com/nautobot/nautobot/issues/3633">#3633</a> - Changed Custom Validator applicator to not require DB query.</li>
|
|
12032
12473
|
</ul>
|
|
12033
|
-
<h3 id="
|
|
12474
|
+
<h3 id="fixed-in-v1518">Fixed in v1.5.18<a class="headerlink" href="#fixed-in-v1518" title="Permanent link">¶</a></h3>
|
|
12034
12475
|
<ul>
|
|
12035
12476
|
<li><a href="https://github.com/nautobot/nautobot/issues/3533">#3533</a> - Fixed an issue where sending a PATCH to <code>/api/dcim/interfaces/(uuid)/</code> might inadvertently reset the interface's status to <code>Active</code>.</li>
|
|
12036
12477
|
<li><a href="https://github.com/nautobot/nautobot/issues/3533">#3533</a> - Fixed an issue where sending a PATCH to <code>/api/users/tokens/(uuid)/</code> might inadvertently change the token's value.</li>
|
|
12037
12478
|
<li><a href="https://github.com/nautobot/nautobot/issues/3612">#3612</a> - Fixed a 500 error when filtering by <code>content_type</code> in Dynamic Groups list view.</li>
|
|
12038
12479
|
<li><a href="https://github.com/nautobot/nautobot/issues/3660">#3660</a> - Fixed an issue where grouped job buttons would always be disabled due to a template rendering issue.</li>
|
|
12039
12480
|
</ul>
|
|
12040
|
-
<h3 id="
|
|
12481
|
+
<h3 id="documentation-in-v1518">Documentation in v1.5.18<a class="headerlink" href="#documentation-in-v1518" title="Permanent link">¶</a></h3>
|
|
12041
12482
|
<ul>
|
|
12042
12483
|
<li><a href="https://github.com/nautobot/nautobot/issues/2800">#2800</a> - Add model documentation to navigation panel.</li>
|
|
12043
12484
|
<li><a href="https://github.com/nautobot/nautobot/issues/3440">#3440</a> - Added warning admonitions for Job Hooks and Job Approvals documentation that setting <code>Meta.approval_required</code> is ignored on <code>JobHookReceiver</code> classes.</li>
|
|
12044
12485
|
</ul>
|
|
12045
|
-
<h3 id="
|
|
12486
|
+
<h3 id="housekeeping-in-v1518">Housekeeping in v1.5.18<a class="headerlink" href="#housekeeping-in-v1518" title="Permanent link">¶</a></h3>
|
|
12046
12487
|
<ul>
|
|
12047
12488
|
<li><a href="https://github.com/nautobot/nautobot/issues/3083">#3083</a> - Fixed an issue where unit tests might fail erroneously when dealing with objects whose name/display contains characters like <code>"<></code>.</li>
|
|
12048
12489
|
<li><a href="https://github.com/nautobot/nautobot/issues/3602">#3602</a> - Updated <code>.gitignore</code> to not track new UI non-source files.</li>
|
|
12049
12490
|
<li><a href="https://github.com/nautobot/nautobot/issues/3621">#3621</a> - Changed development Docker compose commands to not leave temporary containers behind.</li>
|
|
12050
12491
|
</ul>
|
|
12051
12492
|
<h2 id="v1517-2023-04-17">v1.5.17 (2023-04-17)<a class="headerlink" href="#v1517-2023-04-17" title="Permanent link">¶</a></h2>
|
|
12052
|
-
<h3 id="
|
|
12493
|
+
<h3 id="added-in-v1517">Added in v1.5.17<a class="headerlink" href="#added-in-v1517" title="Permanent link">¶</a></h3>
|
|
12053
12494
|
<ul>
|
|
12054
12495
|
<li><a href="https://github.com/nautobot/nautobot/issues/3484">#3484</a> - Added job profiling option to job execution when in DEBUG mode.</li>
|
|
12055
12496
|
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - Added the ability to change the <code>CACHES["default"]["BACKEND"]</code> via an environment variable <code>NAUTOBOT_CACHES_BACKEND</code></li>
|
|
12056
12497
|
</ul>
|
|
12057
|
-
<h3 id="
|
|
12498
|
+
<h3 id="changed-in-v1517">Changed in v1.5.17<a class="headerlink" href="#changed-in-v1517" title="Permanent link">¶</a></h3>
|
|
12058
12499
|
<ul>
|
|
12059
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default database backend if <code>METRICS_ENABLED</code> is <code>True</code> is now "django_prometheus.db.backends.postgresql"</li>
|
|
12060
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default CACHES backend if <code>METRICS_ENABLED</code> is <code>True</code> is now "django_prometheus.cache.backends.redis.RedisCache"</li>
|
|
12500
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default database backend if <code>METRICS_ENABLED</code> is <code>True</code> is now <code>"django_prometheus.db.backends.postgresql"</code></li>
|
|
12501
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default CACHES backend if <code>METRICS_ENABLED</code> is <code>True</code> is now <code>"django_prometheus.cache.backends.redis.RedisCache"</code></li>
|
|
12061
12502
|
<li><a href="https://github.com/nautobot/nautobot/issues/3595">#3595</a> - Update the warning provided when a bad reverse entry is not found in serializer to point to correct import location.</li>
|
|
12062
12503
|
</ul>
|
|
12063
|
-
<h3 id="
|
|
12504
|
+
<h3 id="fixed-in-v1517">Fixed in v1.5.17<a class="headerlink" href="#fixed-in-v1517" title="Permanent link">¶</a></h3>
|
|
12064
12505
|
<ul>
|
|
12065
12506
|
<li><a href="https://github.com/nautobot/nautobot/issues/3116">#3116</a> - Fixed JSON comparison of <code>data_scheme</code> keys in <code>assertInstanceEqual</code> tests.</li>
|
|
12066
12507
|
<li><a href="https://github.com/nautobot/nautobot/issues/3573">#3573</a> - Fixed advanced filtering on interface UI list page not working.</li>
|
|
12067
12508
|
<li><a href="https://github.com/nautobot/nautobot/issues/3598">#3598</a> - Fixed default sanitizer patterns to account for strings beginning with <code>i</code> or <code>is</code>.</li>
|
|
12068
12509
|
</ul>
|
|
12069
|
-
<h3 id="
|
|
12510
|
+
<h3 id="dependencies-in-v1517">Dependencies in v1.5.17<a class="headerlink" href="#dependencies-in-v1517" title="Permanent link">¶</a></h3>
|
|
12070
12511
|
<ul>
|
|
12071
12512
|
<li><a href="https://github.com/nautobot/nautobot/issues/3525">#3525</a> - Added explicit dependency on <code>packaging</code> that had been inadvertently omitted.</li>
|
|
12072
12513
|
</ul>
|
|
12073
|
-
<h3 id="
|
|
12514
|
+
<h3 id="documentation-in-v1517">Documentation in v1.5.17<a class="headerlink" href="#documentation-in-v1517" title="Permanent link">¶</a></h3>
|
|
12074
12515
|
<ul>
|
|
12075
12516
|
<li><a href="https://github.com/nautobot/nautobot/issues/3548">#3548</a> - Changed Git Repository docs to include admonition about Github Apps.</li>
|
|
12076
12517
|
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example for case sensitive typos.</li>
|
|
12077
12518
|
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example not including imports.</li>
|
|
12078
12519
|
</ul>
|
|
12079
12520
|
<h2 id="v1516-2023-04-10">v1.5.16 (2023-04-10)<a class="headerlink" href="#v1516-2023-04-10" title="Permanent link">¶</a></h2>
|
|
12080
|
-
<h3 id="
|
|
12521
|
+
<h3 id="fixed-in-v1516">Fixed in v1.5.16<a class="headerlink" href="#fixed-in-v1516" title="Permanent link">¶</a></h3>
|
|
12081
12522
|
<ul>
|
|
12082
12523
|
<li><a href="https://github.com/nautobot/nautobot/issues/2944">#2944</a> - Fixed slow performance of relationships on ObjectListView.</li>
|
|
12083
12524
|
<li><a href="https://github.com/nautobot/nautobot/issues/3345">#3345</a> - Fixed missing Relationships in DynamicFilterForm.</li>
|
|
12084
12525
|
<li><a href="https://github.com/nautobot/nautobot/issues/3550">#3550</a> - Fixed display name of filtered relationships on ObjectListView.</li>
|
|
12085
12526
|
</ul>
|
|
12086
|
-
<h3 id="
|
|
12527
|
+
<h3 id="documentation-in-v1516">Documentation in v1.5.16<a class="headerlink" href="#documentation-in-v1516" title="Permanent link">¶</a></h3>
|
|
12087
12528
|
<ul>
|
|
12088
12529
|
<li><a href="https://github.com/nautobot/nautobot/issues/3477">#3477</a> - Added a note under heading Setting ViewSet Attributes to mention the caveat of not using <code>slug</code> or <code>pk</code>.</li>
|
|
12089
12530
|
<li><a href="https://github.com/nautobot/nautobot/issues/3557">#3557</a> - Added docs page for Circuit Maintenance.</li>
|
|
12090
12531
|
</ul>
|
|
12091
|
-
<h3 id="
|
|
12532
|
+
<h3 id="housekeeping-in-v1516">Housekeeping in v1.5.16<a class="headerlink" href="#housekeeping-in-v1516" title="Permanent link">¶</a></h3>
|
|
12092
12533
|
<ul>
|
|
12093
12534
|
<li><a href="https://github.com/nautobot/nautobot/issues/3502">#3502</a> - Updated upstream workflow to support testing apps <code>next-2.0</code> branches against <code>next</code>.</li>
|
|
12094
12535
|
</ul>
|
|
12095
12536
|
<h2 id="v1515-2023-04-04">v1.5.15 (2023-04-04)<a class="headerlink" href="#v1515-2023-04-04" title="Permanent link">¶</a></h2>
|
|
12096
|
-
<h3 id="
|
|
12537
|
+
<h3 id="security-in-v1515">Security in v1.5.15<a class="headerlink" href="#security-in-v1515" title="Permanent link">¶</a></h3>
|
|
12097
12538
|
<ul>
|
|
12098
12539
|
<li><a href="https://github.com/nautobot/nautobot/issues/3499">#3499</a> - Updated <code>redis</code> to 4.5.4 due to CVE-2023-28858 and CVE-2023-28859. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12099
12540
|
</ul>
|
|
12100
|
-
<h3 id="
|
|
12541
|
+
<h3 id="changed-in-v1515">Changed in v1.5.15<a class="headerlink" href="#changed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12101
12542
|
<ul>
|
|
12102
12543
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Moved extra information stored previously in <code>block sidebar</code> to <code>block header_extra</code> in page templates (<code>aggregate_list.html</code> and <code>objectchange_list.html</code>).</li>
|
|
12103
12544
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Documented <code>block header_extra</code> in <code>docs/development/templates.md</code>.</li>
|
|
12104
12545
|
</ul>
|
|
12105
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12546
|
+
<h3 id="removed-in-v1515">Removed in v1.5.15<a class="headerlink" href="#removed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12106
12547
|
<ul>
|
|
12107
12548
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Removed all remaining instances of <code>block sidebar</code> from page templates (<code>aggregate_list.html</code> and <code>objectchange_list.html</code>).</li>
|
|
12108
12549
|
</ul>
|
|
12109
|
-
<h3 id="
|
|
12550
|
+
<h3 id="fixed-in-v1515">Fixed in v1.5.15<a class="headerlink" href="#fixed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12110
12551
|
<ul>
|
|
12111
12552
|
<li><a href="https://github.com/nautobot/nautobot/issues/3480">#3480</a> - Fixed an error that could be seen in certain cases with IPAddress records.</li>
|
|
12112
12553
|
</ul>
|
|
12113
|
-
<h3 id="
|
|
12554
|
+
<h3 id="dependencies-in-v1515">Dependencies in v1.5.15<a class="headerlink" href="#dependencies-in-v1515" title="Permanent link">¶</a></h3>
|
|
12114
12555
|
<ul>
|
|
12115
12556
|
<li><a href="https://github.com/nautobot/nautobot/issues/3499">#3499</a> - Updated <code>redis</code> to 4.5.4. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
12116
12557
|
</ul>
|
|
12117
|
-
<h3 id="
|
|
12558
|
+
<h3 id="documentation-in-v1515">Documentation in v1.5.15<a class="headerlink" href="#documentation-in-v1515" title="Permanent link">¶</a></h3>
|
|
12118
12559
|
<ul>
|
|
12119
12560
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Removed documentation about <code>block sidebar</code> from <code>docs/development/templates.md</code>.</li>
|
|
12120
12561
|
<li><a href="https://github.com/nautobot/nautobot/issues/3446">#3446</a> - Added documentation links for Device Onboarding and LifeCycle Management plugins to docs.nautobot.com menu.</li>
|
|
12121
12562
|
</ul>
|
|
12122
|
-
<h3 id="
|
|
12563
|
+
<h3 id="housekeeping-in-v1515">Housekeeping in v1.5.15<a class="headerlink" href="#housekeeping-in-v1515" title="Permanent link">¶</a></h3>
|
|
12123
12564
|
<ul>
|
|
12124
12565
|
<li><a href="https://github.com/nautobot/nautobot/issues/3206">#3206</a> - Fixed Docker tag syntax on prerelease workflow.</li>
|
|
12125
12566
|
</ul>
|
|
12126
12567
|
<h2 id="v1514-2023-03-20">v1.5.14 (2023-03-20)<a class="headerlink" href="#v1514-2023-03-20" title="Permanent link">¶</a></h2>
|
|
12127
|
-
<h3 id="
|
|
12568
|
+
<h3 id="added-in-v1514">Added in v1.5.14<a class="headerlink" href="#added-in-v1514" title="Permanent link">¶</a></h3>
|
|
12128
12569
|
<ul>
|
|
12129
12570
|
<li><a href="https://github.com/nautobot/nautobot/issues/3033">#3033</a> - Added <code>JobButton</code> model to create single click execution buttons in the web UI to run jobs based on a single object.</li>
|
|
12130
12571
|
<li><a href="https://github.com/nautobot/nautobot/issues/3377">#3377</a> - Added additional choices for many data types in <code>nautobot.dcim</code>.</li>
|
|
12131
12572
|
</ul>
|
|
12132
|
-
<h3 id="
|
|
12573
|
+
<h3 id="documentation-in-v1514">Documentation in v1.5.14<a class="headerlink" href="#documentation-in-v1514" title="Permanent link">¶</a></h3>
|
|
12133
12574
|
<ul>
|
|
12134
12575
|
<li><a href="https://github.com/nautobot/nautobot/issues/3434">#3434</a> - Changed the recommended exception to raise to end jobs early.</li>
|
|
12135
12576
|
</ul>
|
|
12136
|
-
<h3 id="
|
|
12577
|
+
<h3 id="housekeeping-in-v1514">Housekeeping in v1.5.14<a class="headerlink" href="#housekeeping-in-v1514" title="Permanent link">¶</a></h3>
|
|
12137
12578
|
<ul>
|
|
12138
12579
|
<li><a href="https://github.com/nautobot/nautobot/issues/2618">#2618</a> - Added the ability to stand up a local dev env for SSO using Keycloak.</li>
|
|
12139
12580
|
<li><a href="https://github.com/nautobot/nautobot/issues/3419">#3419</a> - Fixed <code>test_queryset_to_csv</code> to format data fetched from the model.</li>
|
|
12140
12581
|
</ul>
|
|
12141
12582
|
<h2 id="v1513-2023-03-14">v1.5.13 (2023-03-14)<a class="headerlink" href="#v1513-2023-03-14" title="Permanent link">¶</a></h2>
|
|
12142
|
-
<h3 id="
|
|
12583
|
+
<h3 id="added-in-v1513">Added in v1.5.13<a class="headerlink" href="#added-in-v1513" title="Permanent link">¶</a></h3>
|
|
12143
12584
|
<ul>
|
|
12144
12585
|
<li><a href="https://github.com/nautobot/nautobot/issues/766">#766</a> - Added option for apps to extend Nautobot's Prometheus metrics, based on <code>nautobot_capacity_metrics</code>.</li>
|
|
12145
12586
|
<li><a href="https://github.com/nautobot/nautobot/issues/3410">#3410</a> - Added <code>-time</code> index for ObjectChange records.</li>
|
|
12146
12587
|
</ul>
|
|
12147
|
-
<h3 id="
|
|
12588
|
+
<h3 id="changed-in-v1513">Changed in v1.5.13<a class="headerlink" href="#changed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12148
12589
|
<ul>
|
|
12149
12590
|
<li><a href="https://github.com/nautobot/nautobot/issues/3410">#3410</a> - Changed Homepage ObjectChange query to not join User or Content Type tables, use record cache for user entries instead.</li>
|
|
12150
12591
|
</ul>
|
|
12151
|
-
<h3 id="
|
|
12592
|
+
<h3 id="removed-in-v1513">Removed in v1.5.13<a class="headerlink" href="#removed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12152
12593
|
<ul>
|
|
12153
12594
|
<li><a href="https://github.com/nautobot/nautobot/issues/3407">#3407</a> - Removed permission checks for ContentTypeAPIViewSet.</li>
|
|
12154
12595
|
</ul>
|
|
12155
|
-
<h3 id="
|
|
12596
|
+
<h3 id="fixed-in-v1513">Fixed in v1.5.13<a class="headerlink" href="#fixed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12156
12597
|
<ul>
|
|
12157
12598
|
<li><a href="https://github.com/nautobot/nautobot/issues/3347">#3347</a> - Fixed (again) <code>Location.parent</code> not populating correctly in the form when editing an existing Location.</li>
|
|
12158
12599
|
</ul>
|
|
12159
|
-
<h3 id="
|
|
12600
|
+
<h3 id="dependencies-in-v1513">Dependencies in v1.5.13<a class="headerlink" href="#dependencies-in-v1513" title="Permanent link">¶</a></h3>
|
|
12160
12601
|
<ul>
|
|
12161
12602
|
<li><a href="https://github.com/nautobot/nautobot/issues/3405">#3405</a> - Updated version of <code>pyopenssl</code> in Nautobot dev environment and Docker images to 23.0.0 due to an incompatibility between older versions of <code>pyopenssl</code> and version 39.x of <code>cryptography</code>. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
12162
12603
|
<li><a href="https://github.com/nautobot/nautobot/issues/3405">#3405</a> - Updated <code>cryptography</code> to 39.0.2. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
12163
12604
|
</ul>
|
|
12164
|
-
<h3 id="
|
|
12605
|
+
<h3 id="documentation-in-v1513">Documentation in v1.5.13<a class="headerlink" href="#documentation-in-v1513" title="Permanent link">¶</a></h3>
|
|
12165
12606
|
<ul>
|
|
12166
12607
|
<li><a href="https://github.com/nautobot/nautobot/issues/3416">#3416</a> - Updated Windows development documentation.</li>
|
|
12167
12608
|
</ul>
|
|
12168
12609
|
<h2 id="v1512-2023-03-03">v1.5.12 (2023-03-03)<a class="headerlink" href="#v1512-2023-03-03" title="Permanent link">¶</a></h2>
|
|
12169
|
-
<h3 id="
|
|
12610
|
+
<h3 id="added-in-v1512">Added in v1.5.12<a class="headerlink" href="#added-in-v1512" title="Permanent link">¶</a></h3>
|
|
12170
12611
|
<ul>
|
|
12171
12612
|
<li><a href="https://github.com/nautobot/nautobot/issues/3182">#3182</a> - Added support for assigning Config Context objects via Dynamic Groups.</li>
|
|
12172
12613
|
<li><a href="https://github.com/nautobot/nautobot/issues/3219">#3219</a> - Added support for custom fields to Dynamic Groups.</li>
|
|
12173
12614
|
<li><a href="https://github.com/nautobot/nautobot/issues/3220">#3220</a> - Added support for relationships to Dynamic Groups.</li>
|
|
12174
12615
|
</ul>
|
|
12175
|
-
<h3 id="
|
|
12616
|
+
<h3 id="changed-in-v1512">Changed in v1.5.12<a class="headerlink" href="#changed-in-v1512" title="Permanent link">¶</a></h3>
|
|
12176
12617
|
<ul>
|
|
12177
12618
|
<li><a href="https://github.com/nautobot/nautobot/issues/3369">#3369</a> - Changed <code>RelationshipModelFilterSetMixin</code> to perform a single OR query including <code>select_related</code> for <code>source_type</code> and <code>destination_type</code> vs. two single queries for each source/destination types.</li>
|
|
12178
12619
|
</ul>
|
|
12179
|
-
<h3 id="
|
|
12620
|
+
<h3 id="fixed-in-v1512">Fixed in v1.5.12<a class="headerlink" href="#fixed-in-v1512" title="Permanent link">¶</a></h3>
|
|
12180
12621
|
<ul>
|
|
12181
12622
|
<li><a href="https://github.com/nautobot/nautobot/issues/3295">#3295</a> - Fixed kombu serialization error on <code>User</code> object that arose when <code>CELERY_RESULT_EXTENDED == True</code> or when <code>enqueue_job</code> was called from within an existing <code>Job</code>.</li>
|
|
12182
12623
|
<li><a href="https://github.com/nautobot/nautobot/issues/3318">#3318</a> - Fixed a bug in prefix factory when a /0 ipv6 network is generated by faker.</li>
|
|
@@ -12184,43 +12625,43 @@ relationship:</p>
|
|
|
12184
12625
|
<li><a href="https://github.com/nautobot/nautobot/issues/3353">#3353</a> - Fixed a bug in <code>nautobot.extras.forms.mixins.CustomFieldModelFilterFormMixin</code> where the list of custom field names were not being stored on <code>self.custom_fields</code>.</li>
|
|
12185
12626
|
<li><a href="https://github.com/nautobot/nautobot/issues/3353">#3353</a> - Fixed a bug in <code>nautobot.utilities.filters.MappedPredicatesFilterMixin</code> (from which <code>SearchFilter</code> inherits) that was preventing <code>q</code> fields from being used in Dynamic Group filters.</li>
|
|
12186
12627
|
</ul>
|
|
12187
|
-
<h3 id="
|
|
12628
|
+
<h3 id="dependencies-in-v1512">Dependencies in v1.5.12<a class="headerlink" href="#dependencies-in-v1512" title="Permanent link">¶</a></h3>
|
|
12188
12629
|
<ul>
|
|
12189
12630
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>GitPython</code> to 3.1.31.</li>
|
|
12190
12631
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>drf-yasg</code> to 1.21.5. Note: this is automatic for the Nautobot-provided containers, but because our dependency on it goes away in 2.0, it's an optional update for other installations.</li>
|
|
12191
12632
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>netutils</code> to 1.4.1.</li>
|
|
12192
12633
|
</ul>
|
|
12193
12634
|
<h2 id="v1511-2023-02-18">v1.5.11 (2023-02-18)<a class="headerlink" href="#v1511-2023-02-18" title="Permanent link">¶</a></h2>
|
|
12194
|
-
<h3 id="
|
|
12635
|
+
<h3 id="security-in-v1511">Security in v1.5.11<a class="headerlink" href="#security-in-v1511" title="Permanent link">¶</a></h3>
|
|
12195
12636
|
<ul>
|
|
12196
12637
|
<li><a href="https://github.com/nautobot/nautobot/issues/3251">#3251</a> - Updated <code>oauthlib</code> to 3.2.2 due to CVE-2022-36087. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12197
12638
|
<li><a href="https://github.com/nautobot/nautobot/issues/3258">#3258</a> - Updated <code>cryptography</code> to 39.0.1 due to CVE-2023-0286, CVE-2023-23931. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12198
12639
|
<li><a href="https://github.com/nautobot/nautobot/issues/3320">#3320</a> - Updated <code>django</code> to 3.2.18 due to CVE-2023-24580.</li>
|
|
12199
12640
|
</ul>
|
|
12200
|
-
<h3 id="
|
|
12641
|
+
<h3 id="added-in-v1511">Added in v1.5.11<a class="headerlink" href="#added-in-v1511" title="Permanent link">¶</a></h3>
|
|
12201
12642
|
<ul>
|
|
12202
12643
|
<li><a href="https://github.com/nautobot/nautobot/issues/3168">#3168</a> - Add device name to bulk interface rename header.</li>
|
|
12203
12644
|
</ul>
|
|
12204
|
-
<h3 id="
|
|
12645
|
+
<h3 id="changed-in-v1511">Changed in v1.5.11<a class="headerlink" href="#changed-in-v1511" title="Permanent link">¶</a></h3>
|
|
12205
12646
|
<ul>
|
|
12206
12647
|
<li><a href="https://github.com/nautobot/nautobot/issues/3134">#3134</a> - Migrate ModelMultipleChoiceFilters to NaturalKeyOrPKMultipleChoiceFilter.</li>
|
|
12207
12648
|
<li><a href="https://github.com/nautobot/nautobot/issues/3264">#3264</a> - Changed <code>DynamicGroup.objects.get_for_object()</code> to be a little more efficient.</li>
|
|
12208
12649
|
</ul>
|
|
12209
|
-
<h3 id="
|
|
12650
|
+
<h3 id="fixed-in-v1511">Fixed in v1.5.11<a class="headerlink" href="#fixed-in-v1511" title="Permanent link">¶</a></h3>
|
|
12210
12651
|
<ul>
|
|
12211
12652
|
<li><a href="https://github.com/nautobot/nautobot/issues/3187">#3187</a> - Fixed <code>DynamicModelChoiceField</code>s having a generic default label when one is provided.</li>
|
|
12212
12653
|
<li><a href="https://github.com/nautobot/nautobot/issues/3274">#3274</a> - Fixed ObjectListViewMixin's filtering when exporting objects in NautobotUIViewSet.</li>
|
|
12213
12654
|
<li><a href="https://github.com/nautobot/nautobot/issues/3290">#3290</a> - Fixed an issue preventing the inclusion of <code>netutils</code> functions in Django templates.</li>
|
|
12214
12655
|
<li><a href="https://github.com/nautobot/nautobot/issues/3335">#3335</a> - Fixed inability to change filtering on custom field (selection) once filter is configured.</li>
|
|
12215
12656
|
</ul>
|
|
12216
|
-
<h3 id="
|
|
12657
|
+
<h3 id="dependencies-in-v1511">Dependencies in v1.5.11<a class="headerlink" href="#dependencies-in-v1511" title="Permanent link">¶</a></h3>
|
|
12217
12658
|
<ul>
|
|
12218
12659
|
<li><a href="https://github.com/nautobot/nautobot/issues/3251">#3251</a> - Updated <code>oauthlib</code> to 3.2.2.</li>
|
|
12219
12660
|
<li><a href="https://github.com/nautobot/nautobot/issues/3258">#3258</a> - Updated <code>cryptography</code> to 39.0.1.</li>
|
|
12220
12661
|
<li><a href="https://github.com/nautobot/nautobot/issues/3320">#3320</a> - Updated <code>django</code> to 3.2.18.</li>
|
|
12221
12662
|
<li><a href="https://github.com/nautobot/nautobot/issues/3333">#3333</a> - Updated <code>netutils</code> constraint from ~1.4.0 to ^1.4.0 to permit semver upgrades.</li>
|
|
12222
12663
|
</ul>
|
|
12223
|
-
<h3 id="
|
|
12664
|
+
<h3 id="documentation-in-v1511">Documentation in v1.5.11<a class="headerlink" href="#documentation-in-v1511" title="Permanent link">¶</a></h3>
|
|
12224
12665
|
<ul>
|
|
12225
12666
|
<li><a href="https://github.com/nautobot/nautobot/issues/3184">#3184</a> - Added Git 2.0+ as a mandatory dependency in the installation instructions.</li>
|
|
12226
12667
|
<li><a href="https://github.com/nautobot/nautobot/issues/3224">#3224</a> - Updates to our deprecation policy: Prior-major REST API versions will be dropped upon next-major release.</li>
|
|
@@ -12230,7 +12671,7 @@ relationship:</p>
|
|
|
12230
12671
|
<li><a href="https://github.com/nautobot/nautobot/issues/3327">#3327</a> - Fixed Azure AD tenant configuration documentation.</li>
|
|
12231
12672
|
<li><a href="https://github.com/nautobot/nautobot/issues/3332">#3332</a> - Fixed missing imports in Secrets Providers plugin development documentation.</li>
|
|
12232
12673
|
</ul>
|
|
12233
|
-
<h3 id="
|
|
12674
|
+
<h3 id="housekeeping-in-v1511">Housekeeping in v1.5.11<a class="headerlink" href="#housekeeping-in-v1511" title="Permanent link">¶</a></h3>
|
|
12234
12675
|
<ul>
|
|
12235
12676
|
<li><a href="https://github.com/nautobot/nautobot/issues/2580">#2580</a> - Fixed fragile generic view test.</li>
|
|
12236
12677
|
<li><a href="https://github.com/nautobot/nautobot/issues/3255">#3255</a> - Added <code>--cache-test-fixtures</code> command line argument to Nautobot unit and integration tests.</li>
|
|
@@ -12239,89 +12680,89 @@ relationship:</p>
|
|
|
12239
12680
|
<li><a href="https://github.com/nautobot/nautobot/issues/3314">#3314</a> - Updated pre-commit hook to validate user namespace prefix on branch name.</li>
|
|
12240
12681
|
</ul>
|
|
12241
12682
|
<h2 id="v1510-2023-02-06">v1.5.10 (2023-02-06)<a class="headerlink" href="#v1510-2023-02-06" title="Permanent link">¶</a></h2>
|
|
12242
|
-
<h3 id="
|
|
12683
|
+
<h3 id="security-in-v1510">Security in v1.5.10<a class="headerlink" href="#security-in-v1510" title="Permanent link">¶</a></h3>
|
|
12243
12684
|
<ul>
|
|
12244
12685
|
<li><a href="https://github.com/nautobot/nautobot/issues/3227">#3227</a> - Updated <code>django</code> to 3.2.17 due to CVE-2023-23969.</li>
|
|
12245
12686
|
</ul>
|
|
12246
|
-
<h3 id="
|
|
12687
|
+
<h3 id="added-in-v1510">Added in v1.5.10<a class="headerlink" href="#added-in-v1510" title="Permanent link">¶</a></h3>
|
|
12247
12688
|
<ul>
|
|
12248
12689
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added <code>CELERY_WORKER_PROMETHEUS_PORTS</code> configuration setting</li>
|
|
12249
12690
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added prometheus HTTP server listening on the worker to expose worker metrics</li>
|
|
12250
12691
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added <code>nautobot_job_duration_seconds</code> counter metric that reports on job execution</li>
|
|
12251
12692
|
</ul>
|
|
12252
|
-
<h3 id="
|
|
12693
|
+
<h3 id="fixed-in-v1510">Fixed in v1.5.10<a class="headerlink" href="#fixed-in-v1510" title="Permanent link">¶</a></h3>
|
|
12253
12694
|
<ul>
|
|
12254
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed interface not raising exception when adding a VLAN from a different site in tagged_vlans
|
|
12695
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed interface not raising exception when adding a VLAN from a different site in <code>tagged_vlans</code>.</li>
|
|
12255
12696
|
</ul>
|
|
12256
|
-
<h3 id="
|
|
12697
|
+
<h3 id="dependencies-in-v1510">Dependencies in v1.5.10<a class="headerlink" href="#dependencies-in-v1510" title="Permanent link">¶</a></h3>
|
|
12257
12698
|
<ul>
|
|
12258
12699
|
<li><a href="https://github.com/nautobot/nautobot/issues/3227">#3227</a> - Updated <code>django</code> to 3.2.17.</li>
|
|
12259
12700
|
</ul>
|
|
12260
|
-
<h3 id="
|
|
12701
|
+
<h3 id="housekeeping-in-v1510">Housekeeping in v1.5.10<a class="headerlink" href="#housekeeping-in-v1510" title="Permanent link">¶</a></h3>
|
|
12261
12702
|
<ul>
|
|
12262
12703
|
<li><a href="https://github.com/nautobot/nautobot/issues/3153">#3153</a> - Made integration test <code>CableConnectFormTestCase.test_js_functionality</code> more resilient and less prone to erroneous failures.</li>
|
|
12263
12704
|
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Updated VLANFactory to generate longer and more "realistic" VLAN names.</li>
|
|
12264
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Fixed a spurious failure in BulkEditObjectsViewTestCase.test_bulk_edit_objects_with_constrained_permission
|
|
12705
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Fixed a spurious failure in <code>BulkEditObjectsViewTestCase.test_bulk_edit_objects_with_constrained_permission</code>.</li>
|
|
12265
12706
|
<li><a href="https://github.com/nautobot/nautobot/issues/3198">#3198</a> - Added dependencies towncrier section, removed extra newline.</li>
|
|
12266
12707
|
<li><a href="https://github.com/nautobot/nautobot/issues/3200">#3200</a> - Added <code>dependencies</code> to the list of valid change fragment types in the documentation.</li>
|
|
12267
12708
|
</ul>
|
|
12268
12709
|
<h2 id="v159-2023-01-26">v1.5.9 (2023-01-26)<a class="headerlink" href="#v159-2023-01-26" title="Permanent link">¶</a></h2>
|
|
12269
|
-
<h3 id="
|
|
12710
|
+
<h3 id="changed-in-v159">Changed in v1.5.9<a class="headerlink" href="#changed-in-v159" title="Permanent link">¶</a></h3>
|
|
12270
12711
|
<ul>
|
|
12271
12712
|
<li><a href="https://github.com/nautobot/nautobot/issues/3171">#3171</a> - Increased maximum VLAN name length from 64 characters to 255 characters.</li>
|
|
12272
12713
|
</ul>
|
|
12273
|
-
<h3 id="
|
|
12714
|
+
<h3 id="fixed-in-v159">Fixed in v1.5.9<a class="headerlink" href="#fixed-in-v159" title="Permanent link">¶</a></h3>
|
|
12274
12715
|
<ul>
|
|
12275
12716
|
<li><a href="https://github.com/nautobot/nautobot/issues/3114">#3114</a> - Fixed Navbar scroll through top-level menu in low resolution desktop screens.</li>
|
|
12276
12717
|
<li><a href="https://github.com/nautobot/nautobot/issues/3155">#3155</a> - Aligned buttons on device component create page.</li>
|
|
12277
12718
|
<li><a href="https://github.com/nautobot/nautobot/issues/3169">#3169</a> - Fixed data mismatch in <code>ScheduledJob</code> causing celery workers to fail when running scheduled jobs created in versions prior to <code>v1.5.8</code>. ⚠ <strong>NOTE</strong>: If your celery workers are failing on startup after upgrading to <code>v1.5.8</code>, you may need to purge the celery queue with <code>nautobot-server celery purge</code> or <code>nautobot-server celery purge -Q <queues></code> to purge custom queues.</li>
|
|
12278
12719
|
</ul>
|
|
12279
|
-
<h3 id="
|
|
12720
|
+
<h3 id="dependencies-in-v159">Dependencies in v1.5.9<a class="headerlink" href="#dependencies-in-v159" title="Permanent link">¶</a></h3>
|
|
12280
12721
|
<ul>
|
|
12281
12722
|
<li><a href="https://github.com/nautobot/nautobot/issues/3144">#3144</a> - Updated <code>netutils</code> to <code>~1.4.0</code></li>
|
|
12282
12723
|
</ul>
|
|
12283
|
-
<h3 id="
|
|
12724
|
+
<h3 id="housekeeping-in-v159">Housekeeping in v1.5.9<a class="headerlink" href="#housekeeping-in-v159" title="Permanent link">¶</a></h3>
|
|
12284
12725
|
<ul>
|
|
12285
12726
|
<li><a href="https://github.com/nautobot/nautobot/issues/3117">#3117</a> - Update Renovate config to batch lockfile updates to next.</li>
|
|
12286
12727
|
</ul>
|
|
12287
12728
|
<h2 id="v158-2023-01-23">v1.5.8 (2023-01-23)<a class="headerlink" href="#v158-2023-01-23" title="Permanent link">¶</a></h2>
|
|
12288
|
-
<h3 id="
|
|
12729
|
+
<h3 id="security-in-v158">Security in v1.5.8<a class="headerlink" href="#security-in-v158" title="Permanent link">¶</a></h3>
|
|
12289
12730
|
<ul>
|
|
12290
12731
|
<li><a href="https://github.com/nautobot/nautobot/issues/3055">#3055</a> - Updated <code>setuptools</code> to <code>65.5.1</code> to address <code>CVE-2022-40897</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12291
12732
|
<li><a href="https://github.com/nautobot/nautobot/issues/3082">#3082</a> - Updated <code>gitpython</code> to <code>~3.1.30</code> to address <code>CVE-2022-24439</code>.</li>
|
|
12292
12733
|
<li><a href="https://github.com/nautobot/nautobot/issues/3119">#3119</a> - Updated <code>future</code> to <code>0.18.3</code> due to <code>CVE-2022-40899</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12293
12734
|
</ul>
|
|
12294
|
-
<h3 id="
|
|
12735
|
+
<h3 id="changed-in-v158">Changed in v1.5.8<a class="headerlink" href="#changed-in-v158" title="Permanent link">¶</a></h3>
|
|
12295
12736
|
<ul>
|
|
12296
12737
|
<li><a href="https://github.com/nautobot/nautobot/issues/3112">#3112</a> - Converted eligible <code>prefetch_related()</code> to <code>select_related()</code> queries. Users should note a performance gain from this change, but note that cacheops is no longer recommended in v1.5 and this change will likely result in invalid data responses if cacheops remains enabled in your environment. Cacheops will be removed entirely in a future release.</li>
|
|
12297
12738
|
</ul>
|
|
12298
|
-
<h3 id="
|
|
12739
|
+
<h3 id="fixed-in-v158">Fixed in v1.5.8<a class="headerlink" href="#fixed-in-v158" title="Permanent link">¶</a></h3>
|
|
12299
12740
|
<ul>
|
|
12300
12741
|
<li><a href="https://github.com/nautobot/nautobot/issues/2244">#2244</a> - Fixed an unnecessary and sometimes problematic database access from the Celery worker before it forks off to execute an individual job.</li>
|
|
12301
12742
|
<li><a href="https://github.com/nautobot/nautobot/issues/3097">#3097</a> - Fixed scrolling past select dropdown in modals.</li>
|
|
12302
12743
|
<li><a href="https://github.com/nautobot/nautobot/issues/3104">#3104</a> - Fixed bug preventing filters from being removed from list views.</li>
|
|
12303
12744
|
</ul>
|
|
12304
|
-
<h3 id="
|
|
12745
|
+
<h3 id="documentation-in-v158">Documentation in v1.5.8<a class="headerlink" href="#documentation-in-v158" title="Permanent link">¶</a></h3>
|
|
12305
12746
|
<ul>
|
|
12306
12747
|
<li><a href="https://github.com/nautobot/nautobot/issues/3077">#3077</a> - Updated Nautobot release checklist to reflect current branching and pull request process.</li>
|
|
12307
12748
|
<li><a href="https://github.com/nautobot/nautobot/issues/3103">#3103</a> - Added Redis troubleshooting section to installation docs.</li>
|
|
12308
12749
|
<li><a href="https://github.com/nautobot/nautobot/issues/3121">#3121</a> - Updated Config Contexts documentation to denote support for associating by Device Redundancy Group membership.</li>
|
|
12309
12750
|
</ul>
|
|
12310
|
-
<h3 id="
|
|
12751
|
+
<h3 id="housekeeping-in-v158">Housekeeping in v1.5.8<a class="headerlink" href="#housekeeping-in-v158" title="Permanent link">¶</a></h3>
|
|
12311
12752
|
<ul>
|
|
12312
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3072">#3072</a> - In Nautobot's unit tests, all HTTP requests are now sent with SERVER_NAME set to <code>nautobot.example.com</code> instead of <code>testserver</code> (Django's default) and the test configuration for Nautobot itself sets <code>ALLOWED_HOSTS</code> to expect <code>nautobot.example.com</code>. This is intended to protect against issues such as #3065.</li>
|
|
12753
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3072">#3072</a> - In Nautobot's unit tests, all HTTP requests are now sent with <code>SERVER_NAME</code> set to <code>nautobot.example.com</code> instead of <code>testserver</code> (Django's default) and the test configuration for Nautobot itself sets <code>ALLOWED_HOSTS</code> to expect <code>nautobot.example.com</code>. This is intended to protect against issues such as #3065.</li>
|
|
12313
12754
|
</ul>
|
|
12314
12755
|
<h2 id="v157-2023-01-04">v1.5.7 (2023-01-04)<a class="headerlink" href="#v157-2023-01-04" title="Permanent link">¶</a></h2>
|
|
12315
|
-
<h3 id="
|
|
12756
|
+
<h3 id="security-in-v157">Security in v1.5.7<a class="headerlink" href="#security-in-v157" title="Permanent link">¶</a></h3>
|
|
12316
12757
|
<ul>
|
|
12317
12758
|
<li><a href="https://github.com/nautobot/nautobot/issues/3074">#3074</a> - Sandboxed rendering of Jinja2 templates is now enforced by default in keeping with <a href="https://jinja.palletsprojects.com/en/3.0.x/sandbox/#sandbox">Jinja2 best practices</a>. To enable template sandboxing in a Nautobot instance without needing to upgrade, add the following value to your <code>nautobot_config.py</code> and restart your Nautobot services: <code>TEMPLATES[1]["OPTIONS"]["environment"] = "jinja2.sandbox.SandboxedEnvironment"</code></li>
|
|
12318
12759
|
</ul>
|
|
12319
|
-
<h3 id="
|
|
12760
|
+
<h3 id="fixed-in-v157">Fixed in v1.5.7<a class="headerlink" href="#fixed-in-v157" title="Permanent link">¶</a></h3>
|
|
12320
12761
|
<ul>
|
|
12321
12762
|
<li><a href="https://github.com/nautobot/nautobot/issues/3065">#3065</a> - Rolled back the changes made in 1.5.6 by #3016 to fix a breaking issue with <code>ALLOWED_HOSTS</code> and change-logging.</li>
|
|
12322
12763
|
</ul>
|
|
12323
12764
|
<h2 id="v156-2022-12-23">v1.5.6 (2022-12-23)<a class="headerlink" href="#v156-2022-12-23" title="Permanent link">¶</a></h2>
|
|
12324
|
-
<h3 id="
|
|
12765
|
+
<h3 id="added-in-v156">Added in v1.5.6<a class="headerlink" href="#added-in-v156" title="Permanent link">¶</a></h3>
|
|
12325
12766
|
<ul>
|
|
12326
12767
|
<li><a href="https://github.com/nautobot/nautobot/issues/1768">#1768</a> - Added the display of half-depth rack items from the rear face.</li>
|
|
12327
12768
|
<li><a href="https://github.com/nautobot/nautobot/issues/2481">#2481</a> - Added <code>clone_fields</code> definition to Custom Field class.</li>
|
|
@@ -12330,7 +12771,7 @@ relationship:</p>
|
|
|
12330
12771
|
<li><a href="https://github.com/nautobot/nautobot/issues/2966">#2966</a> - Added device name to rack elevation with images.</li>
|
|
12331
12772
|
<li><a href="https://github.com/nautobot/nautobot/issues/3014">#3014</a> - Added support for Git repositories to provide config contexts filtered by Location.</li>
|
|
12332
12773
|
</ul>
|
|
12333
|
-
<h3 id="
|
|
12774
|
+
<h3 id="fixed-in-v156">Fixed in v1.5.6<a class="headerlink" href="#fixed-in-v156" title="Permanent link">¶</a></h3>
|
|
12334
12775
|
<ul>
|
|
12335
12776
|
<li><a href="https://github.com/nautobot/nautobot/issues/2898">#2898</a> - Disabled sorting on Computed Field column.</li>
|
|
12336
12777
|
<li><a href="https://github.com/nautobot/nautobot/issues/2967">#2967</a> - Fixed inverted device images in dark mode.</li>
|
|
@@ -12340,60 +12781,60 @@ relationship:</p>
|
|
|
12340
12781
|
<li><a href="https://github.com/nautobot/nautobot/issues/3028">#3028</a> - Fixed filter fields on advanced filter form not being alpha-sorted.</li>
|
|
12341
12782
|
<li><a href="https://github.com/nautobot/nautobot/issues/3036">#3036</a> - Fixed MultiValueUUIDFilter's value input field in ObjectListView Advanced FilterSet Form.</li>
|
|
12342
12783
|
</ul>
|
|
12343
|
-
<h3 id="
|
|
12784
|
+
<h3 id="dependencies-in-v156">Dependencies in v1.5.6<a class="headerlink" href="#dependencies-in-v156" title="Permanent link">¶</a></h3>
|
|
12344
12785
|
<ul>
|
|
12345
12786
|
<li><a href="https://github.com/nautobot/nautobot/issues/2970">#2970</a> - Updated <code>certifi</code> to <code>2022.12.7</code> for <code>CVE-2022-23491</code>. This is a nested dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12346
12787
|
<li><a href="https://github.com/nautobot/nautobot/issues/2994">#2994</a> - Updated <code>mkdocs-material</code> to <code>8.5.11</code>.</li>
|
|
12347
12788
|
</ul>
|
|
12348
|
-
<h3 id="
|
|
12789
|
+
<h3 id="documentation-in-v156">Documentation in v1.5.6<a class="headerlink" href="#documentation-in-v156" title="Permanent link">¶</a></h3>
|
|
12349
12790
|
<ul>
|
|
12350
12791
|
<li><a href="https://github.com/nautobot/nautobot/issues/2589">#2589</a> - Updated all screenshots on the README.md to gifs.</li>
|
|
12351
12792
|
</ul>
|
|
12352
|
-
<h3 id="
|
|
12793
|
+
<h3 id="housekeeping-in-v156">Housekeeping in v1.5.6<a class="headerlink" href="#housekeeping-in-v156" title="Permanent link">¶</a></h3>
|
|
12353
12794
|
<ul>
|
|
12354
12795
|
<li><a href="https://github.com/nautobot/nautobot/issues/2995">#2995</a> - Updated <code>Poetry</code> lockfile to use new v2 version format (requiring <code>Poetry>=1.3</code>).</li>
|
|
12355
12796
|
<li><a href="https://github.com/nautobot/nautobot/issues/2995">#2995</a> - Updated included <code>poetry</code> version in <code>nautobot-dev</code> container to <code>1.3.1</code>.</li>
|
|
12356
12797
|
<li><a href="https://github.com/nautobot/nautobot/issues/3025">#3025</a> - Added plugin banner test back to ListObjectsViewTestCase and ensured <code>example_plugin</code> installation before running it.</li>
|
|
12357
12798
|
</ul>
|
|
12358
12799
|
<h2 id="v155-2022-12-12">v1.5.5 (2022-12-12)<a class="headerlink" href="#v155-2022-12-12" title="Permanent link">¶</a></h2>
|
|
12359
|
-
<h3 id="
|
|
12800
|
+
<h3 id="changed-in-v155">Changed in v1.5.5<a class="headerlink" href="#changed-in-v155" title="Permanent link">¶</a></h3>
|
|
12360
12801
|
<ul>
|
|
12361
12802
|
<li><a href="https://github.com/nautobot/nautobot/issues/2663">#2663</a> - Changed <code>tags</code> field in ConfigContextForm to <code>DynamicModelMultipleChoiceField</code>.</li>
|
|
12362
12803
|
</ul>
|
|
12363
|
-
<h3 id="
|
|
12804
|
+
<h3 id="fixed-in-v155">Fixed in v1.5.5<a class="headerlink" href="#fixed-in-v155" title="Permanent link">¶</a></h3>
|
|
12364
12805
|
<ul>
|
|
12365
12806
|
<li><a href="https://github.com/nautobot/nautobot/issues/2962">#2962</a> - Fixed an error raised when logging errors about a <code>Secret</code> with an invalid <code>provider</code>.</li>
|
|
12366
12807
|
<li><a href="https://github.com/nautobot/nautobot/issues/2963">#2963</a> - Fixed 500 error when combining filtering on relationships with concrete fields.</li>
|
|
12367
12808
|
</ul>
|
|
12368
|
-
<h3 id="
|
|
12809
|
+
<h3 id="housekeeping-in-v155">Housekeeping in v1.5.5<a class="headerlink" href="#housekeeping-in-v155" title="Permanent link">¶</a></h3>
|
|
12369
12810
|
<ul>
|
|
12370
12811
|
<li><a href="https://github.com/nautobot/nautobot/issues/2948">#2948</a> - Fixed incorrect assumption in test base that <code>example_plugin</code> would always be installed.</li>
|
|
12371
12812
|
</ul>
|
|
12372
12813
|
<h2 id="v154-2022-12-02">v1.5.4 (2022-12-02)<a class="headerlink" href="#v154-2022-12-02" title="Permanent link">¶</a></h2>
|
|
12373
|
-
<h3 id="
|
|
12814
|
+
<h3 id="fixed-in-v154">Fixed in v1.5.4<a class="headerlink" href="#fixed-in-v154" title="Permanent link">¶</a></h3>
|
|
12374
12815
|
<ul>
|
|
12375
12816
|
<li><a href="https://github.com/nautobot/nautobot/issues/2154">#2154</a> - Fixed SwaggerUI use of Authorization Token, API calls in SwaggerUI now use appropriate token pattern and curl command match the correct pattern.</li>
|
|
12376
12817
|
<li><a href="https://github.com/nautobot/nautobot/issues/2931">#2931</a> - Fixed title and breadcrumb rendering in NautobotUIViewSet list views.</li>
|
|
12377
12818
|
<li><a href="https://github.com/nautobot/nautobot/issues/2936">#2936</a> - Fixed NautobotUIViewSet views not being able to delete objects.</li>
|
|
12378
12819
|
</ul>
|
|
12379
|
-
<h3 id="
|
|
12820
|
+
<h3 id="documentation-in-v154">Documentation in v1.5.4<a class="headerlink" href="#documentation-in-v154" title="Permanent link">¶</a></h3>
|
|
12380
12821
|
<ul>
|
|
12381
12822
|
<li><a href="https://github.com/nautobot/nautobot/issues/86">#86</a> - Added user-guide for relationships and S3 storage backends.</li>
|
|
12382
12823
|
</ul>
|
|
12383
12824
|
<h2 id="v153-2022-11-29">v1.5.3 (2022-11-29)<a class="headerlink" href="#v153-2022-11-29" title="Permanent link">¶</a></h2>
|
|
12384
|
-
<h3 id="
|
|
12825
|
+
<h3 id="fixed-in-v153">Fixed in v1.5.3<a class="headerlink" href="#fixed-in-v153" title="Permanent link">¶</a></h3>
|
|
12385
12826
|
<ul>
|
|
12386
12827
|
<li><a href="https://github.com/nautobot/nautobot/issues/2924">#2924</a> - Fix deprecation warning flag check throwing error on startup with plugins installed.</li>
|
|
12387
12828
|
</ul>
|
|
12388
12829
|
<h2 id="v152-2022-11-28">v1.5.2 (2022-11-28)<a class="headerlink" href="#v152-2022-11-28" title="Permanent link">¶</a></h2>
|
|
12389
|
-
<h3 id="
|
|
12830
|
+
<h3 id="added-in-v152">Added in v1.5.2<a class="headerlink" href="#added-in-v152" title="Permanent link">¶</a></h3>
|
|
12390
12831
|
<ul>
|
|
12391
12832
|
<li><a href="https://github.com/nautobot/nautobot/issues/2473">#2473</a> - Added <code>multipart/form-data</code> support to Job run API.</li>
|
|
12392
12833
|
<li><a href="https://github.com/nautobot/nautobot/issues/2723">#2723</a> - Added <code>nautobot.apps</code> module to provide a central location for code that is recommended for use by Nautobot apps (plugins).</li>
|
|
12393
12834
|
<li><a href="https://github.com/nautobot/nautobot/issues/2759">#2759</a> - Add prometheus metrics for health check results</li>
|
|
12394
12835
|
<li><a href="https://github.com/nautobot/nautobot/issues/2798">#2798</a> - Added <code>LOG_DEPRECATION_WARNINGS</code> configuration variable and corresponding environment-variable support.</li>
|
|
12395
12836
|
</ul>
|
|
12396
|
-
<h3 id="
|
|
12837
|
+
<h3 id="changed-in-v152">Changed in v1.5.2<a class="headerlink" href="#changed-in-v152" title="Permanent link">¶</a></h3>
|
|
12397
12838
|
<ul>
|
|
12398
12839
|
<li><a href="https://github.com/nautobot/nautobot/issues/2644">#2644</a> - Changed published accepted content types for REST API to remove unsupported types.</li>
|
|
12399
12840
|
<li><a href="https://github.com/nautobot/nautobot/issues/2779">#2779</a> - Renamed many mixin classes for clarity and consistency. Aliases remain but will raise <code>DeprecationWarning</code>.</li>
|
|
@@ -12402,21 +12843,21 @@ relationship:</p>
|
|
|
12402
12843
|
<li><a href="https://github.com/nautobot/nautobot/issues/2838">#2838</a> - Fixed filter selection box colors in dark mode.</li>
|
|
12403
12844
|
<li><a href="https://github.com/nautobot/nautobot/issues/2878">#2878</a> - Changed Upstream Workflow Job to continue on error for group, not each specific job.</li>
|
|
12404
12845
|
</ul>
|
|
12405
|
-
<h3 id="
|
|
12846
|
+
<h3 id="fixed-in-v152">Fixed in v1.5.2<a class="headerlink" href="#fixed-in-v152" title="Permanent link">¶</a></h3>
|
|
12406
12847
|
<ul>
|
|
12407
12848
|
<li><a href="https://github.com/nautobot/nautobot/issues/1519">#1519</a> - Extending the model table columns that need to display copy button when hovered over.</li>
|
|
12408
12849
|
<li><a href="https://github.com/nautobot/nautobot/issues/2477">#2477</a> - Fixed last login time being updated during maintenance mode when remote user authentication is used.</li>
|
|
12409
12850
|
<li><a href="https://github.com/nautobot/nautobot/issues/2744">#2744</a> - Enforced required Relationships when bulk editing or creating objects that have required relationships. Bulk edit via API or UI. Bulk create via API.</li>
|
|
12410
12851
|
<li><a href="https://github.com/nautobot/nautobot/issues/2795">#2795</a> - Fixed changelog diff data to fall back to <code>object_data</code> when <code>object_data_v2</code> is not present for both <code>ObjectChange</code> instances.</li>
|
|
12411
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/2816">#2816</a> - Fixed issue where changing the interface mode first required removing tagged_vlans in a different request.</li>
|
|
12852
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2816">#2816</a> - Fixed issue where changing the interface mode first required removing <code>tagged_vlans</code> in a different request.</li>
|
|
12412
12853
|
<li><a href="https://github.com/nautobot/nautobot/issues/2833">#2833</a> - Fixed plugin banner issue and breadcrumb rendering issue in NautobotHTMLRenderer.</li>
|
|
12413
12854
|
<li><a href="https://github.com/nautobot/nautobot/issues/2837">#2837</a> - Fixed incorrect logic in <code>nautobot.utilities.utils.is_single_choice_field</code> that was causing valid filters to report as invalid.</li>
|
|
12414
12855
|
</ul>
|
|
12415
|
-
<h3 id="
|
|
12856
|
+
<h3 id="dependencies-in-v152">Dependencies in v1.5.2<a class="headerlink" href="#dependencies-in-v152" title="Permanent link">¶</a></h3>
|
|
12416
12857
|
<ul>
|
|
12417
12858
|
<li><a href="https://github.com/nautobot/nautobot/issues/2814">#2814</a> - Update dependency <code>netutils</code> to <code>~1.3.0</code>.</li>
|
|
12418
12859
|
</ul>
|
|
12419
|
-
<h3 id="
|
|
12860
|
+
<h3 id="documentation-in-v152">Documentation in v1.5.2<a class="headerlink" href="#documentation-in-v152" title="Permanent link">¶</a></h3>
|
|
12420
12861
|
<ul>
|
|
12421
12862
|
<li><a href="https://github.com/nautobot/nautobot/issues/1273">#1273</a> - Added section "VS Code Remote Debugging Configuration" to development chapter in documentation.</li>
|
|
12422
12863
|
<li><a href="https://github.com/nautobot/nautobot/issues/2723">#2723</a> - Added code reference documentation for the <code>nautobot.apps</code> module.</li>
|
|
@@ -12424,18 +12865,18 @@ relationship:</p>
|
|
|
12424
12865
|
<li><a href="https://github.com/nautobot/nautobot/issues/2723">#2723</a> - Revised "plugin" development documentation to refer to "apps" instead where appropriate.</li>
|
|
12425
12866
|
<li><a href="https://github.com/nautobot/nautobot/issues/2817">#2817</a> - Update docs to not indicate prompt, makes for better use of copy code snippet feature of MkDocs</li>
|
|
12426
12867
|
</ul>
|
|
12427
|
-
<h3 id="
|
|
12868
|
+
<h3 id="housekeeping-in-v152">Housekeeping in v1.5.2<a class="headerlink" href="#housekeeping-in-v152" title="Permanent link">¶</a></h3>
|
|
12428
12869
|
<ul>
|
|
12429
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/2774">#2774</a> - Fixed SiteFactory time_zone attribute to use only <code>pytz.common_timezones</code>.</li>
|
|
12870
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2774">#2774</a> - Fixed SiteFactory <code>time_zone</code> attribute to use only <code>pytz.common_timezones</code>.</li>
|
|
12430
12871
|
<li><a href="https://github.com/nautobot/nautobot/issues/2819">#2819</a> - Adds appropriate invoke task for running docs locally and adds how to run manually.</li>
|
|
12431
12872
|
</ul>
|
|
12432
12873
|
<h2 id="v151-2022-11-14">v1.5.1 (2022-11-14)<a class="headerlink" href="#v151-2022-11-14" title="Permanent link">¶</a></h2>
|
|
12433
|
-
<h3 id="
|
|
12874
|
+
<h3 id="added-in-v151">Added in v1.5.1<a class="headerlink" href="#added-in-v151" title="Permanent link">¶</a></h3>
|
|
12434
12875
|
<ul>
|
|
12435
12876
|
<li><a href="https://github.com/nautobot/nautobot/issues/2500">#2500</a> - Added <code>try/except</code> block to catch <code>NoReverseMatch</code> exception in NotesSerializerMixin and return helpful message.</li>
|
|
12436
12877
|
<li><a href="https://github.com/nautobot/nautobot/issues/2740">#2740</a> - Added ObjectChangeLogView and ObjectNotesView Viewset mixins and routes.</li>
|
|
12437
12878
|
</ul>
|
|
12438
|
-
<h3 id="
|
|
12879
|
+
<h3 id="fixed-in-v151">Fixed in v1.5.1<a class="headerlink" href="#fixed-in-v151" title="Permanent link">¶</a></h3>
|
|
12439
12880
|
<ul>
|
|
12440
12881
|
<li><a href="https://github.com/nautobot/nautobot/issues/2470">#2470</a> - Fixed incorrect automatic generation of Location slugs in the UI.</li>
|
|
12441
12882
|
<li><a href="https://github.com/nautobot/nautobot/issues/2757">#2757</a> - Fixed filters on default filter form replaces filters on dynamic filter form on submit</li>
|
|
@@ -12443,15 +12884,15 @@ relationship:</p>
|
|
|
12443
12884
|
<li><a href="https://github.com/nautobot/nautobot/issues/2789">#2789</a> - Fixed web UI footer margin and swagger UI authorization box size.</li>
|
|
12444
12885
|
<li><a href="https://github.com/nautobot/nautobot/issues/2824">#2824</a> - Fixed an issue when filtering on nested related fields for Dynamic Groups.</li>
|
|
12445
12886
|
</ul>
|
|
12446
|
-
<h3 id="
|
|
12887
|
+
<h3 id="housekeeping-in-v151">Housekeeping in v1.5.1<a class="headerlink" href="#housekeeping-in-v151" title="Permanent link">¶</a></h3>
|
|
12447
12888
|
<ul>
|
|
12448
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/1813">#1813</a> - Updated
|
|
12889
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1813">#1813</a> - Updated Example Plugin to use NautobotUIViewSet.</li>
|
|
12449
12890
|
<li><a href="https://github.com/nautobot/nautobot/issues/2556">#2556</a> - Revised TODO/FIXME comments for more clarity.</li>
|
|
12450
12891
|
</ul>
|
|
12451
12892
|
<h2 id="v150-2022-11-08">v1.5.0 (2022-11-08)<a class="headerlink" href="#v150-2022-11-08" title="Permanent link">¶</a></h2>
|
|
12452
12893
|
<p>Unchanged from v1.5.0-beta.1.</p>
|
|
12453
12894
|
<h2 id="v150-beta1-2022-11-07">v1.5.0-beta.1 (2022-11-07)<a class="headerlink" href="#v150-beta1-2022-11-07" title="Permanent link">¶</a></h2>
|
|
12454
|
-
<h3 id="
|
|
12895
|
+
<h3 id="added-in-v150-beta1">Added in v1.5.0-beta.1<a class="headerlink" href="#added-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12455
12896
|
<ul>
|
|
12456
12897
|
<li><a href="https://github.com/nautobot/nautobot/issues/873">#873</a> - Made it possible to require Relationships to be included when editing or creating the related models.</li>
|
|
12457
12898
|
<li><a href="https://github.com/nautobot/nautobot/issues/899">#899</a> - Added support for grouping of Custom Fields.</li>
|
|
@@ -12466,7 +12907,7 @@ relationship:</p>
|
|
|
12466
12907
|
<li><a href="https://github.com/nautobot/nautobot/issues/2608">#2608</a> - Added the option for certain LocationTypes to be nestable (similar to Regions).</li>
|
|
12467
12908
|
<li><a href="https://github.com/nautobot/nautobot/issues/2617">#2617</a> - Added dynamic filter form support to specialized list views.</li>
|
|
12468
12909
|
</ul>
|
|
12469
|
-
<h3 id="
|
|
12910
|
+
<h3 id="changed-in-v150-beta1">Changed in v1.5.0-beta.1<a class="headerlink" href="#changed-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12470
12911
|
<ul>
|
|
12471
12912
|
<li><a href="https://github.com/nautobot/nautobot/issues/1892">#1892</a> - Updated <code>Device</code> to have <code>device_redundancy_group</code> relationship, <code>device_redundancy_group_priority</code> numeric property.</li>
|
|
12472
12913
|
<li><a href="https://github.com/nautobot/nautobot/issues/1892">#1892</a> - Updated <code>ConfigContext</code> to have <code>ManyToManyField</code> to <code>dcim.DeviceRedundancyGroup</code> for the purposes of applying a <code>ConfigContext</code> based upon a <code>Device</code>s <code>DeviceRedundancyGroup</code> membership.</li>
|
|
@@ -12475,7 +12916,7 @@ relationship:</p>
|
|
|
12475
12916
|
<li><a href="https://github.com/nautobot/nautobot/issues/2615">#2615</a> - Changed <code>ConfigContextFilterForm</code>s <code>schema</code> filter form field to support added filter field on <code>ConfigContextFilterSet</code>.</li>
|
|
12476
12917
|
<li><a href="https://github.com/nautobot/nautobot/issues/2615">#2615</a> - Changed <code>BaseNetworkQuerySet</code> and <code>IPAddressQuerySet</code> to search both IPv6 and IPv4 when given search string is ambiguous.</li>
|
|
12477
12918
|
</ul>
|
|
12478
|
-
<h3 id="
|
|
12919
|
+
<h3 id="fixed-in-v150-beta1">Fixed in v1.5.0-beta.1<a class="headerlink" href="#fixed-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12479
12920
|
<ul>
|
|
12480
12921
|
<li><a href="https://github.com/nautobot/nautobot/issues/2266">#2266</a> - Fixed navbar floating over main viewport scrollbar.</li>
|
|
12481
12922
|
<li><a href="https://github.com/nautobot/nautobot/issues/2388">#2388</a> - Return "—" instead of "None" when relationship column is empty.</li>
|
|
@@ -12484,7 +12925,7 @@ relationship:</p>
|
|
|
12484
12925
|
<li><a href="https://github.com/nautobot/nautobot/issues/2615">#2615</a> - Fixed <code>BaseNetworkQuerySet</code> and <code>IPAddressQuerySet</code> only searching non-abbreviated first hextet IPv6 addresses.</li>
|
|
12485
12926
|
<li><a href="https://github.com/nautobot/nautobot/issues/2746">#2746</a> - Fixed Site <code>latitude</code>, <code>longitude</code> clean method for when valid string value entered.</li>
|
|
12486
12927
|
</ul>
|
|
12487
|
-
<h3 id="
|
|
12928
|
+
<h3 id="dependencies-in-v150-beta1">Dependencies in v1.5.0-beta.1<a class="headerlink" href="#dependencies-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12488
12929
|
<ul>
|
|
12489
12930
|
<li><a href="https://github.com/nautobot/nautobot/issues/1983">#1983</a> - Updated <code>django-taggit</code> dependency to 3.0.0.</li>
|
|
12490
12931
|
<li><a href="https://github.com/nautobot/nautobot/issues/2170">#2170</a> - Updated <code>django-constance</code> dependency to 2.9.1; updated <code>Jinja2</code> dependency to 3.1.2; updated <code>black</code> development dependency to 22.8.0.</li>
|
|
@@ -12495,11 +12936,11 @@ relationship:</p>
|
|
|
12495
12936
|
<li><a href="https://github.com/nautobot/nautobot/issues/2710">#2710</a> - Updated <code>pyuwsgi</code> minimum version from 2.0.20 to 2.0.21.</li>
|
|
12496
12937
|
<li><a href="https://github.com/nautobot/nautobot/issues/2711">#2711</a> - Updated <code>Pillow</code> package dependency from 9.2.0 to 9.3.0.</li>
|
|
12497
12938
|
</ul>
|
|
12498
|
-
<h3 id="
|
|
12939
|
+
<h3 id="documentation-in-v150-beta1">Documentation in v1.5.0-beta.1<a class="headerlink" href="#documentation-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12499
12940
|
<ul>
|
|
12500
12941
|
<li><a href="https://github.com/nautobot/nautobot/issues/270">#270</a> - Added custom fields user guide to documentation.</li>
|
|
12501
12942
|
</ul>
|
|
12502
|
-
<h3 id="
|
|
12943
|
+
<h3 id="housekeeping-in-v150-beta1">Housekeeping in v1.5.0-beta.1<a class="headerlink" href="#housekeeping-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12503
12944
|
<ul>
|
|
12504
12945
|
<li><a href="https://github.com/nautobot/nautobot/issues/192">#192</a> - Eliminated Unit Test noisy output.</li>
|
|
12505
12946
|
<li><a href="https://github.com/nautobot/nautobot/issues/2227">#2227</a> - Added generating performance report options to 'invoke unittest'.</li>
|
|
@@ -12676,7 +13117,7 @@ relationship:</p>
|
|
|
12676
13117
|
</div>
|
|
12677
13118
|
|
|
12678
13119
|
|
|
12679
|
-
<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>
|
|
13120
|
+
<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>
|
|
12680
13121
|
|
|
12681
13122
|
|
|
12682
13123
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|