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
|
|
|
@@ -8282,18 +8726,18 @@
|
|
|
8282
8726
|
<ul class="md-nav__list">
|
|
8283
8727
|
|
|
8284
8728
|
<li class="md-nav__item">
|
|
8285
|
-
<a href="#security" class="md-nav__link">
|
|
8729
|
+
<a href="#security-in-v1629" class="md-nav__link">
|
|
8286
8730
|
<span class="md-ellipsis">
|
|
8287
|
-
Security
|
|
8731
|
+
Security in v1.6.29
|
|
8288
8732
|
</span>
|
|
8289
8733
|
</a>
|
|
8290
8734
|
|
|
8291
8735
|
</li>
|
|
8292
8736
|
|
|
8293
8737
|
<li class="md-nav__item">
|
|
8294
|
-
<a href="#fixed" class="md-nav__link">
|
|
8738
|
+
<a href="#fixed-in-v1629" class="md-nav__link">
|
|
8295
8739
|
<span class="md-ellipsis">
|
|
8296
|
-
Fixed
|
|
8740
|
+
Fixed in v1.6.29
|
|
8297
8741
|
</span>
|
|
8298
8742
|
</a>
|
|
8299
8743
|
|
|
@@ -8315,18 +8759,18 @@
|
|
|
8315
8759
|
<ul class="md-nav__list">
|
|
8316
8760
|
|
|
8317
8761
|
<li class="md-nav__item">
|
|
8318
|
-
<a href="#
|
|
8762
|
+
<a href="#fixed-in-v1628" class="md-nav__link">
|
|
8319
8763
|
<span class="md-ellipsis">
|
|
8320
|
-
Fixed
|
|
8764
|
+
Fixed in v1.6.28
|
|
8321
8765
|
</span>
|
|
8322
8766
|
</a>
|
|
8323
8767
|
|
|
8324
8768
|
</li>
|
|
8325
8769
|
|
|
8326
8770
|
<li class="md-nav__item">
|
|
8327
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8771
|
+
<a href="#housekeeping-in-v1628" class="md-nav__link">
|
|
8328
8772
|
<span class="md-ellipsis">
|
|
8329
|
-
Housekeeping
|
|
8773
|
+
Housekeeping in v1.6.28
|
|
8330
8774
|
</span>
|
|
8331
8775
|
</a>
|
|
8332
8776
|
|
|
@@ -8348,18 +8792,18 @@
|
|
|
8348
8792
|
<ul class="md-nav__list">
|
|
8349
8793
|
|
|
8350
8794
|
<li class="md-nav__item">
|
|
8351
|
-
<a href="#
|
|
8795
|
+
<a href="#security-in-v1627" class="md-nav__link">
|
|
8352
8796
|
<span class="md-ellipsis">
|
|
8353
|
-
Security
|
|
8797
|
+
Security in v1.6.27
|
|
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-v1627" class="md-nav__link">
|
|
8361
8805
|
<span class="md-ellipsis">
|
|
8362
|
-
Fixed
|
|
8806
|
+
Fixed in v1.6.27
|
|
8363
8807
|
</span>
|
|
8364
8808
|
</a>
|
|
8365
8809
|
|
|
@@ -8381,9 +8825,9 @@
|
|
|
8381
8825
|
<ul class="md-nav__list">
|
|
8382
8826
|
|
|
8383
8827
|
<li class="md-nav__item">
|
|
8384
|
-
<a href="#
|
|
8828
|
+
<a href="#fixed-in-v1626" class="md-nav__link">
|
|
8385
8829
|
<span class="md-ellipsis">
|
|
8386
|
-
Fixed
|
|
8830
|
+
Fixed in v1.6.26
|
|
8387
8831
|
</span>
|
|
8388
8832
|
</a>
|
|
8389
8833
|
|
|
@@ -8405,18 +8849,18 @@
|
|
|
8405
8849
|
<ul class="md-nav__list">
|
|
8406
8850
|
|
|
8407
8851
|
<li class="md-nav__item">
|
|
8408
|
-
<a href="#
|
|
8852
|
+
<a href="#security-in-v1625" class="md-nav__link">
|
|
8409
8853
|
<span class="md-ellipsis">
|
|
8410
|
-
Security
|
|
8854
|
+
Security in v1.6.25
|
|
8411
8855
|
</span>
|
|
8412
8856
|
</a>
|
|
8413
8857
|
|
|
8414
8858
|
</li>
|
|
8415
8859
|
|
|
8416
8860
|
<li class="md-nav__item">
|
|
8417
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8861
|
+
<a href="#dependencies-in-v1625" class="md-nav__link">
|
|
8418
8862
|
<span class="md-ellipsis">
|
|
8419
|
-
Dependencies
|
|
8863
|
+
Dependencies in v1.6.25
|
|
8420
8864
|
</span>
|
|
8421
8865
|
</a>
|
|
8422
8866
|
|
|
@@ -8438,18 +8882,18 @@
|
|
|
8438
8882
|
<ul class="md-nav__list">
|
|
8439
8883
|
|
|
8440
8884
|
<li class="md-nav__item">
|
|
8441
|
-
<a href="#
|
|
8885
|
+
<a href="#security-in-v1624" class="md-nav__link">
|
|
8442
8886
|
<span class="md-ellipsis">
|
|
8443
|
-
Security
|
|
8887
|
+
Security in v1.6.24
|
|
8444
8888
|
</span>
|
|
8445
8889
|
</a>
|
|
8446
8890
|
|
|
8447
8891
|
</li>
|
|
8448
8892
|
|
|
8449
8893
|
<li class="md-nav__item">
|
|
8450
|
-
<a href="#
|
|
8894
|
+
<a href="#housekeeping-in-v1624" class="md-nav__link">
|
|
8451
8895
|
<span class="md-ellipsis">
|
|
8452
|
-
Housekeeping
|
|
8896
|
+
Housekeeping in v1.6.24
|
|
8453
8897
|
</span>
|
|
8454
8898
|
</a>
|
|
8455
8899
|
|
|
@@ -8471,18 +8915,18 @@
|
|
|
8471
8915
|
<ul class="md-nav__list">
|
|
8472
8916
|
|
|
8473
8917
|
<li class="md-nav__item">
|
|
8474
|
-
<a href="#
|
|
8918
|
+
<a href="#security-in-v1623" class="md-nav__link">
|
|
8475
8919
|
<span class="md-ellipsis">
|
|
8476
|
-
Security
|
|
8920
|
+
Security in v1.6.23
|
|
8477
8921
|
</span>
|
|
8478
8922
|
</a>
|
|
8479
8923
|
|
|
8480
8924
|
</li>
|
|
8481
8925
|
|
|
8482
8926
|
<li class="md-nav__item">
|
|
8483
|
-
<a href="#
|
|
8927
|
+
<a href="#housekeeping-in-v1623" class="md-nav__link">
|
|
8484
8928
|
<span class="md-ellipsis">
|
|
8485
|
-
Housekeeping
|
|
8929
|
+
Housekeeping in v1.6.23
|
|
8486
8930
|
</span>
|
|
8487
8931
|
</a>
|
|
8488
8932
|
|
|
@@ -8504,27 +8948,27 @@
|
|
|
8504
8948
|
<ul class="md-nav__list">
|
|
8505
8949
|
|
|
8506
8950
|
<li class="md-nav__item">
|
|
8507
|
-
<a href="#
|
|
8951
|
+
<a href="#security-in-v1622" class="md-nav__link">
|
|
8508
8952
|
<span class="md-ellipsis">
|
|
8509
|
-
Security
|
|
8953
|
+
Security in v1.6.22
|
|
8510
8954
|
</span>
|
|
8511
8955
|
</a>
|
|
8512
8956
|
|
|
8513
8957
|
</li>
|
|
8514
8958
|
|
|
8515
8959
|
<li class="md-nav__item">
|
|
8516
|
-
<a href="#
|
|
8960
|
+
<a href="#added-in-v1622" class="md-nav__link">
|
|
8517
8961
|
<span class="md-ellipsis">
|
|
8518
|
-
Added
|
|
8962
|
+
Added in v1.6.22
|
|
8519
8963
|
</span>
|
|
8520
8964
|
</a>
|
|
8521
8965
|
|
|
8522
8966
|
</li>
|
|
8523
8967
|
|
|
8524
8968
|
<li class="md-nav__item">
|
|
8525
|
-
<a href="#
|
|
8969
|
+
<a href="#fixed-in-v1622" class="md-nav__link">
|
|
8526
8970
|
<span class="md-ellipsis">
|
|
8527
|
-
Fixed
|
|
8971
|
+
Fixed in v1.6.22
|
|
8528
8972
|
</span>
|
|
8529
8973
|
</a>
|
|
8530
8974
|
|
|
@@ -8546,9 +8990,9 @@
|
|
|
8546
8990
|
<ul class="md-nav__list">
|
|
8547
8991
|
|
|
8548
8992
|
<li class="md-nav__item">
|
|
8549
|
-
<a href="#
|
|
8993
|
+
<a href="#security-in-v1621" class="md-nav__link">
|
|
8550
8994
|
<span class="md-ellipsis">
|
|
8551
|
-
Security
|
|
8995
|
+
Security in v1.6.21
|
|
8552
8996
|
</span>
|
|
8553
8997
|
</a>
|
|
8554
8998
|
|
|
@@ -8570,18 +9014,18 @@
|
|
|
8570
9014
|
<ul class="md-nav__list">
|
|
8571
9015
|
|
|
8572
9016
|
<li class="md-nav__item">
|
|
8573
|
-
<a href="#
|
|
9017
|
+
<a href="#security-in-v1620" class="md-nav__link">
|
|
8574
9018
|
<span class="md-ellipsis">
|
|
8575
|
-
Security
|
|
9019
|
+
Security in v1.6.20
|
|
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-v1620" class="md-nav__link">
|
|
8583
9027
|
<span class="md-ellipsis">
|
|
8584
|
-
Fixed
|
|
9028
|
+
Fixed in v1.6.20
|
|
8585
9029
|
</span>
|
|
8586
9030
|
</a>
|
|
8587
9031
|
|
|
@@ -8603,18 +9047,18 @@
|
|
|
8603
9047
|
<ul class="md-nav__list">
|
|
8604
9048
|
|
|
8605
9049
|
<li class="md-nav__item">
|
|
8606
|
-
<a href="#
|
|
9050
|
+
<a href="#security-in-v1619" class="md-nav__link">
|
|
8607
9051
|
<span class="md-ellipsis">
|
|
8608
|
-
Security
|
|
9052
|
+
Security in v1.6.19
|
|
8609
9053
|
</span>
|
|
8610
9054
|
</a>
|
|
8611
9055
|
|
|
8612
9056
|
</li>
|
|
8613
9057
|
|
|
8614
9058
|
<li class="md-nav__item">
|
|
8615
|
-
<a href="#
|
|
9059
|
+
<a href="#fixed-in-v1619" class="md-nav__link">
|
|
8616
9060
|
<span class="md-ellipsis">
|
|
8617
|
-
Fixed
|
|
9061
|
+
Fixed in v1.6.19
|
|
8618
9062
|
</span>
|
|
8619
9063
|
</a>
|
|
8620
9064
|
|
|
@@ -8636,18 +9080,18 @@
|
|
|
8636
9080
|
<ul class="md-nav__list">
|
|
8637
9081
|
|
|
8638
9082
|
<li class="md-nav__item">
|
|
8639
|
-
<a href="#
|
|
9083
|
+
<a href="#security-in-v1618" class="md-nav__link">
|
|
8640
9084
|
<span class="md-ellipsis">
|
|
8641
|
-
Security
|
|
9085
|
+
Security in v1.6.18
|
|
8642
9086
|
</span>
|
|
8643
9087
|
</a>
|
|
8644
9088
|
|
|
8645
9089
|
</li>
|
|
8646
9090
|
|
|
8647
9091
|
<li class="md-nav__item">
|
|
8648
|
-
<a href="#
|
|
9092
|
+
<a href="#dependencies-in-v1618" class="md-nav__link">
|
|
8649
9093
|
<span class="md-ellipsis">
|
|
8650
|
-
Dependencies
|
|
9094
|
+
Dependencies in v1.6.18
|
|
8651
9095
|
</span>
|
|
8652
9096
|
</a>
|
|
8653
9097
|
|
|
@@ -8669,9 +9113,9 @@
|
|
|
8669
9113
|
<ul class="md-nav__list">
|
|
8670
9114
|
|
|
8671
9115
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
9116
|
+
<a href="#dependencies-in-v1617" class="md-nav__link">
|
|
8673
9117
|
<span class="md-ellipsis">
|
|
8674
|
-
Dependencies
|
|
9118
|
+
Dependencies in v1.6.17
|
|
8675
9119
|
</span>
|
|
8676
9120
|
</a>
|
|
8677
9121
|
|
|
@@ -8693,54 +9137,54 @@
|
|
|
8693
9137
|
<ul class="md-nav__list">
|
|
8694
9138
|
|
|
8695
9139
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#
|
|
9140
|
+
<a href="#security-in-v1616" class="md-nav__link">
|
|
8697
9141
|
<span class="md-ellipsis">
|
|
8698
|
-
Security
|
|
9142
|
+
Security in v1.6.16
|
|
8699
9143
|
</span>
|
|
8700
9144
|
</a>
|
|
8701
9145
|
|
|
8702
9146
|
</li>
|
|
8703
9147
|
|
|
8704
9148
|
<li class="md-nav__item">
|
|
8705
|
-
<a href="#
|
|
9149
|
+
<a href="#added-in-v1616" class="md-nav__link">
|
|
8706
9150
|
<span class="md-ellipsis">
|
|
8707
|
-
Added
|
|
9151
|
+
Added in v1.6.16
|
|
8708
9152
|
</span>
|
|
8709
9153
|
</a>
|
|
8710
9154
|
|
|
8711
9155
|
</li>
|
|
8712
9156
|
|
|
8713
9157
|
<li class="md-nav__item">
|
|
8714
|
-
<a href="#
|
|
9158
|
+
<a href="#changed-in-v1616" class="md-nav__link">
|
|
8715
9159
|
<span class="md-ellipsis">
|
|
8716
|
-
Changed
|
|
9160
|
+
Changed in v1.6.16
|
|
8717
9161
|
</span>
|
|
8718
9162
|
</a>
|
|
8719
9163
|
|
|
8720
9164
|
</li>
|
|
8721
9165
|
|
|
8722
9166
|
<li class="md-nav__item">
|
|
8723
|
-
<a href="#
|
|
9167
|
+
<a href="#fixed-in-v1616" class="md-nav__link">
|
|
8724
9168
|
<span class="md-ellipsis">
|
|
8725
|
-
Fixed
|
|
9169
|
+
Fixed in v1.6.16
|
|
8726
9170
|
</span>
|
|
8727
9171
|
</a>
|
|
8728
9172
|
|
|
8729
9173
|
</li>
|
|
8730
9174
|
|
|
8731
9175
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#documentation" class="md-nav__link">
|
|
9176
|
+
<a href="#documentation-in-v1616" class="md-nav__link">
|
|
8733
9177
|
<span class="md-ellipsis">
|
|
8734
|
-
Documentation
|
|
9178
|
+
Documentation in v1.6.16
|
|
8735
9179
|
</span>
|
|
8736
9180
|
</a>
|
|
8737
9181
|
|
|
8738
9182
|
</li>
|
|
8739
9183
|
|
|
8740
9184
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
9185
|
+
<a href="#housekeeping-in-v1616" class="md-nav__link">
|
|
8742
9186
|
<span class="md-ellipsis">
|
|
8743
|
-
Housekeeping
|
|
9187
|
+
Housekeeping in v1.6.16
|
|
8744
9188
|
</span>
|
|
8745
9189
|
</a>
|
|
8746
9190
|
|
|
@@ -8762,27 +9206,27 @@
|
|
|
8762
9206
|
<ul class="md-nav__list">
|
|
8763
9207
|
|
|
8764
9208
|
<li class="md-nav__item">
|
|
8765
|
-
<a href="#
|
|
9209
|
+
<a href="#added-in-v1615" class="md-nav__link">
|
|
8766
9210
|
<span class="md-ellipsis">
|
|
8767
|
-
Added
|
|
9211
|
+
Added in v1.6.15
|
|
8768
9212
|
</span>
|
|
8769
9213
|
</a>
|
|
8770
9214
|
|
|
8771
9215
|
</li>
|
|
8772
9216
|
|
|
8773
9217
|
<li class="md-nav__item">
|
|
8774
|
-
<a href="#
|
|
9218
|
+
<a href="#fixed-in-v1615" class="md-nav__link">
|
|
8775
9219
|
<span class="md-ellipsis">
|
|
8776
|
-
Fixed
|
|
9220
|
+
Fixed in v1.6.15
|
|
8777
9221
|
</span>
|
|
8778
9222
|
</a>
|
|
8779
9223
|
|
|
8780
9224
|
</li>
|
|
8781
9225
|
|
|
8782
9226
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
9227
|
+
<a href="#housekeeping-in-v1615" class="md-nav__link">
|
|
8784
9228
|
<span class="md-ellipsis">
|
|
8785
|
-
Housekeeping
|
|
9229
|
+
Housekeeping in v1.6.15
|
|
8786
9230
|
</span>
|
|
8787
9231
|
</a>
|
|
8788
9232
|
|
|
@@ -8804,9 +9248,9 @@
|
|
|
8804
9248
|
<ul class="md-nav__list">
|
|
8805
9249
|
|
|
8806
9250
|
<li class="md-nav__item">
|
|
8807
|
-
<a href="#
|
|
9251
|
+
<a href="#fixed-in-v1614" class="md-nav__link">
|
|
8808
9252
|
<span class="md-ellipsis">
|
|
8809
|
-
Fixed
|
|
9253
|
+
Fixed in v1.6.14
|
|
8810
9254
|
</span>
|
|
8811
9255
|
</a>
|
|
8812
9256
|
|
|
@@ -8828,36 +9272,27 @@
|
|
|
8828
9272
|
<ul class="md-nav__list">
|
|
8829
9273
|
|
|
8830
9274
|
<li class="md-nav__item">
|
|
8831
|
-
<a href="#
|
|
8832
|
-
<span class="md-ellipsis">
|
|
8833
|
-
Added
|
|
8834
|
-
</span>
|
|
8835
|
-
</a>
|
|
8836
|
-
|
|
8837
|
-
</li>
|
|
8838
|
-
|
|
8839
|
-
<li class="md-nav__item">
|
|
8840
|
-
<a href="#added_5" class="md-nav__link">
|
|
9275
|
+
<a href="#added-in-v1613" class="md-nav__link">
|
|
8841
9276
|
<span class="md-ellipsis">
|
|
8842
|
-
Added
|
|
9277
|
+
Added in v1.6.13
|
|
8843
9278
|
</span>
|
|
8844
9279
|
</a>
|
|
8845
9280
|
|
|
8846
9281
|
</li>
|
|
8847
9282
|
|
|
8848
9283
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
9284
|
+
<a href="#fixed-in-v1613" class="md-nav__link">
|
|
8850
9285
|
<span class="md-ellipsis">
|
|
8851
|
-
Fixed
|
|
9286
|
+
Fixed in v1.6.13
|
|
8852
9287
|
</span>
|
|
8853
9288
|
</a>
|
|
8854
9289
|
|
|
8855
9290
|
</li>
|
|
8856
9291
|
|
|
8857
9292
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#
|
|
9293
|
+
<a href="#documentation-in-v1613" class="md-nav__link">
|
|
8859
9294
|
<span class="md-ellipsis">
|
|
8860
|
-
Documentation
|
|
9295
|
+
Documentation in v1.6.13
|
|
8861
9296
|
</span>
|
|
8862
9297
|
</a>
|
|
8863
9298
|
|
|
@@ -8879,36 +9314,36 @@
|
|
|
8879
9314
|
<ul class="md-nav__list">
|
|
8880
9315
|
|
|
8881
9316
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
9317
|
+
<a href="#security-in-v1612" class="md-nav__link">
|
|
8883
9318
|
<span class="md-ellipsis">
|
|
8884
|
-
|
|
9319
|
+
Security in v1.6.12
|
|
8885
9320
|
</span>
|
|
8886
9321
|
</a>
|
|
8887
9322
|
|
|
8888
9323
|
</li>
|
|
8889
9324
|
|
|
8890
9325
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
9326
|
+
<a href="#added-in-v1612" class="md-nav__link">
|
|
8892
9327
|
<span class="md-ellipsis">
|
|
8893
|
-
|
|
9328
|
+
Added in v1.6.12
|
|
8894
9329
|
</span>
|
|
8895
9330
|
</a>
|
|
8896
9331
|
|
|
8897
9332
|
</li>
|
|
8898
9333
|
|
|
8899
9334
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#
|
|
9335
|
+
<a href="#changed-in-v1612" class="md-nav__link">
|
|
8901
9336
|
<span class="md-ellipsis">
|
|
8902
|
-
Changed
|
|
9337
|
+
Changed in v1.6.12
|
|
8903
9338
|
</span>
|
|
8904
9339
|
</a>
|
|
8905
9340
|
|
|
8906
9341
|
</li>
|
|
8907
9342
|
|
|
8908
9343
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
9344
|
+
<a href="#fixed-in-v1612" class="md-nav__link">
|
|
8910
9345
|
<span class="md-ellipsis">
|
|
8911
|
-
Fixed
|
|
9346
|
+
Fixed in v1.6.12
|
|
8912
9347
|
</span>
|
|
8913
9348
|
</a>
|
|
8914
9349
|
|
|
@@ -8930,27 +9365,27 @@
|
|
|
8930
9365
|
<ul class="md-nav__list">
|
|
8931
9366
|
|
|
8932
9367
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#
|
|
9368
|
+
<a href="#security-in-v1611" class="md-nav__link">
|
|
8934
9369
|
<span class="md-ellipsis">
|
|
8935
|
-
Security
|
|
9370
|
+
Security in v1.6.11
|
|
8936
9371
|
</span>
|
|
8937
9372
|
</a>
|
|
8938
9373
|
|
|
8939
9374
|
</li>
|
|
8940
9375
|
|
|
8941
9376
|
<li class="md-nav__item">
|
|
8942
|
-
<a href="#
|
|
9377
|
+
<a href="#added-in-v1611" class="md-nav__link">
|
|
8943
9378
|
<span class="md-ellipsis">
|
|
8944
|
-
Added
|
|
9379
|
+
Added in v1.6.11
|
|
8945
9380
|
</span>
|
|
8946
9381
|
</a>
|
|
8947
9382
|
|
|
8948
9383
|
</li>
|
|
8949
9384
|
|
|
8950
9385
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
9386
|
+
<a href="#fixed-in-v1611" class="md-nav__link">
|
|
8952
9387
|
<span class="md-ellipsis">
|
|
8953
|
-
Fixed
|
|
9388
|
+
Fixed in v1.6.11
|
|
8954
9389
|
</span>
|
|
8955
9390
|
</a>
|
|
8956
9391
|
|
|
@@ -8972,36 +9407,36 @@
|
|
|
8972
9407
|
<ul class="md-nav__list">
|
|
8973
9408
|
|
|
8974
9409
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9410
|
+
<a href="#security-in-v1610" class="md-nav__link">
|
|
8976
9411
|
<span class="md-ellipsis">
|
|
8977
|
-
Security
|
|
9412
|
+
Security in v1.6.10
|
|
8978
9413
|
</span>
|
|
8979
9414
|
</a>
|
|
8980
9415
|
|
|
8981
9416
|
</li>
|
|
8982
9417
|
|
|
8983
9418
|
<li class="md-nav__item">
|
|
8984
|
-
<a href="#
|
|
9419
|
+
<a href="#added-in-v1610" class="md-nav__link">
|
|
8985
9420
|
<span class="md-ellipsis">
|
|
8986
|
-
Added
|
|
9421
|
+
Added in v1.6.10
|
|
8987
9422
|
</span>
|
|
8988
9423
|
</a>
|
|
8989
9424
|
|
|
8990
9425
|
</li>
|
|
8991
9426
|
|
|
8992
9427
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
9428
|
+
<a href="#changed-in-v1610" class="md-nav__link">
|
|
8994
9429
|
<span class="md-ellipsis">
|
|
8995
|
-
Changed
|
|
9430
|
+
Changed in v1.6.10
|
|
8996
9431
|
</span>
|
|
8997
9432
|
</a>
|
|
8998
9433
|
|
|
8999
9434
|
</li>
|
|
9000
9435
|
|
|
9001
9436
|
<li class="md-nav__item">
|
|
9002
|
-
<a href="#
|
|
9437
|
+
<a href="#dependencies-in-v1610" class="md-nav__link">
|
|
9003
9438
|
<span class="md-ellipsis">
|
|
9004
|
-
Dependencies
|
|
9439
|
+
Dependencies in v1.6.10
|
|
9005
9440
|
</span>
|
|
9006
9441
|
</a>
|
|
9007
9442
|
|
|
@@ -9023,9 +9458,9 @@
|
|
|
9023
9458
|
<ul class="md-nav__list">
|
|
9024
9459
|
|
|
9025
9460
|
<li class="md-nav__item">
|
|
9026
|
-
<a href="#
|
|
9461
|
+
<a href="#fixed-in-v169" class="md-nav__link">
|
|
9027
9462
|
<span class="md-ellipsis">
|
|
9028
|
-
Fixed
|
|
9463
|
+
Fixed in v1.6.9
|
|
9029
9464
|
</span>
|
|
9030
9465
|
</a>
|
|
9031
9466
|
|
|
@@ -9047,45 +9482,45 @@
|
|
|
9047
9482
|
<ul class="md-nav__list">
|
|
9048
9483
|
|
|
9049
9484
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
9485
|
+
<a href="#security-in-v168" class="md-nav__link">
|
|
9051
9486
|
<span class="md-ellipsis">
|
|
9052
|
-
Security
|
|
9487
|
+
Security in v1.6.8
|
|
9053
9488
|
</span>
|
|
9054
9489
|
</a>
|
|
9055
9490
|
|
|
9056
9491
|
</li>
|
|
9057
9492
|
|
|
9058
9493
|
<li class="md-nav__item">
|
|
9059
|
-
<a href="#
|
|
9494
|
+
<a href="#added-in-v168" class="md-nav__link">
|
|
9060
9495
|
<span class="md-ellipsis">
|
|
9061
|
-
Added
|
|
9496
|
+
Added in v1.6.8
|
|
9062
9497
|
</span>
|
|
9063
9498
|
</a>
|
|
9064
9499
|
|
|
9065
9500
|
</li>
|
|
9066
9501
|
|
|
9067
9502
|
<li class="md-nav__item">
|
|
9068
|
-
<a href="#
|
|
9503
|
+
<a href="#removed-in-v168" class="md-nav__link">
|
|
9069
9504
|
<span class="md-ellipsis">
|
|
9070
|
-
Removed
|
|
9505
|
+
Removed in v1.6.8
|
|
9071
9506
|
</span>
|
|
9072
9507
|
</a>
|
|
9073
9508
|
|
|
9074
9509
|
</li>
|
|
9075
9510
|
|
|
9076
9511
|
<li class="md-nav__item">
|
|
9077
|
-
<a href="#
|
|
9512
|
+
<a href="#fixed-in-v168" class="md-nav__link">
|
|
9078
9513
|
<span class="md-ellipsis">
|
|
9079
|
-
Fixed
|
|
9514
|
+
Fixed in v1.6.8
|
|
9080
9515
|
</span>
|
|
9081
9516
|
</a>
|
|
9082
9517
|
|
|
9083
9518
|
</li>
|
|
9084
9519
|
|
|
9085
9520
|
<li class="md-nav__item">
|
|
9086
|
-
<a href="#
|
|
9521
|
+
<a href="#housekeeping-in-v168" class="md-nav__link">
|
|
9087
9522
|
<span class="md-ellipsis">
|
|
9088
|
-
Housekeeping
|
|
9523
|
+
Housekeeping in v1.6.8
|
|
9089
9524
|
</span>
|
|
9090
9525
|
</a>
|
|
9091
9526
|
|
|
@@ -9107,36 +9542,36 @@
|
|
|
9107
9542
|
<ul class="md-nav__list">
|
|
9108
9543
|
|
|
9109
9544
|
<li class="md-nav__item">
|
|
9110
|
-
<a href="#
|
|
9545
|
+
<a href="#security-in-v167" class="md-nav__link">
|
|
9111
9546
|
<span class="md-ellipsis">
|
|
9112
|
-
Security
|
|
9547
|
+
Security in v1.6.7
|
|
9113
9548
|
</span>
|
|
9114
9549
|
</a>
|
|
9115
9550
|
|
|
9116
9551
|
</li>
|
|
9117
9552
|
|
|
9118
9553
|
<li class="md-nav__item">
|
|
9119
|
-
<a href="#
|
|
9554
|
+
<a href="#added-in-v167" class="md-nav__link">
|
|
9120
9555
|
<span class="md-ellipsis">
|
|
9121
|
-
Added
|
|
9556
|
+
Added in v1.6.7
|
|
9122
9557
|
</span>
|
|
9123
9558
|
</a>
|
|
9124
9559
|
|
|
9125
9560
|
</li>
|
|
9126
9561
|
|
|
9127
9562
|
<li class="md-nav__item">
|
|
9128
|
-
<a href="#
|
|
9563
|
+
<a href="#removed-in-v167" class="md-nav__link">
|
|
9129
9564
|
<span class="md-ellipsis">
|
|
9130
|
-
Removed
|
|
9565
|
+
Removed in v1.6.7
|
|
9131
9566
|
</span>
|
|
9132
9567
|
</a>
|
|
9133
9568
|
|
|
9134
9569
|
</li>
|
|
9135
9570
|
|
|
9136
9571
|
<li class="md-nav__item">
|
|
9137
|
-
<a href="#
|
|
9572
|
+
<a href="#fixed-in-v167" class="md-nav__link">
|
|
9138
9573
|
<span class="md-ellipsis">
|
|
9139
|
-
Fixed
|
|
9574
|
+
Fixed in v1.6.7
|
|
9140
9575
|
</span>
|
|
9141
9576
|
</a>
|
|
9142
9577
|
|
|
@@ -9158,45 +9593,45 @@
|
|
|
9158
9593
|
<ul class="md-nav__list">
|
|
9159
9594
|
|
|
9160
9595
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9596
|
+
<a href="#security-in-v166" class="md-nav__link">
|
|
9162
9597
|
<span class="md-ellipsis">
|
|
9163
|
-
Security
|
|
9598
|
+
Security in v1.6.6
|
|
9164
9599
|
</span>
|
|
9165
9600
|
</a>
|
|
9166
9601
|
|
|
9167
9602
|
</li>
|
|
9168
9603
|
|
|
9169
9604
|
<li class="md-nav__item">
|
|
9170
|
-
<a href="#
|
|
9605
|
+
<a href="#changed-in-v166" class="md-nav__link">
|
|
9171
9606
|
<span class="md-ellipsis">
|
|
9172
|
-
Changed
|
|
9607
|
+
Changed in v1.6.6
|
|
9173
9608
|
</span>
|
|
9174
9609
|
</a>
|
|
9175
9610
|
|
|
9176
9611
|
</li>
|
|
9177
9612
|
|
|
9178
9613
|
<li class="md-nav__item">
|
|
9179
|
-
<a href="#
|
|
9614
|
+
<a href="#fixed-in-v166" class="md-nav__link">
|
|
9180
9615
|
<span class="md-ellipsis">
|
|
9181
|
-
Fixed
|
|
9616
|
+
Fixed in v1.6.6
|
|
9182
9617
|
</span>
|
|
9183
9618
|
</a>
|
|
9184
9619
|
|
|
9185
9620
|
</li>
|
|
9186
9621
|
|
|
9187
9622
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9623
|
+
<a href="#dependencies-in-v166" class="md-nav__link">
|
|
9189
9624
|
<span class="md-ellipsis">
|
|
9190
|
-
Dependencies
|
|
9625
|
+
Dependencies in v1.6.6
|
|
9191
9626
|
</span>
|
|
9192
9627
|
</a>
|
|
9193
9628
|
|
|
9194
9629
|
</li>
|
|
9195
9630
|
|
|
9196
9631
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9632
|
+
<a href="#housekeeping-in-v166" class="md-nav__link">
|
|
9198
9633
|
<span class="md-ellipsis">
|
|
9199
|
-
Housekeeping
|
|
9634
|
+
Housekeeping in v1.6.6
|
|
9200
9635
|
</span>
|
|
9201
9636
|
</a>
|
|
9202
9637
|
|
|
@@ -9218,45 +9653,45 @@
|
|
|
9218
9653
|
<ul class="md-nav__list">
|
|
9219
9654
|
|
|
9220
9655
|
<li class="md-nav__item">
|
|
9221
|
-
<a href="#
|
|
9656
|
+
<a href="#security-in-v165" class="md-nav__link">
|
|
9222
9657
|
<span class="md-ellipsis">
|
|
9223
|
-
Security
|
|
9658
|
+
Security in v1.6.5
|
|
9224
9659
|
</span>
|
|
9225
9660
|
</a>
|
|
9226
9661
|
|
|
9227
9662
|
</li>
|
|
9228
9663
|
|
|
9229
9664
|
<li class="md-nav__item">
|
|
9230
|
-
<a href="#
|
|
9665
|
+
<a href="#added-in-v165" class="md-nav__link">
|
|
9231
9666
|
<span class="md-ellipsis">
|
|
9232
|
-
Added
|
|
9667
|
+
Added in v1.6.5
|
|
9233
9668
|
</span>
|
|
9234
9669
|
</a>
|
|
9235
9670
|
|
|
9236
9671
|
</li>
|
|
9237
9672
|
|
|
9238
9673
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9674
|
+
<a href="#fixed-in-v165" class="md-nav__link">
|
|
9240
9675
|
<span class="md-ellipsis">
|
|
9241
|
-
Fixed
|
|
9676
|
+
Fixed in v1.6.5
|
|
9242
9677
|
</span>
|
|
9243
9678
|
</a>
|
|
9244
9679
|
|
|
9245
9680
|
</li>
|
|
9246
9681
|
|
|
9247
9682
|
<li class="md-nav__item">
|
|
9248
|
-
<a href="#
|
|
9683
|
+
<a href="#documentation-in-v165" class="md-nav__link">
|
|
9249
9684
|
<span class="md-ellipsis">
|
|
9250
|
-
Documentation
|
|
9685
|
+
Documentation in v1.6.5
|
|
9251
9686
|
</span>
|
|
9252
9687
|
</a>
|
|
9253
9688
|
|
|
9254
9689
|
</li>
|
|
9255
9690
|
|
|
9256
9691
|
<li class="md-nav__item">
|
|
9257
|
-
<a href="#
|
|
9692
|
+
<a href="#housekeeping-in-v165" class="md-nav__link">
|
|
9258
9693
|
<span class="md-ellipsis">
|
|
9259
|
-
Housekeeping
|
|
9694
|
+
Housekeeping in v1.6.5
|
|
9260
9695
|
</span>
|
|
9261
9696
|
</a>
|
|
9262
9697
|
|
|
@@ -9278,36 +9713,36 @@
|
|
|
9278
9713
|
<ul class="md-nav__list">
|
|
9279
9714
|
|
|
9280
9715
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9716
|
+
<a href="#added-in-v164" class="md-nav__link">
|
|
9282
9717
|
<span class="md-ellipsis">
|
|
9283
|
-
Added
|
|
9718
|
+
Added in v1.6.4
|
|
9284
9719
|
</span>
|
|
9285
9720
|
</a>
|
|
9286
9721
|
|
|
9287
9722
|
</li>
|
|
9288
9723
|
|
|
9289
9724
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9725
|
+
<a href="#changed-in-v164" class="md-nav__link">
|
|
9291
9726
|
<span class="md-ellipsis">
|
|
9292
|
-
Changed
|
|
9727
|
+
Changed in v1.6.4
|
|
9293
9728
|
</span>
|
|
9294
9729
|
</a>
|
|
9295
9730
|
|
|
9296
9731
|
</li>
|
|
9297
9732
|
|
|
9298
9733
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9734
|
+
<a href="#removed-in-v164" class="md-nav__link">
|
|
9300
9735
|
<span class="md-ellipsis">
|
|
9301
|
-
Removed
|
|
9736
|
+
Removed in v1.6.4
|
|
9302
9737
|
</span>
|
|
9303
9738
|
</a>
|
|
9304
9739
|
|
|
9305
9740
|
</li>
|
|
9306
9741
|
|
|
9307
9742
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9743
|
+
<a href="#housekeeping-in-v164" class="md-nav__link">
|
|
9309
9744
|
<span class="md-ellipsis">
|
|
9310
|
-
Housekeeping
|
|
9745
|
+
Housekeeping in v1.6.4
|
|
9311
9746
|
</span>
|
|
9312
9747
|
</a>
|
|
9313
9748
|
|
|
@@ -9329,36 +9764,36 @@
|
|
|
9329
9764
|
<ul class="md-nav__list">
|
|
9330
9765
|
|
|
9331
9766
|
<li class="md-nav__item">
|
|
9332
|
-
<a href="#
|
|
9767
|
+
<a href="#security-in-v163" class="md-nav__link">
|
|
9333
9768
|
<span class="md-ellipsis">
|
|
9334
|
-
Security
|
|
9769
|
+
Security in v1.6.3
|
|
9335
9770
|
</span>
|
|
9336
9771
|
</a>
|
|
9337
9772
|
|
|
9338
9773
|
</li>
|
|
9339
9774
|
|
|
9340
9775
|
<li class="md-nav__item">
|
|
9341
|
-
<a href="#
|
|
9776
|
+
<a href="#added-in-v163" class="md-nav__link">
|
|
9342
9777
|
<span class="md-ellipsis">
|
|
9343
|
-
Added
|
|
9778
|
+
Added in v1.6.3
|
|
9344
9779
|
</span>
|
|
9345
9780
|
</a>
|
|
9346
9781
|
|
|
9347
9782
|
</li>
|
|
9348
9783
|
|
|
9349
9784
|
<li class="md-nav__item">
|
|
9350
|
-
<a href="#
|
|
9785
|
+
<a href="#fixed-in-v163" class="md-nav__link">
|
|
9351
9786
|
<span class="md-ellipsis">
|
|
9352
|
-
Fixed
|
|
9787
|
+
Fixed in v1.6.3
|
|
9353
9788
|
</span>
|
|
9354
9789
|
</a>
|
|
9355
9790
|
|
|
9356
9791
|
</li>
|
|
9357
9792
|
|
|
9358
9793
|
<li class="md-nav__item">
|
|
9359
|
-
<a href="#
|
|
9794
|
+
<a href="#housekeeping-in-v163" class="md-nav__link">
|
|
9360
9795
|
<span class="md-ellipsis">
|
|
9361
|
-
Housekeeping
|
|
9796
|
+
Housekeeping in v1.6.3
|
|
9362
9797
|
</span>
|
|
9363
9798
|
</a>
|
|
9364
9799
|
|
|
@@ -9380,45 +9815,45 @@
|
|
|
9380
9815
|
<ul class="md-nav__list">
|
|
9381
9816
|
|
|
9382
9817
|
<li class="md-nav__item">
|
|
9383
|
-
<a href="#
|
|
9818
|
+
<a href="#added-in-v162" class="md-nav__link">
|
|
9384
9819
|
<span class="md-ellipsis">
|
|
9385
|
-
Added
|
|
9820
|
+
Added in v1.6.2
|
|
9386
9821
|
</span>
|
|
9387
9822
|
</a>
|
|
9388
9823
|
|
|
9389
9824
|
</li>
|
|
9390
9825
|
|
|
9391
9826
|
<li class="md-nav__item">
|
|
9392
|
-
<a href="#
|
|
9827
|
+
<a href="#changed-in-v162" class="md-nav__link">
|
|
9393
9828
|
<span class="md-ellipsis">
|
|
9394
|
-
Changed
|
|
9829
|
+
Changed in v1.6.2
|
|
9395
9830
|
</span>
|
|
9396
9831
|
</a>
|
|
9397
9832
|
|
|
9398
9833
|
</li>
|
|
9399
9834
|
|
|
9400
9835
|
<li class="md-nav__item">
|
|
9401
|
-
<a href="#
|
|
9836
|
+
<a href="#fixed-in-v162" class="md-nav__link">
|
|
9402
9837
|
<span class="md-ellipsis">
|
|
9403
|
-
Fixed
|
|
9838
|
+
Fixed in v1.6.2
|
|
9404
9839
|
</span>
|
|
9405
9840
|
</a>
|
|
9406
9841
|
|
|
9407
9842
|
</li>
|
|
9408
9843
|
|
|
9409
9844
|
<li class="md-nav__item">
|
|
9410
|
-
<a href="#
|
|
9845
|
+
<a href="#documentation-in-v162" class="md-nav__link">
|
|
9411
9846
|
<span class="md-ellipsis">
|
|
9412
|
-
Documentation
|
|
9847
|
+
Documentation in v1.6.2
|
|
9413
9848
|
</span>
|
|
9414
9849
|
</a>
|
|
9415
9850
|
|
|
9416
9851
|
</li>
|
|
9417
9852
|
|
|
9418
9853
|
<li class="md-nav__item">
|
|
9419
|
-
<a href="#
|
|
9854
|
+
<a href="#housekeeping-in-v162" class="md-nav__link">
|
|
9420
9855
|
<span class="md-ellipsis">
|
|
9421
|
-
Housekeeping
|
|
9856
|
+
Housekeeping in v1.6.2
|
|
9422
9857
|
</span>
|
|
9423
9858
|
</a>
|
|
9424
9859
|
|
|
@@ -9440,36 +9875,36 @@
|
|
|
9440
9875
|
<ul class="md-nav__list">
|
|
9441
9876
|
|
|
9442
9877
|
<li class="md-nav__item">
|
|
9443
|
-
<a href="#
|
|
9878
|
+
<a href="#changed-in-v161" class="md-nav__link">
|
|
9444
9879
|
<span class="md-ellipsis">
|
|
9445
|
-
Changed
|
|
9880
|
+
Changed in v1.6.1
|
|
9446
9881
|
</span>
|
|
9447
9882
|
</a>
|
|
9448
9883
|
|
|
9449
9884
|
</li>
|
|
9450
9885
|
|
|
9451
9886
|
<li class="md-nav__item">
|
|
9452
|
-
<a href="#
|
|
9887
|
+
<a href="#fixed-in-v161" class="md-nav__link">
|
|
9453
9888
|
<span class="md-ellipsis">
|
|
9454
|
-
Fixed
|
|
9889
|
+
Fixed in v1.6.1
|
|
9455
9890
|
</span>
|
|
9456
9891
|
</a>
|
|
9457
9892
|
|
|
9458
9893
|
</li>
|
|
9459
9894
|
|
|
9460
9895
|
<li class="md-nav__item">
|
|
9461
|
-
<a href="#
|
|
9896
|
+
<a href="#documentation-in-v161" class="md-nav__link">
|
|
9462
9897
|
<span class="md-ellipsis">
|
|
9463
|
-
Documentation
|
|
9898
|
+
Documentation in v1.6.1
|
|
9464
9899
|
</span>
|
|
9465
9900
|
</a>
|
|
9466
9901
|
|
|
9467
9902
|
</li>
|
|
9468
9903
|
|
|
9469
9904
|
<li class="md-nav__item">
|
|
9470
|
-
<a href="#
|
|
9905
|
+
<a href="#housekeeping-in-v161" class="md-nav__link">
|
|
9471
9906
|
<span class="md-ellipsis">
|
|
9472
|
-
Housekeeping
|
|
9907
|
+
Housekeeping in v1.6.1
|
|
9473
9908
|
</span>
|
|
9474
9909
|
</a>
|
|
9475
9910
|
|
|
@@ -9491,36 +9926,36 @@
|
|
|
9491
9926
|
<ul class="md-nav__list">
|
|
9492
9927
|
|
|
9493
9928
|
<li class="md-nav__item">
|
|
9494
|
-
<a href="#
|
|
9929
|
+
<a href="#added-in-v160" class="md-nav__link">
|
|
9495
9930
|
<span class="md-ellipsis">
|
|
9496
|
-
Added
|
|
9931
|
+
Added in v1.6.0
|
|
9497
9932
|
</span>
|
|
9498
9933
|
</a>
|
|
9499
9934
|
|
|
9500
9935
|
</li>
|
|
9501
9936
|
|
|
9502
9937
|
<li class="md-nav__item">
|
|
9503
|
-
<a href="#
|
|
9938
|
+
<a href="#fixed-in-v160" class="md-nav__link">
|
|
9504
9939
|
<span class="md-ellipsis">
|
|
9505
|
-
Fixed
|
|
9940
|
+
Fixed in v1.6.0
|
|
9506
9941
|
</span>
|
|
9507
9942
|
</a>
|
|
9508
9943
|
|
|
9509
9944
|
</li>
|
|
9510
9945
|
|
|
9511
9946
|
<li class="md-nav__item">
|
|
9512
|
-
<a href="#
|
|
9947
|
+
<a href="#dependencies-in-v160" class="md-nav__link">
|
|
9513
9948
|
<span class="md-ellipsis">
|
|
9514
|
-
Dependencies
|
|
9949
|
+
Dependencies in v1.6.0
|
|
9515
9950
|
</span>
|
|
9516
9951
|
</a>
|
|
9517
9952
|
|
|
9518
9953
|
</li>
|
|
9519
9954
|
|
|
9520
9955
|
<li class="md-nav__item">
|
|
9521
|
-
<a href="#
|
|
9956
|
+
<a href="#documentation-in-v160" class="md-nav__link">
|
|
9522
9957
|
<span class="md-ellipsis">
|
|
9523
|
-
Documentation
|
|
9958
|
+
Documentation in v1.6.0
|
|
9524
9959
|
</span>
|
|
9525
9960
|
</a>
|
|
9526
9961
|
|
|
@@ -9542,54 +9977,54 @@
|
|
|
9542
9977
|
<ul class="md-nav__list">
|
|
9543
9978
|
|
|
9544
9979
|
<li class="md-nav__item">
|
|
9545
|
-
<a href="#
|
|
9980
|
+
<a href="#added-in-v160-rc1" class="md-nav__link">
|
|
9546
9981
|
<span class="md-ellipsis">
|
|
9547
|
-
Added
|
|
9982
|
+
Added in v1.6.0-rc.1
|
|
9548
9983
|
</span>
|
|
9549
9984
|
</a>
|
|
9550
9985
|
|
|
9551
9986
|
</li>
|
|
9552
9987
|
|
|
9553
9988
|
<li class="md-nav__item">
|
|
9554
|
-
<a href="#
|
|
9989
|
+
<a href="#changed-in-v160-rc1" class="md-nav__link">
|
|
9555
9990
|
<span class="md-ellipsis">
|
|
9556
|
-
Changed
|
|
9991
|
+
Changed in v1.6.0-rc.1
|
|
9557
9992
|
</span>
|
|
9558
9993
|
</a>
|
|
9559
9994
|
|
|
9560
9995
|
</li>
|
|
9561
9996
|
|
|
9562
9997
|
<li class="md-nav__item">
|
|
9563
|
-
<a href="#
|
|
9998
|
+
<a href="#removed-in-v160-rc1" class="md-nav__link">
|
|
9564
9999
|
<span class="md-ellipsis">
|
|
9565
|
-
Removed
|
|
10000
|
+
Removed in v1.6.0-rc.1
|
|
9566
10001
|
</span>
|
|
9567
10002
|
</a>
|
|
9568
10003
|
|
|
9569
10004
|
</li>
|
|
9570
10005
|
|
|
9571
10006
|
<li class="md-nav__item">
|
|
9572
|
-
<a href="#
|
|
10007
|
+
<a href="#fixed-in-v160-rc1" class="md-nav__link">
|
|
9573
10008
|
<span class="md-ellipsis">
|
|
9574
|
-
Fixed
|
|
10009
|
+
Fixed in v1.6.0-rc.1
|
|
9575
10010
|
</span>
|
|
9576
10011
|
</a>
|
|
9577
10012
|
|
|
9578
10013
|
</li>
|
|
9579
10014
|
|
|
9580
10015
|
<li class="md-nav__item">
|
|
9581
|
-
<a href="#
|
|
10016
|
+
<a href="#dependencies-in-v160-rc1" class="md-nav__link">
|
|
9582
10017
|
<span class="md-ellipsis">
|
|
9583
|
-
Dependencies
|
|
10018
|
+
Dependencies in v1.6.0-rc.1
|
|
9584
10019
|
</span>
|
|
9585
10020
|
</a>
|
|
9586
10021
|
|
|
9587
10022
|
</li>
|
|
9588
10023
|
|
|
9589
10024
|
<li class="md-nav__item">
|
|
9590
|
-
<a href="#
|
|
10025
|
+
<a href="#documentation-in-v160-rc1" class="md-nav__link">
|
|
9591
10026
|
<span class="md-ellipsis">
|
|
9592
|
-
Documentation
|
|
10027
|
+
Documentation in v1.6.0-rc.1
|
|
9593
10028
|
</span>
|
|
9594
10029
|
</a>
|
|
9595
10030
|
|
|
@@ -10258,18 +10693,18 @@
|
|
|
10258
10693
|
<ul class="md-nav__list">
|
|
10259
10694
|
|
|
10260
10695
|
<li class="md-nav__item">
|
|
10261
|
-
<a href="#security" class="md-nav__link">
|
|
10696
|
+
<a href="#security-in-v1629" class="md-nav__link">
|
|
10262
10697
|
<span class="md-ellipsis">
|
|
10263
|
-
Security
|
|
10698
|
+
Security in v1.6.29
|
|
10264
10699
|
</span>
|
|
10265
10700
|
</a>
|
|
10266
10701
|
|
|
10267
10702
|
</li>
|
|
10268
10703
|
|
|
10269
10704
|
<li class="md-nav__item">
|
|
10270
|
-
<a href="#fixed" class="md-nav__link">
|
|
10705
|
+
<a href="#fixed-in-v1629" class="md-nav__link">
|
|
10271
10706
|
<span class="md-ellipsis">
|
|
10272
|
-
Fixed
|
|
10707
|
+
Fixed in v1.6.29
|
|
10273
10708
|
</span>
|
|
10274
10709
|
</a>
|
|
10275
10710
|
|
|
@@ -10291,18 +10726,18 @@
|
|
|
10291
10726
|
<ul class="md-nav__list">
|
|
10292
10727
|
|
|
10293
10728
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#
|
|
10729
|
+
<a href="#fixed-in-v1628" class="md-nav__link">
|
|
10295
10730
|
<span class="md-ellipsis">
|
|
10296
|
-
Fixed
|
|
10731
|
+
Fixed in v1.6.28
|
|
10297
10732
|
</span>
|
|
10298
10733
|
</a>
|
|
10299
10734
|
|
|
10300
10735
|
</li>
|
|
10301
10736
|
|
|
10302
10737
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10738
|
+
<a href="#housekeeping-in-v1628" class="md-nav__link">
|
|
10304
10739
|
<span class="md-ellipsis">
|
|
10305
|
-
Housekeeping
|
|
10740
|
+
Housekeeping in v1.6.28
|
|
10306
10741
|
</span>
|
|
10307
10742
|
</a>
|
|
10308
10743
|
|
|
@@ -10324,18 +10759,18 @@
|
|
|
10324
10759
|
<ul class="md-nav__list">
|
|
10325
10760
|
|
|
10326
10761
|
<li class="md-nav__item">
|
|
10327
|
-
<a href="#
|
|
10762
|
+
<a href="#security-in-v1627" class="md-nav__link">
|
|
10328
10763
|
<span class="md-ellipsis">
|
|
10329
|
-
Security
|
|
10764
|
+
Security in v1.6.27
|
|
10330
10765
|
</span>
|
|
10331
10766
|
</a>
|
|
10332
10767
|
|
|
10333
10768
|
</li>
|
|
10334
10769
|
|
|
10335
10770
|
<li class="md-nav__item">
|
|
10336
|
-
<a href="#
|
|
10771
|
+
<a href="#fixed-in-v1627" class="md-nav__link">
|
|
10337
10772
|
<span class="md-ellipsis">
|
|
10338
|
-
Fixed
|
|
10773
|
+
Fixed in v1.6.27
|
|
10339
10774
|
</span>
|
|
10340
10775
|
</a>
|
|
10341
10776
|
|
|
@@ -10357,9 +10792,9 @@
|
|
|
10357
10792
|
<ul class="md-nav__list">
|
|
10358
10793
|
|
|
10359
10794
|
<li class="md-nav__item">
|
|
10360
|
-
<a href="#
|
|
10795
|
+
<a href="#fixed-in-v1626" class="md-nav__link">
|
|
10361
10796
|
<span class="md-ellipsis">
|
|
10362
|
-
Fixed
|
|
10797
|
+
Fixed in v1.6.26
|
|
10363
10798
|
</span>
|
|
10364
10799
|
</a>
|
|
10365
10800
|
|
|
@@ -10381,18 +10816,18 @@
|
|
|
10381
10816
|
<ul class="md-nav__list">
|
|
10382
10817
|
|
|
10383
10818
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10819
|
+
<a href="#security-in-v1625" class="md-nav__link">
|
|
10385
10820
|
<span class="md-ellipsis">
|
|
10386
|
-
Security
|
|
10821
|
+
Security in v1.6.25
|
|
10387
10822
|
</span>
|
|
10388
10823
|
</a>
|
|
10389
10824
|
|
|
10390
10825
|
</li>
|
|
10391
10826
|
|
|
10392
10827
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10828
|
+
<a href="#dependencies-in-v1625" class="md-nav__link">
|
|
10394
10829
|
<span class="md-ellipsis">
|
|
10395
|
-
Dependencies
|
|
10830
|
+
Dependencies in v1.6.25
|
|
10396
10831
|
</span>
|
|
10397
10832
|
</a>
|
|
10398
10833
|
|
|
@@ -10414,18 +10849,18 @@
|
|
|
10414
10849
|
<ul class="md-nav__list">
|
|
10415
10850
|
|
|
10416
10851
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10852
|
+
<a href="#security-in-v1624" class="md-nav__link">
|
|
10418
10853
|
<span class="md-ellipsis">
|
|
10419
|
-
Security
|
|
10854
|
+
Security in v1.6.24
|
|
10420
10855
|
</span>
|
|
10421
10856
|
</a>
|
|
10422
10857
|
|
|
10423
10858
|
</li>
|
|
10424
10859
|
|
|
10425
10860
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#
|
|
10861
|
+
<a href="#housekeeping-in-v1624" class="md-nav__link">
|
|
10427
10862
|
<span class="md-ellipsis">
|
|
10428
|
-
Housekeeping
|
|
10863
|
+
Housekeeping in v1.6.24
|
|
10429
10864
|
</span>
|
|
10430
10865
|
</a>
|
|
10431
10866
|
|
|
@@ -10447,18 +10882,18 @@
|
|
|
10447
10882
|
<ul class="md-nav__list">
|
|
10448
10883
|
|
|
10449
10884
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10885
|
+
<a href="#security-in-v1623" class="md-nav__link">
|
|
10451
10886
|
<span class="md-ellipsis">
|
|
10452
|
-
Security
|
|
10887
|
+
Security in v1.6.23
|
|
10453
10888
|
</span>
|
|
10454
10889
|
</a>
|
|
10455
10890
|
|
|
10456
10891
|
</li>
|
|
10457
10892
|
|
|
10458
10893
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
10894
|
+
<a href="#housekeeping-in-v1623" class="md-nav__link">
|
|
10460
10895
|
<span class="md-ellipsis">
|
|
10461
|
-
Housekeeping
|
|
10896
|
+
Housekeeping in v1.6.23
|
|
10462
10897
|
</span>
|
|
10463
10898
|
</a>
|
|
10464
10899
|
|
|
@@ -10480,27 +10915,27 @@
|
|
|
10480
10915
|
<ul class="md-nav__list">
|
|
10481
10916
|
|
|
10482
10917
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
10918
|
+
<a href="#security-in-v1622" class="md-nav__link">
|
|
10484
10919
|
<span class="md-ellipsis">
|
|
10485
|
-
Security
|
|
10920
|
+
Security in v1.6.22
|
|
10486
10921
|
</span>
|
|
10487
10922
|
</a>
|
|
10488
10923
|
|
|
10489
10924
|
</li>
|
|
10490
10925
|
|
|
10491
10926
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
10927
|
+
<a href="#added-in-v1622" class="md-nav__link">
|
|
10493
10928
|
<span class="md-ellipsis">
|
|
10494
|
-
Added
|
|
10929
|
+
Added in v1.6.22
|
|
10495
10930
|
</span>
|
|
10496
10931
|
</a>
|
|
10497
10932
|
|
|
10498
10933
|
</li>
|
|
10499
10934
|
|
|
10500
10935
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10936
|
+
<a href="#fixed-in-v1622" class="md-nav__link">
|
|
10502
10937
|
<span class="md-ellipsis">
|
|
10503
|
-
Fixed
|
|
10938
|
+
Fixed in v1.6.22
|
|
10504
10939
|
</span>
|
|
10505
10940
|
</a>
|
|
10506
10941
|
|
|
@@ -10522,9 +10957,9 @@
|
|
|
10522
10957
|
<ul class="md-nav__list">
|
|
10523
10958
|
|
|
10524
10959
|
<li class="md-nav__item">
|
|
10525
|
-
<a href="#
|
|
10960
|
+
<a href="#security-in-v1621" class="md-nav__link">
|
|
10526
10961
|
<span class="md-ellipsis">
|
|
10527
|
-
Security
|
|
10962
|
+
Security in v1.6.21
|
|
10528
10963
|
</span>
|
|
10529
10964
|
</a>
|
|
10530
10965
|
|
|
@@ -10546,18 +10981,18 @@
|
|
|
10546
10981
|
<ul class="md-nav__list">
|
|
10547
10982
|
|
|
10548
10983
|
<li class="md-nav__item">
|
|
10549
|
-
<a href="#
|
|
10984
|
+
<a href="#security-in-v1620" class="md-nav__link">
|
|
10550
10985
|
<span class="md-ellipsis">
|
|
10551
|
-
Security
|
|
10986
|
+
Security in v1.6.20
|
|
10552
10987
|
</span>
|
|
10553
10988
|
</a>
|
|
10554
10989
|
|
|
10555
10990
|
</li>
|
|
10556
10991
|
|
|
10557
10992
|
<li class="md-nav__item">
|
|
10558
|
-
<a href="#
|
|
10993
|
+
<a href="#fixed-in-v1620" class="md-nav__link">
|
|
10559
10994
|
<span class="md-ellipsis">
|
|
10560
|
-
Fixed
|
|
10995
|
+
Fixed in v1.6.20
|
|
10561
10996
|
</span>
|
|
10562
10997
|
</a>
|
|
10563
10998
|
|
|
@@ -10579,18 +11014,18 @@
|
|
|
10579
11014
|
<ul class="md-nav__list">
|
|
10580
11015
|
|
|
10581
11016
|
<li class="md-nav__item">
|
|
10582
|
-
<a href="#
|
|
11017
|
+
<a href="#security-in-v1619" class="md-nav__link">
|
|
10583
11018
|
<span class="md-ellipsis">
|
|
10584
|
-
Security
|
|
11019
|
+
Security in v1.6.19
|
|
10585
11020
|
</span>
|
|
10586
11021
|
</a>
|
|
10587
11022
|
|
|
10588
11023
|
</li>
|
|
10589
11024
|
|
|
10590
11025
|
<li class="md-nav__item">
|
|
10591
|
-
<a href="#
|
|
11026
|
+
<a href="#fixed-in-v1619" class="md-nav__link">
|
|
10592
11027
|
<span class="md-ellipsis">
|
|
10593
|
-
Fixed
|
|
11028
|
+
Fixed in v1.6.19
|
|
10594
11029
|
</span>
|
|
10595
11030
|
</a>
|
|
10596
11031
|
|
|
@@ -10612,18 +11047,18 @@
|
|
|
10612
11047
|
<ul class="md-nav__list">
|
|
10613
11048
|
|
|
10614
11049
|
<li class="md-nav__item">
|
|
10615
|
-
<a href="#
|
|
11050
|
+
<a href="#security-in-v1618" class="md-nav__link">
|
|
10616
11051
|
<span class="md-ellipsis">
|
|
10617
|
-
Security
|
|
11052
|
+
Security in v1.6.18
|
|
10618
11053
|
</span>
|
|
10619
11054
|
</a>
|
|
10620
11055
|
|
|
10621
11056
|
</li>
|
|
10622
11057
|
|
|
10623
11058
|
<li class="md-nav__item">
|
|
10624
|
-
<a href="#
|
|
11059
|
+
<a href="#dependencies-in-v1618" class="md-nav__link">
|
|
10625
11060
|
<span class="md-ellipsis">
|
|
10626
|
-
Dependencies
|
|
11061
|
+
Dependencies in v1.6.18
|
|
10627
11062
|
</span>
|
|
10628
11063
|
</a>
|
|
10629
11064
|
|
|
@@ -10645,9 +11080,9 @@
|
|
|
10645
11080
|
<ul class="md-nav__list">
|
|
10646
11081
|
|
|
10647
11082
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
11083
|
+
<a href="#dependencies-in-v1617" class="md-nav__link">
|
|
10649
11084
|
<span class="md-ellipsis">
|
|
10650
|
-
Dependencies
|
|
11085
|
+
Dependencies in v1.6.17
|
|
10651
11086
|
</span>
|
|
10652
11087
|
</a>
|
|
10653
11088
|
|
|
@@ -10669,54 +11104,54 @@
|
|
|
10669
11104
|
<ul class="md-nav__list">
|
|
10670
11105
|
|
|
10671
11106
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
11107
|
+
<a href="#security-in-v1616" class="md-nav__link">
|
|
10673
11108
|
<span class="md-ellipsis">
|
|
10674
|
-
Security
|
|
11109
|
+
Security in v1.6.16
|
|
10675
11110
|
</span>
|
|
10676
11111
|
</a>
|
|
10677
11112
|
|
|
10678
11113
|
</li>
|
|
10679
11114
|
|
|
10680
11115
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
11116
|
+
<a href="#added-in-v1616" class="md-nav__link">
|
|
10682
11117
|
<span class="md-ellipsis">
|
|
10683
|
-
Added
|
|
11118
|
+
Added in v1.6.16
|
|
10684
11119
|
</span>
|
|
10685
11120
|
</a>
|
|
10686
11121
|
|
|
10687
11122
|
</li>
|
|
10688
11123
|
|
|
10689
11124
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#
|
|
11125
|
+
<a href="#changed-in-v1616" class="md-nav__link">
|
|
10691
11126
|
<span class="md-ellipsis">
|
|
10692
|
-
Changed
|
|
11127
|
+
Changed in v1.6.16
|
|
10693
11128
|
</span>
|
|
10694
11129
|
</a>
|
|
10695
11130
|
|
|
10696
11131
|
</li>
|
|
10697
11132
|
|
|
10698
11133
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
11134
|
+
<a href="#fixed-in-v1616" class="md-nav__link">
|
|
10700
11135
|
<span class="md-ellipsis">
|
|
10701
|
-
Fixed
|
|
11136
|
+
Fixed in v1.6.16
|
|
10702
11137
|
</span>
|
|
10703
11138
|
</a>
|
|
10704
11139
|
|
|
10705
11140
|
</li>
|
|
10706
11141
|
|
|
10707
11142
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#documentation" class="md-nav__link">
|
|
11143
|
+
<a href="#documentation-in-v1616" class="md-nav__link">
|
|
10709
11144
|
<span class="md-ellipsis">
|
|
10710
|
-
Documentation
|
|
11145
|
+
Documentation in v1.6.16
|
|
10711
11146
|
</span>
|
|
10712
11147
|
</a>
|
|
10713
11148
|
|
|
10714
11149
|
</li>
|
|
10715
11150
|
|
|
10716
11151
|
<li class="md-nav__item">
|
|
10717
|
-
<a href="#
|
|
11152
|
+
<a href="#housekeeping-in-v1616" class="md-nav__link">
|
|
10718
11153
|
<span class="md-ellipsis">
|
|
10719
|
-
Housekeeping
|
|
11154
|
+
Housekeeping in v1.6.16
|
|
10720
11155
|
</span>
|
|
10721
11156
|
</a>
|
|
10722
11157
|
|
|
@@ -10738,27 +11173,27 @@
|
|
|
10738
11173
|
<ul class="md-nav__list">
|
|
10739
11174
|
|
|
10740
11175
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
11176
|
+
<a href="#added-in-v1615" class="md-nav__link">
|
|
10742
11177
|
<span class="md-ellipsis">
|
|
10743
|
-
Added
|
|
11178
|
+
Added in v1.6.15
|
|
10744
11179
|
</span>
|
|
10745
11180
|
</a>
|
|
10746
11181
|
|
|
10747
11182
|
</li>
|
|
10748
11183
|
|
|
10749
11184
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
11185
|
+
<a href="#fixed-in-v1615" class="md-nav__link">
|
|
10751
11186
|
<span class="md-ellipsis">
|
|
10752
|
-
Fixed
|
|
11187
|
+
Fixed in v1.6.15
|
|
10753
11188
|
</span>
|
|
10754
11189
|
</a>
|
|
10755
11190
|
|
|
10756
11191
|
</li>
|
|
10757
11192
|
|
|
10758
11193
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
11194
|
+
<a href="#housekeeping-in-v1615" class="md-nav__link">
|
|
10760
11195
|
<span class="md-ellipsis">
|
|
10761
|
-
Housekeeping
|
|
11196
|
+
Housekeeping in v1.6.15
|
|
10762
11197
|
</span>
|
|
10763
11198
|
</a>
|
|
10764
11199
|
|
|
@@ -10780,9 +11215,9 @@
|
|
|
10780
11215
|
<ul class="md-nav__list">
|
|
10781
11216
|
|
|
10782
11217
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
11218
|
+
<a href="#fixed-in-v1614" class="md-nav__link">
|
|
10784
11219
|
<span class="md-ellipsis">
|
|
10785
|
-
Fixed
|
|
11220
|
+
Fixed in v1.6.14
|
|
10786
11221
|
</span>
|
|
10787
11222
|
</a>
|
|
10788
11223
|
|
|
@@ -10804,36 +11239,27 @@
|
|
|
10804
11239
|
<ul class="md-nav__list">
|
|
10805
11240
|
|
|
10806
11241
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#
|
|
11242
|
+
<a href="#added-in-v1613" class="md-nav__link">
|
|
10808
11243
|
<span class="md-ellipsis">
|
|
10809
|
-
Added
|
|
11244
|
+
Added in v1.6.13
|
|
10810
11245
|
</span>
|
|
10811
11246
|
</a>
|
|
10812
11247
|
|
|
10813
11248
|
</li>
|
|
10814
11249
|
|
|
10815
11250
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#
|
|
11251
|
+
<a href="#fixed-in-v1613" class="md-nav__link">
|
|
10817
11252
|
<span class="md-ellipsis">
|
|
10818
|
-
|
|
11253
|
+
Fixed in v1.6.13
|
|
10819
11254
|
</span>
|
|
10820
11255
|
</a>
|
|
10821
11256
|
|
|
10822
11257
|
</li>
|
|
10823
11258
|
|
|
10824
11259
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
11260
|
+
<a href="#documentation-in-v1613" class="md-nav__link">
|
|
10826
11261
|
<span class="md-ellipsis">
|
|
10827
|
-
|
|
10828
|
-
</span>
|
|
10829
|
-
</a>
|
|
10830
|
-
|
|
10831
|
-
</li>
|
|
10832
|
-
|
|
10833
|
-
<li class="md-nav__item">
|
|
10834
|
-
<a href="#documentation_1" class="md-nav__link">
|
|
10835
|
-
<span class="md-ellipsis">
|
|
10836
|
-
Documentation
|
|
11262
|
+
Documentation in v1.6.13
|
|
10837
11263
|
</span>
|
|
10838
11264
|
</a>
|
|
10839
11265
|
|
|
@@ -10855,36 +11281,36 @@
|
|
|
10855
11281
|
<ul class="md-nav__list">
|
|
10856
11282
|
|
|
10857
11283
|
<li class="md-nav__item">
|
|
10858
|
-
<a href="#
|
|
11284
|
+
<a href="#security-in-v1612" class="md-nav__link">
|
|
10859
11285
|
<span class="md-ellipsis">
|
|
10860
|
-
|
|
11286
|
+
Security in v1.6.12
|
|
10861
11287
|
</span>
|
|
10862
11288
|
</a>
|
|
10863
11289
|
|
|
10864
11290
|
</li>
|
|
10865
11291
|
|
|
10866
11292
|
<li class="md-nav__item">
|
|
10867
|
-
<a href="#
|
|
11293
|
+
<a href="#added-in-v1612" class="md-nav__link">
|
|
10868
11294
|
<span class="md-ellipsis">
|
|
10869
|
-
|
|
11295
|
+
Added in v1.6.12
|
|
10870
11296
|
</span>
|
|
10871
11297
|
</a>
|
|
10872
11298
|
|
|
10873
11299
|
</li>
|
|
10874
11300
|
|
|
10875
11301
|
<li class="md-nav__item">
|
|
10876
|
-
<a href="#
|
|
11302
|
+
<a href="#changed-in-v1612" class="md-nav__link">
|
|
10877
11303
|
<span class="md-ellipsis">
|
|
10878
|
-
Changed
|
|
11304
|
+
Changed in v1.6.12
|
|
10879
11305
|
</span>
|
|
10880
11306
|
</a>
|
|
10881
11307
|
|
|
10882
11308
|
</li>
|
|
10883
11309
|
|
|
10884
11310
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
11311
|
+
<a href="#fixed-in-v1612" class="md-nav__link">
|
|
10886
11312
|
<span class="md-ellipsis">
|
|
10887
|
-
Fixed
|
|
11313
|
+
Fixed in v1.6.12
|
|
10888
11314
|
</span>
|
|
10889
11315
|
</a>
|
|
10890
11316
|
|
|
@@ -10906,27 +11332,27 @@
|
|
|
10906
11332
|
<ul class="md-nav__list">
|
|
10907
11333
|
|
|
10908
11334
|
<li class="md-nav__item">
|
|
10909
|
-
<a href="#
|
|
11335
|
+
<a href="#security-in-v1611" class="md-nav__link">
|
|
10910
11336
|
<span class="md-ellipsis">
|
|
10911
|
-
Security
|
|
11337
|
+
Security in v1.6.11
|
|
10912
11338
|
</span>
|
|
10913
11339
|
</a>
|
|
10914
11340
|
|
|
10915
11341
|
</li>
|
|
10916
11342
|
|
|
10917
11343
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
11344
|
+
<a href="#added-in-v1611" class="md-nav__link">
|
|
10919
11345
|
<span class="md-ellipsis">
|
|
10920
|
-
Added
|
|
11346
|
+
Added in v1.6.11
|
|
10921
11347
|
</span>
|
|
10922
11348
|
</a>
|
|
10923
11349
|
|
|
10924
11350
|
</li>
|
|
10925
11351
|
|
|
10926
11352
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
11353
|
+
<a href="#fixed-in-v1611" class="md-nav__link">
|
|
10928
11354
|
<span class="md-ellipsis">
|
|
10929
|
-
Fixed
|
|
11355
|
+
Fixed in v1.6.11
|
|
10930
11356
|
</span>
|
|
10931
11357
|
</a>
|
|
10932
11358
|
|
|
@@ -10948,36 +11374,36 @@
|
|
|
10948
11374
|
<ul class="md-nav__list">
|
|
10949
11375
|
|
|
10950
11376
|
<li class="md-nav__item">
|
|
10951
|
-
<a href="#
|
|
11377
|
+
<a href="#security-in-v1610" class="md-nav__link">
|
|
10952
11378
|
<span class="md-ellipsis">
|
|
10953
|
-
Security
|
|
11379
|
+
Security in v1.6.10
|
|
10954
11380
|
</span>
|
|
10955
11381
|
</a>
|
|
10956
11382
|
|
|
10957
11383
|
</li>
|
|
10958
11384
|
|
|
10959
11385
|
<li class="md-nav__item">
|
|
10960
|
-
<a href="#
|
|
11386
|
+
<a href="#added-in-v1610" class="md-nav__link">
|
|
10961
11387
|
<span class="md-ellipsis">
|
|
10962
|
-
Added
|
|
11388
|
+
Added in v1.6.10
|
|
10963
11389
|
</span>
|
|
10964
11390
|
</a>
|
|
10965
11391
|
|
|
10966
11392
|
</li>
|
|
10967
11393
|
|
|
10968
11394
|
<li class="md-nav__item">
|
|
10969
|
-
<a href="#
|
|
11395
|
+
<a href="#changed-in-v1610" class="md-nav__link">
|
|
10970
11396
|
<span class="md-ellipsis">
|
|
10971
|
-
Changed
|
|
11397
|
+
Changed in v1.6.10
|
|
10972
11398
|
</span>
|
|
10973
11399
|
</a>
|
|
10974
11400
|
|
|
10975
11401
|
</li>
|
|
10976
11402
|
|
|
10977
11403
|
<li class="md-nav__item">
|
|
10978
|
-
<a href="#
|
|
11404
|
+
<a href="#dependencies-in-v1610" class="md-nav__link">
|
|
10979
11405
|
<span class="md-ellipsis">
|
|
10980
|
-
Dependencies
|
|
11406
|
+
Dependencies in v1.6.10
|
|
10981
11407
|
</span>
|
|
10982
11408
|
</a>
|
|
10983
11409
|
|
|
@@ -10999,9 +11425,9 @@
|
|
|
10999
11425
|
<ul class="md-nav__list">
|
|
11000
11426
|
|
|
11001
11427
|
<li class="md-nav__item">
|
|
11002
|
-
<a href="#
|
|
11428
|
+
<a href="#fixed-in-v169" class="md-nav__link">
|
|
11003
11429
|
<span class="md-ellipsis">
|
|
11004
|
-
Fixed
|
|
11430
|
+
Fixed in v1.6.9
|
|
11005
11431
|
</span>
|
|
11006
11432
|
</a>
|
|
11007
11433
|
|
|
@@ -11023,45 +11449,45 @@
|
|
|
11023
11449
|
<ul class="md-nav__list">
|
|
11024
11450
|
|
|
11025
11451
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
11452
|
+
<a href="#security-in-v168" class="md-nav__link">
|
|
11027
11453
|
<span class="md-ellipsis">
|
|
11028
|
-
Security
|
|
11454
|
+
Security in v1.6.8
|
|
11029
11455
|
</span>
|
|
11030
11456
|
</a>
|
|
11031
11457
|
|
|
11032
11458
|
</li>
|
|
11033
11459
|
|
|
11034
11460
|
<li class="md-nav__item">
|
|
11035
|
-
<a href="#
|
|
11461
|
+
<a href="#added-in-v168" class="md-nav__link">
|
|
11036
11462
|
<span class="md-ellipsis">
|
|
11037
|
-
Added
|
|
11463
|
+
Added in v1.6.8
|
|
11038
11464
|
</span>
|
|
11039
11465
|
</a>
|
|
11040
11466
|
|
|
11041
11467
|
</li>
|
|
11042
11468
|
|
|
11043
11469
|
<li class="md-nav__item">
|
|
11044
|
-
<a href="#
|
|
11470
|
+
<a href="#removed-in-v168" class="md-nav__link">
|
|
11045
11471
|
<span class="md-ellipsis">
|
|
11046
|
-
Removed
|
|
11472
|
+
Removed in v1.6.8
|
|
11047
11473
|
</span>
|
|
11048
11474
|
</a>
|
|
11049
11475
|
|
|
11050
11476
|
</li>
|
|
11051
11477
|
|
|
11052
11478
|
<li class="md-nav__item">
|
|
11053
|
-
<a href="#
|
|
11479
|
+
<a href="#fixed-in-v168" class="md-nav__link">
|
|
11054
11480
|
<span class="md-ellipsis">
|
|
11055
|
-
Fixed
|
|
11481
|
+
Fixed in v1.6.8
|
|
11056
11482
|
</span>
|
|
11057
11483
|
</a>
|
|
11058
11484
|
|
|
11059
11485
|
</li>
|
|
11060
11486
|
|
|
11061
11487
|
<li class="md-nav__item">
|
|
11062
|
-
<a href="#
|
|
11488
|
+
<a href="#housekeeping-in-v168" class="md-nav__link">
|
|
11063
11489
|
<span class="md-ellipsis">
|
|
11064
|
-
Housekeeping
|
|
11490
|
+
Housekeeping in v1.6.8
|
|
11065
11491
|
</span>
|
|
11066
11492
|
</a>
|
|
11067
11493
|
|
|
@@ -11083,36 +11509,36 @@
|
|
|
11083
11509
|
<ul class="md-nav__list">
|
|
11084
11510
|
|
|
11085
11511
|
<li class="md-nav__item">
|
|
11086
|
-
<a href="#
|
|
11512
|
+
<a href="#security-in-v167" class="md-nav__link">
|
|
11087
11513
|
<span class="md-ellipsis">
|
|
11088
|
-
Security
|
|
11514
|
+
Security in v1.6.7
|
|
11089
11515
|
</span>
|
|
11090
11516
|
</a>
|
|
11091
11517
|
|
|
11092
11518
|
</li>
|
|
11093
11519
|
|
|
11094
11520
|
<li class="md-nav__item">
|
|
11095
|
-
<a href="#
|
|
11521
|
+
<a href="#added-in-v167" class="md-nav__link">
|
|
11096
11522
|
<span class="md-ellipsis">
|
|
11097
|
-
Added
|
|
11523
|
+
Added in v1.6.7
|
|
11098
11524
|
</span>
|
|
11099
11525
|
</a>
|
|
11100
11526
|
|
|
11101
11527
|
</li>
|
|
11102
11528
|
|
|
11103
11529
|
<li class="md-nav__item">
|
|
11104
|
-
<a href="#
|
|
11530
|
+
<a href="#removed-in-v167" class="md-nav__link">
|
|
11105
11531
|
<span class="md-ellipsis">
|
|
11106
|
-
Removed
|
|
11532
|
+
Removed in v1.6.7
|
|
11107
11533
|
</span>
|
|
11108
11534
|
</a>
|
|
11109
11535
|
|
|
11110
11536
|
</li>
|
|
11111
11537
|
|
|
11112
11538
|
<li class="md-nav__item">
|
|
11113
|
-
<a href="#
|
|
11539
|
+
<a href="#fixed-in-v167" class="md-nav__link">
|
|
11114
11540
|
<span class="md-ellipsis">
|
|
11115
|
-
Fixed
|
|
11541
|
+
Fixed in v1.6.7
|
|
11116
11542
|
</span>
|
|
11117
11543
|
</a>
|
|
11118
11544
|
|
|
@@ -11134,45 +11560,45 @@
|
|
|
11134
11560
|
<ul class="md-nav__list">
|
|
11135
11561
|
|
|
11136
11562
|
<li class="md-nav__item">
|
|
11137
|
-
<a href="#
|
|
11563
|
+
<a href="#security-in-v166" class="md-nav__link">
|
|
11138
11564
|
<span class="md-ellipsis">
|
|
11139
|
-
Security
|
|
11565
|
+
Security in v1.6.6
|
|
11140
11566
|
</span>
|
|
11141
11567
|
</a>
|
|
11142
11568
|
|
|
11143
11569
|
</li>
|
|
11144
11570
|
|
|
11145
11571
|
<li class="md-nav__item">
|
|
11146
|
-
<a href="#
|
|
11572
|
+
<a href="#changed-in-v166" class="md-nav__link">
|
|
11147
11573
|
<span class="md-ellipsis">
|
|
11148
|
-
Changed
|
|
11574
|
+
Changed in v1.6.6
|
|
11149
11575
|
</span>
|
|
11150
11576
|
</a>
|
|
11151
11577
|
|
|
11152
11578
|
</li>
|
|
11153
11579
|
|
|
11154
11580
|
<li class="md-nav__item">
|
|
11155
|
-
<a href="#
|
|
11581
|
+
<a href="#fixed-in-v166" class="md-nav__link">
|
|
11156
11582
|
<span class="md-ellipsis">
|
|
11157
|
-
Fixed
|
|
11583
|
+
Fixed in v1.6.6
|
|
11158
11584
|
</span>
|
|
11159
11585
|
</a>
|
|
11160
11586
|
|
|
11161
11587
|
</li>
|
|
11162
11588
|
|
|
11163
11589
|
<li class="md-nav__item">
|
|
11164
|
-
<a href="#
|
|
11590
|
+
<a href="#dependencies-in-v166" class="md-nav__link">
|
|
11165
11591
|
<span class="md-ellipsis">
|
|
11166
|
-
Dependencies
|
|
11592
|
+
Dependencies in v1.6.6
|
|
11167
11593
|
</span>
|
|
11168
11594
|
</a>
|
|
11169
11595
|
|
|
11170
11596
|
</li>
|
|
11171
11597
|
|
|
11172
11598
|
<li class="md-nav__item">
|
|
11173
|
-
<a href="#
|
|
11599
|
+
<a href="#housekeeping-in-v166" class="md-nav__link">
|
|
11174
11600
|
<span class="md-ellipsis">
|
|
11175
|
-
Housekeeping
|
|
11601
|
+
Housekeeping in v1.6.6
|
|
11176
11602
|
</span>
|
|
11177
11603
|
</a>
|
|
11178
11604
|
|
|
@@ -11194,45 +11620,45 @@
|
|
|
11194
11620
|
<ul class="md-nav__list">
|
|
11195
11621
|
|
|
11196
11622
|
<li class="md-nav__item">
|
|
11197
|
-
<a href="#
|
|
11623
|
+
<a href="#security-in-v165" class="md-nav__link">
|
|
11198
11624
|
<span class="md-ellipsis">
|
|
11199
|
-
Security
|
|
11625
|
+
Security in v1.6.5
|
|
11200
11626
|
</span>
|
|
11201
11627
|
</a>
|
|
11202
11628
|
|
|
11203
11629
|
</li>
|
|
11204
11630
|
|
|
11205
11631
|
<li class="md-nav__item">
|
|
11206
|
-
<a href="#
|
|
11632
|
+
<a href="#added-in-v165" class="md-nav__link">
|
|
11207
11633
|
<span class="md-ellipsis">
|
|
11208
|
-
Added
|
|
11634
|
+
Added in v1.6.5
|
|
11209
11635
|
</span>
|
|
11210
11636
|
</a>
|
|
11211
11637
|
|
|
11212
11638
|
</li>
|
|
11213
11639
|
|
|
11214
11640
|
<li class="md-nav__item">
|
|
11215
|
-
<a href="#
|
|
11641
|
+
<a href="#fixed-in-v165" class="md-nav__link">
|
|
11216
11642
|
<span class="md-ellipsis">
|
|
11217
|
-
Fixed
|
|
11643
|
+
Fixed in v1.6.5
|
|
11218
11644
|
</span>
|
|
11219
11645
|
</a>
|
|
11220
11646
|
|
|
11221
11647
|
</li>
|
|
11222
11648
|
|
|
11223
11649
|
<li class="md-nav__item">
|
|
11224
|
-
<a href="#
|
|
11650
|
+
<a href="#documentation-in-v165" class="md-nav__link">
|
|
11225
11651
|
<span class="md-ellipsis">
|
|
11226
|
-
Documentation
|
|
11652
|
+
Documentation in v1.6.5
|
|
11227
11653
|
</span>
|
|
11228
11654
|
</a>
|
|
11229
11655
|
|
|
11230
11656
|
</li>
|
|
11231
11657
|
|
|
11232
11658
|
<li class="md-nav__item">
|
|
11233
|
-
<a href="#
|
|
11659
|
+
<a href="#housekeeping-in-v165" class="md-nav__link">
|
|
11234
11660
|
<span class="md-ellipsis">
|
|
11235
|
-
Housekeeping
|
|
11661
|
+
Housekeeping in v1.6.5
|
|
11236
11662
|
</span>
|
|
11237
11663
|
</a>
|
|
11238
11664
|
|
|
@@ -11254,36 +11680,36 @@
|
|
|
11254
11680
|
<ul class="md-nav__list">
|
|
11255
11681
|
|
|
11256
11682
|
<li class="md-nav__item">
|
|
11257
|
-
<a href="#
|
|
11683
|
+
<a href="#added-in-v164" class="md-nav__link">
|
|
11258
11684
|
<span class="md-ellipsis">
|
|
11259
|
-
Added
|
|
11685
|
+
Added in v1.6.4
|
|
11260
11686
|
</span>
|
|
11261
11687
|
</a>
|
|
11262
11688
|
|
|
11263
11689
|
</li>
|
|
11264
11690
|
|
|
11265
11691
|
<li class="md-nav__item">
|
|
11266
|
-
<a href="#
|
|
11692
|
+
<a href="#changed-in-v164" class="md-nav__link">
|
|
11267
11693
|
<span class="md-ellipsis">
|
|
11268
|
-
Changed
|
|
11694
|
+
Changed in v1.6.4
|
|
11269
11695
|
</span>
|
|
11270
11696
|
</a>
|
|
11271
11697
|
|
|
11272
11698
|
</li>
|
|
11273
11699
|
|
|
11274
11700
|
<li class="md-nav__item">
|
|
11275
|
-
<a href="#
|
|
11701
|
+
<a href="#removed-in-v164" class="md-nav__link">
|
|
11276
11702
|
<span class="md-ellipsis">
|
|
11277
|
-
Removed
|
|
11703
|
+
Removed in v1.6.4
|
|
11278
11704
|
</span>
|
|
11279
11705
|
</a>
|
|
11280
11706
|
|
|
11281
11707
|
</li>
|
|
11282
11708
|
|
|
11283
11709
|
<li class="md-nav__item">
|
|
11284
|
-
<a href="#
|
|
11710
|
+
<a href="#housekeeping-in-v164" class="md-nav__link">
|
|
11285
11711
|
<span class="md-ellipsis">
|
|
11286
|
-
Housekeeping
|
|
11712
|
+
Housekeeping in v1.6.4
|
|
11287
11713
|
</span>
|
|
11288
11714
|
</a>
|
|
11289
11715
|
|
|
@@ -11305,36 +11731,36 @@
|
|
|
11305
11731
|
<ul class="md-nav__list">
|
|
11306
11732
|
|
|
11307
11733
|
<li class="md-nav__item">
|
|
11308
|
-
<a href="#
|
|
11734
|
+
<a href="#security-in-v163" class="md-nav__link">
|
|
11309
11735
|
<span class="md-ellipsis">
|
|
11310
|
-
Security
|
|
11736
|
+
Security in v1.6.3
|
|
11311
11737
|
</span>
|
|
11312
11738
|
</a>
|
|
11313
11739
|
|
|
11314
11740
|
</li>
|
|
11315
11741
|
|
|
11316
11742
|
<li class="md-nav__item">
|
|
11317
|
-
<a href="#
|
|
11743
|
+
<a href="#added-in-v163" class="md-nav__link">
|
|
11318
11744
|
<span class="md-ellipsis">
|
|
11319
|
-
Added
|
|
11745
|
+
Added in v1.6.3
|
|
11320
11746
|
</span>
|
|
11321
11747
|
</a>
|
|
11322
11748
|
|
|
11323
11749
|
</li>
|
|
11324
11750
|
|
|
11325
11751
|
<li class="md-nav__item">
|
|
11326
|
-
<a href="#
|
|
11752
|
+
<a href="#fixed-in-v163" class="md-nav__link">
|
|
11327
11753
|
<span class="md-ellipsis">
|
|
11328
|
-
Fixed
|
|
11754
|
+
Fixed in v1.6.3
|
|
11329
11755
|
</span>
|
|
11330
11756
|
</a>
|
|
11331
11757
|
|
|
11332
11758
|
</li>
|
|
11333
11759
|
|
|
11334
11760
|
<li class="md-nav__item">
|
|
11335
|
-
<a href="#
|
|
11761
|
+
<a href="#housekeeping-in-v163" class="md-nav__link">
|
|
11336
11762
|
<span class="md-ellipsis">
|
|
11337
|
-
Housekeeping
|
|
11763
|
+
Housekeeping in v1.6.3
|
|
11338
11764
|
</span>
|
|
11339
11765
|
</a>
|
|
11340
11766
|
|
|
@@ -11356,45 +11782,45 @@
|
|
|
11356
11782
|
<ul class="md-nav__list">
|
|
11357
11783
|
|
|
11358
11784
|
<li class="md-nav__item">
|
|
11359
|
-
<a href="#
|
|
11785
|
+
<a href="#added-in-v162" class="md-nav__link">
|
|
11360
11786
|
<span class="md-ellipsis">
|
|
11361
|
-
Added
|
|
11787
|
+
Added in v1.6.2
|
|
11362
11788
|
</span>
|
|
11363
11789
|
</a>
|
|
11364
11790
|
|
|
11365
11791
|
</li>
|
|
11366
11792
|
|
|
11367
11793
|
<li class="md-nav__item">
|
|
11368
|
-
<a href="#
|
|
11794
|
+
<a href="#changed-in-v162" class="md-nav__link">
|
|
11369
11795
|
<span class="md-ellipsis">
|
|
11370
|
-
Changed
|
|
11796
|
+
Changed in v1.6.2
|
|
11371
11797
|
</span>
|
|
11372
11798
|
</a>
|
|
11373
11799
|
|
|
11374
11800
|
</li>
|
|
11375
11801
|
|
|
11376
11802
|
<li class="md-nav__item">
|
|
11377
|
-
<a href="#
|
|
11803
|
+
<a href="#fixed-in-v162" class="md-nav__link">
|
|
11378
11804
|
<span class="md-ellipsis">
|
|
11379
|
-
Fixed
|
|
11805
|
+
Fixed in v1.6.2
|
|
11380
11806
|
</span>
|
|
11381
11807
|
</a>
|
|
11382
11808
|
|
|
11383
11809
|
</li>
|
|
11384
11810
|
|
|
11385
11811
|
<li class="md-nav__item">
|
|
11386
|
-
<a href="#
|
|
11812
|
+
<a href="#documentation-in-v162" class="md-nav__link">
|
|
11387
11813
|
<span class="md-ellipsis">
|
|
11388
|
-
Documentation
|
|
11814
|
+
Documentation in v1.6.2
|
|
11389
11815
|
</span>
|
|
11390
11816
|
</a>
|
|
11391
11817
|
|
|
11392
11818
|
</li>
|
|
11393
11819
|
|
|
11394
11820
|
<li class="md-nav__item">
|
|
11395
|
-
<a href="#
|
|
11821
|
+
<a href="#housekeeping-in-v162" class="md-nav__link">
|
|
11396
11822
|
<span class="md-ellipsis">
|
|
11397
|
-
Housekeeping
|
|
11823
|
+
Housekeeping in v1.6.2
|
|
11398
11824
|
</span>
|
|
11399
11825
|
</a>
|
|
11400
11826
|
|
|
@@ -11416,36 +11842,36 @@
|
|
|
11416
11842
|
<ul class="md-nav__list">
|
|
11417
11843
|
|
|
11418
11844
|
<li class="md-nav__item">
|
|
11419
|
-
<a href="#
|
|
11845
|
+
<a href="#changed-in-v161" class="md-nav__link">
|
|
11420
11846
|
<span class="md-ellipsis">
|
|
11421
|
-
Changed
|
|
11847
|
+
Changed in v1.6.1
|
|
11422
11848
|
</span>
|
|
11423
11849
|
</a>
|
|
11424
11850
|
|
|
11425
11851
|
</li>
|
|
11426
11852
|
|
|
11427
11853
|
<li class="md-nav__item">
|
|
11428
|
-
<a href="#
|
|
11854
|
+
<a href="#fixed-in-v161" class="md-nav__link">
|
|
11429
11855
|
<span class="md-ellipsis">
|
|
11430
|
-
Fixed
|
|
11856
|
+
Fixed in v1.6.1
|
|
11431
11857
|
</span>
|
|
11432
11858
|
</a>
|
|
11433
11859
|
|
|
11434
11860
|
</li>
|
|
11435
11861
|
|
|
11436
11862
|
<li class="md-nav__item">
|
|
11437
|
-
<a href="#
|
|
11863
|
+
<a href="#documentation-in-v161" class="md-nav__link">
|
|
11438
11864
|
<span class="md-ellipsis">
|
|
11439
|
-
Documentation
|
|
11865
|
+
Documentation in v1.6.1
|
|
11440
11866
|
</span>
|
|
11441
11867
|
</a>
|
|
11442
11868
|
|
|
11443
11869
|
</li>
|
|
11444
11870
|
|
|
11445
11871
|
<li class="md-nav__item">
|
|
11446
|
-
<a href="#
|
|
11872
|
+
<a href="#housekeeping-in-v161" class="md-nav__link">
|
|
11447
11873
|
<span class="md-ellipsis">
|
|
11448
|
-
Housekeeping
|
|
11874
|
+
Housekeeping in v1.6.1
|
|
11449
11875
|
</span>
|
|
11450
11876
|
</a>
|
|
11451
11877
|
|
|
@@ -11467,36 +11893,36 @@
|
|
|
11467
11893
|
<ul class="md-nav__list">
|
|
11468
11894
|
|
|
11469
11895
|
<li class="md-nav__item">
|
|
11470
|
-
<a href="#
|
|
11896
|
+
<a href="#added-in-v160" class="md-nav__link">
|
|
11471
11897
|
<span class="md-ellipsis">
|
|
11472
|
-
Added
|
|
11898
|
+
Added in v1.6.0
|
|
11473
11899
|
</span>
|
|
11474
11900
|
</a>
|
|
11475
11901
|
|
|
11476
11902
|
</li>
|
|
11477
11903
|
|
|
11478
11904
|
<li class="md-nav__item">
|
|
11479
|
-
<a href="#
|
|
11905
|
+
<a href="#fixed-in-v160" class="md-nav__link">
|
|
11480
11906
|
<span class="md-ellipsis">
|
|
11481
|
-
Fixed
|
|
11907
|
+
Fixed in v1.6.0
|
|
11482
11908
|
</span>
|
|
11483
11909
|
</a>
|
|
11484
11910
|
|
|
11485
11911
|
</li>
|
|
11486
11912
|
|
|
11487
11913
|
<li class="md-nav__item">
|
|
11488
|
-
<a href="#
|
|
11914
|
+
<a href="#dependencies-in-v160" class="md-nav__link">
|
|
11489
11915
|
<span class="md-ellipsis">
|
|
11490
|
-
Dependencies
|
|
11916
|
+
Dependencies in v1.6.0
|
|
11491
11917
|
</span>
|
|
11492
11918
|
</a>
|
|
11493
11919
|
|
|
11494
11920
|
</li>
|
|
11495
11921
|
|
|
11496
11922
|
<li class="md-nav__item">
|
|
11497
|
-
<a href="#
|
|
11923
|
+
<a href="#documentation-in-v160" class="md-nav__link">
|
|
11498
11924
|
<span class="md-ellipsis">
|
|
11499
|
-
Documentation
|
|
11925
|
+
Documentation in v1.6.0
|
|
11500
11926
|
</span>
|
|
11501
11927
|
</a>
|
|
11502
11928
|
|
|
@@ -11518,54 +11944,54 @@
|
|
|
11518
11944
|
<ul class="md-nav__list">
|
|
11519
11945
|
|
|
11520
11946
|
<li class="md-nav__item">
|
|
11521
|
-
<a href="#
|
|
11947
|
+
<a href="#added-in-v160-rc1" class="md-nav__link">
|
|
11522
11948
|
<span class="md-ellipsis">
|
|
11523
|
-
Added
|
|
11949
|
+
Added in v1.6.0-rc.1
|
|
11524
11950
|
</span>
|
|
11525
11951
|
</a>
|
|
11526
11952
|
|
|
11527
11953
|
</li>
|
|
11528
11954
|
|
|
11529
11955
|
<li class="md-nav__item">
|
|
11530
|
-
<a href="#
|
|
11956
|
+
<a href="#changed-in-v160-rc1" class="md-nav__link">
|
|
11531
11957
|
<span class="md-ellipsis">
|
|
11532
|
-
Changed
|
|
11958
|
+
Changed in v1.6.0-rc.1
|
|
11533
11959
|
</span>
|
|
11534
11960
|
</a>
|
|
11535
11961
|
|
|
11536
11962
|
</li>
|
|
11537
11963
|
|
|
11538
11964
|
<li class="md-nav__item">
|
|
11539
|
-
<a href="#
|
|
11965
|
+
<a href="#removed-in-v160-rc1" class="md-nav__link">
|
|
11540
11966
|
<span class="md-ellipsis">
|
|
11541
|
-
Removed
|
|
11967
|
+
Removed in v1.6.0-rc.1
|
|
11542
11968
|
</span>
|
|
11543
11969
|
</a>
|
|
11544
11970
|
|
|
11545
11971
|
</li>
|
|
11546
11972
|
|
|
11547
11973
|
<li class="md-nav__item">
|
|
11548
|
-
<a href="#
|
|
11974
|
+
<a href="#fixed-in-v160-rc1" class="md-nav__link">
|
|
11549
11975
|
<span class="md-ellipsis">
|
|
11550
|
-
Fixed
|
|
11976
|
+
Fixed in v1.6.0-rc.1
|
|
11551
11977
|
</span>
|
|
11552
11978
|
</a>
|
|
11553
11979
|
|
|
11554
11980
|
</li>
|
|
11555
11981
|
|
|
11556
11982
|
<li class="md-nav__item">
|
|
11557
|
-
<a href="#
|
|
11983
|
+
<a href="#dependencies-in-v160-rc1" class="md-nav__link">
|
|
11558
11984
|
<span class="md-ellipsis">
|
|
11559
|
-
Dependencies
|
|
11985
|
+
Dependencies in v1.6.0-rc.1
|
|
11560
11986
|
</span>
|
|
11561
11987
|
</a>
|
|
11562
11988
|
|
|
11563
11989
|
</li>
|
|
11564
11990
|
|
|
11565
11991
|
<li class="md-nav__item">
|
|
11566
|
-
<a href="#
|
|
11992
|
+
<a href="#documentation-in-v160-rc1" class="md-nav__link">
|
|
11567
11993
|
<span class="md-ellipsis">
|
|
11568
|
-
Documentation
|
|
11994
|
+
Documentation in v1.6.0-rc.1
|
|
11569
11995
|
</span>
|
|
11570
11996
|
</a>
|
|
11571
11997
|
|
|
@@ -11594,8 +12020,6 @@
|
|
|
11594
12020
|
|
|
11595
12021
|
|
|
11596
12022
|
|
|
11597
|
-
<!-- markdownlint-disable MD024 -->
|
|
11598
|
-
|
|
11599
12023
|
<h1 id="nautobot-v16">Nautobot v1.6<a class="headerlink" href="#nautobot-v16" title="Permanent link">¶</a></h1>
|
|
11600
12024
|
<p>This document describes all new features and changes in Nautobot 1.6.</p>
|
|
11601
12025
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -11636,90 +12060,91 @@
|
|
|
11636
12060
|
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11637
12061
|
<h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">¶</a></h4>
|
|
11638
12062
|
<p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
|
|
12063
|
+
<!-- pyml disable-num-lines 2 blanks-around-headers -->
|
|
11639
12064
|
<!-- towncrier release notes start -->
|
|
11640
12065
|
<h2 id="v1629-2024-12-09">v1.6.29 (2024-12-09)<a class="headerlink" href="#v1629-2024-12-09" title="Permanent link">¶</a></h2>
|
|
11641
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12066
|
+
<h3 id="security-in-v1629">Security in v1.6.29<a class="headerlink" href="#security-in-v1629" title="Permanent link">¶</a></h3>
|
|
11642
12067
|
<ul>
|
|
11643
12068
|
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.2</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11644
12069
|
<li><a href="https://github.com/nautobot/nautobot/issues/6625">#6625</a> - Patched <code>set_values()</code> method of Query class from django.db.models.sql.query to address <code>CVE-2024-42005</code>.</li>
|
|
11645
12070
|
</ul>
|
|
11646
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12071
|
+
<h3 id="fixed-in-v1629">Fixed in v1.6.29<a class="headerlink" href="#fixed-in-v1629" title="Permanent link">¶</a></h3>
|
|
11647
12072
|
<ul>
|
|
11648
12073
|
<li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
|
|
11649
12074
|
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed a bug in the Dockerfile that prevented <code>docker build</code> from working on some platforms.</li>
|
|
11650
12075
|
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed Docker builds failing in Gitlab CI.</li>
|
|
11651
12076
|
</ul>
|
|
11652
12077
|
<h2 id="v1628-2024-09-24">v1.6.28 (2024-09-24)<a class="headerlink" href="#v1628-2024-09-24" title="Permanent link">¶</a></h2>
|
|
11653
|
-
<h3 id="
|
|
12078
|
+
<h3 id="fixed-in-v1628">Fixed in v1.6.28<a class="headerlink" href="#fixed-in-v1628" title="Permanent link">¶</a></h3>
|
|
11654
12079
|
<ul>
|
|
11655
12080
|
<li><a href="https://github.com/nautobot/nautobot/issues/6152">#6152</a> - Fixed table column ordering.</li>
|
|
11656
12081
|
<li><a href="https://github.com/nautobot/nautobot/issues/6237">#6237</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
|
|
11657
12082
|
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Fixed invalid installation of <code>xmlsec</code> library in the Nautobot Docker images.</li>
|
|
11658
12083
|
</ul>
|
|
11659
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12084
|
+
<h3 id="housekeeping-in-v1628">Housekeeping in v1.6.28<a class="headerlink" href="#housekeeping-in-v1628" title="Permanent link">¶</a></h3>
|
|
11660
12085
|
<ul>
|
|
11661
12086
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed "version" from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
11662
12087
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
11663
12088
|
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Brought <code>.gitignore</code> up to date with latest to aid in branch switching.</li>
|
|
11664
12089
|
</ul>
|
|
11665
12090
|
<h2 id="v1627-2024-09-03">v1.6.27 (2024-09-03)<a class="headerlink" href="#v1627-2024-09-03" title="Permanent link">¶</a></h2>
|
|
11666
|
-
<h3 id="
|
|
12091
|
+
<h3 id="security-in-v1627">Security in v1.6.27<a class="headerlink" href="#security-in-v1627" title="Permanent link">¶</a></h3>
|
|
11667
12092
|
<ul>
|
|
11668
12093
|
<li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11669
12094
|
</ul>
|
|
11670
|
-
<h3 id="
|
|
12095
|
+
<h3 id="fixed-in-v1627">Fixed in v1.6.27<a class="headerlink" href="#fixed-in-v1627" title="Permanent link">¶</a></h3>
|
|
11671
12096
|
<ul>
|
|
11672
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6081">#6081</a> - Fixed AttributeError during pre_migrate when permission constraints are applied to custom fields.</li>
|
|
12097
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6081">#6081</a> - Fixed AttributeError during <code>pre_migrate</code> when permission constraints are applied to custom fields.</li>
|
|
11673
12098
|
</ul>
|
|
11674
12099
|
<h2 id="v1626-2024-07-22">v1.6.26 (2024-07-22)<a class="headerlink" href="#v1626-2024-07-22" title="Permanent link">¶</a></h2>
|
|
11675
|
-
<h3 id="
|
|
12100
|
+
<h3 id="fixed-in-v1626">Fixed in v1.6.26<a class="headerlink" href="#fixed-in-v1626" title="Permanent link">¶</a></h3>
|
|
11676
12101
|
<ul>
|
|
11677
12102
|
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
11678
12103
|
</ul>
|
|
11679
12104
|
<h2 id="v1625-2024-07-09">v1.6.25 (2024-07-09)<a class="headerlink" href="#v1625-2024-07-09" title="Permanent link">¶</a></h2>
|
|
11680
|
-
<h3 id="
|
|
12105
|
+
<h3 id="security-in-v1625">Security in v1.6.25<a class="headerlink" href="#security-in-v1625" title="Permanent link">¶</a></h3>
|
|
11681
12106
|
<ul>
|
|
11682
12107
|
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11683
12108
|
</ul>
|
|
11684
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12109
|
+
<h3 id="dependencies-in-v1625">Dependencies in v1.6.25<a class="headerlink" href="#dependencies-in-v1625" title="Permanent link">¶</a></h3>
|
|
11685
12110
|
<ul>
|
|
11686
12111
|
<li><a href="https://github.com/nautobot/nautobot/pull/5897">#5897</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
11687
12112
|
</ul>
|
|
11688
12113
|
<h2 id="v1624-2024-06-24">v1.6.24 (2024-06-24)<a class="headerlink" href="#v1624-2024-06-24" title="Permanent link">¶</a></h2>
|
|
11689
|
-
<h3 id="
|
|
12114
|
+
<h3 id="security-in-v1624">Security in v1.6.24<a class="headerlink" href="#security-in-v1624" title="Permanent link">¶</a></h3>
|
|
11690
12115
|
<ul>
|
|
11691
12116
|
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11692
12117
|
</ul>
|
|
11693
|
-
<h3 id="
|
|
12118
|
+
<h3 id="housekeeping-in-v1624">Housekeeping in v1.6.24<a class="headerlink" href="#housekeeping-in-v1624" title="Permanent link">¶</a></h3>
|
|
11694
12119
|
<ul>
|
|
11695
12120
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependency <code>requests</code> to <code>~2.32.2</code>.</li>
|
|
11696
12121
|
</ul>
|
|
11697
12122
|
<h2 id="v1623-2024-05-28">v1.6.23 (2024-05-28)<a class="headerlink" href="#v1623-2024-05-28" title="Permanent link">¶</a></h2>
|
|
11698
|
-
<h3 id="
|
|
12123
|
+
<h3 id="security-in-v1623">Security in v1.6.23<a class="headerlink" href="#security-in-v1623" title="Permanent link">¶</a></h3>
|
|
11699
12124
|
<ul>
|
|
11700
12125
|
<li><a href="https://github.com/nautobot/nautobot/issues/5762">#5762</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
11701
12126
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11702
12127
|
</ul>
|
|
11703
|
-
<h3 id="
|
|
12128
|
+
<h3 id="housekeeping-in-v1623">Housekeeping in v1.6.23<a class="headerlink" href="#housekeeping-in-v1623" title="Permanent link">¶</a></h3>
|
|
11704
12129
|
<ul>
|
|
11705
12130
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
11706
12131
|
</ul>
|
|
11707
12132
|
<h2 id="v1622-2024-05-13">v1.6.22 (2024-05-13)<a class="headerlink" href="#v1622-2024-05-13" title="Permanent link">¶</a></h2>
|
|
11708
|
-
<h3 id="
|
|
12133
|
+
<h3 id="security-in-v1622">Security in v1.6.22<a class="headerlink" href="#security-in-v1622" title="Permanent link">¶</a></h3>
|
|
11709
12134
|
<ul>
|
|
11710
12135
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
11711
12136
|
</ul>
|
|
11712
|
-
<h3 id="
|
|
12137
|
+
<h3 id="added-in-v1622">Added in v1.6.22<a class="headerlink" href="#added-in-v1622" title="Permanent link">¶</a></h3>
|
|
11713
12138
|
<ul>
|
|
11714
12139
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
11715
12140
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
11716
12141
|
</ul>
|
|
11717
|
-
<h3 id="
|
|
12142
|
+
<h3 id="fixed-in-v1622">Fixed in v1.6.22<a class="headerlink" href="#fixed-in-v1622" title="Permanent link">¶</a></h3>
|
|
11718
12143
|
<ul>
|
|
11719
12144
|
<li><a href="https://github.com/nautobot/nautobot/issues/2974">#2974</a> - Fixed an error when deleting and then recreating a GitRepository that provides Jobs.</li>
|
|
11720
12145
|
</ul>
|
|
11721
12146
|
<h2 id="v1621-2024-05-07">v1.6.21 (2024-05-07)<a class="headerlink" href="#v1621-2024-05-07" title="Permanent link">¶</a></h2>
|
|
11722
|
-
<h3 id="
|
|
12147
|
+
<h3 id="security-in-v1621">Security in v1.6.21<a class="headerlink" href="#security-in-v1621" title="Permanent link">¶</a></h3>
|
|
11723
12148
|
<ul>
|
|
11724
12149
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
11725
12150
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to <code>3.7</code> due to <code>CVE-2024-3651</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
@@ -11727,40 +12152,40 @@
|
|
|
11727
12152
|
<li><a href="https://github.com/nautobot/nautobot/issues/5675">#5675</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
11728
12153
|
</ul>
|
|
11729
12154
|
<h2 id="v1620-2024-04-30">v1.6.20 (2024-04-30)<a class="headerlink" href="#v1620-2024-04-30" title="Permanent link">¶</a></h2>
|
|
11730
|
-
<h3 id="
|
|
12155
|
+
<h3 id="security-in-v1620">Security in v1.6.20<a class="headerlink" href="#security-in-v1620" title="Permanent link">¶</a></h3>
|
|
11731
12156
|
<ul>
|
|
11732
12157
|
<li><a href="https://github.com/nautobot/nautobot/issues/5647">#5647</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
11733
12158
|
</ul>
|
|
11734
|
-
<h3 id="
|
|
12159
|
+
<h3 id="fixed-in-v1620">Fixed in v1.6.20<a class="headerlink" href="#fixed-in-v1620" title="Permanent link">¶</a></h3>
|
|
11735
12160
|
<ul>
|
|
11736
12161
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Increased performance of <code>brief=true</code> in API endpoints by eliminating unnecessary database joins.</li>
|
|
11737
12162
|
</ul>
|
|
11738
12163
|
<h2 id="v1619-2024-04-23">v1.6.19 (2024-04-23)<a class="headerlink" href="#v1619-2024-04-23" title="Permanent link">¶</a></h2>
|
|
11739
|
-
<h3 id="
|
|
12164
|
+
<h3 id="security-in-v1619">Security in v1.6.19<a class="headerlink" href="#security-in-v1619" title="Permanent link">¶</a></h3>
|
|
11740
12165
|
<ul>
|
|
11741
12166
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11742
12167
|
</ul>
|
|
11743
|
-
<h3 id="
|
|
12168
|
+
<h3 id="fixed-in-v1619">Fixed in v1.6.19<a class="headerlink" href="#fixed-in-v1619" title="Permanent link">¶</a></h3>
|
|
11744
12169
|
<ul>
|
|
11745
12170
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Fixed static media failure on <code>/graphql/</code> and <code>/admin/</code> pages.</li>
|
|
11746
12171
|
</ul>
|
|
11747
12172
|
<h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">¶</a></h2>
|
|
11748
|
-
<h3 id="
|
|
12173
|
+
<h3 id="security-in-v1618">Security in v1.6.18<a class="headerlink" href="#security-in-v1618" title="Permanent link">¶</a></h3>
|
|
11749
12174
|
<ul>
|
|
11750
12175
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
11751
12176
|
</ul>
|
|
11752
|
-
<h3 id="
|
|
12177
|
+
<h3 id="dependencies-in-v1618">Dependencies in v1.6.18<a class="headerlink" href="#dependencies-in-v1618" title="Permanent link">¶</a></h3>
|
|
11753
12178
|
<ul>
|
|
11754
12179
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
11755
12180
|
</ul>
|
|
11756
12181
|
<h2 id="v1617-2024-04-01">v1.6.17 (2024-04-01)<a class="headerlink" href="#v1617-2024-04-01" title="Permanent link">¶</a></h2>
|
|
11757
|
-
<h3 id="
|
|
12182
|
+
<h3 id="dependencies-in-v1617">Dependencies in v1.6.17<a class="headerlink" href="#dependencies-in-v1617" title="Permanent link">¶</a></h3>
|
|
11758
12183
|
<ul>
|
|
11759
12184
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & its dependency on <code>ecdsa</code>.</li>
|
|
11760
12185
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>>=4.7.0,<4.18.0</code> to <code>^4.7.0</code>.</li>
|
|
11761
12186
|
</ul>
|
|
11762
12187
|
<h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">¶</a></h2>
|
|
11763
|
-
<h3 id="
|
|
12188
|
+
<h3 id="security-in-v1616">Security in v1.6.16<a class="headerlink" href="#security-in-v1616" title="Permanent link">¶</a></h3>
|
|
11764
12189
|
<ul>
|
|
11765
12190
|
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
11766
12191
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -11772,203 +12197,202 @@
|
|
|
11772
12197
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/<uuid>/dynamic-groups/</code>, <code>/dcim/devices/<uuid>/dynamic-groups/</code>, <code>/ipam/prefixes/<uuid>/dynamic-groups/</code>, <code>/ipam/ip-addresses/<uuid>/dynamic-groups/</code>, <code>/virtualization/clusters/<uuid>/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/<uuid>/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
11773
12198
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/<str:provider_slug>/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
11774
12199
|
</ul>
|
|
11775
|
-
<h3 id="
|
|
12200
|
+
<h3 id="added-in-v1616">Added in v1.6.16<a class="headerlink" href="#added-in-v1616" title="Permanent link">¶</a></h3>
|
|
11776
12201
|
<ul>
|
|
11777
12202
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
11778
12203
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
11779
12204
|
</ul>
|
|
11780
|
-
<h3 id="
|
|
12205
|
+
<h3 id="changed-in-v1616">Changed in v1.6.16<a class="headerlink" href="#changed-in-v1616" title="Permanent link">¶</a></h3>
|
|
11781
12206
|
<ul>
|
|
11782
12207
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
|
|
11783
12208
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
11784
12209
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
|
|
11785
12210
|
</ul>
|
|
11786
|
-
<h3 id="
|
|
12211
|
+
<h3 id="fixed-in-v1616">Fixed in v1.6.16<a class="headerlink" href="#fixed-in-v1616" title="Permanent link">¶</a></h3>
|
|
11787
12212
|
<ul>
|
|
11788
12213
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
11789
12214
|
</ul>
|
|
11790
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12215
|
+
<h3 id="documentation-in-v1616">Documentation in v1.6.16<a class="headerlink" href="#documentation-in-v1616" title="Permanent link">¶</a></h3>
|
|
11791
12216
|
<ul>
|
|
11792
12217
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
11793
12218
|
</ul>
|
|
11794
|
-
<h3 id="
|
|
12219
|
+
<h3 id="housekeeping-in-v1616">Housekeeping in v1.6.16<a class="headerlink" href="#housekeeping-in-v1616" title="Permanent link">¶</a></h3>
|
|
11795
12220
|
<ul>
|
|
11796
12221
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
11797
12222
|
</ul>
|
|
11798
12223
|
<h2 id="v1615-2024-03-18">v1.6.15 (2024-03-18)<a class="headerlink" href="#v1615-2024-03-18" title="Permanent link">¶</a></h2>
|
|
11799
|
-
<h3 id="
|
|
12224
|
+
<h3 id="added-in-v1615">Added in v1.6.15<a class="headerlink" href="#added-in-v1615" title="Permanent link">¶</a></h3>
|
|
11800
12225
|
<ul>
|
|
11801
12226
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
11802
12227
|
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
11803
12228
|
</ul>
|
|
11804
|
-
<h3 id="
|
|
12229
|
+
<h3 id="fixed-in-v1615">Fixed in v1.6.15<a class="headerlink" href="#fixed-in-v1615" title="Permanent link">¶</a></h3>
|
|
11805
12230
|
<ul>
|
|
11806
12231
|
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
11807
12232
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
11808
12233
|
</ul>
|
|
11809
|
-
<h3 id="
|
|
12234
|
+
<h3 id="housekeeping-in-v1615">Housekeeping in v1.6.15<a class="headerlink" href="#housekeeping-in-v1615" title="Permanent link">¶</a></h3>
|
|
11810
12235
|
<ul>
|
|
11811
12236
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
11812
12237
|
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
11813
12238
|
</ul>
|
|
11814
12239
|
<h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">¶</a></h2>
|
|
11815
|
-
<h3 id="
|
|
12240
|
+
<h3 id="fixed-in-v1614">Fixed in v1.6.14<a class="headerlink" href="#fixed-in-v1614" title="Permanent link">¶</a></h3>
|
|
11816
12241
|
<ul>
|
|
11817
12242
|
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
11818
12243
|
</ul>
|
|
11819
12244
|
<h2 id="v1613-2024-03-04">v1.6.13 (2024-03-04)<a class="headerlink" href="#v1613-2024-03-04" title="Permanent link">¶</a></h2>
|
|
11820
|
-
<h3 id="
|
|
11821
|
-
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
12245
|
+
<h3 id="added-in-v1613">Added in v1.6.13<a class="headerlink" href="#added-in-v1613" title="Permanent link">¶</a></h3>
|
|
11822
12246
|
<ul>
|
|
11823
12247
|
<li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
|
|
11824
12248
|
</ul>
|
|
11825
|
-
<h3 id="
|
|
12249
|
+
<h3 id="fixed-in-v1613">Fixed in v1.6.13<a class="headerlink" href="#fixed-in-v1613" title="Permanent link">¶</a></h3>
|
|
11826
12250
|
<ul>
|
|
11827
12251
|
<li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
|
|
11828
12252
|
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
11829
12253
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Fixed intermittent 405 errors when using the Docker image with SAML authentication.</li>
|
|
11830
12254
|
</ul>
|
|
11831
|
-
<h3 id="
|
|
12255
|
+
<h3 id="documentation-in-v1613">Documentation in v1.6.13<a class="headerlink" href="#documentation-in-v1613" title="Permanent link">¶</a></h3>
|
|
11832
12256
|
<ul>
|
|
11833
12257
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the Nautobot installation documentation about the need to do <code>pip3 install --no-binary=pyuwsgi</code> in order to have SSL support in <code>pyuwsgi</code>.</li>
|
|
11834
12258
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
|
|
11835
12259
|
</ul>
|
|
11836
12260
|
<h2 id="v1612-2024-02-20">v1.6.12 (2024-02-20)<a class="headerlink" href="#v1612-2024-02-20" title="Permanent link">¶</a></h2>
|
|
11837
|
-
<h3 id="
|
|
12261
|
+
<h3 id="security-in-v1612">Security in v1.6.12<a class="headerlink" href="#security-in-v1612" title="Permanent link">¶</a></h3>
|
|
11838
12262
|
<ul>
|
|
11839
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
12263
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
11840
12264
|
</ul>
|
|
11841
|
-
<h3 id="
|
|
12265
|
+
<h3 id="added-in-v1612">Added in v1.6.12<a class="headerlink" href="#added-in-v1612" title="Permanent link">¶</a></h3>
|
|
11842
12266
|
<ul>
|
|
11843
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
12267
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
11844
12268
|
</ul>
|
|
11845
|
-
<h3 id="
|
|
12269
|
+
<h3 id="changed-in-v1612">Changed in v1.6.12<a class="headerlink" href="#changed-in-v1612" title="Permanent link">¶</a></h3>
|
|
11846
12270
|
<ul>
|
|
11847
12271
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
11848
12272
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
11849
12273
|
</ul>
|
|
11850
|
-
<h3 id="
|
|
12274
|
+
<h3 id="fixed-in-v1612">Fixed in v1.6.12<a class="headerlink" href="#fixed-in-v1612" title="Permanent link">¶</a></h3>
|
|
11851
12275
|
<ul>
|
|
11852
12276
|
<li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
|
|
11853
12277
|
<li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
|
|
11854
12278
|
</ul>
|
|
11855
12279
|
<h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">¶</a></h2>
|
|
11856
|
-
<h3 id="
|
|
12280
|
+
<h3 id="security-in-v1611">Security in v1.6.11<a class="headerlink" href="#security-in-v1611" title="Permanent link">¶</a></h3>
|
|
11857
12281
|
<ul>
|
|
11858
12282
|
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
11859
12283
|
</ul>
|
|
11860
|
-
<h3 id="
|
|
12284
|
+
<h3 id="added-in-v1611">Added in v1.6.11<a class="headerlink" href="#added-in-v1611" title="Permanent link">¶</a></h3>
|
|
11861
12285
|
<ul>
|
|
11862
12286
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
11863
12287
|
</ul>
|
|
11864
|
-
<h3 id="
|
|
12288
|
+
<h3 id="fixed-in-v1611">Fixed in v1.6.11<a class="headerlink" href="#fixed-in-v1611" title="Permanent link">¶</a></h3>
|
|
11865
12289
|
<ul>
|
|
11866
12290
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
11867
12291
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
11868
12292
|
</ul>
|
|
11869
12293
|
<h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">¶</a></h2>
|
|
11870
|
-
<h3 id="
|
|
12294
|
+
<h3 id="security-in-v1610">Security in v1.6.10<a class="headerlink" href="#security-in-v1610" title="Permanent link">¶</a></h3>
|
|
11871
12295
|
<ul>
|
|
11872
12296
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
11873
12297
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
11874
12298
|
</ul>
|
|
11875
|
-
<h3 id="
|
|
12299
|
+
<h3 id="added-in-v1610">Added in v1.6.10<a class="headerlink" href="#added-in-v1610" title="Permanent link">¶</a></h3>
|
|
11876
12300
|
<ul>
|
|
11877
12301
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
|
|
11878
12302
|
</ul>
|
|
11879
|
-
<h3 id="
|
|
12303
|
+
<h3 id="changed-in-v1610">Changed in v1.6.10<a class="headerlink" href="#changed-in-v1610" title="Permanent link">¶</a></h3>
|
|
11880
12304
|
<ul>
|
|
11881
12305
|
<li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
|
|
11882
12306
|
</ul>
|
|
11883
|
-
<h3 id="
|
|
12307
|
+
<h3 id="dependencies-in-v1610">Dependencies in v1.6.10<a class="headerlink" href="#dependencies-in-v1610" title="Permanent link">¶</a></h3>
|
|
11884
12308
|
<ul>
|
|
11885
12309
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
11886
12310
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
11887
12311
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
11888
12312
|
</ul>
|
|
11889
12313
|
<h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">¶</a></h2>
|
|
11890
|
-
<h3 id="
|
|
12314
|
+
<h3 id="fixed-in-v169">Fixed in v1.6.9<a class="headerlink" href="#fixed-in-v169" title="Permanent link">¶</a></h3>
|
|
11891
12315
|
<ul>
|
|
11892
12316
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11893
12317
|
</ul>
|
|
11894
12318
|
<h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">¶</a></h2>
|
|
11895
|
-
<h3 id="
|
|
12319
|
+
<h3 id="security-in-v168">Security in v1.6.8<a class="headerlink" href="#security-in-v168" title="Permanent link">¶</a></h3>
|
|
11896
12320
|
<ul>
|
|
11897
12321
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11898
12322
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
11899
12323
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
|
|
11900
12324
|
<li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. 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>
|
|
11901
12325
|
</ul>
|
|
11902
|
-
<h3 id="
|
|
12326
|
+
<h3 id="added-in-v168">Added in v1.6.8<a class="headerlink" href="#added-in-v168" title="Permanent link">¶</a></h3>
|
|
11903
12327
|
<ul>
|
|
11904
12328
|
<li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
|
|
11905
12329
|
</ul>
|
|
11906
|
-
<h3 id="
|
|
12330
|
+
<h3 id="removed-in-v168">Removed in v1.6.8<a class="headerlink" href="#removed-in-v168" title="Permanent link">¶</a></h3>
|
|
11907
12331
|
<ul>
|
|
11908
12332
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
11909
12333
|
</ul>
|
|
11910
|
-
<h3 id="
|
|
12334
|
+
<h3 id="fixed-in-v168">Fixed in v1.6.8<a class="headerlink" href="#fixed-in-v168" title="Permanent link">¶</a></h3>
|
|
11911
12335
|
<ul>
|
|
11912
12336
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11913
12337
|
</ul>
|
|
11914
|
-
<h3 id="
|
|
12338
|
+
<h3 id="housekeeping-in-v168">Housekeeping in v1.6.8<a class="headerlink" href="#housekeeping-in-v168" title="Permanent link">¶</a></h3>
|
|
11915
12339
|
<ul>
|
|
11916
12340
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
11917
12341
|
</ul>
|
|
11918
12342
|
<h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">¶</a></h2>
|
|
11919
|
-
<h3 id="
|
|
12343
|
+
<h3 id="security-in-v167">Security in v1.6.7<a class="headerlink" href="#security-in-v167" title="Permanent link">¶</a></h3>
|
|
11920
12344
|
<ul>
|
|
11921
12345
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
11922
12346
|
</ul>
|
|
11923
|
-
<h3 id="
|
|
12347
|
+
<h3 id="added-in-v167">Added in v1.6.7<a class="headerlink" href="#added-in-v167" title="Permanent link">¶</a></h3>
|
|
11924
12348
|
<ul>
|
|
11925
12349
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
11926
12350
|
</ul>
|
|
11927
|
-
<h3 id="
|
|
12351
|
+
<h3 id="removed-in-v167">Removed in v1.6.7<a class="headerlink" href="#removed-in-v167" title="Permanent link">¶</a></h3>
|
|
11928
12352
|
<ul>
|
|
11929
12353
|
<li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
|
|
11930
12354
|
<li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
11931
12355
|
</ul>
|
|
11932
|
-
<h3 id="
|
|
12356
|
+
<h3 id="fixed-in-v167">Fixed in v1.6.7<a class="headerlink" href="#fixed-in-v167" title="Permanent link">¶</a></h3>
|
|
11933
12357
|
<ul>
|
|
11934
12358
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
11935
12359
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
11936
12360
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
11937
12361
|
</ul>
|
|
11938
12362
|
<h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">¶</a></h2>
|
|
11939
|
-
<h3 id="
|
|
12363
|
+
<h3 id="security-in-v166">Security in v1.6.6<a class="headerlink" href="#security-in-v166" title="Permanent link">¶</a></h3>
|
|
11940
12364
|
<ul>
|
|
11941
12365
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
11942
12366
|
</ul>
|
|
11943
|
-
<h3 id="
|
|
12367
|
+
<h3 id="changed-in-v166">Changed in v1.6.6<a class="headerlink" href="#changed-in-v166" title="Permanent link">¶</a></h3>
|
|
11944
12368
|
<ul>
|
|
11945
12369
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
11946
12370
|
</ul>
|
|
11947
|
-
<h3 id="
|
|
12371
|
+
<h3 id="fixed-in-v166">Fixed in v1.6.6<a class="headerlink" href="#fixed-in-v166" title="Permanent link">¶</a></h3>
|
|
11948
12372
|
<ul>
|
|
11949
12373
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
|
|
11950
12374
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
|
|
11951
12375
|
</ul>
|
|
11952
|
-
<h3 id="
|
|
12376
|
+
<h3 id="dependencies-in-v166">Dependencies in v1.6.6<a class="headerlink" href="#dependencies-in-v166" title="Permanent link">¶</a></h3>
|
|
11953
12377
|
<ul>
|
|
11954
12378
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
11955
12379
|
</ul>
|
|
11956
|
-
<h3 id="
|
|
12380
|
+
<h3 id="housekeeping-in-v166">Housekeeping in v1.6.6<a class="headerlink" href="#housekeeping-in-v166" title="Permanent link">¶</a></h3>
|
|
11957
12381
|
<ul>
|
|
11958
12382
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
11959
12383
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
11960
12384
|
</ul>
|
|
11961
12385
|
<h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">¶</a></h2>
|
|
11962
|
-
<h3 id="
|
|
12386
|
+
<h3 id="security-in-v165">Security in v1.6.5<a class="headerlink" href="#security-in-v165" title="Permanent link">¶</a></h3>
|
|
11963
12387
|
<ul>
|
|
11964
12388
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11965
12389
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
11966
12390
|
</ul>
|
|
11967
|
-
<h3 id="
|
|
12391
|
+
<h3 id="added-in-v165">Added in v1.6.5<a class="headerlink" href="#added-in-v165" title="Permanent link">¶</a></h3>
|
|
11968
12392
|
<ul>
|
|
11969
12393
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
11970
12394
|
</ul>
|
|
11971
|
-
<h3 id="
|
|
12395
|
+
<h3 id="fixed-in-v165">Fixed in v1.6.5<a class="headerlink" href="#fixed-in-v165" title="Permanent link">¶</a></h3>
|
|
11972
12396
|
<ul>
|
|
11973
12397
|
<li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group API.</li>
|
|
11974
12398
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -11976,108 +12400,108 @@
|
|
|
11976
12400
|
<li><a href="https://github.com/nautobot/nautobot/issues/4728">#4728</a> - Fixed bug with JobResultFilterSet and ScheduledJobFilterSet using <code>django_filters.DateTimeFilter</code> for only exact date matches.</li>
|
|
11977
12401
|
<li><a href="https://github.com/nautobot/nautobot/issues/4733">#4733</a> - Fixed the bug that prevents retrieval of IPAddress using its address args if it was created using <code>host</code> and <code>prefix_length</code>.</li>
|
|
11978
12402
|
</ul>
|
|
11979
|
-
<h3 id="
|
|
12403
|
+
<h3 id="documentation-in-v165">Documentation in v1.6.5<a class="headerlink" href="#documentation-in-v165" title="Permanent link">¶</a></h3>
|
|
11980
12404
|
<ul>
|
|
11981
12405
|
<li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
|
|
11982
12406
|
</ul>
|
|
11983
|
-
<h3 id="
|
|
12407
|
+
<h3 id="housekeeping-in-v165">Housekeeping in v1.6.5<a class="headerlink" href="#housekeeping-in-v165" title="Permanent link">¶</a></h3>
|
|
11984
12408
|
<ul>
|
|
11985
12409
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
|
|
11986
12410
|
</ul>
|
|
11987
12411
|
<h2 id="v164-2023-10-17">v1.6.4 (2023-10-17)<a class="headerlink" href="#v164-2023-10-17" title="Permanent link">¶</a></h2>
|
|
11988
|
-
<h3 id="
|
|
12412
|
+
<h3 id="added-in-v164">Added in v1.6.4<a class="headerlink" href="#added-in-v164" title="Permanent link">¶</a></h3>
|
|
11989
12413
|
<ul>
|
|
11990
12414
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
11991
12415
|
<li><a href="https://github.com/nautobot/nautobot/issues/4573">#4573</a> - Added caching for <code>display</code> property of <code>Location</code> and <code>LocationType</code>, mitigating duplicated SQL queries in the related API views.</li>
|
|
11992
12416
|
</ul>
|
|
11993
|
-
<h3 id="
|
|
12417
|
+
<h3 id="changed-in-v164">Changed in v1.6.4<a class="headerlink" href="#changed-in-v164" title="Permanent link">¶</a></h3>
|
|
11994
12418
|
<ul>
|
|
11995
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
11996
12420
|
</ul>
|
|
11997
|
-
<h3 id="
|
|
12421
|
+
<h3 id="removed-in-v164">Removed in v1.6.4<a class="headerlink" href="#removed-in-v164" title="Permanent link">¶</a></h3>
|
|
11998
12422
|
<ul>
|
|
11999
12423
|
<li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
|
|
12000
12424
|
</ul>
|
|
12001
|
-
<h3 id="
|
|
12425
|
+
<h3 id="housekeeping-in-v164">Housekeeping in v1.6.4<a class="headerlink" href="#housekeeping-in-v164" title="Permanent link">¶</a></h3>
|
|
12002
12426
|
<ul>
|
|
12003
12427
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
12004
12428
|
</ul>
|
|
12005
12429
|
<h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">¶</a></h2>
|
|
12006
|
-
<h3 id="
|
|
12430
|
+
<h3 id="security-in-v163">Security in v1.6.3<a class="headerlink" href="#security-in-v163" title="Permanent link">¶</a></h3>
|
|
12007
12431
|
<ul>
|
|
12008
12432
|
<li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
12009
12433
|
</ul>
|
|
12010
|
-
<h3 id="
|
|
12434
|
+
<h3 id="added-in-v163">Added in v1.6.3<a class="headerlink" href="#added-in-v163" title="Permanent link">¶</a></h3>
|
|
12011
12435
|
<ul>
|
|
12012
12436
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
|
|
12013
12437
|
</ul>
|
|
12014
|
-
<h3 id="
|
|
12438
|
+
<h3 id="fixed-in-v163">Fixed in v1.6.3<a class="headerlink" href="#fixed-in-v163" title="Permanent link">¶</a></h3>
|
|
12015
12439
|
<ul>
|
|
12016
12440
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
12017
12441
|
</ul>
|
|
12018
|
-
<h3 id="
|
|
12442
|
+
<h3 id="housekeeping-in-v163">Housekeeping in v1.6.3<a class="headerlink" href="#housekeeping-in-v163" title="Permanent link">¶</a></h3>
|
|
12019
12443
|
<ul>
|
|
12020
12444
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
|
|
12021
12445
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
|
|
12022
12446
|
</ul>
|
|
12023
12447
|
<h2 id="v162-2023-09-01">v1.6.2 (2023-09-01)<a class="headerlink" href="#v162-2023-09-01" title="Permanent link">¶</a></h2>
|
|
12024
|
-
<h3 id="
|
|
12448
|
+
<h3 id="added-in-v162">Added in v1.6.2<a class="headerlink" href="#added-in-v162" title="Permanent link">¶</a></h3>
|
|
12025
12449
|
<ul>
|
|
12026
12450
|
<li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
|
|
12027
12451
|
<li><a href="https://github.com/nautobot/nautobot/issues/4316">#4316</a> - Added management command <code>nautobot-server populate_platform_network_driver</code> to help update the <code>Platform.network_driver</code> field in bulk.</li>
|
|
12028
12452
|
</ul>
|
|
12029
|
-
<h3 id="
|
|
12453
|
+
<h3 id="changed-in-v162">Changed in v1.6.2<a class="headerlink" href="#changed-in-v162" title="Permanent link">¶</a></h3>
|
|
12030
12454
|
<ul>
|
|
12031
12455
|
<li><a href="https://github.com/nautobot/nautobot/issues/3212">#3212</a> - Updated Dynamic Group field filter/child group exclusivity error to be more noticeable.</li>
|
|
12032
12456
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Moved DynamicGroup <code>clean_filter()</code> call from <code>clean()</code> to <code>clean_fields()</code>, which has the impact that it will still be called by <code>full_clean()</code> and <code>validated_save()</code> but no longer called on a simple <code>clean()</code>.</li>
|
|
12033
12457
|
<li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
|
|
12034
12458
|
<li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
|
|
12035
12459
|
</ul>
|
|
12036
|
-
<h3 id="
|
|
12460
|
+
<h3 id="fixed-in-v162">Fixed in v1.6.2<a class="headerlink" href="#fixed-in-v162" title="Permanent link">¶</a></h3>
|
|
12037
12461
|
<ul>
|
|
12038
12462
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
|
|
12039
12463
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
|
|
12040
12464
|
<li><a href="https://github.com/nautobot/nautobot/issues/4262">#4262</a> - Fixed warning message when trying to use bulk edit with no items selected.</li>
|
|
12041
12465
|
</ul>
|
|
12042
|
-
<h3 id="
|
|
12466
|
+
<h3 id="documentation-in-v162">Documentation in v1.6.2<a class="headerlink" href="#documentation-in-v162" title="Permanent link">¶</a></h3>
|
|
12043
12467
|
<ul>
|
|
12044
12468
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
12045
12469
|
<li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
|
|
12046
12470
|
</ul>
|
|
12047
|
-
<h3 id="
|
|
12471
|
+
<h3 id="housekeeping-in-v162">Housekeeping in v1.6.2<a class="headerlink" href="#housekeeping-in-v162" title="Permanent link">¶</a></h3>
|
|
12048
12472
|
<ul>
|
|
12049
12473
|
<li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
|
|
12050
12474
|
<li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
|
|
12051
12475
|
</ul>
|
|
12052
12476
|
<h2 id="v161-2023-08-21">v1.6.1 (2023-08-21)<a class="headerlink" href="#v161-2023-08-21" title="Permanent link">¶</a></h2>
|
|
12053
|
-
<h3 id="
|
|
12477
|
+
<h3 id="changed-in-v161">Changed in v1.6.1<a class="headerlink" href="#changed-in-v161" title="Permanent link">¶</a></h3>
|
|
12054
12478
|
<ul>
|
|
12055
12479
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
12056
12480
|
</ul>
|
|
12057
|
-
<h3 id="
|
|
12481
|
+
<h3 id="fixed-in-v161">Fixed in v1.6.1<a class="headerlink" href="#fixed-in-v161" title="Permanent link">¶</a></h3>
|
|
12058
12482
|
<ul>
|
|
12059
12483
|
<li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
|
|
12060
12484
|
<li><a href="https://github.com/nautobot/nautobot/issues/4149">#4149</a> - Fixed a bug that prevented renaming a <code>Rack</code> if it contained any devices whose names were not globally unique.</li>
|
|
12061
12485
|
<li><a href="https://github.com/nautobot/nautobot/issues/4241">#4241</a> - Added a timeout and exception handling to the <code>nautobot-server send_installation_metrics</code> command.</li>
|
|
12062
12486
|
</ul>
|
|
12063
|
-
<h3 id="
|
|
12487
|
+
<h3 id="documentation-in-v161">Documentation in v1.6.1<a class="headerlink" href="#documentation-in-v161" title="Permanent link">¶</a></h3>
|
|
12064
12488
|
<ul>
|
|
12065
12489
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Introduced new <code>mkdocs</code> setting of <code>tabbed</code>.</li>
|
|
12066
12490
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Updated docs at <code>nautobot/docs/installation/nautobot.md</code> and <code>nautobot/docs/installation/http-server.md</code> to adopt tabbed interfaces.</li>
|
|
12067
12491
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
12068
12492
|
</ul>
|
|
12069
|
-
<h3 id="
|
|
12493
|
+
<h3 id="housekeeping-in-v161">Housekeeping in v1.6.1<a class="headerlink" href="#housekeeping-in-v161" title="Permanent link">¶</a></h3>
|
|
12070
12494
|
<ul>
|
|
12071
12495
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
12072
12496
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
12073
12497
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed <code>development/nautobot_config.py</code> to disable installation metrics for developer environments by default.</li>
|
|
12074
12498
|
</ul>
|
|
12075
12499
|
<h2 id="v160-2023-08-08">v1.6.0 (2023-08-08)<a class="headerlink" href="#v160-2023-08-08" title="Permanent link">¶</a></h2>
|
|
12076
|
-
<h3 id="
|
|
12500
|
+
<h3 id="added-in-v160">Added in v1.6.0<a class="headerlink" href="#added-in-v160" title="Permanent link">¶</a></h3>
|
|
12077
12501
|
<ul>
|
|
12078
12502
|
<li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
|
|
12079
12503
|
</ul>
|
|
12080
|
-
<h3 id="
|
|
12504
|
+
<h3 id="fixed-in-v160">Fixed in v1.6.0<a class="headerlink" href="#fixed-in-v160" title="Permanent link">¶</a></h3>
|
|
12081
12505
|
<ul>
|
|
12082
12506
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
|
|
12083
12507
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
|
|
@@ -12086,7 +12510,7 @@
|
|
|
12086
12510
|
<li><a href="https://github.com/nautobot/nautobot/issues/4205">#4205</a> - Fixed failing Apps CI due to missing dependency of <code>toml</code>.</li>
|
|
12087
12511
|
<li><a href="https://github.com/nautobot/nautobot/issues/4222">#4222</a> - Fixed a bug in which <code>Job</code> <code>ChoiceVars</code> could sometimes get rendered incorrectly in the UI as multiple-choice fields.</li>
|
|
12088
12512
|
</ul>
|
|
12089
|
-
<h3 id="
|
|
12513
|
+
<h3 id="dependencies-in-v160">Dependencies in v1.6.0<a class="headerlink" href="#dependencies-in-v160" title="Permanent link">¶</a></h3>
|
|
12090
12514
|
<ul>
|
|
12091
12515
|
<li><a href="https://github.com/nautobot/nautobot/issues/4208">#4208</a> - Updated django-rq to 2.8.1.</li>
|
|
12092
12516
|
<li><a href="https://github.com/nautobot/nautobot/issues/4209">#4209</a> - Relaxed constraint on prometheus-client minimum version to <code>0.14.1</code>.</li>
|
|
@@ -12094,12 +12518,12 @@
|
|
|
12094
12518
|
<li><a href="https://github.com/nautobot/nautobot/issues/4199">#4199</a> - Updated <code>cryptography</code> to <code>~41.0.3</code>. 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>
|
|
12095
12519
|
<li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
|
|
12096
12520
|
</ul>
|
|
12097
|
-
<h3 id="
|
|
12521
|
+
<h3 id="documentation-in-v160">Documentation in v1.6.0<a class="headerlink" href="#documentation-in-v160" title="Permanent link">¶</a></h3>
|
|
12098
12522
|
<ul>
|
|
12099
12523
|
<li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
|
|
12100
12524
|
</ul>
|
|
12101
12525
|
<h2 id="v160-rc1-2023-08-02">v1.6.0-rc.1 (2023-08-02)<a class="headerlink" href="#v160-rc1-2023-08-02" title="Permanent link">¶</a></h2>
|
|
12102
|
-
<h3 id="
|
|
12526
|
+
<h3 id="added-in-v160-rc1">Added in v1.6.0-rc.1<a class="headerlink" href="#added-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12103
12527
|
<ul>
|
|
12104
12528
|
<li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
|
|
12105
12529
|
<li><a href="https://github.com/nautobot/nautobot/issues/3269">#3269</a> - Added ability to cache <code>DynamicGroup</code> memberships in Redis to improve reverse lookup performance.</li>
|
|
@@ -12114,24 +12538,24 @@
|
|
|
12114
12538
|
<li><a href="https://github.com/nautobot/nautobot/issues/4136">#4136</a> - Added support for <code>NETWORK_DRIVERS</code> config setting to override or extend default network driver mappings from <code>netutils</code> library.</li>
|
|
12115
12539
|
<li><a href="https://github.com/nautobot/nautobot/issues/4161">#4161</a> - Enhanced <code>NautobotUIViewSet</code> to allow Create and Update methods to have their own form classes.</li>
|
|
12116
12540
|
</ul>
|
|
12117
|
-
<h3 id="
|
|
12541
|
+
<h3 id="changed-in-v160-rc1">Changed in v1.6.0-rc.1<a class="headerlink" href="#changed-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12118
12542
|
<ul>
|
|
12119
12543
|
<li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Redirect unauthenticated users on all views to login page if <code>HIDE_RESTRICTED_UI</code> is True.</li>
|
|
12120
12544
|
<li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Only time is shown on the footer if a user is unauthenticated and <code>HIDE_RESTRICTED_UI</code> is True.</li>
|
|
12121
12545
|
<li><a href="https://github.com/nautobot/nautobot/issues/3693">#3693</a> - Increased Device model's <code>asset_tag</code> size limit to 100.</li>
|
|
12122
12546
|
<li><a href="https://github.com/nautobot/nautobot/issues/4029">#4029</a> - Changed default Python version for Docker images from 3.7 to 3.11.</li>
|
|
12123
12547
|
</ul>
|
|
12124
|
-
<h3 id="
|
|
12548
|
+
<h3 id="removed-in-v160-rc1">Removed in v1.6.0-rc.1<a class="headerlink" href="#removed-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12125
12549
|
<ul>
|
|
12126
12550
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Dropped support for Python 3.7. Python 3.8 is now the minimum version required by Nautobot.</li>
|
|
12127
12551
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
|
|
12128
12552
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>pycryptodome</code> as Nautobot does not currently use this library and hasn't for some time.</li>
|
|
12129
12553
|
</ul>
|
|
12130
|
-
<h3 id="
|
|
12554
|
+
<h3 id="fixed-in-v160-rc1">Fixed in v1.6.0-rc.1<a class="headerlink" href="#fixed-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12131
12555
|
<ul>
|
|
12132
12556
|
<li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
|
|
12133
12557
|
</ul>
|
|
12134
|
-
<h3 id="
|
|
12558
|
+
<h3 id="dependencies-in-v160-rc1">Dependencies in v1.6.0-rc.1<a class="headerlink" href="#dependencies-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12135
12559
|
<ul>
|
|
12136
12560
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>celery</code> dependency to <code>~5.3.1</code>.</li>
|
|
12137
12561
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|
|
@@ -12164,7 +12588,7 @@
|
|
|
12164
12588
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
|
|
12165
12589
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
12166
12590
|
</ul>
|
|
12167
|
-
<h3 id="
|
|
12591
|
+
<h3 id="documentation-in-v160-rc1">Documentation in v1.6.0-rc.1<a class="headerlink" href="#documentation-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12168
12592
|
<ul>
|
|
12169
12593
|
<li><a href="https://github.com/nautobot/nautobot/issues/4118">#4118</a> - Added documentation for troubleshooting integration test failures via VNC.</li>
|
|
12170
12594
|
</ul>
|
|
@@ -12311,7 +12735,7 @@
|
|
|
12311
12735
|
</div>
|
|
12312
12736
|
|
|
12313
12737
|
|
|
12314
|
-
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
12738
|
+
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
12315
12739
|
|
|
12316
12740
|
|
|
12317
12741
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|