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
|
|
|
@@ -8441,45 +8885,45 @@
|
|
|
8441
8885
|
<ul class="md-nav__list">
|
|
8442
8886
|
|
|
8443
8887
|
<li class="md-nav__item">
|
|
8444
|
-
<a href="#
|
|
8888
|
+
<a href="#added-in-v1211" class="md-nav__link">
|
|
8445
8889
|
<span class="md-ellipsis">
|
|
8446
|
-
Added
|
|
8890
|
+
Added in v1.2.11
|
|
8447
8891
|
</span>
|
|
8448
8892
|
</a>
|
|
8449
8893
|
|
|
8450
8894
|
</li>
|
|
8451
8895
|
|
|
8452
8896
|
<li class="md-nav__item">
|
|
8453
|
-
<a href="#
|
|
8897
|
+
<a href="#changed-in-v1211" class="md-nav__link">
|
|
8454
8898
|
<span class="md-ellipsis">
|
|
8455
|
-
Changed
|
|
8899
|
+
Changed in v1.2.11
|
|
8456
8900
|
</span>
|
|
8457
8901
|
</a>
|
|
8458
8902
|
|
|
8459
8903
|
</li>
|
|
8460
8904
|
|
|
8461
8905
|
<li class="md-nav__item">
|
|
8462
|
-
<a href="#fixed" class="md-nav__link">
|
|
8906
|
+
<a href="#fixed-in-v1211" class="md-nav__link">
|
|
8463
8907
|
<span class="md-ellipsis">
|
|
8464
|
-
Fixed
|
|
8908
|
+
Fixed in v1.2.11
|
|
8465
8909
|
</span>
|
|
8466
8910
|
</a>
|
|
8467
8911
|
|
|
8468
8912
|
</li>
|
|
8469
8913
|
|
|
8470
8914
|
<li class="md-nav__item">
|
|
8471
|
-
<a href="#documentation" class="md-nav__link">
|
|
8915
|
+
<a href="#documentation-in-v1211" class="md-nav__link">
|
|
8472
8916
|
<span class="md-ellipsis">
|
|
8473
|
-
Documentation
|
|
8917
|
+
Documentation in v1.2.11
|
|
8474
8918
|
</span>
|
|
8475
8919
|
</a>
|
|
8476
8920
|
|
|
8477
8921
|
</li>
|
|
8478
8922
|
|
|
8479
8923
|
<li class="md-nav__item">
|
|
8480
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8924
|
+
<a href="#housekeeping-in-v1211" class="md-nav__link">
|
|
8481
8925
|
<span class="md-ellipsis">
|
|
8482
|
-
Housekeeping
|
|
8926
|
+
Housekeeping in v1.2.11
|
|
8483
8927
|
</span>
|
|
8484
8928
|
</a>
|
|
8485
8929
|
|
|
@@ -8501,18 +8945,18 @@
|
|
|
8501
8945
|
<ul class="md-nav__list">
|
|
8502
8946
|
|
|
8503
8947
|
<li class="md-nav__item">
|
|
8504
|
-
<a href="#
|
|
8948
|
+
<a href="#documentation-in-v1210" class="md-nav__link">
|
|
8505
8949
|
<span class="md-ellipsis">
|
|
8506
|
-
Documentation
|
|
8950
|
+
Documentation in v1.2.10
|
|
8507
8951
|
</span>
|
|
8508
8952
|
</a>
|
|
8509
8953
|
|
|
8510
8954
|
</li>
|
|
8511
8955
|
|
|
8512
8956
|
<li class="md-nav__item">
|
|
8513
|
-
<a href="#
|
|
8957
|
+
<a href="#housekeeping-in-v1210" class="md-nav__link">
|
|
8514
8958
|
<span class="md-ellipsis">
|
|
8515
|
-
Housekeeping
|
|
8959
|
+
Housekeeping in v1.2.10
|
|
8516
8960
|
</span>
|
|
8517
8961
|
</a>
|
|
8518
8962
|
|
|
@@ -8534,18 +8978,18 @@
|
|
|
8534
8978
|
<ul class="md-nav__list">
|
|
8535
8979
|
|
|
8536
8980
|
<li class="md-nav__item">
|
|
8537
|
-
<a href="#security" class="md-nav__link">
|
|
8981
|
+
<a href="#security-in-v129" class="md-nav__link">
|
|
8538
8982
|
<span class="md-ellipsis">
|
|
8539
|
-
Security
|
|
8983
|
+
Security in v1.2.9
|
|
8540
8984
|
</span>
|
|
8541
8985
|
</a>
|
|
8542
8986
|
|
|
8543
8987
|
</li>
|
|
8544
8988
|
|
|
8545
8989
|
<li class="md-nav__item">
|
|
8546
|
-
<a href="#
|
|
8990
|
+
<a href="#fixed-in-v129" class="md-nav__link">
|
|
8547
8991
|
<span class="md-ellipsis">
|
|
8548
|
-
Fixed
|
|
8992
|
+
Fixed in v1.2.9
|
|
8549
8993
|
</span>
|
|
8550
8994
|
</a>
|
|
8551
8995
|
|
|
@@ -8567,54 +9011,54 @@
|
|
|
8567
9011
|
<ul class="md-nav__list">
|
|
8568
9012
|
|
|
8569
9013
|
<li class="md-nav__item">
|
|
8570
|
-
<a href="#
|
|
9014
|
+
<a href="#added-in-v128" class="md-nav__link">
|
|
8571
9015
|
<span class="md-ellipsis">
|
|
8572
|
-
Added
|
|
9016
|
+
Added in v1.2.8
|
|
8573
9017
|
</span>
|
|
8574
9018
|
</a>
|
|
8575
9019
|
|
|
8576
9020
|
</li>
|
|
8577
9021
|
|
|
8578
9022
|
<li class="md-nav__item">
|
|
8579
|
-
<a href="#
|
|
9023
|
+
<a href="#changed-in-v128" class="md-nav__link">
|
|
8580
9024
|
<span class="md-ellipsis">
|
|
8581
|
-
Changed
|
|
9025
|
+
Changed in v1.2.8
|
|
8582
9026
|
</span>
|
|
8583
9027
|
</a>
|
|
8584
9028
|
|
|
8585
9029
|
</li>
|
|
8586
9030
|
|
|
8587
9031
|
<li class="md-nav__item">
|
|
8588
|
-
<a href="#
|
|
9032
|
+
<a href="#fixed-in-v128" class="md-nav__link">
|
|
8589
9033
|
<span class="md-ellipsis">
|
|
8590
|
-
Fixed
|
|
9034
|
+
Fixed in v1.2.8
|
|
8591
9035
|
</span>
|
|
8592
9036
|
</a>
|
|
8593
9037
|
|
|
8594
9038
|
</li>
|
|
8595
9039
|
|
|
8596
9040
|
<li class="md-nav__item">
|
|
8597
|
-
<a href="#dependencies" class="md-nav__link">
|
|
9041
|
+
<a href="#dependencies-in-v128" class="md-nav__link">
|
|
8598
9042
|
<span class="md-ellipsis">
|
|
8599
|
-
Dependencies
|
|
9043
|
+
Dependencies in v1.2.8
|
|
8600
9044
|
</span>
|
|
8601
9045
|
</a>
|
|
8602
9046
|
|
|
8603
9047
|
</li>
|
|
8604
9048
|
|
|
8605
9049
|
<li class="md-nav__item">
|
|
8606
|
-
<a href="#
|
|
9050
|
+
<a href="#documentation-in-v128" class="md-nav__link">
|
|
8607
9051
|
<span class="md-ellipsis">
|
|
8608
|
-
Documentation
|
|
9052
|
+
Documentation in v1.2.8
|
|
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="#housekeeping-in-v128" class="md-nav__link">
|
|
8616
9060
|
<span class="md-ellipsis">
|
|
8617
|
-
Housekeeping
|
|
9061
|
+
Housekeeping in v1.2.8
|
|
8618
9062
|
</span>
|
|
8619
9063
|
</a>
|
|
8620
9064
|
|
|
@@ -8636,9 +9080,9 @@
|
|
|
8636
9080
|
<ul class="md-nav__list">
|
|
8637
9081
|
|
|
8638
9082
|
<li class="md-nav__item">
|
|
8639
|
-
<a href="#
|
|
9083
|
+
<a href="#housekeeping-in-v127" class="md-nav__link">
|
|
8640
9084
|
<span class="md-ellipsis">
|
|
8641
|
-
Housekeeping
|
|
9085
|
+
Housekeeping in v1.2.7
|
|
8642
9086
|
</span>
|
|
8643
9087
|
</a>
|
|
8644
9088
|
|
|
@@ -8660,45 +9104,45 @@
|
|
|
8660
9104
|
<ul class="md-nav__list">
|
|
8661
9105
|
|
|
8662
9106
|
<li class="md-nav__item">
|
|
8663
|
-
<a href="#
|
|
9107
|
+
<a href="#added-in-v126" class="md-nav__link">
|
|
8664
9108
|
<span class="md-ellipsis">
|
|
8665
|
-
Added
|
|
9109
|
+
Added in v1.2.6
|
|
8666
9110
|
</span>
|
|
8667
9111
|
</a>
|
|
8668
9112
|
|
|
8669
9113
|
</li>
|
|
8670
9114
|
|
|
8671
9115
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
9116
|
+
<a href="#fixed-in-v126" class="md-nav__link">
|
|
8673
9117
|
<span class="md-ellipsis">
|
|
8674
|
-
Fixed
|
|
9118
|
+
Fixed in v1.2.6
|
|
8675
9119
|
</span>
|
|
8676
9120
|
</a>
|
|
8677
9121
|
|
|
8678
9122
|
</li>
|
|
8679
9123
|
|
|
8680
9124
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
9125
|
+
<a href="#dependencies-in-v126" class="md-nav__link">
|
|
8682
9126
|
<span class="md-ellipsis">
|
|
8683
|
-
Dependencies
|
|
9127
|
+
Dependencies in v1.2.6
|
|
8684
9128
|
</span>
|
|
8685
9129
|
</a>
|
|
8686
9130
|
|
|
8687
9131
|
</li>
|
|
8688
9132
|
|
|
8689
9133
|
<li class="md-nav__item">
|
|
8690
|
-
<a href="#
|
|
9134
|
+
<a href="#documentation-in-v126" class="md-nav__link">
|
|
8691
9135
|
<span class="md-ellipsis">
|
|
8692
|
-
Documentation
|
|
9136
|
+
Documentation in v1.2.6
|
|
8693
9137
|
</span>
|
|
8694
9138
|
</a>
|
|
8695
9139
|
|
|
8696
9140
|
</li>
|
|
8697
9141
|
|
|
8698
9142
|
<li class="md-nav__item">
|
|
8699
|
-
<a href="#
|
|
9143
|
+
<a href="#housekeeping-in-v126" class="md-nav__link">
|
|
8700
9144
|
<span class="md-ellipsis">
|
|
8701
|
-
Housekeeping
|
|
9145
|
+
Housekeeping in v1.2.6
|
|
8702
9146
|
</span>
|
|
8703
9147
|
</a>
|
|
8704
9148
|
|
|
@@ -8720,27 +9164,27 @@
|
|
|
8720
9164
|
<ul class="md-nav__list">
|
|
8721
9165
|
|
|
8722
9166
|
<li class="md-nav__item">
|
|
8723
|
-
<a href="#
|
|
9167
|
+
<a href="#fixed-in-v125" class="md-nav__link">
|
|
8724
9168
|
<span class="md-ellipsis">
|
|
8725
|
-
Fixed
|
|
9169
|
+
Fixed in v1.2.5
|
|
8726
9170
|
</span>
|
|
8727
9171
|
</a>
|
|
8728
9172
|
|
|
8729
9173
|
</li>
|
|
8730
9174
|
|
|
8731
9175
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
9176
|
+
<a href="#documentation-in-v125" class="md-nav__link">
|
|
8733
9177
|
<span class="md-ellipsis">
|
|
8734
|
-
Documentation
|
|
9178
|
+
Documentation in v1.2.5
|
|
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-v125" class="md-nav__link">
|
|
8742
9186
|
<span class="md-ellipsis">
|
|
8743
|
-
Housekeeping
|
|
9187
|
+
Housekeeping in v1.2.5
|
|
8744
9188
|
</span>
|
|
8745
9189
|
</a>
|
|
8746
9190
|
|
|
@@ -8762,45 +9206,45 @@
|
|
|
8762
9206
|
<ul class="md-nav__list">
|
|
8763
9207
|
|
|
8764
9208
|
<li class="md-nav__item">
|
|
8765
|
-
<a href="#
|
|
9209
|
+
<a href="#security-in-v124" class="md-nav__link">
|
|
8766
9210
|
<span class="md-ellipsis">
|
|
8767
|
-
Security
|
|
9211
|
+
Security in v1.2.4
|
|
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="#changed-in-v124" class="md-nav__link">
|
|
8775
9219
|
<span class="md-ellipsis">
|
|
8776
|
-
Changed
|
|
9220
|
+
Changed in v1.2.4
|
|
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="#fixed-in-v124" class="md-nav__link">
|
|
8784
9228
|
<span class="md-ellipsis">
|
|
8785
|
-
Fixed
|
|
9229
|
+
Fixed in v1.2.4
|
|
8786
9230
|
</span>
|
|
8787
9231
|
</a>
|
|
8788
9232
|
|
|
8789
9233
|
</li>
|
|
8790
9234
|
|
|
8791
9235
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
9236
|
+
<a href="#documentation-in-v124" class="md-nav__link">
|
|
8793
9237
|
<span class="md-ellipsis">
|
|
8794
|
-
Documentation
|
|
9238
|
+
Documentation in v1.2.4
|
|
8795
9239
|
</span>
|
|
8796
9240
|
</a>
|
|
8797
9241
|
|
|
8798
9242
|
</li>
|
|
8799
9243
|
|
|
8800
9244
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
9245
|
+
<a href="#housekeeping-in-v124" class="md-nav__link">
|
|
8802
9246
|
<span class="md-ellipsis">
|
|
8803
|
-
Housekeeping
|
|
9247
|
+
Housekeeping in v1.2.4
|
|
8804
9248
|
</span>
|
|
8805
9249
|
</a>
|
|
8806
9250
|
|
|
@@ -8822,27 +9266,27 @@
|
|
|
8822
9266
|
<ul class="md-nav__list">
|
|
8823
9267
|
|
|
8824
9268
|
<li class="md-nav__item">
|
|
8825
|
-
<a href="#
|
|
9269
|
+
<a href="#security-in-v123" class="md-nav__link">
|
|
8826
9270
|
<span class="md-ellipsis">
|
|
8827
|
-
Security
|
|
9271
|
+
Security in v1.2.3
|
|
8828
9272
|
</span>
|
|
8829
9273
|
</a>
|
|
8830
9274
|
|
|
8831
9275
|
</li>
|
|
8832
9276
|
|
|
8833
9277
|
<li class="md-nav__item">
|
|
8834
|
-
<a href="#
|
|
9278
|
+
<a href="#fixed-in-v123" class="md-nav__link">
|
|
8835
9279
|
<span class="md-ellipsis">
|
|
8836
|
-
Fixed
|
|
9280
|
+
Fixed in v1.2.3
|
|
8837
9281
|
</span>
|
|
8838
9282
|
</a>
|
|
8839
9283
|
|
|
8840
9284
|
</li>
|
|
8841
9285
|
|
|
8842
9286
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#
|
|
9287
|
+
<a href="#documentation-in-v123" class="md-nav__link">
|
|
8844
9288
|
<span class="md-ellipsis">
|
|
8845
|
-
Documentation
|
|
9289
|
+
Documentation in v1.2.3
|
|
8846
9290
|
</span>
|
|
8847
9291
|
</a>
|
|
8848
9292
|
|
|
@@ -8864,36 +9308,36 @@
|
|
|
8864
9308
|
<ul class="md-nav__list">
|
|
8865
9309
|
|
|
8866
9310
|
<li class="md-nav__item">
|
|
8867
|
-
<a href="#
|
|
9311
|
+
<a href="#added-in-v122" class="md-nav__link">
|
|
8868
9312
|
<span class="md-ellipsis">
|
|
8869
|
-
Added
|
|
9313
|
+
Added in v1.2.2
|
|
8870
9314
|
</span>
|
|
8871
9315
|
</a>
|
|
8872
9316
|
|
|
8873
9317
|
</li>
|
|
8874
9318
|
|
|
8875
9319
|
<li class="md-nav__item">
|
|
8876
|
-
<a href="#
|
|
9320
|
+
<a href="#changed-in-v122" class="md-nav__link">
|
|
8877
9321
|
<span class="md-ellipsis">
|
|
8878
|
-
Changed
|
|
9322
|
+
Changed in v1.2.2
|
|
8879
9323
|
</span>
|
|
8880
9324
|
</a>
|
|
8881
9325
|
|
|
8882
9326
|
</li>
|
|
8883
9327
|
|
|
8884
9328
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
9329
|
+
<a href="#fixed-in-v122" class="md-nav__link">
|
|
8886
9330
|
<span class="md-ellipsis">
|
|
8887
|
-
Fixed
|
|
9331
|
+
Fixed in v1.2.2
|
|
8888
9332
|
</span>
|
|
8889
9333
|
</a>
|
|
8890
9334
|
|
|
8891
9335
|
</li>
|
|
8892
9336
|
|
|
8893
9337
|
<li class="md-nav__item">
|
|
8894
|
-
<a href="#
|
|
9338
|
+
<a href="#documentation-in-v122" class="md-nav__link">
|
|
8895
9339
|
<span class="md-ellipsis">
|
|
8896
|
-
Documentation
|
|
9340
|
+
Documentation in v1.2.2
|
|
8897
9341
|
</span>
|
|
8898
9342
|
</a>
|
|
8899
9343
|
|
|
@@ -8915,36 +9359,36 @@
|
|
|
8915
9359
|
<ul class="md-nav__list">
|
|
8916
9360
|
|
|
8917
9361
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
9362
|
+
<a href="#security-in-v121" class="md-nav__link">
|
|
8919
9363
|
<span class="md-ellipsis">
|
|
8920
|
-
Security
|
|
9364
|
+
Security in v1.2.1
|
|
8921
9365
|
</span>
|
|
8922
9366
|
</a>
|
|
8923
9367
|
|
|
8924
9368
|
</li>
|
|
8925
9369
|
|
|
8926
9370
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
9371
|
+
<a href="#added-in-v121" class="md-nav__link">
|
|
8928
9372
|
<span class="md-ellipsis">
|
|
8929
|
-
Added
|
|
9373
|
+
Added in v1.2.1
|
|
8930
9374
|
</span>
|
|
8931
9375
|
</a>
|
|
8932
9376
|
|
|
8933
9377
|
</li>
|
|
8934
9378
|
|
|
8935
9379
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
9380
|
+
<a href="#changed-in-v121" class="md-nav__link">
|
|
8937
9381
|
<span class="md-ellipsis">
|
|
8938
|
-
Changed
|
|
9382
|
+
Changed in v1.2.1
|
|
8939
9383
|
</span>
|
|
8940
9384
|
</a>
|
|
8941
9385
|
|
|
8942
9386
|
</li>
|
|
8943
9387
|
|
|
8944
9388
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#
|
|
9389
|
+
<a href="#fixed-in-v121" class="md-nav__link">
|
|
8946
9390
|
<span class="md-ellipsis">
|
|
8947
|
-
Fixed
|
|
9391
|
+
Fixed in v1.2.1
|
|
8948
9392
|
</span>
|
|
8949
9393
|
</a>
|
|
8950
9394
|
|
|
@@ -8966,54 +9410,54 @@
|
|
|
8966
9410
|
<ul class="md-nav__list">
|
|
8967
9411
|
|
|
8968
9412
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
9413
|
+
<a href="#added-in-v120" class="md-nav__link">
|
|
8970
9414
|
<span class="md-ellipsis">
|
|
8971
|
-
Added
|
|
9415
|
+
Added in v1.2.0
|
|
8972
9416
|
</span>
|
|
8973
9417
|
</a>
|
|
8974
9418
|
|
|
8975
9419
|
</li>
|
|
8976
9420
|
|
|
8977
9421
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
9422
|
+
<a href="#changed-in-v120" class="md-nav__link">
|
|
8979
9423
|
<span class="md-ellipsis">
|
|
8980
|
-
Changed
|
|
9424
|
+
Changed in v1.2.0
|
|
8981
9425
|
</span>
|
|
8982
9426
|
</a>
|
|
8983
9427
|
|
|
8984
9428
|
</li>
|
|
8985
9429
|
|
|
8986
9430
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#removed" class="md-nav__link">
|
|
9431
|
+
<a href="#removed-in-v120" class="md-nav__link">
|
|
8988
9432
|
<span class="md-ellipsis">
|
|
8989
|
-
Removed
|
|
9433
|
+
Removed in v1.2.0
|
|
8990
9434
|
</span>
|
|
8991
9435
|
</a>
|
|
8992
9436
|
|
|
8993
9437
|
</li>
|
|
8994
9438
|
|
|
8995
9439
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
9440
|
+
<a href="#fixed-in-v120" class="md-nav__link">
|
|
8997
9441
|
<span class="md-ellipsis">
|
|
8998
|
-
Fixed
|
|
9442
|
+
Fixed in v1.2.0
|
|
8999
9443
|
</span>
|
|
9000
9444
|
</a>
|
|
9001
9445
|
|
|
9002
9446
|
</li>
|
|
9003
9447
|
|
|
9004
9448
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#
|
|
9449
|
+
<a href="#dependencies-in-v120" class="md-nav__link">
|
|
9006
9450
|
<span class="md-ellipsis">
|
|
9007
|
-
Dependencies
|
|
9451
|
+
Dependencies in v1.2.0
|
|
9008
9452
|
</span>
|
|
9009
9453
|
</a>
|
|
9010
9454
|
|
|
9011
9455
|
</li>
|
|
9012
9456
|
|
|
9013
9457
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
9458
|
+
<a href="#documentation-in-v120" class="md-nav__link">
|
|
9015
9459
|
<span class="md-ellipsis">
|
|
9016
|
-
Documentation
|
|
9460
|
+
Documentation in v1.2.0
|
|
9017
9461
|
</span>
|
|
9018
9462
|
</a>
|
|
9019
9463
|
|
|
@@ -9035,54 +9479,54 @@
|
|
|
9035
9479
|
<ul class="md-nav__list">
|
|
9036
9480
|
|
|
9037
9481
|
<li class="md-nav__item">
|
|
9038
|
-
<a href="#
|
|
9482
|
+
<a href="#security-in-v120b1" class="md-nav__link">
|
|
9039
9483
|
<span class="md-ellipsis">
|
|
9040
|
-
Security
|
|
9484
|
+
Security in v1.2.0b1
|
|
9041
9485
|
</span>
|
|
9042
9486
|
</a>
|
|
9043
9487
|
|
|
9044
9488
|
</li>
|
|
9045
9489
|
|
|
9046
9490
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9491
|
+
<a href="#added-in-v120b1" class="md-nav__link">
|
|
9048
9492
|
<span class="md-ellipsis">
|
|
9049
|
-
Added
|
|
9493
|
+
Added in v1.2.0b1
|
|
9050
9494
|
</span>
|
|
9051
9495
|
</a>
|
|
9052
9496
|
|
|
9053
9497
|
</li>
|
|
9054
9498
|
|
|
9055
9499
|
<li class="md-nav__item">
|
|
9056
|
-
<a href="#
|
|
9500
|
+
<a href="#changed-in-v120b1" class="md-nav__link">
|
|
9057
9501
|
<span class="md-ellipsis">
|
|
9058
|
-
Changed
|
|
9502
|
+
Changed in v1.2.0b1
|
|
9059
9503
|
</span>
|
|
9060
9504
|
</a>
|
|
9061
9505
|
|
|
9062
9506
|
</li>
|
|
9063
9507
|
|
|
9064
9508
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9509
|
+
<a href="#fixed-in-v120b1" class="md-nav__link">
|
|
9066
9510
|
<span class="md-ellipsis">
|
|
9067
|
-
Fixed
|
|
9511
|
+
Fixed in v1.2.0b1
|
|
9068
9512
|
</span>
|
|
9069
9513
|
</a>
|
|
9070
9514
|
|
|
9071
9515
|
</li>
|
|
9072
9516
|
|
|
9073
9517
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9518
|
+
<a href="#documentation-in-v120b1" class="md-nav__link">
|
|
9075
9519
|
<span class="md-ellipsis">
|
|
9076
|
-
Documentation
|
|
9520
|
+
Documentation in v1.2.0b1
|
|
9077
9521
|
</span>
|
|
9078
9522
|
</a>
|
|
9079
9523
|
|
|
9080
9524
|
</li>
|
|
9081
9525
|
|
|
9082
9526
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9527
|
+
<a href="#housekeeping-in-v120b1" class="md-nav__link">
|
|
9084
9528
|
<span class="md-ellipsis">
|
|
9085
|
-
Housekeeping
|
|
9529
|
+
Housekeeping in v1.2.0b1
|
|
9086
9530
|
</span>
|
|
9087
9531
|
</a>
|
|
9088
9532
|
|
|
@@ -9742,45 +10186,45 @@
|
|
|
9742
10186
|
<ul class="md-nav__list">
|
|
9743
10187
|
|
|
9744
10188
|
<li class="md-nav__item">
|
|
9745
|
-
<a href="#
|
|
10189
|
+
<a href="#added-in-v1211" class="md-nav__link">
|
|
9746
10190
|
<span class="md-ellipsis">
|
|
9747
|
-
Added
|
|
10191
|
+
Added in v1.2.11
|
|
9748
10192
|
</span>
|
|
9749
10193
|
</a>
|
|
9750
10194
|
|
|
9751
10195
|
</li>
|
|
9752
10196
|
|
|
9753
10197
|
<li class="md-nav__item">
|
|
9754
|
-
<a href="#
|
|
10198
|
+
<a href="#changed-in-v1211" class="md-nav__link">
|
|
9755
10199
|
<span class="md-ellipsis">
|
|
9756
|
-
Changed
|
|
10200
|
+
Changed in v1.2.11
|
|
9757
10201
|
</span>
|
|
9758
10202
|
</a>
|
|
9759
10203
|
|
|
9760
10204
|
</li>
|
|
9761
10205
|
|
|
9762
10206
|
<li class="md-nav__item">
|
|
9763
|
-
<a href="#fixed" class="md-nav__link">
|
|
10207
|
+
<a href="#fixed-in-v1211" class="md-nav__link">
|
|
9764
10208
|
<span class="md-ellipsis">
|
|
9765
|
-
Fixed
|
|
10209
|
+
Fixed in v1.2.11
|
|
9766
10210
|
</span>
|
|
9767
10211
|
</a>
|
|
9768
10212
|
|
|
9769
10213
|
</li>
|
|
9770
10214
|
|
|
9771
10215
|
<li class="md-nav__item">
|
|
9772
|
-
<a href="#documentation" class="md-nav__link">
|
|
10216
|
+
<a href="#documentation-in-v1211" class="md-nav__link">
|
|
9773
10217
|
<span class="md-ellipsis">
|
|
9774
|
-
Documentation
|
|
10218
|
+
Documentation in v1.2.11
|
|
9775
10219
|
</span>
|
|
9776
10220
|
</a>
|
|
9777
10221
|
|
|
9778
10222
|
</li>
|
|
9779
10223
|
|
|
9780
10224
|
<li class="md-nav__item">
|
|
9781
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10225
|
+
<a href="#housekeeping-in-v1211" class="md-nav__link">
|
|
9782
10226
|
<span class="md-ellipsis">
|
|
9783
|
-
Housekeeping
|
|
10227
|
+
Housekeeping in v1.2.11
|
|
9784
10228
|
</span>
|
|
9785
10229
|
</a>
|
|
9786
10230
|
|
|
@@ -9802,18 +10246,18 @@
|
|
|
9802
10246
|
<ul class="md-nav__list">
|
|
9803
10247
|
|
|
9804
10248
|
<li class="md-nav__item">
|
|
9805
|
-
<a href="#
|
|
10249
|
+
<a href="#documentation-in-v1210" class="md-nav__link">
|
|
9806
10250
|
<span class="md-ellipsis">
|
|
9807
|
-
Documentation
|
|
10251
|
+
Documentation in v1.2.10
|
|
9808
10252
|
</span>
|
|
9809
10253
|
</a>
|
|
9810
10254
|
|
|
9811
10255
|
</li>
|
|
9812
10256
|
|
|
9813
10257
|
<li class="md-nav__item">
|
|
9814
|
-
<a href="#
|
|
10258
|
+
<a href="#housekeeping-in-v1210" class="md-nav__link">
|
|
9815
10259
|
<span class="md-ellipsis">
|
|
9816
|
-
Housekeeping
|
|
10260
|
+
Housekeeping in v1.2.10
|
|
9817
10261
|
</span>
|
|
9818
10262
|
</a>
|
|
9819
10263
|
|
|
@@ -9835,18 +10279,18 @@
|
|
|
9835
10279
|
<ul class="md-nav__list">
|
|
9836
10280
|
|
|
9837
10281
|
<li class="md-nav__item">
|
|
9838
|
-
<a href="#security" class="md-nav__link">
|
|
10282
|
+
<a href="#security-in-v129" class="md-nav__link">
|
|
9839
10283
|
<span class="md-ellipsis">
|
|
9840
|
-
Security
|
|
10284
|
+
Security in v1.2.9
|
|
9841
10285
|
</span>
|
|
9842
10286
|
</a>
|
|
9843
10287
|
|
|
9844
10288
|
</li>
|
|
9845
10289
|
|
|
9846
10290
|
<li class="md-nav__item">
|
|
9847
|
-
<a href="#
|
|
10291
|
+
<a href="#fixed-in-v129" class="md-nav__link">
|
|
9848
10292
|
<span class="md-ellipsis">
|
|
9849
|
-
Fixed
|
|
10293
|
+
Fixed in v1.2.9
|
|
9850
10294
|
</span>
|
|
9851
10295
|
</a>
|
|
9852
10296
|
|
|
@@ -9868,54 +10312,54 @@
|
|
|
9868
10312
|
<ul class="md-nav__list">
|
|
9869
10313
|
|
|
9870
10314
|
<li class="md-nav__item">
|
|
9871
|
-
<a href="#
|
|
10315
|
+
<a href="#added-in-v128" class="md-nav__link">
|
|
9872
10316
|
<span class="md-ellipsis">
|
|
9873
|
-
Added
|
|
10317
|
+
Added in v1.2.8
|
|
9874
10318
|
</span>
|
|
9875
10319
|
</a>
|
|
9876
10320
|
|
|
9877
10321
|
</li>
|
|
9878
10322
|
|
|
9879
10323
|
<li class="md-nav__item">
|
|
9880
|
-
<a href="#
|
|
10324
|
+
<a href="#changed-in-v128" class="md-nav__link">
|
|
9881
10325
|
<span class="md-ellipsis">
|
|
9882
|
-
Changed
|
|
10326
|
+
Changed in v1.2.8
|
|
9883
10327
|
</span>
|
|
9884
10328
|
</a>
|
|
9885
10329
|
|
|
9886
10330
|
</li>
|
|
9887
10331
|
|
|
9888
10332
|
<li class="md-nav__item">
|
|
9889
|
-
<a href="#
|
|
10333
|
+
<a href="#fixed-in-v128" class="md-nav__link">
|
|
9890
10334
|
<span class="md-ellipsis">
|
|
9891
|
-
Fixed
|
|
10335
|
+
Fixed in v1.2.8
|
|
9892
10336
|
</span>
|
|
9893
10337
|
</a>
|
|
9894
10338
|
|
|
9895
10339
|
</li>
|
|
9896
10340
|
|
|
9897
10341
|
<li class="md-nav__item">
|
|
9898
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10342
|
+
<a href="#dependencies-in-v128" class="md-nav__link">
|
|
9899
10343
|
<span class="md-ellipsis">
|
|
9900
|
-
Dependencies
|
|
10344
|
+
Dependencies in v1.2.8
|
|
9901
10345
|
</span>
|
|
9902
10346
|
</a>
|
|
9903
10347
|
|
|
9904
10348
|
</li>
|
|
9905
10349
|
|
|
9906
10350
|
<li class="md-nav__item">
|
|
9907
|
-
<a href="#
|
|
10351
|
+
<a href="#documentation-in-v128" class="md-nav__link">
|
|
9908
10352
|
<span class="md-ellipsis">
|
|
9909
|
-
Documentation
|
|
10353
|
+
Documentation in v1.2.8
|
|
9910
10354
|
</span>
|
|
9911
10355
|
</a>
|
|
9912
10356
|
|
|
9913
10357
|
</li>
|
|
9914
10358
|
|
|
9915
10359
|
<li class="md-nav__item">
|
|
9916
|
-
<a href="#
|
|
10360
|
+
<a href="#housekeeping-in-v128" class="md-nav__link">
|
|
9917
10361
|
<span class="md-ellipsis">
|
|
9918
|
-
Housekeeping
|
|
10362
|
+
Housekeeping in v1.2.8
|
|
9919
10363
|
</span>
|
|
9920
10364
|
</a>
|
|
9921
10365
|
|
|
@@ -9937,9 +10381,9 @@
|
|
|
9937
10381
|
<ul class="md-nav__list">
|
|
9938
10382
|
|
|
9939
10383
|
<li class="md-nav__item">
|
|
9940
|
-
<a href="#
|
|
10384
|
+
<a href="#housekeeping-in-v127" class="md-nav__link">
|
|
9941
10385
|
<span class="md-ellipsis">
|
|
9942
|
-
Housekeeping
|
|
10386
|
+
Housekeeping in v1.2.7
|
|
9943
10387
|
</span>
|
|
9944
10388
|
</a>
|
|
9945
10389
|
|
|
@@ -9961,45 +10405,45 @@
|
|
|
9961
10405
|
<ul class="md-nav__list">
|
|
9962
10406
|
|
|
9963
10407
|
<li class="md-nav__item">
|
|
9964
|
-
<a href="#
|
|
10408
|
+
<a href="#added-in-v126" class="md-nav__link">
|
|
9965
10409
|
<span class="md-ellipsis">
|
|
9966
|
-
Added
|
|
10410
|
+
Added in v1.2.6
|
|
9967
10411
|
</span>
|
|
9968
10412
|
</a>
|
|
9969
10413
|
|
|
9970
10414
|
</li>
|
|
9971
10415
|
|
|
9972
10416
|
<li class="md-nav__item">
|
|
9973
|
-
<a href="#
|
|
10417
|
+
<a href="#fixed-in-v126" class="md-nav__link">
|
|
9974
10418
|
<span class="md-ellipsis">
|
|
9975
|
-
Fixed
|
|
10419
|
+
Fixed in v1.2.6
|
|
9976
10420
|
</span>
|
|
9977
10421
|
</a>
|
|
9978
10422
|
|
|
9979
10423
|
</li>
|
|
9980
10424
|
|
|
9981
10425
|
<li class="md-nav__item">
|
|
9982
|
-
<a href="#
|
|
10426
|
+
<a href="#dependencies-in-v126" class="md-nav__link">
|
|
9983
10427
|
<span class="md-ellipsis">
|
|
9984
|
-
Dependencies
|
|
10428
|
+
Dependencies in v1.2.6
|
|
9985
10429
|
</span>
|
|
9986
10430
|
</a>
|
|
9987
10431
|
|
|
9988
10432
|
</li>
|
|
9989
10433
|
|
|
9990
10434
|
<li class="md-nav__item">
|
|
9991
|
-
<a href="#
|
|
10435
|
+
<a href="#documentation-in-v126" class="md-nav__link">
|
|
9992
10436
|
<span class="md-ellipsis">
|
|
9993
|
-
Documentation
|
|
10437
|
+
Documentation in v1.2.6
|
|
9994
10438
|
</span>
|
|
9995
10439
|
</a>
|
|
9996
10440
|
|
|
9997
10441
|
</li>
|
|
9998
10442
|
|
|
9999
10443
|
<li class="md-nav__item">
|
|
10000
|
-
<a href="#
|
|
10444
|
+
<a href="#housekeeping-in-v126" class="md-nav__link">
|
|
10001
10445
|
<span class="md-ellipsis">
|
|
10002
|
-
Housekeeping
|
|
10446
|
+
Housekeeping in v1.2.6
|
|
10003
10447
|
</span>
|
|
10004
10448
|
</a>
|
|
10005
10449
|
|
|
@@ -10021,27 +10465,27 @@
|
|
|
10021
10465
|
<ul class="md-nav__list">
|
|
10022
10466
|
|
|
10023
10467
|
<li class="md-nav__item">
|
|
10024
|
-
<a href="#
|
|
10468
|
+
<a href="#fixed-in-v125" class="md-nav__link">
|
|
10025
10469
|
<span class="md-ellipsis">
|
|
10026
|
-
Fixed
|
|
10470
|
+
Fixed in v1.2.5
|
|
10027
10471
|
</span>
|
|
10028
10472
|
</a>
|
|
10029
10473
|
|
|
10030
10474
|
</li>
|
|
10031
10475
|
|
|
10032
10476
|
<li class="md-nav__item">
|
|
10033
|
-
<a href="#
|
|
10477
|
+
<a href="#documentation-in-v125" class="md-nav__link">
|
|
10034
10478
|
<span class="md-ellipsis">
|
|
10035
|
-
Documentation
|
|
10479
|
+
Documentation in v1.2.5
|
|
10036
10480
|
</span>
|
|
10037
10481
|
</a>
|
|
10038
10482
|
|
|
10039
10483
|
</li>
|
|
10040
10484
|
|
|
10041
10485
|
<li class="md-nav__item">
|
|
10042
|
-
<a href="#
|
|
10486
|
+
<a href="#housekeeping-in-v125" class="md-nav__link">
|
|
10043
10487
|
<span class="md-ellipsis">
|
|
10044
|
-
Housekeeping
|
|
10488
|
+
Housekeeping in v1.2.5
|
|
10045
10489
|
</span>
|
|
10046
10490
|
</a>
|
|
10047
10491
|
|
|
@@ -10063,45 +10507,45 @@
|
|
|
10063
10507
|
<ul class="md-nav__list">
|
|
10064
10508
|
|
|
10065
10509
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#
|
|
10510
|
+
<a href="#security-in-v124" class="md-nav__link">
|
|
10067
10511
|
<span class="md-ellipsis">
|
|
10068
|
-
Security
|
|
10512
|
+
Security in v1.2.4
|
|
10069
10513
|
</span>
|
|
10070
10514
|
</a>
|
|
10071
10515
|
|
|
10072
10516
|
</li>
|
|
10073
10517
|
|
|
10074
10518
|
<li class="md-nav__item">
|
|
10075
|
-
<a href="#
|
|
10519
|
+
<a href="#changed-in-v124" class="md-nav__link">
|
|
10076
10520
|
<span class="md-ellipsis">
|
|
10077
|
-
Changed
|
|
10521
|
+
Changed in v1.2.4
|
|
10078
10522
|
</span>
|
|
10079
10523
|
</a>
|
|
10080
10524
|
|
|
10081
10525
|
</li>
|
|
10082
10526
|
|
|
10083
10527
|
<li class="md-nav__item">
|
|
10084
|
-
<a href="#
|
|
10528
|
+
<a href="#fixed-in-v124" class="md-nav__link">
|
|
10085
10529
|
<span class="md-ellipsis">
|
|
10086
|
-
Fixed
|
|
10530
|
+
Fixed in v1.2.4
|
|
10087
10531
|
</span>
|
|
10088
10532
|
</a>
|
|
10089
10533
|
|
|
10090
10534
|
</li>
|
|
10091
10535
|
|
|
10092
10536
|
<li class="md-nav__item">
|
|
10093
|
-
<a href="#
|
|
10537
|
+
<a href="#documentation-in-v124" class="md-nav__link">
|
|
10094
10538
|
<span class="md-ellipsis">
|
|
10095
|
-
Documentation
|
|
10539
|
+
Documentation in v1.2.4
|
|
10096
10540
|
</span>
|
|
10097
10541
|
</a>
|
|
10098
10542
|
|
|
10099
10543
|
</li>
|
|
10100
10544
|
|
|
10101
10545
|
<li class="md-nav__item">
|
|
10102
|
-
<a href="#
|
|
10546
|
+
<a href="#housekeeping-in-v124" class="md-nav__link">
|
|
10103
10547
|
<span class="md-ellipsis">
|
|
10104
|
-
Housekeeping
|
|
10548
|
+
Housekeeping in v1.2.4
|
|
10105
10549
|
</span>
|
|
10106
10550
|
</a>
|
|
10107
10551
|
|
|
@@ -10123,27 +10567,27 @@
|
|
|
10123
10567
|
<ul class="md-nav__list">
|
|
10124
10568
|
|
|
10125
10569
|
<li class="md-nav__item">
|
|
10126
|
-
<a href="#
|
|
10570
|
+
<a href="#security-in-v123" class="md-nav__link">
|
|
10127
10571
|
<span class="md-ellipsis">
|
|
10128
|
-
Security
|
|
10572
|
+
Security in v1.2.3
|
|
10129
10573
|
</span>
|
|
10130
10574
|
</a>
|
|
10131
10575
|
|
|
10132
10576
|
</li>
|
|
10133
10577
|
|
|
10134
10578
|
<li class="md-nav__item">
|
|
10135
|
-
<a href="#
|
|
10579
|
+
<a href="#fixed-in-v123" class="md-nav__link">
|
|
10136
10580
|
<span class="md-ellipsis">
|
|
10137
|
-
Fixed
|
|
10581
|
+
Fixed in v1.2.3
|
|
10138
10582
|
</span>
|
|
10139
10583
|
</a>
|
|
10140
10584
|
|
|
10141
10585
|
</li>
|
|
10142
10586
|
|
|
10143
10587
|
<li class="md-nav__item">
|
|
10144
|
-
<a href="#
|
|
10588
|
+
<a href="#documentation-in-v123" class="md-nav__link">
|
|
10145
10589
|
<span class="md-ellipsis">
|
|
10146
|
-
Documentation
|
|
10590
|
+
Documentation in v1.2.3
|
|
10147
10591
|
</span>
|
|
10148
10592
|
</a>
|
|
10149
10593
|
|
|
@@ -10165,36 +10609,36 @@
|
|
|
10165
10609
|
<ul class="md-nav__list">
|
|
10166
10610
|
|
|
10167
10611
|
<li class="md-nav__item">
|
|
10168
|
-
<a href="#
|
|
10612
|
+
<a href="#added-in-v122" class="md-nav__link">
|
|
10169
10613
|
<span class="md-ellipsis">
|
|
10170
|
-
Added
|
|
10614
|
+
Added in v1.2.2
|
|
10171
10615
|
</span>
|
|
10172
10616
|
</a>
|
|
10173
10617
|
|
|
10174
10618
|
</li>
|
|
10175
10619
|
|
|
10176
10620
|
<li class="md-nav__item">
|
|
10177
|
-
<a href="#
|
|
10621
|
+
<a href="#changed-in-v122" class="md-nav__link">
|
|
10178
10622
|
<span class="md-ellipsis">
|
|
10179
|
-
Changed
|
|
10623
|
+
Changed in v1.2.2
|
|
10180
10624
|
</span>
|
|
10181
10625
|
</a>
|
|
10182
10626
|
|
|
10183
10627
|
</li>
|
|
10184
10628
|
|
|
10185
10629
|
<li class="md-nav__item">
|
|
10186
|
-
<a href="#
|
|
10630
|
+
<a href="#fixed-in-v122" class="md-nav__link">
|
|
10187
10631
|
<span class="md-ellipsis">
|
|
10188
|
-
Fixed
|
|
10632
|
+
Fixed in v1.2.2
|
|
10189
10633
|
</span>
|
|
10190
10634
|
</a>
|
|
10191
10635
|
|
|
10192
10636
|
</li>
|
|
10193
10637
|
|
|
10194
10638
|
<li class="md-nav__item">
|
|
10195
|
-
<a href="#
|
|
10639
|
+
<a href="#documentation-in-v122" class="md-nav__link">
|
|
10196
10640
|
<span class="md-ellipsis">
|
|
10197
|
-
Documentation
|
|
10641
|
+
Documentation in v1.2.2
|
|
10198
10642
|
</span>
|
|
10199
10643
|
</a>
|
|
10200
10644
|
|
|
@@ -10216,36 +10660,36 @@
|
|
|
10216
10660
|
<ul class="md-nav__list">
|
|
10217
10661
|
|
|
10218
10662
|
<li class="md-nav__item">
|
|
10219
|
-
<a href="#
|
|
10663
|
+
<a href="#security-in-v121" class="md-nav__link">
|
|
10220
10664
|
<span class="md-ellipsis">
|
|
10221
|
-
Security
|
|
10665
|
+
Security in v1.2.1
|
|
10222
10666
|
</span>
|
|
10223
10667
|
</a>
|
|
10224
10668
|
|
|
10225
10669
|
</li>
|
|
10226
10670
|
|
|
10227
10671
|
<li class="md-nav__item">
|
|
10228
|
-
<a href="#
|
|
10672
|
+
<a href="#added-in-v121" class="md-nav__link">
|
|
10229
10673
|
<span class="md-ellipsis">
|
|
10230
|
-
Added
|
|
10674
|
+
Added in v1.2.1
|
|
10231
10675
|
</span>
|
|
10232
10676
|
</a>
|
|
10233
10677
|
|
|
10234
10678
|
</li>
|
|
10235
10679
|
|
|
10236
10680
|
<li class="md-nav__item">
|
|
10237
|
-
<a href="#
|
|
10681
|
+
<a href="#changed-in-v121" class="md-nav__link">
|
|
10238
10682
|
<span class="md-ellipsis">
|
|
10239
|
-
Changed
|
|
10683
|
+
Changed in v1.2.1
|
|
10240
10684
|
</span>
|
|
10241
10685
|
</a>
|
|
10242
10686
|
|
|
10243
10687
|
</li>
|
|
10244
10688
|
|
|
10245
10689
|
<li class="md-nav__item">
|
|
10246
|
-
<a href="#
|
|
10690
|
+
<a href="#fixed-in-v121" class="md-nav__link">
|
|
10247
10691
|
<span class="md-ellipsis">
|
|
10248
|
-
Fixed
|
|
10692
|
+
Fixed in v1.2.1
|
|
10249
10693
|
</span>
|
|
10250
10694
|
</a>
|
|
10251
10695
|
|
|
@@ -10267,54 +10711,54 @@
|
|
|
10267
10711
|
<ul class="md-nav__list">
|
|
10268
10712
|
|
|
10269
10713
|
<li class="md-nav__item">
|
|
10270
|
-
<a href="#
|
|
10714
|
+
<a href="#added-in-v120" class="md-nav__link">
|
|
10271
10715
|
<span class="md-ellipsis">
|
|
10272
|
-
Added
|
|
10716
|
+
Added in v1.2.0
|
|
10273
10717
|
</span>
|
|
10274
10718
|
</a>
|
|
10275
10719
|
|
|
10276
10720
|
</li>
|
|
10277
10721
|
|
|
10278
10722
|
<li class="md-nav__item">
|
|
10279
|
-
<a href="#
|
|
10723
|
+
<a href="#changed-in-v120" class="md-nav__link">
|
|
10280
10724
|
<span class="md-ellipsis">
|
|
10281
|
-
Changed
|
|
10725
|
+
Changed in v1.2.0
|
|
10282
10726
|
</span>
|
|
10283
10727
|
</a>
|
|
10284
10728
|
|
|
10285
10729
|
</li>
|
|
10286
10730
|
|
|
10287
10731
|
<li class="md-nav__item">
|
|
10288
|
-
<a href="#removed" class="md-nav__link">
|
|
10732
|
+
<a href="#removed-in-v120" class="md-nav__link">
|
|
10289
10733
|
<span class="md-ellipsis">
|
|
10290
|
-
Removed
|
|
10734
|
+
Removed in v1.2.0
|
|
10291
10735
|
</span>
|
|
10292
10736
|
</a>
|
|
10293
10737
|
|
|
10294
10738
|
</li>
|
|
10295
10739
|
|
|
10296
10740
|
<li class="md-nav__item">
|
|
10297
|
-
<a href="#
|
|
10741
|
+
<a href="#fixed-in-v120" class="md-nav__link">
|
|
10298
10742
|
<span class="md-ellipsis">
|
|
10299
|
-
Fixed
|
|
10743
|
+
Fixed in v1.2.0
|
|
10300
10744
|
</span>
|
|
10301
10745
|
</a>
|
|
10302
10746
|
|
|
10303
10747
|
</li>
|
|
10304
10748
|
|
|
10305
10749
|
<li class="md-nav__item">
|
|
10306
|
-
<a href="#
|
|
10750
|
+
<a href="#dependencies-in-v120" class="md-nav__link">
|
|
10307
10751
|
<span class="md-ellipsis">
|
|
10308
|
-
Dependencies
|
|
10752
|
+
Dependencies in v1.2.0
|
|
10309
10753
|
</span>
|
|
10310
10754
|
</a>
|
|
10311
10755
|
|
|
10312
10756
|
</li>
|
|
10313
10757
|
|
|
10314
10758
|
<li class="md-nav__item">
|
|
10315
|
-
<a href="#
|
|
10759
|
+
<a href="#documentation-in-v120" class="md-nav__link">
|
|
10316
10760
|
<span class="md-ellipsis">
|
|
10317
|
-
Documentation
|
|
10761
|
+
Documentation in v1.2.0
|
|
10318
10762
|
</span>
|
|
10319
10763
|
</a>
|
|
10320
10764
|
|
|
@@ -10336,54 +10780,54 @@
|
|
|
10336
10780
|
<ul class="md-nav__list">
|
|
10337
10781
|
|
|
10338
10782
|
<li class="md-nav__item">
|
|
10339
|
-
<a href="#
|
|
10783
|
+
<a href="#security-in-v120b1" class="md-nav__link">
|
|
10340
10784
|
<span class="md-ellipsis">
|
|
10341
|
-
Security
|
|
10785
|
+
Security in v1.2.0b1
|
|
10342
10786
|
</span>
|
|
10343
10787
|
</a>
|
|
10344
10788
|
|
|
10345
10789
|
</li>
|
|
10346
10790
|
|
|
10347
10791
|
<li class="md-nav__item">
|
|
10348
|
-
<a href="#
|
|
10792
|
+
<a href="#added-in-v120b1" class="md-nav__link">
|
|
10349
10793
|
<span class="md-ellipsis">
|
|
10350
|
-
Added
|
|
10794
|
+
Added in v1.2.0b1
|
|
10351
10795
|
</span>
|
|
10352
10796
|
</a>
|
|
10353
10797
|
|
|
10354
10798
|
</li>
|
|
10355
10799
|
|
|
10356
10800
|
<li class="md-nav__item">
|
|
10357
|
-
<a href="#
|
|
10801
|
+
<a href="#changed-in-v120b1" class="md-nav__link">
|
|
10358
10802
|
<span class="md-ellipsis">
|
|
10359
|
-
Changed
|
|
10803
|
+
Changed in v1.2.0b1
|
|
10360
10804
|
</span>
|
|
10361
10805
|
</a>
|
|
10362
10806
|
|
|
10363
10807
|
</li>
|
|
10364
10808
|
|
|
10365
10809
|
<li class="md-nav__item">
|
|
10366
|
-
<a href="#
|
|
10810
|
+
<a href="#fixed-in-v120b1" class="md-nav__link">
|
|
10367
10811
|
<span class="md-ellipsis">
|
|
10368
|
-
Fixed
|
|
10812
|
+
Fixed in v1.2.0b1
|
|
10369
10813
|
</span>
|
|
10370
10814
|
</a>
|
|
10371
10815
|
|
|
10372
10816
|
</li>
|
|
10373
10817
|
|
|
10374
10818
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
10819
|
+
<a href="#documentation-in-v120b1" class="md-nav__link">
|
|
10376
10820
|
<span class="md-ellipsis">
|
|
10377
|
-
Documentation
|
|
10821
|
+
Documentation in v1.2.0b1
|
|
10378
10822
|
</span>
|
|
10379
10823
|
</a>
|
|
10380
10824
|
|
|
10381
10825
|
</li>
|
|
10382
10826
|
|
|
10383
10827
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10828
|
+
<a href="#housekeeping-in-v120b1" class="md-nav__link">
|
|
10385
10829
|
<span class="md-ellipsis">
|
|
10386
|
-
Housekeeping
|
|
10830
|
+
Housekeeping in v1.2.0b1
|
|
10387
10831
|
</span>
|
|
10388
10832
|
</a>
|
|
10389
10833
|
|
|
@@ -10412,7 +10856,6 @@
|
|
|
10412
10856
|
|
|
10413
10857
|
|
|
10414
10858
|
|
|
10415
|
-
<!-- markdownlint-disable MD024 -->
|
|
10416
10859
|
<h1 id="nautobot-v12">Nautobot v1.2<a class="headerlink" href="#nautobot-v12" title="Permanent link">¶</a></h1>
|
|
10417
10860
|
<p>This document describes all new features and changes in Nautobot 1.2.</p>
|
|
10418
10861
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -10500,51 +10943,51 @@
|
|
|
10500
10943
|
<p>All models that have <code>slug</code> fields now use <code>AutoSlugField</code> from the <code>django-extensions</code> package. This means that when creating a record via the REST API, CSV import, or direct ORM Python calls, the <code>slug</code> field is now fully optional; if unspecified, it will be automatically assigned a unique value, just as how a <code>slug</code> is auto-populated in the UI when creating a new record.</p>
|
|
10501
10944
|
<p>Just as with the UI, the <code>slug</code> can still always be explicitly set if desired.</p>
|
|
10502
10945
|
<h2 id="v1211-2022-04-04">v1.2.11 (2022-04-04)<a class="headerlink" href="#v1211-2022-04-04" title="Permanent link">¶</a></h2>
|
|
10503
|
-
<h3 id="
|
|
10946
|
+
<h3 id="added-in-v1211">Added in v1.2.11<a class="headerlink" href="#added-in-v1211" title="Permanent link">¶</a></h3>
|
|
10504
10947
|
<ul>
|
|
10505
10948
|
<li><a href="https://github.com/nautobot/nautobot/issues/1123">#1123</a> - Add validation for IPAddress <code>assigned_object_type</code> and <code>assigned_object_id</code>.</li>
|
|
10506
10949
|
<li><a href="https://github.com/nautobot/nautobot/issues/1146">#1146</a> - Added change date filtering lookup expressions to GraphQL.</li>
|
|
10507
10950
|
<li><a href="https://github.com/nautobot/nautobot/issues/1495">#1495</a> - Added full coverage of cable termination types to Graphene.</li>
|
|
10508
10951
|
<li><a href="https://github.com/nautobot/nautobot/issues/1501">#1501</a> - Add IP field to CSV export of device.</li>
|
|
10509
10952
|
</ul>
|
|
10510
|
-
<h3 id="
|
|
10953
|
+
<h3 id="changed-in-v1211">Changed in v1.2.11<a class="headerlink" href="#changed-in-v1211" title="Permanent link">¶</a></h3>
|
|
10511
10954
|
<ul>
|
|
10512
10955
|
<li><a href="https://github.com/nautobot/nautobot/pull/1536">#1536</a> - Removed the ServiceUnavailable exception when no <code>primary_ip</code> is available for a device, but other connection options are available.</li>
|
|
10513
10956
|
<li><a href="https://github.com/nautobot/nautobot/issues/1581">#1581</a> - Changed MultipleChoiceJSONField to accept choices as a callable, fixing Datasource Contents provided by plugins are not accepted as valid choice by REST API.</li>
|
|
10514
10957
|
</ul>
|
|
10515
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10958
|
+
<h3 id="fixed-in-v1211">Fixed in v1.2.11<a class="headerlink" href="#fixed-in-v1211" title="Permanent link">¶</a></h3>
|
|
10516
10959
|
<ul>
|
|
10517
10960
|
<li><a href="https://github.com/nautobot/nautobot/issues/1313">#1313</a> - Fixed GraphQL query error on OneToOneFields such as <code>IPAddress.primary_ip4_for</code></li>
|
|
10518
10961
|
<li><a href="https://github.com/nautobot/nautobot/issues/1408">#1408</a> - Fixed incorrect HTML in the Devices detail views.</li>
|
|
10519
10962
|
<li><a href="https://github.com/nautobot/nautobot/issues/1467">#1467</a> - Fixed an issue where at certain browser widths the nav bar would cover the top of the page content.</li>
|
|
10520
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/1523">#1523</a> - Fixed primary IP being unset after creating/updating different interface</li>
|
|
10521
10964
|
</ul>
|
|
10522
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10965
|
+
<h3 id="documentation-in-v1211">Documentation in v1.2.11<a class="headerlink" href="#documentation-in-v1211" title="Permanent link">¶</a></h3>
|
|
10523
10966
|
<ul>
|
|
10524
10967
|
<li><a href="https://github.com/nautobot/nautobot/pull/1529">#1529</a> - Added list of standard hex colors to the Tags documentation.</li>
|
|
10525
10968
|
<li><a href="https://github.com/nautobot/nautobot/issues/1583">#1583</a> - Fixed Nautobot service definition in PostgreSQL-backed development environment.</li>
|
|
10526
10969
|
<li><a href="https://github.com/nautobot/nautobot/issues/1584">#1584</a> - Replaced links in docs to celeryproject.org with celeryq.dev</li>
|
|
10527
10970
|
</ul>
|
|
10528
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10971
|
+
<h3 id="housekeeping-in-v1211">Housekeeping in v1.2.11<a class="headerlink" href="#housekeeping-in-v1211" title="Permanent link">¶</a></h3>
|
|
10529
10972
|
<ul>
|
|
10530
10973
|
<li><a href="https://github.com/nautobot/nautobot/issues/1548">#1548</a> - Pin Jinja2 version for mkdocs requirements to fix RTD docs builds related to API deprecation in Jinja2 >= 3.1.0</li>
|
|
10531
10974
|
<li><a href="https://github.com/nautobot/nautobot/pull/1599">#1599</a> - Bump mkdocs version for Snyk report.</li>
|
|
10532
10975
|
</ul>
|
|
10533
10976
|
<h2 id="v1210-2022-03-21">v1.2.10 (2022-03-21)<a class="headerlink" href="#v1210-2022-03-21" title="Permanent link">¶</a></h2>
|
|
10534
|
-
<h3 id="
|
|
10977
|
+
<h3 id="documentation-in-v1210">Documentation in v1.2.10<a class="headerlink" href="#documentation-in-v1210" title="Permanent link">¶</a></h3>
|
|
10535
10978
|
<ul>
|
|
10536
10979
|
<li><a href="https://github.com/nautobot/nautobot/pull/1492">#1492</a> - Added note in the Jobs documentation about the use of <code>AbortTransaction</code> to end the job and force rollback.</li>
|
|
10537
10980
|
<li><a href="https://github.com/nautobot/nautobot/issues/1511">#1511</a> - Fixed left column of Read The Docs being cut off.</li>
|
|
10538
10981
|
<li><a href="https://github.com/nautobot/nautobot/pull/1517">#1517</a> - Added password filtering example to advanced logging section in docs.</li>
|
|
10539
10982
|
<li><a href="https://github.com/nautobot/nautobot/pull/1522">#1522</a> - Fixed link name attribute name in developer docs.</li>
|
|
10540
10983
|
</ul>
|
|
10541
|
-
<h3 id="
|
|
10984
|
+
<h3 id="housekeeping-in-v1210">Housekeeping in v1.2.10<a class="headerlink" href="#housekeeping-in-v1210" title="Permanent link">¶</a></h3>
|
|
10542
10985
|
<ul>
|
|
10543
10986
|
<li><a href="https://github.com/nautobot/nautobot/pull/1514">#1514</a> - Simplified switching between PostgreSQL and MySQL database backends in the developer environment.</li>
|
|
10544
10987
|
<li><a href="https://github.com/nautobot/nautobot/pull/1518">#1518</a> - Updated GitHub Pull Request template to include detail section, todo list.</li>
|
|
10545
10988
|
</ul>
|
|
10546
10989
|
<h2 id="v129-2022-03-14">v1.2.9 (2022-03-14)<a class="headerlink" href="#v129-2022-03-14" title="Permanent link">¶</a></h2>
|
|
10547
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10990
|
+
<h3 id="security-in-v129">Security in v1.2.9<a class="headerlink" href="#security-in-v129" title="Permanent link">¶</a></h3>
|
|
10548
10991
|
<div class="admonition danger">
|
|
10549
10992
|
<p class="admonition-title">Danger</p>
|
|
10550
10993
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -10556,23 +10999,23 @@
|
|
|
10556
10999
|
<ul>
|
|
10557
11000
|
<li><a href="https://github.com/nautobot/nautobot/issues/1487">#1487</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a>, <a href="https://github.com/advisories/GHSA-9j59-75qj-795w">CVE-2022-24303</a>, and <a href="https://github.com/advisories/GHSA-4fx9-vc88-q2xc">potential infinite loop</a> by requiring Pillow >=9.0.1 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
10558
11001
|
</ul>
|
|
10559
|
-
<h3 id="
|
|
11002
|
+
<h3 id="fixed-in-v129">Fixed in v1.2.9<a class="headerlink" href="#fixed-in-v129" title="Permanent link">¶</a></h3>
|
|
10560
11003
|
<ul>
|
|
10561
11004
|
<li><a href="https://github.com/nautobot/nautobot/issues/1431">#1431</a> - Fixed potential failure of <code>extras.0017_joblog_data_migration</code> migration when the job logs contain messages mistakenly logged as object references.</li>
|
|
10562
11005
|
<li><a href="https://github.com/nautobot/nautobot/issues/1459">#1459</a> - Fixed incorrect display of related devices and VMs in the Cluster Type and Cluster Group detail views.</li>
|
|
10563
11006
|
<li><a href="https://github.com/nautobot/nautobot/issues/1469">#1469</a> - Fixed incorrect CSV export for devices</li>
|
|
10564
11007
|
</ul>
|
|
10565
11008
|
<h2 id="v128-2022-03-07">v1.2.8 (2022-03-07)<a class="headerlink" href="#v128-2022-03-07" title="Permanent link">¶</a></h2>
|
|
10566
|
-
<h3 id="
|
|
11009
|
+
<h3 id="added-in-v128">Added in v1.2.8<a class="headerlink" href="#added-in-v128" title="Permanent link">¶</a></h3>
|
|
10567
11010
|
<ul>
|
|
10568
11011
|
<li><a href="https://github.com/nautobot/nautobot/issues/1242">#1242</a> - Add MAJOR.MINOR tags to Docker images upon release.</li>
|
|
10569
11012
|
<li><a href="https://github.com/nautobot/nautobot/pull/1446">#1446</a> - Apply title labels to Docker images.</li>
|
|
10570
11013
|
</ul>
|
|
10571
|
-
<h3 id="
|
|
11014
|
+
<h3 id="changed-in-v128">Changed in v1.2.8<a class="headerlink" href="#changed-in-v128" title="Permanent link">¶</a></h3>
|
|
10572
11015
|
<ul>
|
|
10573
11016
|
<li><a href="https://github.com/nautobot/nautobot/pull/1452">#1452</a> - Changed GitHub release workflow to not run on prerelease releases.</li>
|
|
10574
11017
|
</ul>
|
|
10575
|
-
<h3 id="
|
|
11018
|
+
<h3 id="fixed-in-v128">Fixed in v1.2.8<a class="headerlink" href="#fixed-in-v128" title="Permanent link">¶</a></h3>
|
|
10576
11019
|
<ul>
|
|
10577
11020
|
<li><a href="https://github.com/nautobot/nautobot/issues/1301">#1301</a> - Fixed window history handling for views with tabs in Safari/Firefox.</li>
|
|
10578
11021
|
<li><a href="https://github.com/nautobot/nautobot/issues/1302">#1302</a> - Fixed missing Advanced tab on Virtual Machine detail view.</li>
|
|
@@ -10582,15 +11025,15 @@
|
|
|
10582
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/1412">#1412</a> - Fixed not being able to query for prefix family via GraphQL.</li>
|
|
10583
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/1442">#1442</a> - Fixed missing Advanced tab on Job Result, Git Repository, and Config Context Schema detail views.</li>
|
|
10584
11027
|
</ul>
|
|
10585
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11028
|
+
<h3 id="dependencies-in-v128">Dependencies in v1.2.8<a class="headerlink" href="#dependencies-in-v128" title="Permanent link">¶</a></h3>
|
|
10586
11029
|
<ul>
|
|
10587
11030
|
<li><a href="https://github.com/nautobot/nautobot/issues/1432">#1432</a> - Update django-redis to <code>5.2.x</code> to address <code>5.1.x</code> blocking redis <code>4.x</code> versions.</li>
|
|
10588
11031
|
</ul>
|
|
10589
|
-
<h3 id="
|
|
11032
|
+
<h3 id="documentation-in-v128">Documentation in v1.2.8<a class="headerlink" href="#documentation-in-v128" title="Permanent link">¶</a></h3>
|
|
10590
11033
|
<ul>
|
|
10591
11034
|
<li><a href="https://github.com/nautobot/nautobot/pull/1419">#1419</a> - Add documentation for specifying a CA cert file for LDAP authentication backend.</li>
|
|
10592
11035
|
</ul>
|
|
10593
|
-
<h3 id="
|
|
11036
|
+
<h3 id="housekeeping-in-v128">Housekeeping in v1.2.8<a class="headerlink" href="#housekeeping-in-v128" title="Permanent link">¶</a></h3>
|
|
10594
11037
|
<ul>
|
|
10595
11038
|
<li><a href="https://github.com/nautobot/nautobot/issues/839">#839</a> - Add CODE_OF_CONDUCT.md to repository.</li>
|
|
10596
11039
|
<li><a href="https://github.com/nautobot/nautobot/pull/1299">#1299</a> - Add SECURITY.md to repository.</li>
|
|
@@ -10600,17 +11043,17 @@
|
|
|
10600
11043
|
<li><a href="https://github.com/nautobot/nautobot/pull/1453">#1453</a> - Changed feature request to use GitHub Issue Form.</li>
|
|
10601
11044
|
</ul>
|
|
10602
11045
|
<h2 id="v127-2022-02-22">v1.2.7 (2022-02-22)<a class="headerlink" href="#v127-2022-02-22" title="Permanent link">¶</a></h2>
|
|
10603
|
-
<h3 id="
|
|
11046
|
+
<h3 id="housekeeping-in-v127">Housekeeping in v1.2.7<a class="headerlink" href="#housekeeping-in-v127" title="Permanent link">¶</a></h3>
|
|
10604
11047
|
<ul>
|
|
10605
11048
|
<li><a href="https://github.com/nautobot/nautobot/issues/1403">#1403</a> - Changes the GitHub Action on Release version template variable name.</li>
|
|
10606
11049
|
</ul>
|
|
10607
11050
|
<h2 id="v126-2022-02-22">v1.2.6 (2022-02-22)<a class="headerlink" href="#v126-2022-02-22" title="Permanent link">¶</a></h2>
|
|
10608
|
-
<h3 id="
|
|
11051
|
+
<h3 id="added-in-v126">Added in v1.2.6<a class="headerlink" href="#added-in-v126" title="Permanent link">¶</a></h3>
|
|
10609
11052
|
<ul>
|
|
10610
11053
|
<li><a href="https://github.com/nautobot/nautobot/issues/1279">#1279</a> - Circuit terminations now render custom relationships on the circuit detail page.</li>
|
|
10611
11054
|
<li><a href="https://github.com/nautobot/nautobot/issues/1353">#1353</a> - Added UI for deleting previously uploaded images when editing a DeviceType.</li>
|
|
10612
11055
|
</ul>
|
|
10613
|
-
<h3 id="
|
|
11056
|
+
<h3 id="fixed-in-v126">Fixed in v1.2.6<a class="headerlink" href="#fixed-in-v126" title="Permanent link">¶</a></h3>
|
|
10614
11057
|
<ul>
|
|
10615
11058
|
<li><a href="https://github.com/nautobot/nautobot/issues/1249">#1249</a> - Fixed a timing issue where after creating a custom field with a default value and immediately assigning values to this custom field on individual objects, the custom field values could be automatically reverted to the default value.</li>
|
|
10616
11059
|
<li><a href="https://github.com/nautobot/nautobot/pull/1280">#1280</a> - Added missing <code>get_absolute_url</code> method to the <code>CircuitTermination</code> model, fixing a UI error that could occur when relationships involve CircuitTerminations.</li>
|
|
@@ -10619,23 +11062,23 @@
|
|
|
10619
11062
|
<li><a href="https://github.com/nautobot/nautobot/issues/1335">#1335</a> - Fixed an issue with the Secret create/edit form that caused problems when defining AWS secrets using the <code>nautobot-secrets-providers</code> plugin.</li>
|
|
10620
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/1346">#1346</a> - Fixed an error in the periodic execution of Celery's built-in <code>celery.backend_cleanup</code> task.</li>
|
|
10621
11064
|
</ul>
|
|
10622
|
-
<h3 id="
|
|
11065
|
+
<h3 id="dependencies-in-v126">Dependencies in v1.2.6<a class="headerlink" href="#dependencies-in-v126" title="Permanent link">¶</a></h3>
|
|
10623
11066
|
<ul>
|
|
10624
11067
|
<li><a href="https://github.com/nautobot/nautobot/issues/1390">#1390</a> - Pinned transitive dependency <code>MarkupSafe</code> to version 2.0.1 as later versions are incompatible with Nautobot's current <code>Jinja2</code> dependency.</li>
|
|
10625
11068
|
</ul>
|
|
10626
|
-
<h3 id="
|
|
11069
|
+
<h3 id="documentation-in-v126">Documentation in v1.2.6<a class="headerlink" href="#documentation-in-v126" title="Permanent link">¶</a></h3>
|
|
10627
11070
|
<ul>
|
|
10628
11071
|
<li><a href="https://github.com/nautobot/nautobot/pull/1283">#1283</a> - Update Sentinel docs to have 3 hosts (minimum per Redis docs), and change <code>CELERY_BROKER_URL</code> to a multiline string instead of a Tuple (tuple is invalid, and raises an exception when job completes).</li>
|
|
10629
11072
|
<li><a href="https://github.com/nautobot/nautobot/pull/1328">#1328</a> - Fixed an error in the <a href="../user-guide/platform-functionality/jobs/index.html#jobs-and-class_path">Job class-path documentation</a>.</li>
|
|
10630
11073
|
<li><a href="https://github.com/nautobot/nautobot/issues/1386">#1386</a> - Updated release schedule in docs for patch releases, now every two weeks.</li>
|
|
10631
11074
|
</ul>
|
|
10632
|
-
<h3 id="
|
|
11075
|
+
<h3 id="housekeeping-in-v126">Housekeeping in v1.2.6<a class="headerlink" href="#housekeeping-in-v126" title="Permanent link">¶</a></h3>
|
|
10633
11076
|
<ul>
|
|
10634
11077
|
<li><a href="https://github.com/nautobot/nautobot/pull/1327">#1327</a> - Fixes the broken dependencies from the Release action.</li>
|
|
10635
11078
|
<li><a href="https://github.com/nautobot/nautobot/issues/1360">#1360</a> - Fixed an issue in the development environment that could cause Selenium integration tests to error out.</li>
|
|
10636
11079
|
</ul>
|
|
10637
11080
|
<h2 id="v125-2022-02-02">v1.2.5 (2022-02-02)<a class="headerlink" href="#v125-2022-02-02" title="Permanent link">¶</a></h2>
|
|
10638
|
-
<h3 id="
|
|
11081
|
+
<h3 id="fixed-in-v125">Fixed in v1.2.5<a class="headerlink" href="#fixed-in-v125" title="Permanent link">¶</a></h3>
|
|
10639
11082
|
<ul>
|
|
10640
11083
|
<li><a href="https://github.com/nautobot/nautobot/issues/371">#371</a> - Fixed a server error that could occur when importing cables via CSV.</li>
|
|
10641
11084
|
<li><a href="https://github.com/nautobot/nautobot/issues/1161">#1161</a> - The <code>description</code> field for device component templates is now correctly propagated to device components created from these templates.</li>
|
|
@@ -10643,16 +11086,16 @@
|
|
|
10643
11086
|
<li><a href="https://github.com/nautobot/nautobot/issues/1282">#1282</a> - Fixed a server error when editing User accounts.</li>
|
|
10644
11087
|
<li><a href="https://github.com/nautobot/nautobot/pull/1308">#1308</a> - Fixed another server error that could occur when importing cables via CSV.</li>
|
|
10645
11088
|
</ul>
|
|
10646
|
-
<h3 id="
|
|
11089
|
+
<h3 id="documentation-in-v125">Documentation in v1.2.5<a class="headerlink" href="#documentation-in-v125" title="Permanent link">¶</a></h3>
|
|
10647
11090
|
<ul>
|
|
10648
11091
|
<li><a href="https://github.com/nautobot/nautobot/pull/1293">#1293</a> - Reorganized the developer documents somewhat to reduce duplication of information, added diagrams for issue intake process.</li>
|
|
10649
11092
|
</ul>
|
|
10650
|
-
<h3 id="
|
|
11093
|
+
<h3 id="housekeeping-in-v125">Housekeeping in v1.2.5<a class="headerlink" href="#housekeeping-in-v125" title="Permanent link">¶</a></h3>
|
|
10651
11094
|
<ul>
|
|
10652
11095
|
<li><a href="https://github.com/nautobot/nautobot/pull/1272">#1272</a> - Fixed GitHub Actions syntax and Slack payload for <code>release</code> CI workflow</li>
|
|
10653
11096
|
</ul>
|
|
10654
11097
|
<h2 id="v124-2022-01-13">v1.2.4 (2022-01-13)<a class="headerlink" href="#v124-2022-01-13" title="Permanent link">¶</a></h2>
|
|
10655
|
-
<h3 id="
|
|
11098
|
+
<h3 id="security-in-v124">Security in v1.2.4<a class="headerlink" href="#security-in-v124" title="Permanent link">¶</a></h3>
|
|
10656
11099
|
<div class="admonition danger">
|
|
10657
11100
|
<p class="admonition-title">Danger</p>
|
|
10658
11101
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -10664,27 +11107,27 @@
|
|
|
10664
11107
|
<ul>
|
|
10665
11108
|
<li><a href="https://github.com/nautobot/nautobot/issues/1267">#1267</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22815</a>, <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22816</a>, and <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a> to require Pillow >=9.0.0 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
10666
11109
|
</ul>
|
|
10667
|
-
<h3 id="
|
|
11110
|
+
<h3 id="changed-in-v124">Changed in v1.2.4<a class="headerlink" href="#changed-in-v124" title="Permanent link">¶</a></h3>
|
|
10668
11111
|
<ul>
|
|
10669
11112
|
<li><a href="https://github.com/nautobot/nautobot/issues/616">#616</a> - The REST API now no longer permits setting non-string values for text-type custom fields.</li>
|
|
10670
11113
|
</ul>
|
|
10671
|
-
<h3 id="
|
|
11114
|
+
<h3 id="fixed-in-v124">Fixed in v1.2.4<a class="headerlink" href="#fixed-in-v124" title="Permanent link">¶</a></h3>
|
|
10672
11115
|
<ul>
|
|
10673
11116
|
<li><a href="https://github.com/nautobot/nautobot/issues/1053">#1053</a> - Fixed error when removing an IP address from an interface when it was previously the parent device's primary IP.</li>
|
|
10674
11117
|
<li><a href="https://github.com/nautobot/nautobot/issues/1140">#1140</a> - Fixed incorrect UI widgets in the updated Admin UI.</li>
|
|
10675
11118
|
<li><a href="https://github.com/nautobot/nautobot/issues/1253">#1253</a> - Fixed missing code that prevented switching between tabs in the device-type detail view.</li>
|
|
10676
11119
|
</ul>
|
|
10677
|
-
<h3 id="
|
|
11120
|
+
<h3 id="documentation-in-v124">Documentation in v1.2.4<a class="headerlink" href="#documentation-in-v124" title="Permanent link">¶</a></h3>
|
|
10678
11121
|
<ul>
|
|
10679
11122
|
<li><a href="https://github.com/nautobot/nautobot/issues/1113">#1113</a> - Added <a href="../user-guide/administration/configuration/redis.html#high-availability-using-redis-sentinel">documentation</a> about using Redis Sentinel with Nautobot.</li>
|
|
10680
11123
|
</ul>
|
|
10681
|
-
<h3 id="
|
|
11124
|
+
<h3 id="housekeeping-in-v124">Housekeeping in v1.2.4<a class="headerlink" href="#housekeeping-in-v124" title="Permanent link">¶</a></h3>
|
|
10682
11125
|
<ul>
|
|
10683
11126
|
<li><a href="https://github.com/nautobot/nautobot/pull/1251">#1251</a> - Added <code>workflow_call</code> to the GitHub Actions CI workflow so that it may be called by other GHA workflows.</li>
|
|
10684
11127
|
<li><a href="https://github.com/nautobot/nautobot/pull/1243">#1243</a> - Github CI action no longer runs for pull requests that don't impact Nautobot code, such as documentation, examples, etc.</li>
|
|
10685
11128
|
</ul>
|
|
10686
11129
|
<h2 id="v123-2022-01-07">v1.2.3 (2022-01-07)<a class="headerlink" href="#v123-2022-01-07" title="Permanent link">¶</a></h2>
|
|
10687
|
-
<h3 id="
|
|
11130
|
+
<h3 id="security-in-v123">Security in v1.2.3<a class="headerlink" href="#security-in-v123" title="Permanent link">¶</a></h3>
|
|
10688
11131
|
<div class="admonition danger">
|
|
10689
11132
|
<p class="admonition-title">Danger</p>
|
|
10690
11133
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -10696,7 +11139,7 @@
|
|
|
10696
11139
|
<ul>
|
|
10697
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/1238">#1238</a> - Implemented fix for <a href="https://github.com/advisories/GHSA-q4xr-rc97-m4xx">CVE-2021-23727</a> to require Celery >=5.2.2 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
10698
11141
|
</ul>
|
|
10699
|
-
<h3 id="
|
|
11142
|
+
<h3 id="fixed-in-v123">Fixed in v1.2.3<a class="headerlink" href="#fixed-in-v123" title="Permanent link">¶</a></h3>
|
|
10700
11143
|
<ul>
|
|
10701
11144
|
<li><a href="https://github.com/nautobot/nautobot/issues/313">#313</a> - REST API documentation now correctly shows that <code>status</code> is a required field.</li>
|
|
10702
11145
|
<li><a href="https://github.com/nautobot/nautobot/issues/477">#477</a> - Model <code>TextField</code>s are now correctly mapped to <code>MultiValueCharFilter</code> in filter classes.</li>
|
|
@@ -10708,50 +11151,50 @@
|
|
|
10708
11151
|
<li><a href="https://github.com/nautobot/nautobot/pull/1229">#1229</a> - Fixed a template rendering error in the login page.</li>
|
|
10709
11152
|
<li><a href="https://github.com/nautobot/nautobot/issues/1234">#1234</a> - Fixed missing changelog support for Custom Fields.</li>
|
|
10710
11153
|
</ul>
|
|
10711
|
-
<h3 id="
|
|
11154
|
+
<h3 id="documentation-in-v123">Documentation in v1.2.3<a class="headerlink" href="#documentation-in-v123" title="Permanent link">¶</a></h3>
|
|
10712
11155
|
<ul>
|
|
10713
11156
|
<li><a href="https://github.com/nautobot/nautobot/issues/1037">#1037</a> - Added documentation about how to successfully use the <code>nautobot-server dumpdata</code> and <code>nautobot-server loaddata</code> commands.</li>
|
|
10714
11157
|
</ul>
|
|
10715
11158
|
<h2 id="v122-2021-12-27">v1.2.2 (2021-12-27)<a class="headerlink" href="#v122-2021-12-27" title="Permanent link">¶</a></h2>
|
|
10716
|
-
<h3 id="
|
|
11159
|
+
<h3 id="added-in-v122">Added in v1.2.2<a class="headerlink" href="#added-in-v122" title="Permanent link">¶</a></h3>
|
|
10717
11160
|
<ul>
|
|
10718
11161
|
<li><a href="https://github.com/nautobot/nautobot/pull/1152">#1152</a> - Added REST API and GraphQL for <code>JobLogEntry</code> objects.</li>
|
|
10719
11162
|
</ul>
|
|
10720
|
-
<h3 id="
|
|
11163
|
+
<h3 id="changed-in-v122">Changed in v1.2.2<a class="headerlink" href="#changed-in-v122" title="Permanent link">¶</a></h3>
|
|
10721
11164
|
<ul>
|
|
10722
11165
|
<li><a href="https://github.com/nautobot/nautobot/issues/650">#650</a> - Job Results UI now render job log messages immediately</li>
|
|
10723
11166
|
</ul>
|
|
10724
|
-
<h3 id="
|
|
11167
|
+
<h3 id="fixed-in-v122">Fixed in v1.2.2<a class="headerlink" href="#fixed-in-v122" title="Permanent link">¶</a></h3>
|
|
10725
11168
|
<ul>
|
|
10726
11169
|
<li><a href="https://github.com/nautobot/nautobot/pull/1181">#1181</a> - Avoid throwing a 500 error in the case where users have deleted a required Status value. (Preventing the user from doing this will need to be a later fix.)</li>
|
|
10727
11170
|
<li><a href="https://github.com/nautobot/nautobot/issues/1193">#1193</a> - Fixed <code>JobResult</code> page may fail to list <code>JobLogEntries</code> in chronological order</li>
|
|
10728
11171
|
<li><a href="https://github.com/nautobot/nautobot/issues/1195">#1195</a> - Job log entries now again correctly render inline Markdown formatting.</li>
|
|
10729
11172
|
</ul>
|
|
10730
|
-
<h3 id="
|
|
11173
|
+
<h3 id="documentation-in-v122">Documentation in v1.2.2<a class="headerlink" href="#documentation-in-v122" title="Permanent link">¶</a></h3>
|
|
10731
11174
|
<ul>
|
|
10732
11175
|
<li><a href="https://github.com/nautobot/nautobot/pull/1186">#1186</a> - Corrected an error in the docs regarding developing secrets providers in plugins.</li>
|
|
10733
11176
|
<li><a href="https://github.com/nautobot/nautobot/pull/1188">#1188</a> - Corrected some errors in the developer documentation about our branch management approach.</li>
|
|
10734
11177
|
</ul>
|
|
10735
11178
|
<h2 id="v121-2021-12-16">v1.2.1 (2021-12-16)<a class="headerlink" href="#v121-2021-12-16" title="Permanent link">¶</a></h2>
|
|
10736
|
-
<h3 id="
|
|
11179
|
+
<h3 id="security-in-v121">Security in v1.2.1<a class="headerlink" href="#security-in-v121" title="Permanent link">¶</a></h3>
|
|
10737
11180
|
<ul>
|
|
10738
11181
|
<li><a href="https://github.com/nautobot/nautobot/issues/1077">#1077</a> - Updated <code>graphiql</code> to 1.5.16 as well as updating the associated Javascript libraries used in the GraphiQL UI to address a reported security flaw in older versions of GraphiQL. To the best of our understanding, the Nautobot implementation of GraphiQL was not vulnerable to said flaw.</li>
|
|
10739
11182
|
</ul>
|
|
10740
|
-
<h3 id="
|
|
11183
|
+
<h3 id="added-in-v121">Added in v1.2.1<a class="headerlink" href="#added-in-v121" title="Permanent link">¶</a></h3>
|
|
10741
11184
|
<ul>
|
|
10742
11185
|
<li><a href="https://github.com/nautobot/nautobot/issues/1110">#1110</a> - Added GraphQL support for the <code>ObjectChange</code> model.</li>
|
|
10743
11186
|
</ul>
|
|
10744
|
-
<h3 id="
|
|
11187
|
+
<h3 id="changed-in-v121">Changed in v1.2.1<a class="headerlink" href="#changed-in-v121" title="Permanent link">¶</a></h3>
|
|
10745
11188
|
<ul>
|
|
10746
11189
|
<li><a href="https://github.com/nautobot/nautobot/issues/1106">#1106</a> - Updating Docker health checks to be more robust and greatly reduce performance impact.</li>
|
|
10747
11190
|
</ul>
|
|
10748
|
-
<h3 id="
|
|
11191
|
+
<h3 id="fixed-in-v121">Fixed in v1.2.1<a class="headerlink" href="#fixed-in-v121" title="Permanent link">¶</a></h3>
|
|
10749
11192
|
<ul>
|
|
10750
11193
|
<li><a href="https://github.com/nautobot/nautobot/pull/1170">#1170</a> - Fixed bug in renamed column of <code>JobResultTable</code> where rename was not made to the <code>Meta</code>.</li>
|
|
10751
11194
|
<li><a href="https://github.com/nautobot/nautobot/issues/1173">#1173</a> - Fixed official Docker image: v1.2.0 tagged images fail to load with <code>ImportError: libxml2.so.2</code>.</li>
|
|
10752
11195
|
</ul>
|
|
10753
11196
|
<h2 id="v120-2021-12-15">v1.2.0 (2021-12-15)<a class="headerlink" href="#v120-2021-12-15" title="Permanent link">¶</a></h2>
|
|
10754
|
-
<h3 id="
|
|
11197
|
+
<h3 id="added-in-v120">Added in v1.2.0<a class="headerlink" href="#added-in-v120" title="Permanent link">¶</a></h3>
|
|
10755
11198
|
<ul>
|
|
10756
11199
|
<li><a href="https://github.com/nautobot/nautobot/issues/876">#876</a> - Added option to apply a validation regex when defining CustomFieldChoices.</li>
|
|
10757
11200
|
<li><a href="https://github.com/nautobot/nautobot/issues/982">#982</a> - Added IPAM custom lookup database functions.</li>
|
|
@@ -10760,16 +11203,16 @@
|
|
|
10760
11203
|
<li><a href="https://github.com/nautobot/nautobot/issues/1082">#1082</a> - Added <code>netutils</code> template filters for both Django and Jinja2 template rendering.</li>
|
|
10761
11204
|
<li><a href="https://github.com/nautobot/nautobot/pull/1159">#1159</a> - Add <code>family</code> field to <code>IPAddressType</code> for GraphQL API enable filtering of <code>IPAddress</code> objects by <code>family</code>.</li>
|
|
10762
11205
|
</ul>
|
|
10763
|
-
<h3 id="
|
|
11206
|
+
<h3 id="changed-in-v120">Changed in v1.2.0<a class="headerlink" href="#changed-in-v120" title="Permanent link">¶</a></h3>
|
|
10764
11207
|
<ul>
|
|
10765
11208
|
<li><a href="https://github.com/nautobot/nautobot/issues/1068">#1068</a> - Docker images now include optional Nautobot dependencies by default.</li>
|
|
10766
11209
|
<li><a href="https://github.com/nautobot/nautobot/issues/1095">#1095</a> - Refined Admin Configuration UI.</li>
|
|
10767
11210
|
</ul>
|
|
10768
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11211
|
+
<h3 id="removed-in-v120">Removed in v1.2.0<a class="headerlink" href="#removed-in-v120" title="Permanent link">¶</a></h3>
|
|
10769
11212
|
<ul>
|
|
10770
11213
|
<li><a href="https://github.com/nautobot/nautobot/issues/1094">#1094</a> - Removed leftover custom field management views from Admin UI</li>
|
|
10771
11214
|
</ul>
|
|
10772
|
-
<h3 id="
|
|
11215
|
+
<h3 id="fixed-in-v120">Fixed in v1.2.0<a class="headerlink" href="#fixed-in-v120" title="Permanent link">¶</a></h3>
|
|
10773
11216
|
<ul>
|
|
10774
11217
|
<li><a href="https://github.com/nautobot/nautobot/issues/453">#453</a> - Fixed potential <code>ValueError</code> when rendering <code>JobResult</code> detail view with non-standard <code>JobResult.data</code> contents.</li>
|
|
10775
11218
|
<li><a href="https://github.com/nautobot/nautobot/issues/864">#864</a> - Fixed inconsistent <code>JobResult</code> detail view page templates.</li>
|
|
@@ -10787,11 +11230,11 @@
|
|
|
10787
11230
|
<li><a href="https://github.com/nautobot/nautobot/issues/1154">#1154</a> - Fixed inability to save changes in Admin Configuration UI.</li>
|
|
10788
11231
|
<li><a href="https://github.com/nautobot/nautobot/issues/1162">#1162</a> - Fixed error when creating a <code>NavMenuItem</code> without specifying the <code>buttons</code> argument.</li>
|
|
10789
11232
|
</ul>
|
|
10790
|
-
<h3 id="
|
|
11233
|
+
<h3 id="dependencies-in-v120">Dependencies in v1.2.0<a class="headerlink" href="#dependencies-in-v120" title="Permanent link">¶</a></h3>
|
|
10791
11234
|
<ul>
|
|
10792
11235
|
<li><a href="https://github.com/nautobot/nautobot/pull/1105">#1105</a> - Reverted minimum Python 3.6 version to 3.6.0 rather than 3.6.2.</li>
|
|
10793
11236
|
</ul>
|
|
10794
|
-
<h3 id="
|
|
11237
|
+
<h3 id="documentation-in-v120">Documentation in v1.2.0<a class="headerlink" href="#documentation-in-v120" title="Permanent link">¶</a></h3>
|
|
10795
11238
|
<ul>
|
|
10796
11239
|
<li><a href="https://github.com/nautobot/nautobot/issues/843">#843</a> - Added more information about Celery in the Upgrading Nautobot docs.</li>
|
|
10797
11240
|
<li><a href="https://github.com/nautobot/nautobot/issues/888">#888</a> - Addressed FIXME comment in LDAP documentation.</li>
|
|
@@ -10803,11 +11246,11 @@
|
|
|
10803
11246
|
<li><a href="https://github.com/nautobot/nautobot/pull/1143">#1143</a> - Added documentation on using LDAP with multiple LDAP servers.</li>
|
|
10804
11247
|
</ul>
|
|
10805
11248
|
<h2 id="v120b1-2021-11-19">v1.2.0b1 (2021-11-19)<a class="headerlink" href="#v120b1-2021-11-19" title="Permanent link">¶</a></h2>
|
|
10806
|
-
<h3 id="
|
|
11249
|
+
<h3 id="security-in-v120b1">Security in v1.2.0b1<a class="headerlink" href="#security-in-v120b1" title="Permanent link">¶</a></h3>
|
|
10807
11250
|
<ul>
|
|
10808
11251
|
<li><a href="https://github.com/nautobot/nautobot/issues/1017">#1017</a> - Custom field descriptions no longer potentially render as arbitrary HTML in object edit forms; Markdown format is now supported as a less dangerous option.</li>
|
|
10809
11252
|
</ul>
|
|
10810
|
-
<h3 id="
|
|
11253
|
+
<h3 id="added-in-v120b1">Added in v1.2.0b1<a class="headerlink" href="#added-in-v120b1" title="Permanent link">¶</a></h3>
|
|
10811
11254
|
<ul>
|
|
10812
11255
|
<li><a href="https://github.com/nautobot/nautobot/issues/13">#13</a> - Added <code>nautobot_database_ready</code> signal</li>
|
|
10813
11256
|
<li><a href="https://github.com/nautobot/nautobot/issues/125">#125</a> - Added support for <code>approval_required = True</code> on Jobs</li>
|
|
@@ -10833,7 +11276,7 @@
|
|
|
10833
11276
|
<li><a href="https://github.com/nautobot/nautobot/pull/947">#947</a> - Added <code>DISABLE_PREFIX_LIST_HIERARCHY</code> setting to render IPAM Prefix list view as a flat list</li>
|
|
10834
11277
|
<li><a href="https://github.com/nautobot/nautobot/pull/953">#953</a> - Added option to use MySQL in docker-compose development environment</li>
|
|
10835
11278
|
</ul>
|
|
10836
|
-
<h3 id="
|
|
11279
|
+
<h3 id="changed-in-v120b1">Changed in v1.2.0b1<a class="headerlink" href="#changed-in-v120b1" title="Permanent link">¶</a></h3>
|
|
10837
11280
|
<ul>
|
|
10838
11281
|
<li><a href="https://github.com/nautobot/nautobot/issues/222">#222</a> - Changed wildcard imports to explicitly enumerated imports and enabled associated Flake8 linter rules.</li>
|
|
10839
11282
|
<li><a href="https://github.com/nautobot/nautobot/issues/472">#472</a> - <code>JobResult</code> lists now show the associated Job's name (if available) instead of the Job's <code>class_path</code>.</li>
|
|
@@ -10841,20 +11284,20 @@
|
|
|
10841
11284
|
<li><a href="https://github.com/nautobot/nautobot/pull/877">#877</a> - Hid unused "Social Auth" section from Django admin page.</li>
|
|
10842
11285
|
<li><a href="https://github.com/nautobot/nautobot/pull/900">#900</a> - Admin site has been revised and re-skinned to more closely match the core Nautobot UI.</li>
|
|
10843
11286
|
</ul>
|
|
10844
|
-
<h3 id="
|
|
11287
|
+
<h3 id="fixed-in-v120b1">Fixed in v1.2.0b1<a class="headerlink" href="#fixed-in-v120b1" title="Permanent link">¶</a></h3>
|
|
10845
11288
|
<ul>
|
|
10846
11289
|
<li><a href="https://github.com/nautobot/nautobot/issues/852">#852</a> - Fixed missing "Change Log" tab on certain object detail views</li>
|
|
10847
11290
|
<li><a href="https://github.com/nautobot/nautobot/issues/853">#853</a> - Fixed <code>AttributeError</code> on certain object detail views</li>
|
|
10848
11291
|
<li><a href="https://github.com/nautobot/nautobot/issues/891">#891</a> - Fixed custom field select/multiselect not handled by new UI and added integration tests</li>
|
|
10849
11292
|
<li><a href="https://github.com/nautobot/nautobot/issues/966">#966</a> - Fixed missing "Advanced" tab on Device detail views</li>
|
|
10850
11293
|
</ul>
|
|
10851
|
-
<h3 id="
|
|
11294
|
+
<h3 id="documentation-in-v120b1">Documentation in v1.2.0b1<a class="headerlink" href="#documentation-in-v120b1" title="Permanent link">¶</a></h3>
|
|
10852
11295
|
<ul>
|
|
10853
11296
|
<li><a href="https://github.com/nautobot/nautobot/issues/642">#642</a> - Added documentation of the <code>GIT_SSL_NO_VERIFY</code> environment variable for using self-signed Git repositories</li>
|
|
10854
11297
|
<li><a href="https://github.com/nautobot/nautobot/pull/866">#866</a> - Added documentation for job scheduling and approvals</li>
|
|
10855
11298
|
<li><a href="https://github.com/nautobot/nautobot/issues/1060">#1060</a> - Fixed documentation incorrectly indicating that the Admin UI was the only way to manage custom field definitions.</li>
|
|
10856
11299
|
</ul>
|
|
10857
|
-
<h3 id="
|
|
11300
|
+
<h3 id="housekeeping-in-v120b1">Housekeeping in v1.2.0b1<a class="headerlink" href="#housekeeping-in-v120b1" title="Permanent link">¶</a></h3>
|
|
10858
11301
|
<ul>
|
|
10859
11302
|
<li><a href="https://github.com/nautobot/nautobot/pull/879">#879</a> - Added API testing for job scheduling and approvals</li>
|
|
10860
11303
|
<li><a href="https://github.com/nautobot/nautobot/pull/908">#908</a> - Added UI testing for job scheduling and approvals</li>
|
|
@@ -11002,7 +11445,7 @@
|
|
|
11002
11445
|
</div>
|
|
11003
11446
|
|
|
11004
11447
|
|
|
11005
|
-
<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>
|
|
11448
|
+
<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>
|
|
11006
11449
|
|
|
11007
11450
|
|
|
11008
11451
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|