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
|
|
|
@@ -8399,18 +8843,18 @@
|
|
|
8399
8843
|
<ul class="md-nav__list">
|
|
8400
8844
|
|
|
8401
8845
|
<li class="md-nav__item">
|
|
8402
|
-
<a href="#
|
|
8846
|
+
<a href="#changed-in-v1410" class="md-nav__link">
|
|
8403
8847
|
<span class="md-ellipsis">
|
|
8404
|
-
Changed
|
|
8848
|
+
Changed in v1.4.10
|
|
8405
8849
|
</span>
|
|
8406
8850
|
</a>
|
|
8407
8851
|
|
|
8408
8852
|
</li>
|
|
8409
8853
|
|
|
8410
8854
|
<li class="md-nav__item">
|
|
8411
|
-
<a href="#fixed" class="md-nav__link">
|
|
8855
|
+
<a href="#fixed-in-v1410" class="md-nav__link">
|
|
8412
8856
|
<span class="md-ellipsis">
|
|
8413
|
-
Fixed
|
|
8857
|
+
Fixed in v1.4.10
|
|
8414
8858
|
</span>
|
|
8415
8859
|
</a>
|
|
8416
8860
|
|
|
@@ -8432,45 +8876,45 @@
|
|
|
8432
8876
|
<ul class="md-nav__list">
|
|
8433
8877
|
|
|
8434
8878
|
<li class="md-nav__item">
|
|
8435
|
-
<a href="#
|
|
8879
|
+
<a href="#added-in-v149" class="md-nav__link">
|
|
8436
8880
|
<span class="md-ellipsis">
|
|
8437
|
-
Added
|
|
8881
|
+
Added in v1.4.9
|
|
8438
8882
|
</span>
|
|
8439
8883
|
</a>
|
|
8440
8884
|
|
|
8441
8885
|
</li>
|
|
8442
8886
|
|
|
8443
8887
|
<li class="md-nav__item">
|
|
8444
|
-
<a href="#
|
|
8888
|
+
<a href="#changed-in-v149" class="md-nav__link">
|
|
8445
8889
|
<span class="md-ellipsis">
|
|
8446
|
-
Changed
|
|
8890
|
+
Changed in v1.4.9
|
|
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="#fixed-in-v149" class="md-nav__link">
|
|
8454
8898
|
<span class="md-ellipsis">
|
|
8455
|
-
Fixed
|
|
8899
|
+
Fixed in v1.4.9
|
|
8456
8900
|
</span>
|
|
8457
8901
|
</a>
|
|
8458
8902
|
|
|
8459
8903
|
</li>
|
|
8460
8904
|
|
|
8461
8905
|
<li class="md-nav__item">
|
|
8462
|
-
<a href="#documentation" class="md-nav__link">
|
|
8906
|
+
<a href="#documentation-in-v149" class="md-nav__link">
|
|
8463
8907
|
<span class="md-ellipsis">
|
|
8464
|
-
Documentation
|
|
8908
|
+
Documentation in v1.4.9
|
|
8465
8909
|
</span>
|
|
8466
8910
|
</a>
|
|
8467
8911
|
|
|
8468
8912
|
</li>
|
|
8469
8913
|
|
|
8470
8914
|
<li class="md-nav__item">
|
|
8471
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8915
|
+
<a href="#housekeeping-in-v149" class="md-nav__link">
|
|
8472
8916
|
<span class="md-ellipsis">
|
|
8473
|
-
Housekeeping
|
|
8917
|
+
Housekeeping in v1.4.9
|
|
8474
8918
|
</span>
|
|
8475
8919
|
</a>
|
|
8476
8920
|
|
|
@@ -8492,63 +8936,63 @@
|
|
|
8492
8936
|
<ul class="md-nav__list">
|
|
8493
8937
|
|
|
8494
8938
|
<li class="md-nav__item">
|
|
8495
|
-
<a href="#security" class="md-nav__link">
|
|
8939
|
+
<a href="#security-in-v148" class="md-nav__link">
|
|
8496
8940
|
<span class="md-ellipsis">
|
|
8497
|
-
Security
|
|
8941
|
+
Security in v1.4.8
|
|
8498
8942
|
</span>
|
|
8499
8943
|
</a>
|
|
8500
8944
|
|
|
8501
8945
|
</li>
|
|
8502
8946
|
|
|
8503
8947
|
<li class="md-nav__item">
|
|
8504
|
-
<a href="#
|
|
8948
|
+
<a href="#added-in-v148" class="md-nav__link">
|
|
8505
8949
|
<span class="md-ellipsis">
|
|
8506
|
-
Added
|
|
8950
|
+
Added in v1.4.8
|
|
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="#changed-in-v148" class="md-nav__link">
|
|
8514
8958
|
<span class="md-ellipsis">
|
|
8515
|
-
Changed
|
|
8959
|
+
Changed in v1.4.8
|
|
8516
8960
|
</span>
|
|
8517
8961
|
</a>
|
|
8518
8962
|
|
|
8519
8963
|
</li>
|
|
8520
8964
|
|
|
8521
8965
|
<li class="md-nav__item">
|
|
8522
|
-
<a href="#
|
|
8966
|
+
<a href="#fixed-in-v148" class="md-nav__link">
|
|
8523
8967
|
<span class="md-ellipsis">
|
|
8524
|
-
Fixed
|
|
8968
|
+
Fixed in v1.4.8
|
|
8525
8969
|
</span>
|
|
8526
8970
|
</a>
|
|
8527
8971
|
|
|
8528
8972
|
</li>
|
|
8529
8973
|
|
|
8530
8974
|
<li class="md-nav__item">
|
|
8531
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8975
|
+
<a href="#dependencies-in-v148" class="md-nav__link">
|
|
8532
8976
|
<span class="md-ellipsis">
|
|
8533
|
-
Dependencies
|
|
8977
|
+
Dependencies in v1.4.8
|
|
8534
8978
|
</span>
|
|
8535
8979
|
</a>
|
|
8536
8980
|
|
|
8537
8981
|
</li>
|
|
8538
8982
|
|
|
8539
8983
|
<li class="md-nav__item">
|
|
8540
|
-
<a href="#
|
|
8984
|
+
<a href="#documentation-in-v148" class="md-nav__link">
|
|
8541
8985
|
<span class="md-ellipsis">
|
|
8542
|
-
Documentation
|
|
8986
|
+
Documentation in v1.4.8
|
|
8543
8987
|
</span>
|
|
8544
8988
|
</a>
|
|
8545
8989
|
|
|
8546
8990
|
</li>
|
|
8547
8991
|
|
|
8548
8992
|
<li class="md-nav__item">
|
|
8549
|
-
<a href="#
|
|
8993
|
+
<a href="#housekeeping-in-v148" class="md-nav__link">
|
|
8550
8994
|
<span class="md-ellipsis">
|
|
8551
|
-
Housekeeping
|
|
8995
|
+
Housekeeping in v1.4.8
|
|
8552
8996
|
</span>
|
|
8553
8997
|
</a>
|
|
8554
8998
|
|
|
@@ -8570,9 +9014,9 @@
|
|
|
8570
9014
|
<ul class="md-nav__list">
|
|
8571
9015
|
|
|
8572
9016
|
<li class="md-nav__item">
|
|
8573
|
-
<a href="#
|
|
9017
|
+
<a href="#fixed-in-v147" class="md-nav__link">
|
|
8574
9018
|
<span class="md-ellipsis">
|
|
8575
|
-
Fixed
|
|
9019
|
+
Fixed in v1.4.7
|
|
8576
9020
|
</span>
|
|
8577
9021
|
</a>
|
|
8578
9022
|
|
|
@@ -8594,54 +9038,54 @@
|
|
|
8594
9038
|
<ul class="md-nav__list">
|
|
8595
9039
|
|
|
8596
9040
|
<li class="md-nav__item">
|
|
8597
|
-
<a href="#
|
|
9041
|
+
<a href="#security-in-v146" class="md-nav__link">
|
|
8598
9042
|
<span class="md-ellipsis">
|
|
8599
|
-
Security
|
|
9043
|
+
Security in v1.4.6
|
|
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="#added-in-v146" class="md-nav__link">
|
|
8607
9051
|
<span class="md-ellipsis">
|
|
8608
|
-
Added
|
|
9052
|
+
Added in v1.4.6
|
|
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="#changed-in-v146" class="md-nav__link">
|
|
8616
9060
|
<span class="md-ellipsis">
|
|
8617
|
-
Changed
|
|
9061
|
+
Changed in v1.4.6
|
|
8618
9062
|
</span>
|
|
8619
9063
|
</a>
|
|
8620
9064
|
|
|
8621
9065
|
</li>
|
|
8622
9066
|
|
|
8623
9067
|
<li class="md-nav__item">
|
|
8624
|
-
<a href="#
|
|
9068
|
+
<a href="#fixed-in-v146" class="md-nav__link">
|
|
8625
9069
|
<span class="md-ellipsis">
|
|
8626
|
-
Fixed
|
|
9070
|
+
Fixed in v1.4.6
|
|
8627
9071
|
</span>
|
|
8628
9072
|
</a>
|
|
8629
9073
|
|
|
8630
9074
|
</li>
|
|
8631
9075
|
|
|
8632
9076
|
<li class="md-nav__item">
|
|
8633
|
-
<a href="#
|
|
9077
|
+
<a href="#documentation-in-v146" class="md-nav__link">
|
|
8634
9078
|
<span class="md-ellipsis">
|
|
8635
|
-
Documentation
|
|
9079
|
+
Documentation in v1.4.6
|
|
8636
9080
|
</span>
|
|
8637
9081
|
</a>
|
|
8638
9082
|
|
|
8639
9083
|
</li>
|
|
8640
9084
|
|
|
8641
9085
|
<li class="md-nav__item">
|
|
8642
|
-
<a href="#
|
|
9086
|
+
<a href="#housekeeping-in-v146" class="md-nav__link">
|
|
8643
9087
|
<span class="md-ellipsis">
|
|
8644
|
-
Housekeeping
|
|
9088
|
+
Housekeeping in v1.4.6
|
|
8645
9089
|
</span>
|
|
8646
9090
|
</a>
|
|
8647
9091
|
|
|
@@ -8663,54 +9107,54 @@
|
|
|
8663
9107
|
<ul class="md-nav__list">
|
|
8664
9108
|
|
|
8665
9109
|
<li class="md-nav__item">
|
|
8666
|
-
<a href="#
|
|
9110
|
+
<a href="#added-in-v145" class="md-nav__link">
|
|
8667
9111
|
<span class="md-ellipsis">
|
|
8668
|
-
Added
|
|
9112
|
+
Added in v1.4.5
|
|
8669
9113
|
</span>
|
|
8670
9114
|
</a>
|
|
8671
9115
|
|
|
8672
9116
|
</li>
|
|
8673
9117
|
|
|
8674
9118
|
<li class="md-nav__item">
|
|
8675
|
-
<a href="#
|
|
9119
|
+
<a href="#changed-in-v145" class="md-nav__link">
|
|
8676
9120
|
<span class="md-ellipsis">
|
|
8677
|
-
Changed
|
|
9121
|
+
Changed in v1.4.5
|
|
8678
9122
|
</span>
|
|
8679
9123
|
</a>
|
|
8680
9124
|
|
|
8681
9125
|
</li>
|
|
8682
9126
|
|
|
8683
9127
|
<li class="md-nav__item">
|
|
8684
|
-
<a href="#
|
|
9128
|
+
<a href="#fixed-in-v145" class="md-nav__link">
|
|
8685
9129
|
<span class="md-ellipsis">
|
|
8686
|
-
Fixed
|
|
9130
|
+
Fixed in v1.4.5
|
|
8687
9131
|
</span>
|
|
8688
9132
|
</a>
|
|
8689
9133
|
|
|
8690
9134
|
</li>
|
|
8691
9135
|
|
|
8692
9136
|
<li class="md-nav__item">
|
|
8693
|
-
<a href="#
|
|
9137
|
+
<a href="#dependencies-in-v145" class="md-nav__link">
|
|
8694
9138
|
<span class="md-ellipsis">
|
|
8695
|
-
Dependencies
|
|
9139
|
+
Dependencies in v1.4.5
|
|
8696
9140
|
</span>
|
|
8697
9141
|
</a>
|
|
8698
9142
|
|
|
8699
9143
|
</li>
|
|
8700
9144
|
|
|
8701
9145
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#
|
|
9146
|
+
<a href="#documentation-in-v145" class="md-nav__link">
|
|
8703
9147
|
<span class="md-ellipsis">
|
|
8704
|
-
Documentation
|
|
9148
|
+
Documentation in v1.4.5
|
|
8705
9149
|
</span>
|
|
8706
9150
|
</a>
|
|
8707
9151
|
|
|
8708
9152
|
</li>
|
|
8709
9153
|
|
|
8710
9154
|
<li class="md-nav__item">
|
|
8711
|
-
<a href="#
|
|
9155
|
+
<a href="#housekeeping-in-v145" class="md-nav__link">
|
|
8712
9156
|
<span class="md-ellipsis">
|
|
8713
|
-
Housekeeping
|
|
9157
|
+
Housekeeping in v1.4.5
|
|
8714
9158
|
</span>
|
|
8715
9159
|
</a>
|
|
8716
9160
|
|
|
@@ -8732,45 +9176,45 @@
|
|
|
8732
9176
|
<ul class="md-nav__list">
|
|
8733
9177
|
|
|
8734
9178
|
<li class="md-nav__item">
|
|
8735
|
-
<a href="#
|
|
9179
|
+
<a href="#added-in-v144" class="md-nav__link">
|
|
8736
9180
|
<span class="md-ellipsis">
|
|
8737
|
-
Added
|
|
9181
|
+
Added in v1.4.4
|
|
8738
9182
|
</span>
|
|
8739
9183
|
</a>
|
|
8740
9184
|
|
|
8741
9185
|
</li>
|
|
8742
9186
|
|
|
8743
9187
|
<li class="md-nav__item">
|
|
8744
|
-
<a href="#
|
|
9188
|
+
<a href="#changed-in-v144" class="md-nav__link">
|
|
8745
9189
|
<span class="md-ellipsis">
|
|
8746
|
-
Changed
|
|
9190
|
+
Changed in v1.4.4
|
|
8747
9191
|
</span>
|
|
8748
9192
|
</a>
|
|
8749
9193
|
|
|
8750
9194
|
</li>
|
|
8751
9195
|
|
|
8752
9196
|
<li class="md-nav__item">
|
|
8753
|
-
<a href="#
|
|
9197
|
+
<a href="#fixed-in-v144" class="md-nav__link">
|
|
8754
9198
|
<span class="md-ellipsis">
|
|
8755
|
-
Fixed
|
|
9199
|
+
Fixed in v1.4.4
|
|
8756
9200
|
</span>
|
|
8757
9201
|
</a>
|
|
8758
9202
|
|
|
8759
9203
|
</li>
|
|
8760
9204
|
|
|
8761
9205
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
9206
|
+
<a href="#documentation-in-v144" class="md-nav__link">
|
|
8763
9207
|
<span class="md-ellipsis">
|
|
8764
|
-
Documentation
|
|
9208
|
+
Documentation in v1.4.4
|
|
8765
9209
|
</span>
|
|
8766
9210
|
</a>
|
|
8767
9211
|
|
|
8768
9212
|
</li>
|
|
8769
9213
|
|
|
8770
9214
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#
|
|
9215
|
+
<a href="#housekeeping-in-v144" class="md-nav__link">
|
|
8772
9216
|
<span class="md-ellipsis">
|
|
8773
|
-
Housekeeping
|
|
9217
|
+
Housekeeping in v1.4.4
|
|
8774
9218
|
</span>
|
|
8775
9219
|
</a>
|
|
8776
9220
|
|
|
@@ -8792,54 +9236,54 @@
|
|
|
8792
9236
|
<ul class="md-nav__list">
|
|
8793
9237
|
|
|
8794
9238
|
<li class="md-nav__item">
|
|
8795
|
-
<a href="#
|
|
9239
|
+
<a href="#added-in-v143" class="md-nav__link">
|
|
8796
9240
|
<span class="md-ellipsis">
|
|
8797
|
-
Added
|
|
9241
|
+
Added in v1.4.3
|
|
8798
9242
|
</span>
|
|
8799
9243
|
</a>
|
|
8800
9244
|
|
|
8801
9245
|
</li>
|
|
8802
9246
|
|
|
8803
9247
|
<li class="md-nav__item">
|
|
8804
|
-
<a href="#
|
|
9248
|
+
<a href="#changed-in-v143" class="md-nav__link">
|
|
8805
9249
|
<span class="md-ellipsis">
|
|
8806
|
-
Changed
|
|
9250
|
+
Changed in v1.4.3
|
|
8807
9251
|
</span>
|
|
8808
9252
|
</a>
|
|
8809
9253
|
|
|
8810
9254
|
</li>
|
|
8811
9255
|
|
|
8812
9256
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#
|
|
9257
|
+
<a href="#fixed-in-v143" class="md-nav__link">
|
|
8814
9258
|
<span class="md-ellipsis">
|
|
8815
|
-
Fixed
|
|
9259
|
+
Fixed in v1.4.3
|
|
8816
9260
|
</span>
|
|
8817
9261
|
</a>
|
|
8818
9262
|
|
|
8819
9263
|
</li>
|
|
8820
9264
|
|
|
8821
9265
|
<li class="md-nav__item">
|
|
8822
|
-
<a href="#
|
|
9266
|
+
<a href="#dependencies-in-v143" class="md-nav__link">
|
|
8823
9267
|
<span class="md-ellipsis">
|
|
8824
|
-
Dependencies
|
|
9268
|
+
Dependencies in v1.4.3
|
|
8825
9269
|
</span>
|
|
8826
9270
|
</a>
|
|
8827
9271
|
|
|
8828
9272
|
</li>
|
|
8829
9273
|
|
|
8830
9274
|
<li class="md-nav__item">
|
|
8831
|
-
<a href="#
|
|
9275
|
+
<a href="#documentation-in-v143" class="md-nav__link">
|
|
8832
9276
|
<span class="md-ellipsis">
|
|
8833
|
-
Documentation
|
|
9277
|
+
Documentation in v1.4.3
|
|
8834
9278
|
</span>
|
|
8835
9279
|
</a>
|
|
8836
9280
|
|
|
8837
9281
|
</li>
|
|
8838
9282
|
|
|
8839
9283
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
9284
|
+
<a href="#housekeeping-in-v143" class="md-nav__link">
|
|
8841
9285
|
<span class="md-ellipsis">
|
|
8842
|
-
Housekeeping
|
|
9286
|
+
Housekeeping in v1.4.3
|
|
8843
9287
|
</span>
|
|
8844
9288
|
</a>
|
|
8845
9289
|
|
|
@@ -8861,54 +9305,54 @@
|
|
|
8861
9305
|
<ul class="md-nav__list">
|
|
8862
9306
|
|
|
8863
9307
|
<li class="md-nav__item">
|
|
8864
|
-
<a href="#
|
|
9308
|
+
<a href="#added-in-v142" class="md-nav__link">
|
|
8865
9309
|
<span class="md-ellipsis">
|
|
8866
|
-
Added
|
|
9310
|
+
Added in v1.4.2
|
|
8867
9311
|
</span>
|
|
8868
9312
|
</a>
|
|
8869
9313
|
|
|
8870
9314
|
</li>
|
|
8871
9315
|
|
|
8872
9316
|
<li class="md-nav__item">
|
|
8873
|
-
<a href="#
|
|
9317
|
+
<a href="#changed-in-v142" class="md-nav__link">
|
|
8874
9318
|
<span class="md-ellipsis">
|
|
8875
|
-
Changed
|
|
9319
|
+
Changed in v1.4.2
|
|
8876
9320
|
</span>
|
|
8877
9321
|
</a>
|
|
8878
9322
|
|
|
8879
9323
|
</li>
|
|
8880
9324
|
|
|
8881
9325
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
9326
|
+
<a href="#fixed-in-v142" class="md-nav__link">
|
|
8883
9327
|
<span class="md-ellipsis">
|
|
8884
|
-
Fixed
|
|
9328
|
+
Fixed in v1.4.2
|
|
8885
9329
|
</span>
|
|
8886
9330
|
</a>
|
|
8887
9331
|
|
|
8888
9332
|
</li>
|
|
8889
9333
|
|
|
8890
9334
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
9335
|
+
<a href="#dependencies-in-v142" class="md-nav__link">
|
|
8892
9336
|
<span class="md-ellipsis">
|
|
8893
|
-
Dependencies
|
|
9337
|
+
Dependencies in v1.4.2
|
|
8894
9338
|
</span>
|
|
8895
9339
|
</a>
|
|
8896
9340
|
|
|
8897
9341
|
</li>
|
|
8898
9342
|
|
|
8899
9343
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#
|
|
9344
|
+
<a href="#documentation-in-v142" class="md-nav__link">
|
|
8901
9345
|
<span class="md-ellipsis">
|
|
8902
|
-
Documentation
|
|
9346
|
+
Documentation in v1.4.2
|
|
8903
9347
|
</span>
|
|
8904
9348
|
</a>
|
|
8905
9349
|
|
|
8906
9350
|
</li>
|
|
8907
9351
|
|
|
8908
9352
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
9353
|
+
<a href="#housekeeping-in-v142" class="md-nav__link">
|
|
8910
9354
|
<span class="md-ellipsis">
|
|
8911
|
-
Housekeeping
|
|
9355
|
+
Housekeeping in v1.4.2
|
|
8912
9356
|
</span>
|
|
8913
9357
|
</a>
|
|
8914
9358
|
|
|
@@ -8930,45 +9374,45 @@
|
|
|
8930
9374
|
<ul class="md-nav__list">
|
|
8931
9375
|
|
|
8932
9376
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#
|
|
9377
|
+
<a href="#added-in-v141" class="md-nav__link">
|
|
8934
9378
|
<span class="md-ellipsis">
|
|
8935
|
-
Added
|
|
9379
|
+
Added in v1.4.1
|
|
8936
9380
|
</span>
|
|
8937
9381
|
</a>
|
|
8938
9382
|
|
|
8939
9383
|
</li>
|
|
8940
9384
|
|
|
8941
9385
|
<li class="md-nav__item">
|
|
8942
|
-
<a href="#
|
|
9386
|
+
<a href="#changed-in-v141" class="md-nav__link">
|
|
8943
9387
|
<span class="md-ellipsis">
|
|
8944
|
-
Changed
|
|
9388
|
+
Changed in v1.4.1
|
|
8945
9389
|
</span>
|
|
8946
9390
|
</a>
|
|
8947
9391
|
|
|
8948
9392
|
</li>
|
|
8949
9393
|
|
|
8950
9394
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
9395
|
+
<a href="#fixed-in-v141" class="md-nav__link">
|
|
8952
9396
|
<span class="md-ellipsis">
|
|
8953
|
-
Fixed
|
|
9397
|
+
Fixed in v1.4.1
|
|
8954
9398
|
</span>
|
|
8955
9399
|
</a>
|
|
8956
9400
|
|
|
8957
9401
|
</li>
|
|
8958
9402
|
|
|
8959
9403
|
<li class="md-nav__item">
|
|
8960
|
-
<a href="#
|
|
9404
|
+
<a href="#documentation-in-v141" class="md-nav__link">
|
|
8961
9405
|
<span class="md-ellipsis">
|
|
8962
|
-
Documentation
|
|
9406
|
+
Documentation in v1.4.1
|
|
8963
9407
|
</span>
|
|
8964
9408
|
</a>
|
|
8965
9409
|
|
|
8966
9410
|
</li>
|
|
8967
9411
|
|
|
8968
9412
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
9413
|
+
<a href="#housekeeping-in-v141" class="md-nav__link">
|
|
8970
9414
|
<span class="md-ellipsis">
|
|
8971
|
-
Housekeeping
|
|
9415
|
+
Housekeeping in v1.4.1
|
|
8972
9416
|
</span>
|
|
8973
9417
|
</a>
|
|
8974
9418
|
|
|
@@ -8990,54 +9434,54 @@
|
|
|
8990
9434
|
<ul class="md-nav__list">
|
|
8991
9435
|
|
|
8992
9436
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
9437
|
+
<a href="#added-in-v140" class="md-nav__link">
|
|
8994
9438
|
<span class="md-ellipsis">
|
|
8995
|
-
Added
|
|
9439
|
+
Added in v1.4.0
|
|
8996
9440
|
</span>
|
|
8997
9441
|
</a>
|
|
8998
9442
|
|
|
8999
9443
|
</li>
|
|
9000
9444
|
|
|
9001
9445
|
<li class="md-nav__item">
|
|
9002
|
-
<a href="#
|
|
9446
|
+
<a href="#changed-in-v140" class="md-nav__link">
|
|
9003
9447
|
<span class="md-ellipsis">
|
|
9004
|
-
Changed
|
|
9448
|
+
Changed in v1.4.0
|
|
9005
9449
|
</span>
|
|
9006
9450
|
</a>
|
|
9007
9451
|
|
|
9008
9452
|
</li>
|
|
9009
9453
|
|
|
9010
9454
|
<li class="md-nav__item">
|
|
9011
|
-
<a href="#
|
|
9455
|
+
<a href="#fixed-in-v140" class="md-nav__link">
|
|
9012
9456
|
<span class="md-ellipsis">
|
|
9013
|
-
Fixed
|
|
9457
|
+
Fixed in v1.4.0
|
|
9014
9458
|
</span>
|
|
9015
9459
|
</a>
|
|
9016
9460
|
|
|
9017
9461
|
</li>
|
|
9018
9462
|
|
|
9019
9463
|
<li class="md-nav__item">
|
|
9020
|
-
<a href="#
|
|
9464
|
+
<a href="#dependencies-in-v140" class="md-nav__link">
|
|
9021
9465
|
<span class="md-ellipsis">
|
|
9022
|
-
Dependencies
|
|
9466
|
+
Dependencies in v1.4.0
|
|
9023
9467
|
</span>
|
|
9024
9468
|
</a>
|
|
9025
9469
|
|
|
9026
9470
|
</li>
|
|
9027
9471
|
|
|
9028
9472
|
<li class="md-nav__item">
|
|
9029
|
-
<a href="#
|
|
9473
|
+
<a href="#documentation-in-v140" class="md-nav__link">
|
|
9030
9474
|
<span class="md-ellipsis">
|
|
9031
|
-
Documentation
|
|
9475
|
+
Documentation in v1.4.0
|
|
9032
9476
|
</span>
|
|
9033
9477
|
</a>
|
|
9034
9478
|
|
|
9035
9479
|
</li>
|
|
9036
9480
|
|
|
9037
9481
|
<li class="md-nav__item">
|
|
9038
|
-
<a href="#
|
|
9482
|
+
<a href="#housekeeping-in-v140" class="md-nav__link">
|
|
9039
9483
|
<span class="md-ellipsis">
|
|
9040
|
-
Housekeeping
|
|
9484
|
+
Housekeeping in v1.4.0
|
|
9041
9485
|
</span>
|
|
9042
9486
|
</a>
|
|
9043
9487
|
|
|
@@ -9059,45 +9503,45 @@
|
|
|
9059
9503
|
<ul class="md-nav__list">
|
|
9060
9504
|
|
|
9061
9505
|
<li class="md-nav__item">
|
|
9062
|
-
<a href="#
|
|
9506
|
+
<a href="#added-in-v140rc1" class="md-nav__link">
|
|
9063
9507
|
<span class="md-ellipsis">
|
|
9064
|
-
Added
|
|
9508
|
+
Added in v1.4.0rc1
|
|
9065
9509
|
</span>
|
|
9066
9510
|
</a>
|
|
9067
9511
|
|
|
9068
9512
|
</li>
|
|
9069
9513
|
|
|
9070
9514
|
<li class="md-nav__item">
|
|
9071
|
-
<a href="#
|
|
9515
|
+
<a href="#changed-in-v140rc1" class="md-nav__link">
|
|
9072
9516
|
<span class="md-ellipsis">
|
|
9073
|
-
Changed
|
|
9517
|
+
Changed in v1.4.0rc1
|
|
9074
9518
|
</span>
|
|
9075
9519
|
</a>
|
|
9076
9520
|
|
|
9077
9521
|
</li>
|
|
9078
9522
|
|
|
9079
9523
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9524
|
+
<a href="#fixed-in-v140rc1" class="md-nav__link">
|
|
9081
9525
|
<span class="md-ellipsis">
|
|
9082
|
-
Fixed
|
|
9526
|
+
Fixed in v1.4.0rc1
|
|
9083
9527
|
</span>
|
|
9084
9528
|
</a>
|
|
9085
9529
|
|
|
9086
9530
|
</li>
|
|
9087
9531
|
|
|
9088
9532
|
<li class="md-nav__item">
|
|
9089
|
-
<a href="#
|
|
9533
|
+
<a href="#documentation-in-v140rc1" class="md-nav__link">
|
|
9090
9534
|
<span class="md-ellipsis">
|
|
9091
|
-
Documentation
|
|
9535
|
+
Documentation in v1.4.0rc1
|
|
9092
9536
|
</span>
|
|
9093
9537
|
</a>
|
|
9094
9538
|
|
|
9095
9539
|
</li>
|
|
9096
9540
|
|
|
9097
9541
|
<li class="md-nav__item">
|
|
9098
|
-
<a href="#
|
|
9542
|
+
<a href="#housekeeping-in-v140rc1" class="md-nav__link">
|
|
9099
9543
|
<span class="md-ellipsis">
|
|
9100
|
-
Housekeeping
|
|
9544
|
+
Housekeeping in v1.4.0rc1
|
|
9101
9545
|
</span>
|
|
9102
9546
|
</a>
|
|
9103
9547
|
|
|
@@ -9119,45 +9563,45 @@
|
|
|
9119
9563
|
<ul class="md-nav__list">
|
|
9120
9564
|
|
|
9121
9565
|
<li class="md-nav__item">
|
|
9122
|
-
<a href="#
|
|
9566
|
+
<a href="#added-in-v140b1" class="md-nav__link">
|
|
9123
9567
|
<span class="md-ellipsis">
|
|
9124
|
-
Added
|
|
9568
|
+
Added in v1.4.0b1
|
|
9125
9569
|
</span>
|
|
9126
9570
|
</a>
|
|
9127
9571
|
|
|
9128
9572
|
</li>
|
|
9129
9573
|
|
|
9130
9574
|
<li class="md-nav__item">
|
|
9131
|
-
<a href="#
|
|
9575
|
+
<a href="#changed-in-v140b1" class="md-nav__link">
|
|
9132
9576
|
<span class="md-ellipsis">
|
|
9133
|
-
Changed
|
|
9577
|
+
Changed in v1.4.0b1
|
|
9134
9578
|
</span>
|
|
9135
9579
|
</a>
|
|
9136
9580
|
|
|
9137
9581
|
</li>
|
|
9138
9582
|
|
|
9139
9583
|
<li class="md-nav__item">
|
|
9140
|
-
<a href="#
|
|
9584
|
+
<a href="#fixed-in-v140b1" class="md-nav__link">
|
|
9141
9585
|
<span class="md-ellipsis">
|
|
9142
|
-
Fixed
|
|
9586
|
+
Fixed in v1.4.0b1
|
|
9143
9587
|
</span>
|
|
9144
9588
|
</a>
|
|
9145
9589
|
|
|
9146
9590
|
</li>
|
|
9147
9591
|
|
|
9148
9592
|
<li class="md-nav__item">
|
|
9149
|
-
<a href="#
|
|
9593
|
+
<a href="#dependencies-in-v140b1" class="md-nav__link">
|
|
9150
9594
|
<span class="md-ellipsis">
|
|
9151
|
-
Dependencies
|
|
9595
|
+
Dependencies in v1.4.0b1
|
|
9152
9596
|
</span>
|
|
9153
9597
|
</a>
|
|
9154
9598
|
|
|
9155
9599
|
</li>
|
|
9156
9600
|
|
|
9157
9601
|
<li class="md-nav__item">
|
|
9158
|
-
<a href="#
|
|
9602
|
+
<a href="#documentation-in-v140b1" class="md-nav__link">
|
|
9159
9603
|
<span class="md-ellipsis">
|
|
9160
|
-
Documentation
|
|
9604
|
+
Documentation in v1.4.0b1
|
|
9161
9605
|
</span>
|
|
9162
9606
|
</a>
|
|
9163
9607
|
|
|
@@ -9179,54 +9623,54 @@
|
|
|
9179
9623
|
<ul class="md-nav__list">
|
|
9180
9624
|
|
|
9181
9625
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9626
|
+
<a href="#added-in-v140a2" class="md-nav__link">
|
|
9183
9627
|
<span class="md-ellipsis">
|
|
9184
|
-
Added
|
|
9628
|
+
Added in v1.4.0a2
|
|
9185
9629
|
</span>
|
|
9186
9630
|
</a>
|
|
9187
9631
|
|
|
9188
9632
|
</li>
|
|
9189
9633
|
|
|
9190
9634
|
<li class="md-nav__item">
|
|
9191
|
-
<a href="#
|
|
9635
|
+
<a href="#changed-in-v140a2" class="md-nav__link">
|
|
9192
9636
|
<span class="md-ellipsis">
|
|
9193
|
-
Changed
|
|
9637
|
+
Changed in v1.4.0a2
|
|
9194
9638
|
</span>
|
|
9195
9639
|
</a>
|
|
9196
9640
|
|
|
9197
9641
|
</li>
|
|
9198
9642
|
|
|
9199
9643
|
<li class="md-nav__item">
|
|
9200
|
-
<a href="#removed" class="md-nav__link">
|
|
9644
|
+
<a href="#removed-in-v140a2" class="md-nav__link">
|
|
9201
9645
|
<span class="md-ellipsis">
|
|
9202
|
-
Removed
|
|
9646
|
+
Removed in v1.4.0a2
|
|
9203
9647
|
</span>
|
|
9204
9648
|
</a>
|
|
9205
9649
|
|
|
9206
9650
|
</li>
|
|
9207
9651
|
|
|
9208
9652
|
<li class="md-nav__item">
|
|
9209
|
-
<a href="#
|
|
9653
|
+
<a href="#fixed-in-v140a2" class="md-nav__link">
|
|
9210
9654
|
<span class="md-ellipsis">
|
|
9211
|
-
Fixed
|
|
9655
|
+
Fixed in v1.4.0a2
|
|
9212
9656
|
</span>
|
|
9213
9657
|
</a>
|
|
9214
9658
|
|
|
9215
9659
|
</li>
|
|
9216
9660
|
|
|
9217
9661
|
<li class="md-nav__item">
|
|
9218
|
-
<a href="#
|
|
9662
|
+
<a href="#dependencies-in-v140a2" class="md-nav__link">
|
|
9219
9663
|
<span class="md-ellipsis">
|
|
9220
|
-
Dependencies
|
|
9664
|
+
Dependencies in v1.4.0a2
|
|
9221
9665
|
</span>
|
|
9222
9666
|
</a>
|
|
9223
9667
|
|
|
9224
9668
|
</li>
|
|
9225
9669
|
|
|
9226
9670
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9671
|
+
<a href="#housekeeping-in-v140a2" class="md-nav__link">
|
|
9228
9672
|
<span class="md-ellipsis">
|
|
9229
|
-
Housekeeping
|
|
9673
|
+
Housekeeping in v1.4.0a2
|
|
9230
9674
|
</span>
|
|
9231
9675
|
</a>
|
|
9232
9676
|
|
|
@@ -9248,27 +9692,27 @@
|
|
|
9248
9692
|
<ul class="md-nav__list">
|
|
9249
9693
|
|
|
9250
9694
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9695
|
+
<a href="#added-in-v140a1" class="md-nav__link">
|
|
9252
9696
|
<span class="md-ellipsis">
|
|
9253
|
-
Added
|
|
9697
|
+
Added in v1.4.0a1
|
|
9254
9698
|
</span>
|
|
9255
9699
|
</a>
|
|
9256
9700
|
|
|
9257
9701
|
</li>
|
|
9258
9702
|
|
|
9259
9703
|
<li class="md-nav__item">
|
|
9260
|
-
<a href="#
|
|
9704
|
+
<a href="#changed-in-v140a1" class="md-nav__link">
|
|
9261
9705
|
<span class="md-ellipsis">
|
|
9262
|
-
Changed
|
|
9706
|
+
Changed in v1.4.0a1
|
|
9263
9707
|
</span>
|
|
9264
9708
|
</a>
|
|
9265
9709
|
|
|
9266
9710
|
</li>
|
|
9267
9711
|
|
|
9268
9712
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9713
|
+
<a href="#fixed-in-v140a1" class="md-nav__link">
|
|
9270
9714
|
<span class="md-ellipsis">
|
|
9271
|
-
Fixed
|
|
9715
|
+
Fixed in v1.4.0a1
|
|
9272
9716
|
</span>
|
|
9273
9717
|
</a>
|
|
9274
9718
|
|
|
@@ -9970,18 +10414,18 @@
|
|
|
9970
10414
|
<ul class="md-nav__list">
|
|
9971
10415
|
|
|
9972
10416
|
<li class="md-nav__item">
|
|
9973
|
-
<a href="#
|
|
10417
|
+
<a href="#changed-in-v1410" class="md-nav__link">
|
|
9974
10418
|
<span class="md-ellipsis">
|
|
9975
|
-
Changed
|
|
10419
|
+
Changed in v1.4.10
|
|
9976
10420
|
</span>
|
|
9977
10421
|
</a>
|
|
9978
10422
|
|
|
9979
10423
|
</li>
|
|
9980
10424
|
|
|
9981
10425
|
<li class="md-nav__item">
|
|
9982
|
-
<a href="#fixed" class="md-nav__link">
|
|
10426
|
+
<a href="#fixed-in-v1410" class="md-nav__link">
|
|
9983
10427
|
<span class="md-ellipsis">
|
|
9984
|
-
Fixed
|
|
10428
|
+
Fixed in v1.4.10
|
|
9985
10429
|
</span>
|
|
9986
10430
|
</a>
|
|
9987
10431
|
|
|
@@ -10003,45 +10447,45 @@
|
|
|
10003
10447
|
<ul class="md-nav__list">
|
|
10004
10448
|
|
|
10005
10449
|
<li class="md-nav__item">
|
|
10006
|
-
<a href="#
|
|
10450
|
+
<a href="#added-in-v149" class="md-nav__link">
|
|
10007
10451
|
<span class="md-ellipsis">
|
|
10008
|
-
Added
|
|
10452
|
+
Added in v1.4.9
|
|
10009
10453
|
</span>
|
|
10010
10454
|
</a>
|
|
10011
10455
|
|
|
10012
10456
|
</li>
|
|
10013
10457
|
|
|
10014
10458
|
<li class="md-nav__item">
|
|
10015
|
-
<a href="#
|
|
10459
|
+
<a href="#changed-in-v149" class="md-nav__link">
|
|
10016
10460
|
<span class="md-ellipsis">
|
|
10017
|
-
Changed
|
|
10461
|
+
Changed in v1.4.9
|
|
10018
10462
|
</span>
|
|
10019
10463
|
</a>
|
|
10020
10464
|
|
|
10021
10465
|
</li>
|
|
10022
10466
|
|
|
10023
10467
|
<li class="md-nav__item">
|
|
10024
|
-
<a href="#
|
|
10468
|
+
<a href="#fixed-in-v149" class="md-nav__link">
|
|
10025
10469
|
<span class="md-ellipsis">
|
|
10026
|
-
Fixed
|
|
10470
|
+
Fixed in v1.4.9
|
|
10027
10471
|
</span>
|
|
10028
10472
|
</a>
|
|
10029
10473
|
|
|
10030
10474
|
</li>
|
|
10031
10475
|
|
|
10032
10476
|
<li class="md-nav__item">
|
|
10033
|
-
<a href="#documentation" class="md-nav__link">
|
|
10477
|
+
<a href="#documentation-in-v149" class="md-nav__link">
|
|
10034
10478
|
<span class="md-ellipsis">
|
|
10035
|
-
Documentation
|
|
10479
|
+
Documentation in v1.4.9
|
|
10036
10480
|
</span>
|
|
10037
10481
|
</a>
|
|
10038
10482
|
|
|
10039
10483
|
</li>
|
|
10040
10484
|
|
|
10041
10485
|
<li class="md-nav__item">
|
|
10042
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10486
|
+
<a href="#housekeeping-in-v149" class="md-nav__link">
|
|
10043
10487
|
<span class="md-ellipsis">
|
|
10044
|
-
Housekeeping
|
|
10488
|
+
Housekeeping in v1.4.9
|
|
10045
10489
|
</span>
|
|
10046
10490
|
</a>
|
|
10047
10491
|
|
|
@@ -10063,63 +10507,63 @@
|
|
|
10063
10507
|
<ul class="md-nav__list">
|
|
10064
10508
|
|
|
10065
10509
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#security" class="md-nav__link">
|
|
10510
|
+
<a href="#security-in-v148" class="md-nav__link">
|
|
10067
10511
|
<span class="md-ellipsis">
|
|
10068
|
-
Security
|
|
10512
|
+
Security in v1.4.8
|
|
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="#added-in-v148" class="md-nav__link">
|
|
10076
10520
|
<span class="md-ellipsis">
|
|
10077
|
-
Added
|
|
10521
|
+
Added in v1.4.8
|
|
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="#changed-in-v148" class="md-nav__link">
|
|
10085
10529
|
<span class="md-ellipsis">
|
|
10086
|
-
Changed
|
|
10530
|
+
Changed in v1.4.8
|
|
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="#fixed-in-v148" class="md-nav__link">
|
|
10094
10538
|
<span class="md-ellipsis">
|
|
10095
|
-
Fixed
|
|
10539
|
+
Fixed in v1.4.8
|
|
10096
10540
|
</span>
|
|
10097
10541
|
</a>
|
|
10098
10542
|
|
|
10099
10543
|
</li>
|
|
10100
10544
|
|
|
10101
10545
|
<li class="md-nav__item">
|
|
10102
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10546
|
+
<a href="#dependencies-in-v148" class="md-nav__link">
|
|
10103
10547
|
<span class="md-ellipsis">
|
|
10104
|
-
Dependencies
|
|
10548
|
+
Dependencies in v1.4.8
|
|
10105
10549
|
</span>
|
|
10106
10550
|
</a>
|
|
10107
10551
|
|
|
10108
10552
|
</li>
|
|
10109
10553
|
|
|
10110
10554
|
<li class="md-nav__item">
|
|
10111
|
-
<a href="#
|
|
10555
|
+
<a href="#documentation-in-v148" class="md-nav__link">
|
|
10112
10556
|
<span class="md-ellipsis">
|
|
10113
|
-
Documentation
|
|
10557
|
+
Documentation in v1.4.8
|
|
10114
10558
|
</span>
|
|
10115
10559
|
</a>
|
|
10116
10560
|
|
|
10117
10561
|
</li>
|
|
10118
10562
|
|
|
10119
10563
|
<li class="md-nav__item">
|
|
10120
|
-
<a href="#
|
|
10564
|
+
<a href="#housekeeping-in-v148" class="md-nav__link">
|
|
10121
10565
|
<span class="md-ellipsis">
|
|
10122
|
-
Housekeeping
|
|
10566
|
+
Housekeeping in v1.4.8
|
|
10123
10567
|
</span>
|
|
10124
10568
|
</a>
|
|
10125
10569
|
|
|
@@ -10141,9 +10585,9 @@
|
|
|
10141
10585
|
<ul class="md-nav__list">
|
|
10142
10586
|
|
|
10143
10587
|
<li class="md-nav__item">
|
|
10144
|
-
<a href="#
|
|
10588
|
+
<a href="#fixed-in-v147" class="md-nav__link">
|
|
10145
10589
|
<span class="md-ellipsis">
|
|
10146
|
-
Fixed
|
|
10590
|
+
Fixed in v1.4.7
|
|
10147
10591
|
</span>
|
|
10148
10592
|
</a>
|
|
10149
10593
|
|
|
@@ -10165,54 +10609,54 @@
|
|
|
10165
10609
|
<ul class="md-nav__list">
|
|
10166
10610
|
|
|
10167
10611
|
<li class="md-nav__item">
|
|
10168
|
-
<a href="#
|
|
10612
|
+
<a href="#security-in-v146" class="md-nav__link">
|
|
10169
10613
|
<span class="md-ellipsis">
|
|
10170
|
-
Security
|
|
10614
|
+
Security in v1.4.6
|
|
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="#added-in-v146" class="md-nav__link">
|
|
10178
10622
|
<span class="md-ellipsis">
|
|
10179
|
-
Added
|
|
10623
|
+
Added in v1.4.6
|
|
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="#changed-in-v146" class="md-nav__link">
|
|
10187
10631
|
<span class="md-ellipsis">
|
|
10188
|
-
Changed
|
|
10632
|
+
Changed in v1.4.6
|
|
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="#fixed-in-v146" class="md-nav__link">
|
|
10196
10640
|
<span class="md-ellipsis">
|
|
10197
|
-
Fixed
|
|
10641
|
+
Fixed in v1.4.6
|
|
10198
10642
|
</span>
|
|
10199
10643
|
</a>
|
|
10200
10644
|
|
|
10201
10645
|
</li>
|
|
10202
10646
|
|
|
10203
10647
|
<li class="md-nav__item">
|
|
10204
|
-
<a href="#
|
|
10648
|
+
<a href="#documentation-in-v146" class="md-nav__link">
|
|
10205
10649
|
<span class="md-ellipsis">
|
|
10206
|
-
Documentation
|
|
10650
|
+
Documentation in v1.4.6
|
|
10207
10651
|
</span>
|
|
10208
10652
|
</a>
|
|
10209
10653
|
|
|
10210
10654
|
</li>
|
|
10211
10655
|
|
|
10212
10656
|
<li class="md-nav__item">
|
|
10213
|
-
<a href="#
|
|
10657
|
+
<a href="#housekeeping-in-v146" class="md-nav__link">
|
|
10214
10658
|
<span class="md-ellipsis">
|
|
10215
|
-
Housekeeping
|
|
10659
|
+
Housekeeping in v1.4.6
|
|
10216
10660
|
</span>
|
|
10217
10661
|
</a>
|
|
10218
10662
|
|
|
@@ -10234,54 +10678,54 @@
|
|
|
10234
10678
|
<ul class="md-nav__list">
|
|
10235
10679
|
|
|
10236
10680
|
<li class="md-nav__item">
|
|
10237
|
-
<a href="#
|
|
10681
|
+
<a href="#added-in-v145" class="md-nav__link">
|
|
10238
10682
|
<span class="md-ellipsis">
|
|
10239
|
-
Added
|
|
10683
|
+
Added in v1.4.5
|
|
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="#changed-in-v145" class="md-nav__link">
|
|
10247
10691
|
<span class="md-ellipsis">
|
|
10248
|
-
Changed
|
|
10692
|
+
Changed in v1.4.5
|
|
10249
10693
|
</span>
|
|
10250
10694
|
</a>
|
|
10251
10695
|
|
|
10252
10696
|
</li>
|
|
10253
10697
|
|
|
10254
10698
|
<li class="md-nav__item">
|
|
10255
|
-
<a href="#
|
|
10699
|
+
<a href="#fixed-in-v145" class="md-nav__link">
|
|
10256
10700
|
<span class="md-ellipsis">
|
|
10257
|
-
Fixed
|
|
10701
|
+
Fixed in v1.4.5
|
|
10258
10702
|
</span>
|
|
10259
10703
|
</a>
|
|
10260
10704
|
|
|
10261
10705
|
</li>
|
|
10262
10706
|
|
|
10263
10707
|
<li class="md-nav__item">
|
|
10264
|
-
<a href="#
|
|
10708
|
+
<a href="#dependencies-in-v145" class="md-nav__link">
|
|
10265
10709
|
<span class="md-ellipsis">
|
|
10266
|
-
Dependencies
|
|
10710
|
+
Dependencies in v1.4.5
|
|
10267
10711
|
</span>
|
|
10268
10712
|
</a>
|
|
10269
10713
|
|
|
10270
10714
|
</li>
|
|
10271
10715
|
|
|
10272
10716
|
<li class="md-nav__item">
|
|
10273
|
-
<a href="#
|
|
10717
|
+
<a href="#documentation-in-v145" class="md-nav__link">
|
|
10274
10718
|
<span class="md-ellipsis">
|
|
10275
|
-
Documentation
|
|
10719
|
+
Documentation in v1.4.5
|
|
10276
10720
|
</span>
|
|
10277
10721
|
</a>
|
|
10278
10722
|
|
|
10279
10723
|
</li>
|
|
10280
10724
|
|
|
10281
10725
|
<li class="md-nav__item">
|
|
10282
|
-
<a href="#
|
|
10726
|
+
<a href="#housekeeping-in-v145" class="md-nav__link">
|
|
10283
10727
|
<span class="md-ellipsis">
|
|
10284
|
-
Housekeeping
|
|
10728
|
+
Housekeeping in v1.4.5
|
|
10285
10729
|
</span>
|
|
10286
10730
|
</a>
|
|
10287
10731
|
|
|
@@ -10303,45 +10747,45 @@
|
|
|
10303
10747
|
<ul class="md-nav__list">
|
|
10304
10748
|
|
|
10305
10749
|
<li class="md-nav__item">
|
|
10306
|
-
<a href="#
|
|
10750
|
+
<a href="#added-in-v144" class="md-nav__link">
|
|
10307
10751
|
<span class="md-ellipsis">
|
|
10308
|
-
Added
|
|
10752
|
+
Added in v1.4.4
|
|
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="#changed-in-v144" class="md-nav__link">
|
|
10316
10760
|
<span class="md-ellipsis">
|
|
10317
|
-
Changed
|
|
10761
|
+
Changed in v1.4.4
|
|
10318
10762
|
</span>
|
|
10319
10763
|
</a>
|
|
10320
10764
|
|
|
10321
10765
|
</li>
|
|
10322
10766
|
|
|
10323
10767
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10768
|
+
<a href="#fixed-in-v144" class="md-nav__link">
|
|
10325
10769
|
<span class="md-ellipsis">
|
|
10326
|
-
Fixed
|
|
10770
|
+
Fixed in v1.4.4
|
|
10327
10771
|
</span>
|
|
10328
10772
|
</a>
|
|
10329
10773
|
|
|
10330
10774
|
</li>
|
|
10331
10775
|
|
|
10332
10776
|
<li class="md-nav__item">
|
|
10333
|
-
<a href="#
|
|
10777
|
+
<a href="#documentation-in-v144" class="md-nav__link">
|
|
10334
10778
|
<span class="md-ellipsis">
|
|
10335
|
-
Documentation
|
|
10779
|
+
Documentation in v1.4.4
|
|
10336
10780
|
</span>
|
|
10337
10781
|
</a>
|
|
10338
10782
|
|
|
10339
10783
|
</li>
|
|
10340
10784
|
|
|
10341
10785
|
<li class="md-nav__item">
|
|
10342
|
-
<a href="#
|
|
10786
|
+
<a href="#housekeeping-in-v144" class="md-nav__link">
|
|
10343
10787
|
<span class="md-ellipsis">
|
|
10344
|
-
Housekeeping
|
|
10788
|
+
Housekeeping in v1.4.4
|
|
10345
10789
|
</span>
|
|
10346
10790
|
</a>
|
|
10347
10791
|
|
|
@@ -10363,54 +10807,54 @@
|
|
|
10363
10807
|
<ul class="md-nav__list">
|
|
10364
10808
|
|
|
10365
10809
|
<li class="md-nav__item">
|
|
10366
|
-
<a href="#
|
|
10810
|
+
<a href="#added-in-v143" class="md-nav__link">
|
|
10367
10811
|
<span class="md-ellipsis">
|
|
10368
|
-
Added
|
|
10812
|
+
Added in v1.4.3
|
|
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="#changed-in-v143" class="md-nav__link">
|
|
10376
10820
|
<span class="md-ellipsis">
|
|
10377
|
-
Changed
|
|
10821
|
+
Changed in v1.4.3
|
|
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="#fixed-in-v143" class="md-nav__link">
|
|
10385
10829
|
<span class="md-ellipsis">
|
|
10386
|
-
Fixed
|
|
10830
|
+
Fixed in v1.4.3
|
|
10387
10831
|
</span>
|
|
10388
10832
|
</a>
|
|
10389
10833
|
|
|
10390
10834
|
</li>
|
|
10391
10835
|
|
|
10392
10836
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
10837
|
+
<a href="#dependencies-in-v143" class="md-nav__link">
|
|
10394
10838
|
<span class="md-ellipsis">
|
|
10395
|
-
Dependencies
|
|
10839
|
+
Dependencies in v1.4.3
|
|
10396
10840
|
</span>
|
|
10397
10841
|
</a>
|
|
10398
10842
|
|
|
10399
10843
|
</li>
|
|
10400
10844
|
|
|
10401
10845
|
<li class="md-nav__item">
|
|
10402
|
-
<a href="#
|
|
10846
|
+
<a href="#documentation-in-v143" class="md-nav__link">
|
|
10403
10847
|
<span class="md-ellipsis">
|
|
10404
|
-
Documentation
|
|
10848
|
+
Documentation in v1.4.3
|
|
10405
10849
|
</span>
|
|
10406
10850
|
</a>
|
|
10407
10851
|
|
|
10408
10852
|
</li>
|
|
10409
10853
|
|
|
10410
10854
|
<li class="md-nav__item">
|
|
10411
|
-
<a href="#
|
|
10855
|
+
<a href="#housekeeping-in-v143" class="md-nav__link">
|
|
10412
10856
|
<span class="md-ellipsis">
|
|
10413
|
-
Housekeeping
|
|
10857
|
+
Housekeeping in v1.4.3
|
|
10414
10858
|
</span>
|
|
10415
10859
|
</a>
|
|
10416
10860
|
|
|
@@ -10432,54 +10876,54 @@
|
|
|
10432
10876
|
<ul class="md-nav__list">
|
|
10433
10877
|
|
|
10434
10878
|
<li class="md-nav__item">
|
|
10435
|
-
<a href="#
|
|
10879
|
+
<a href="#added-in-v142" class="md-nav__link">
|
|
10436
10880
|
<span class="md-ellipsis">
|
|
10437
|
-
Added
|
|
10881
|
+
Added in v1.4.2
|
|
10438
10882
|
</span>
|
|
10439
10883
|
</a>
|
|
10440
10884
|
|
|
10441
10885
|
</li>
|
|
10442
10886
|
|
|
10443
10887
|
<li class="md-nav__item">
|
|
10444
|
-
<a href="#
|
|
10888
|
+
<a href="#changed-in-v142" class="md-nav__link">
|
|
10445
10889
|
<span class="md-ellipsis">
|
|
10446
|
-
Changed
|
|
10890
|
+
Changed in v1.4.2
|
|
10447
10891
|
</span>
|
|
10448
10892
|
</a>
|
|
10449
10893
|
|
|
10450
10894
|
</li>
|
|
10451
10895
|
|
|
10452
10896
|
<li class="md-nav__item">
|
|
10453
|
-
<a href="#
|
|
10897
|
+
<a href="#fixed-in-v142" class="md-nav__link">
|
|
10454
10898
|
<span class="md-ellipsis">
|
|
10455
|
-
Fixed
|
|
10899
|
+
Fixed in v1.4.2
|
|
10456
10900
|
</span>
|
|
10457
10901
|
</a>
|
|
10458
10902
|
|
|
10459
10903
|
</li>
|
|
10460
10904
|
|
|
10461
10905
|
<li class="md-nav__item">
|
|
10462
|
-
<a href="#
|
|
10906
|
+
<a href="#dependencies-in-v142" class="md-nav__link">
|
|
10463
10907
|
<span class="md-ellipsis">
|
|
10464
|
-
Dependencies
|
|
10908
|
+
Dependencies in v1.4.2
|
|
10465
10909
|
</span>
|
|
10466
10910
|
</a>
|
|
10467
10911
|
|
|
10468
10912
|
</li>
|
|
10469
10913
|
|
|
10470
10914
|
<li class="md-nav__item">
|
|
10471
|
-
<a href="#
|
|
10915
|
+
<a href="#documentation-in-v142" class="md-nav__link">
|
|
10472
10916
|
<span class="md-ellipsis">
|
|
10473
|
-
Documentation
|
|
10917
|
+
Documentation in v1.4.2
|
|
10474
10918
|
</span>
|
|
10475
10919
|
</a>
|
|
10476
10920
|
|
|
10477
10921
|
</li>
|
|
10478
10922
|
|
|
10479
10923
|
<li class="md-nav__item">
|
|
10480
|
-
<a href="#
|
|
10924
|
+
<a href="#housekeeping-in-v142" class="md-nav__link">
|
|
10481
10925
|
<span class="md-ellipsis">
|
|
10482
|
-
Housekeeping
|
|
10926
|
+
Housekeeping in v1.4.2
|
|
10483
10927
|
</span>
|
|
10484
10928
|
</a>
|
|
10485
10929
|
|
|
@@ -10501,45 +10945,45 @@
|
|
|
10501
10945
|
<ul class="md-nav__list">
|
|
10502
10946
|
|
|
10503
10947
|
<li class="md-nav__item">
|
|
10504
|
-
<a href="#
|
|
10948
|
+
<a href="#added-in-v141" class="md-nav__link">
|
|
10505
10949
|
<span class="md-ellipsis">
|
|
10506
|
-
Added
|
|
10950
|
+
Added in v1.4.1
|
|
10507
10951
|
</span>
|
|
10508
10952
|
</a>
|
|
10509
10953
|
|
|
10510
10954
|
</li>
|
|
10511
10955
|
|
|
10512
10956
|
<li class="md-nav__item">
|
|
10513
|
-
<a href="#
|
|
10957
|
+
<a href="#changed-in-v141" class="md-nav__link">
|
|
10514
10958
|
<span class="md-ellipsis">
|
|
10515
|
-
Changed
|
|
10959
|
+
Changed in v1.4.1
|
|
10516
10960
|
</span>
|
|
10517
10961
|
</a>
|
|
10518
10962
|
|
|
10519
10963
|
</li>
|
|
10520
10964
|
|
|
10521
10965
|
<li class="md-nav__item">
|
|
10522
|
-
<a href="#
|
|
10966
|
+
<a href="#fixed-in-v141" class="md-nav__link">
|
|
10523
10967
|
<span class="md-ellipsis">
|
|
10524
|
-
Fixed
|
|
10968
|
+
Fixed in v1.4.1
|
|
10525
10969
|
</span>
|
|
10526
10970
|
</a>
|
|
10527
10971
|
|
|
10528
10972
|
</li>
|
|
10529
10973
|
|
|
10530
10974
|
<li class="md-nav__item">
|
|
10531
|
-
<a href="#
|
|
10975
|
+
<a href="#documentation-in-v141" class="md-nav__link">
|
|
10532
10976
|
<span class="md-ellipsis">
|
|
10533
|
-
Documentation
|
|
10977
|
+
Documentation in v1.4.1
|
|
10534
10978
|
</span>
|
|
10535
10979
|
</a>
|
|
10536
10980
|
|
|
10537
10981
|
</li>
|
|
10538
10982
|
|
|
10539
10983
|
<li class="md-nav__item">
|
|
10540
|
-
<a href="#
|
|
10984
|
+
<a href="#housekeeping-in-v141" class="md-nav__link">
|
|
10541
10985
|
<span class="md-ellipsis">
|
|
10542
|
-
Housekeeping
|
|
10986
|
+
Housekeeping in v1.4.1
|
|
10543
10987
|
</span>
|
|
10544
10988
|
</a>
|
|
10545
10989
|
|
|
@@ -10561,54 +11005,54 @@
|
|
|
10561
11005
|
<ul class="md-nav__list">
|
|
10562
11006
|
|
|
10563
11007
|
<li class="md-nav__item">
|
|
10564
|
-
<a href="#
|
|
11008
|
+
<a href="#added-in-v140" class="md-nav__link">
|
|
10565
11009
|
<span class="md-ellipsis">
|
|
10566
|
-
Added
|
|
11010
|
+
Added in v1.4.0
|
|
10567
11011
|
</span>
|
|
10568
11012
|
</a>
|
|
10569
11013
|
|
|
10570
11014
|
</li>
|
|
10571
11015
|
|
|
10572
11016
|
<li class="md-nav__item">
|
|
10573
|
-
<a href="#
|
|
11017
|
+
<a href="#changed-in-v140" class="md-nav__link">
|
|
10574
11018
|
<span class="md-ellipsis">
|
|
10575
|
-
Changed
|
|
11019
|
+
Changed in v1.4.0
|
|
10576
11020
|
</span>
|
|
10577
11021
|
</a>
|
|
10578
11022
|
|
|
10579
11023
|
</li>
|
|
10580
11024
|
|
|
10581
11025
|
<li class="md-nav__item">
|
|
10582
|
-
<a href="#
|
|
11026
|
+
<a href="#fixed-in-v140" class="md-nav__link">
|
|
10583
11027
|
<span class="md-ellipsis">
|
|
10584
|
-
Fixed
|
|
11028
|
+
Fixed in v1.4.0
|
|
10585
11029
|
</span>
|
|
10586
11030
|
</a>
|
|
10587
11031
|
|
|
10588
11032
|
</li>
|
|
10589
11033
|
|
|
10590
11034
|
<li class="md-nav__item">
|
|
10591
|
-
<a href="#
|
|
11035
|
+
<a href="#dependencies-in-v140" class="md-nav__link">
|
|
10592
11036
|
<span class="md-ellipsis">
|
|
10593
|
-
Dependencies
|
|
11037
|
+
Dependencies in v1.4.0
|
|
10594
11038
|
</span>
|
|
10595
11039
|
</a>
|
|
10596
11040
|
|
|
10597
11041
|
</li>
|
|
10598
11042
|
|
|
10599
11043
|
<li class="md-nav__item">
|
|
10600
|
-
<a href="#
|
|
11044
|
+
<a href="#documentation-in-v140" class="md-nav__link">
|
|
10601
11045
|
<span class="md-ellipsis">
|
|
10602
|
-
Documentation
|
|
11046
|
+
Documentation in v1.4.0
|
|
10603
11047
|
</span>
|
|
10604
11048
|
</a>
|
|
10605
11049
|
|
|
10606
11050
|
</li>
|
|
10607
11051
|
|
|
10608
11052
|
<li class="md-nav__item">
|
|
10609
|
-
<a href="#
|
|
11053
|
+
<a href="#housekeeping-in-v140" class="md-nav__link">
|
|
10610
11054
|
<span class="md-ellipsis">
|
|
10611
|
-
Housekeeping
|
|
11055
|
+
Housekeeping in v1.4.0
|
|
10612
11056
|
</span>
|
|
10613
11057
|
</a>
|
|
10614
11058
|
|
|
@@ -10630,45 +11074,45 @@
|
|
|
10630
11074
|
<ul class="md-nav__list">
|
|
10631
11075
|
|
|
10632
11076
|
<li class="md-nav__item">
|
|
10633
|
-
<a href="#
|
|
11077
|
+
<a href="#added-in-v140rc1" class="md-nav__link">
|
|
10634
11078
|
<span class="md-ellipsis">
|
|
10635
|
-
Added
|
|
11079
|
+
Added in v1.4.0rc1
|
|
10636
11080
|
</span>
|
|
10637
11081
|
</a>
|
|
10638
11082
|
|
|
10639
11083
|
</li>
|
|
10640
11084
|
|
|
10641
11085
|
<li class="md-nav__item">
|
|
10642
|
-
<a href="#
|
|
11086
|
+
<a href="#changed-in-v140rc1" class="md-nav__link">
|
|
10643
11087
|
<span class="md-ellipsis">
|
|
10644
|
-
Changed
|
|
11088
|
+
Changed in v1.4.0rc1
|
|
10645
11089
|
</span>
|
|
10646
11090
|
</a>
|
|
10647
11091
|
|
|
10648
11092
|
</li>
|
|
10649
11093
|
|
|
10650
11094
|
<li class="md-nav__item">
|
|
10651
|
-
<a href="#
|
|
11095
|
+
<a href="#fixed-in-v140rc1" class="md-nav__link">
|
|
10652
11096
|
<span class="md-ellipsis">
|
|
10653
|
-
Fixed
|
|
11097
|
+
Fixed in v1.4.0rc1
|
|
10654
11098
|
</span>
|
|
10655
11099
|
</a>
|
|
10656
11100
|
|
|
10657
11101
|
</li>
|
|
10658
11102
|
|
|
10659
11103
|
<li class="md-nav__item">
|
|
10660
|
-
<a href="#
|
|
11104
|
+
<a href="#documentation-in-v140rc1" class="md-nav__link">
|
|
10661
11105
|
<span class="md-ellipsis">
|
|
10662
|
-
Documentation
|
|
11106
|
+
Documentation in v1.4.0rc1
|
|
10663
11107
|
</span>
|
|
10664
11108
|
</a>
|
|
10665
11109
|
|
|
10666
11110
|
</li>
|
|
10667
11111
|
|
|
10668
11112
|
<li class="md-nav__item">
|
|
10669
|
-
<a href="#
|
|
11113
|
+
<a href="#housekeeping-in-v140rc1" class="md-nav__link">
|
|
10670
11114
|
<span class="md-ellipsis">
|
|
10671
|
-
Housekeeping
|
|
11115
|
+
Housekeeping in v1.4.0rc1
|
|
10672
11116
|
</span>
|
|
10673
11117
|
</a>
|
|
10674
11118
|
|
|
@@ -10690,45 +11134,45 @@
|
|
|
10690
11134
|
<ul class="md-nav__list">
|
|
10691
11135
|
|
|
10692
11136
|
<li class="md-nav__item">
|
|
10693
|
-
<a href="#
|
|
11137
|
+
<a href="#added-in-v140b1" class="md-nav__link">
|
|
10694
11138
|
<span class="md-ellipsis">
|
|
10695
|
-
Added
|
|
11139
|
+
Added in v1.4.0b1
|
|
10696
11140
|
</span>
|
|
10697
11141
|
</a>
|
|
10698
11142
|
|
|
10699
11143
|
</li>
|
|
10700
11144
|
|
|
10701
11145
|
<li class="md-nav__item">
|
|
10702
|
-
<a href="#
|
|
11146
|
+
<a href="#changed-in-v140b1" class="md-nav__link">
|
|
10703
11147
|
<span class="md-ellipsis">
|
|
10704
|
-
Changed
|
|
11148
|
+
Changed in v1.4.0b1
|
|
10705
11149
|
</span>
|
|
10706
11150
|
</a>
|
|
10707
11151
|
|
|
10708
11152
|
</li>
|
|
10709
11153
|
|
|
10710
11154
|
<li class="md-nav__item">
|
|
10711
|
-
<a href="#
|
|
11155
|
+
<a href="#fixed-in-v140b1" class="md-nav__link">
|
|
10712
11156
|
<span class="md-ellipsis">
|
|
10713
|
-
Fixed
|
|
11157
|
+
Fixed in v1.4.0b1
|
|
10714
11158
|
</span>
|
|
10715
11159
|
</a>
|
|
10716
11160
|
|
|
10717
11161
|
</li>
|
|
10718
11162
|
|
|
10719
11163
|
<li class="md-nav__item">
|
|
10720
|
-
<a href="#
|
|
11164
|
+
<a href="#dependencies-in-v140b1" class="md-nav__link">
|
|
10721
11165
|
<span class="md-ellipsis">
|
|
10722
|
-
Dependencies
|
|
11166
|
+
Dependencies in v1.4.0b1
|
|
10723
11167
|
</span>
|
|
10724
11168
|
</a>
|
|
10725
11169
|
|
|
10726
11170
|
</li>
|
|
10727
11171
|
|
|
10728
11172
|
<li class="md-nav__item">
|
|
10729
|
-
<a href="#
|
|
11173
|
+
<a href="#documentation-in-v140b1" class="md-nav__link">
|
|
10730
11174
|
<span class="md-ellipsis">
|
|
10731
|
-
Documentation
|
|
11175
|
+
Documentation in v1.4.0b1
|
|
10732
11176
|
</span>
|
|
10733
11177
|
</a>
|
|
10734
11178
|
|
|
@@ -10750,54 +11194,54 @@
|
|
|
10750
11194
|
<ul class="md-nav__list">
|
|
10751
11195
|
|
|
10752
11196
|
<li class="md-nav__item">
|
|
10753
|
-
<a href="#
|
|
11197
|
+
<a href="#added-in-v140a2" class="md-nav__link">
|
|
10754
11198
|
<span class="md-ellipsis">
|
|
10755
|
-
Added
|
|
11199
|
+
Added in v1.4.0a2
|
|
10756
11200
|
</span>
|
|
10757
11201
|
</a>
|
|
10758
11202
|
|
|
10759
11203
|
</li>
|
|
10760
11204
|
|
|
10761
11205
|
<li class="md-nav__item">
|
|
10762
|
-
<a href="#
|
|
11206
|
+
<a href="#changed-in-v140a2" class="md-nav__link">
|
|
10763
11207
|
<span class="md-ellipsis">
|
|
10764
|
-
Changed
|
|
11208
|
+
Changed in v1.4.0a2
|
|
10765
11209
|
</span>
|
|
10766
11210
|
</a>
|
|
10767
11211
|
|
|
10768
11212
|
</li>
|
|
10769
11213
|
|
|
10770
11214
|
<li class="md-nav__item">
|
|
10771
|
-
<a href="#removed" class="md-nav__link">
|
|
11215
|
+
<a href="#removed-in-v140a2" class="md-nav__link">
|
|
10772
11216
|
<span class="md-ellipsis">
|
|
10773
|
-
Removed
|
|
11217
|
+
Removed in v1.4.0a2
|
|
10774
11218
|
</span>
|
|
10775
11219
|
</a>
|
|
10776
11220
|
|
|
10777
11221
|
</li>
|
|
10778
11222
|
|
|
10779
11223
|
<li class="md-nav__item">
|
|
10780
|
-
<a href="#
|
|
11224
|
+
<a href="#fixed-in-v140a2" class="md-nav__link">
|
|
10781
11225
|
<span class="md-ellipsis">
|
|
10782
|
-
Fixed
|
|
11226
|
+
Fixed in v1.4.0a2
|
|
10783
11227
|
</span>
|
|
10784
11228
|
</a>
|
|
10785
11229
|
|
|
10786
11230
|
</li>
|
|
10787
11231
|
|
|
10788
11232
|
<li class="md-nav__item">
|
|
10789
|
-
<a href="#
|
|
11233
|
+
<a href="#dependencies-in-v140a2" class="md-nav__link">
|
|
10790
11234
|
<span class="md-ellipsis">
|
|
10791
|
-
Dependencies
|
|
11235
|
+
Dependencies in v1.4.0a2
|
|
10792
11236
|
</span>
|
|
10793
11237
|
</a>
|
|
10794
11238
|
|
|
10795
11239
|
</li>
|
|
10796
11240
|
|
|
10797
11241
|
<li class="md-nav__item">
|
|
10798
|
-
<a href="#
|
|
11242
|
+
<a href="#housekeeping-in-v140a2" class="md-nav__link">
|
|
10799
11243
|
<span class="md-ellipsis">
|
|
10800
|
-
Housekeeping
|
|
11244
|
+
Housekeeping in v1.4.0a2
|
|
10801
11245
|
</span>
|
|
10802
11246
|
</a>
|
|
10803
11247
|
|
|
@@ -10819,27 +11263,27 @@
|
|
|
10819
11263
|
<ul class="md-nav__list">
|
|
10820
11264
|
|
|
10821
11265
|
<li class="md-nav__item">
|
|
10822
|
-
<a href="#
|
|
11266
|
+
<a href="#added-in-v140a1" class="md-nav__link">
|
|
10823
11267
|
<span class="md-ellipsis">
|
|
10824
|
-
Added
|
|
11268
|
+
Added in v1.4.0a1
|
|
10825
11269
|
</span>
|
|
10826
11270
|
</a>
|
|
10827
11271
|
|
|
10828
11272
|
</li>
|
|
10829
11273
|
|
|
10830
11274
|
<li class="md-nav__item">
|
|
10831
|
-
<a href="#
|
|
11275
|
+
<a href="#changed-in-v140a1" class="md-nav__link">
|
|
10832
11276
|
<span class="md-ellipsis">
|
|
10833
|
-
Changed
|
|
11277
|
+
Changed in v1.4.0a1
|
|
10834
11278
|
</span>
|
|
10835
11279
|
</a>
|
|
10836
11280
|
|
|
10837
11281
|
</li>
|
|
10838
11282
|
|
|
10839
11283
|
<li class="md-nav__item">
|
|
10840
|
-
<a href="#
|
|
11284
|
+
<a href="#fixed-in-v140a1" class="md-nav__link">
|
|
10841
11285
|
<span class="md-ellipsis">
|
|
10842
|
-
Fixed
|
|
11286
|
+
Fixed in v1.4.0a1
|
|
10843
11287
|
</span>
|
|
10844
11288
|
</a>
|
|
10845
11289
|
|
|
@@ -10868,8 +11312,6 @@
|
|
|
10868
11312
|
|
|
10869
11313
|
|
|
10870
11314
|
|
|
10871
|
-
<!-- markdownlint-disable MD012 MD024 -->
|
|
10872
|
-
|
|
10873
11315
|
<h1 id="nautobot-v14">Nautobot v1.4<a class="headerlink" href="#nautobot-v14" title="Permanent link">¶</a></h1>
|
|
10874
11316
|
<p>This document describes all new features and changes in Nautobot 1.4.</p>
|
|
10875
11317
|
<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>
|
|
@@ -11006,28 +11448,28 @@
|
|
|
11006
11448
|
<h4 id="moved-registry-template-context-1945">Moved Registry Template Context (<a href="https://github.com/nautobot/nautobot/issues/1945">#1945</a>)<a class="headerlink" href="#moved-registry-template-context-1945" title="Permanent link">¶</a></h4>
|
|
11007
11449
|
<p>The <code>settings_and_registry</code> default context processor was changed to purely <code>settings</code> - the (large) Nautobot application registry dictionary is no longer provided as part of the render context for all templates by default. Added a new <code>registry</code> template tag that can be invoked by specific templates to provide this variable where needed.</p>
|
|
11008
11450
|
<h2 id="v1410-2022-11-07">v1.4.10 (2022-11-07)<a class="headerlink" href="#v1410-2022-11-07" title="Permanent link">¶</a></h2>
|
|
11009
|
-
<h3 id="
|
|
11451
|
+
<h3 id="changed-in-v1410">Changed in v1.4.10<a class="headerlink" href="#changed-in-v1410" title="Permanent link">¶</a></h3>
|
|
11010
11452
|
<ul>
|
|
11011
11453
|
<li><a href="https://github.com/nautobot/nautobot/issues/2758">#2758</a> - Changed console logging back to disabled by default when running <code>nautobot-server test ...</code>.</li>
|
|
11012
11454
|
</ul>
|
|
11013
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11455
|
+
<h3 id="fixed-in-v1410">Fixed in v1.4.10<a class="headerlink" href="#fixed-in-v1410" title="Permanent link">¶</a></h3>
|
|
11014
11456
|
<ul>
|
|
11015
11457
|
<li><a href="https://github.com/nautobot/nautobot/issues/2755">#2755</a> - Fixed incorrect file permissions on <code>/opt/nautobot/nautobot_config.py</code> in <code>final</code> Docker images.</li>
|
|
11016
11458
|
</ul>
|
|
11017
11459
|
<h2 id="v149-2022-11-04">v1.4.9 (2022-11-04)<a class="headerlink" href="#v149-2022-11-04" title="Permanent link">¶</a></h2>
|
|
11018
|
-
<h3 id="
|
|
11460
|
+
<h3 id="added-in-v149">Added in v1.4.9<a class="headerlink" href="#added-in-v149" title="Permanent link">¶</a></h3>
|
|
11019
11461
|
<ul>
|
|
11020
11462
|
<li><a href="https://github.com/nautobot/nautobot/issues/1720">#1720</a> - Added NullableDateField to enable Date Type CustomField to filter on null value.</li>
|
|
11021
11463
|
</ul>
|
|
11022
|
-
<h3 id="
|
|
11464
|
+
<h3 id="changed-in-v149">Changed in v1.4.9<a class="headerlink" href="#changed-in-v149" title="Permanent link">¶</a></h3>
|
|
11023
11465
|
<ul>
|
|
11024
11466
|
<li><a href="https://github.com/nautobot/nautobot/issues/2669">#2669</a> - Blocked changing the parent of a LocationType when it already has Locations using it.</li>
|
|
11025
11467
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Changed the published <code>nautobot-dev</code> images to use the same default <code>nautobot_config.py</code> as the published <code>nautobot</code> images, instead of using the Nautobot core development <code>nautobot_config.py</code> file.</li>
|
|
11026
11468
|
</ul>
|
|
11027
|
-
<h3 id="
|
|
11469
|
+
<h3 id="fixed-in-v149">Fixed in v1.4.9<a class="headerlink" href="#fixed-in-v149" title="Permanent link">¶</a></h3>
|
|
11028
11470
|
<ul>
|
|
11029
11471
|
<li><a href="https://github.com/nautobot/nautobot/issues/2406">#2406</a> - Fixed missing HTML element ID for hyperlinks.</li>
|
|
11030
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/2419">#2419</a> - Fixed the null device interface status when a device is created with a device_role associated to an InterfaceTemplate.</li>
|
|
11472
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2419">#2419</a> - Fixed the null device interface status when a device is created with a <code>device_role</code> associated to an InterfaceTemplate.</li>
|
|
11031
11473
|
<li><a href="https://github.com/nautobot/nautobot/issues/2552">#2552</a> - Updated CSS to better account for footer resizing.</li>
|
|
11032
11474
|
<li><a href="https://github.com/nautobot/nautobot/issues/2601">#2601</a> - Fixed an issue where a Git repository could provide Jobs even if not marked as a provider of Jobs.</li>
|
|
11033
11475
|
<li><a href="https://github.com/nautobot/nautobot/issues/2683">#2683</a> - Fixed so that unauthenticated users don't see the version number for Nautobot in the footer.</li>
|
|
@@ -11038,12 +11480,12 @@
|
|
|
11038
11480
|
<li><a href="https://github.com/nautobot/nautobot/issues/2717">#2717</a> - Fixed backwards-compatibility with changes made to <code>TreeNodeMultipleChoiceFilter</code>.</li>
|
|
11039
11481
|
<li><a href="https://github.com/nautobot/nautobot/issues/2733">#2733</a> - Fixed bug in <code>run_job_for_testing</code> when no request is provided.</li>
|
|
11040
11482
|
</ul>
|
|
11041
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11483
|
+
<h3 id="documentation-in-v149">Documentation in v1.4.9<a class="headerlink" href="#documentation-in-v149" title="Permanent link">¶</a></h3>
|
|
11042
11484
|
<ul>
|
|
11043
11485
|
<li><a href="https://github.com/nautobot/nautobot/issues/2658">#2658</a> - Updated plugin development documentation to introduce <code>NautobotUIViewSet</code> as the first approach for the <code>Adding Web UI Views</code> section.</li>
|
|
11044
11486
|
<li><a href="https://github.com/nautobot/nautobot/issues/2712">#2712</a> - Updated docs links to include the <code>/projects/core</code> in the url path to link correctly.</li>
|
|
11045
11487
|
</ul>
|
|
11046
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11488
|
+
<h3 id="housekeeping-in-v149">Housekeeping in v1.4.9<a class="headerlink" href="#housekeeping-in-v149" title="Permanent link">¶</a></h3>
|
|
11047
11489
|
<ul>
|
|
11048
11490
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Renamed <code>development/docker-compose.build.yml</code> to <code>development/docker-compose.final.yml</code> to better reflect its meaning.</li>
|
|
11049
11491
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Changed the image labels used in the docker-compose development workflow to reduce ambiguity.</li>
|
|
@@ -11053,24 +11495,24 @@
|
|
|
11053
11495
|
<li><a href="https://github.com/nautobot/nautobot/issues/2736">#2736</a> - Fixed incorrect <code>site_url</code> setting for MkDocs.</li>
|
|
11054
11496
|
</ul>
|
|
11055
11497
|
<h2 id="v148-2022-10-31">v1.4.8 (2022-10-31)<a class="headerlink" href="#v148-2022-10-31" title="Permanent link">¶</a></h2>
|
|
11056
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11498
|
+
<h3 id="security-in-v148">Security in v1.4.8<a class="headerlink" href="#security-in-v148" title="Permanent link">¶</a></h3>
|
|
11057
11499
|
<ul>
|
|
11058
11500
|
<li><a href="https://github.com/nautobot/nautobot/issues/2651">#2651</a> - Updated <code>Django</code> minimum version to 3.2.16 due to CVE-2022-41323.</li>
|
|
11059
11501
|
</ul>
|
|
11060
|
-
<h3 id="
|
|
11502
|
+
<h3 id="added-in-v148">Added in v1.4.8<a class="headerlink" href="#added-in-v148" title="Permanent link">¶</a></h3>
|
|
11061
11503
|
<ul>
|
|
11062
11504
|
<li><a href="https://github.com/nautobot/nautobot/issues/2086">#2086</a> - Added JobResult export feature.</li>
|
|
11063
11505
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added support for the documented environment variables in Nautobot's base <code>settings.py</code>, so that they will be recognized even when using a minimal <code>nautobot_config.py</code> or one that was not generated by <code>nautobot-server init</code>.</li>
|
|
11064
11506
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added documentation of more configuration options in the configuration that is generated by <code>nautobot-server init</code>.</li>
|
|
11065
11507
|
<li><a href="https://github.com/nautobot/nautobot/issues/2675">#2675</a> - Added the ability to configure Redis Unix socket connections.</li>
|
|
11066
11508
|
</ul>
|
|
11067
|
-
<h3 id="
|
|
11509
|
+
<h3 id="changed-in-v148">Changed in v1.4.8<a class="headerlink" href="#changed-in-v148" title="Permanent link">¶</a></h3>
|
|
11068
11510
|
<ul>
|
|
11069
11511
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Updated defaults in <code>settings.py</code> to more closely align to the documentation. If you're using a configuration file generated by <code>nautobot-server init</code>, these changes should have no impact, but if you have a manually crafted configuration file, please verify that the configuration of your system is still as expected after upgrading, with a particular focus on the database configuration, <code>SECRET_KEY</code>, and <code>LOGGING</code>.</li>
|
|
11070
11512
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Changed the default <code>LOGGING</code> configuration for virtualenv installs to be the same as it is for Nautobot's published Docker images.</li>
|
|
11071
11513
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Revised the template for new configurations generated by <code>nautobot-server init</code> to have less redundancy with Nautobot's built-in <code>settings.py</code>.</li>
|
|
11072
11514
|
</ul>
|
|
11073
|
-
<h3 id="
|
|
11515
|
+
<h3 id="fixed-in-v148">Fixed in v1.4.8<a class="headerlink" href="#fixed-in-v148" title="Permanent link">¶</a></h3>
|
|
11074
11516
|
<ul>
|
|
11075
11517
|
<li><a href="https://github.com/nautobot/nautobot/issues/2099">#2099</a> - Fixed PowerFeed Utilization on Rack View not displaying correctly.</li>
|
|
11076
11518
|
<li><a href="https://github.com/nautobot/nautobot/issues/2099">#2099</a> - Fixed Total Power Utilization on Rack View not taking into account direct-connected devices.</li>
|
|
@@ -11086,19 +11528,19 @@
|
|
|
11086
11528
|
<li><a href="https://github.com/nautobot/nautobot/issues/2655">#2655</a> - Fixed error when selecting a "related path" from the Cable Trace view.</li>
|
|
11087
11529
|
<li><a href="https://github.com/nautobot/nautobot/issues/2693">#2693</a> - Fixed filtering by tree node objects in nested Dynamic Groups.</li>
|
|
11088
11530
|
</ul>
|
|
11089
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11531
|
+
<h3 id="dependencies-in-v148">Dependencies in v1.4.8<a class="headerlink" href="#dependencies-in-v148" title="Permanent link">¶</a></h3>
|
|
11090
11532
|
<ul>
|
|
11091
11533
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated dependency <code>django-health-check</code> from 3.16.5 to 3.16.7.</li>
|
|
11092
11534
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated dependency <code>psycopg2-binary</code> from 2.9.3 to 2.9.4.</li>
|
|
11093
11535
|
</ul>
|
|
11094
|
-
<h3 id="
|
|
11536
|
+
<h3 id="documentation-in-v148">Documentation in v1.4.8<a class="headerlink" href="#documentation-in-v148" title="Permanent link">¶</a></h3>
|
|
11095
11537
|
<ul>
|
|
11096
11538
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added a warning in the documentation about django-cryptography and changing <code>SECRET_KEY</code>.</li>
|
|
11097
11539
|
<li><a href="https://github.com/nautobot/nautobot/issues/2591">#2591</a> - Updated README.md to include additional information about the Nautobot project.</li>
|
|
11098
11540
|
<li><a href="https://github.com/nautobot/nautobot/issues/2619">#2619</a> - Added notes about restarting the Nautobot server after creating relationships, custom fields, and computed fields to show them in GraphQL.</li>
|
|
11099
11541
|
<li><a href="https://github.com/nautobot/nautobot/issues/2677">#2677</a> - Fixed a documentation error by adding an import statement to a code example in <code>nautobot/docs/plugins/development.md</code>.</li>
|
|
11100
11542
|
</ul>
|
|
11101
|
-
<h3 id="
|
|
11543
|
+
<h3 id="housekeeping-in-v148">Housekeeping in v1.4.8<a class="headerlink" href="#housekeeping-in-v148" title="Permanent link">¶</a></h3>
|
|
11102
11544
|
<ul>
|
|
11103
11545
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated development dependency <code>coverage</code> from 6.4.2 to 6.4.4.</li>
|
|
11104
11546
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated development dependency <code>invoke</code> from 1.7.1 to 1.7.3.</li>
|
|
@@ -11109,24 +11551,24 @@
|
|
|
11109
11551
|
<li><a href="https://github.com/nautobot/nautobot/issues/2690">#2690</a> - Fixed test settings to disable logging when running tests.</li>
|
|
11110
11552
|
</ul>
|
|
11111
11553
|
<h2 id="v147-2022-10-18">v1.4.7 (2022-10-18)<a class="headerlink" href="#v147-2022-10-18" title="Permanent link">¶</a></h2>
|
|
11112
|
-
<h3 id="
|
|
11554
|
+
<h3 id="fixed-in-v147">Fixed in v1.4.7<a class="headerlink" href="#fixed-in-v147" title="Permanent link">¶</a></h3>
|
|
11113
11555
|
<ul>
|
|
11114
11556
|
<li><a href="https://github.com/nautobot/nautobot/issues/2636">#2636</a> - Fixed <code>pyproject.toml</code> to be a proper full release.</li>
|
|
11115
11557
|
</ul>
|
|
11116
11558
|
<h2 id="v146-2022-10-17">v1.4.6 (2022-10-17)<a class="headerlink" href="#v146-2022-10-17" title="Permanent link">¶</a></h2>
|
|
11117
|
-
<h3 id="
|
|
11559
|
+
<h3 id="security-in-v146">Security in v1.4.6<a class="headerlink" href="#security-in-v146" title="Permanent link">¶</a></h3>
|
|
11118
11560
|
<ul>
|
|
11119
11561
|
<li><a href="https://github.com/nautobot/nautobot/issues/2434">#2434</a> - Updated <code>oauthlib</code> to <code>3.2.1</code> for <code>CVE-2022-36087</code>. This is a dependency of <code>social-auth-core</code> so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11120
11562
|
</ul>
|
|
11121
|
-
<h3 id="
|
|
11563
|
+
<h3 id="added-in-v146">Added in v1.4.6<a class="headerlink" href="#added-in-v146" title="Permanent link">¶</a></h3>
|
|
11122
11564
|
<ul>
|
|
11123
11565
|
<li><a href="https://github.com/nautobot/nautobot/issues/2437">#2437</a> - Added Nautobot-themed error page for handling 403 CSRF errors.</li>
|
|
11124
11566
|
</ul>
|
|
11125
|
-
<h3 id="
|
|
11567
|
+
<h3 id="changed-in-v146">Changed in v1.4.6<a class="headerlink" href="#changed-in-v146" title="Permanent link">¶</a></h3>
|
|
11126
11568
|
<ul>
|
|
11127
11569
|
<li><a href="https://github.com/nautobot/nautobot/issues/2602">#2602</a> - Increased size of <code>ObjectChange.change_context_detail</code> field from 100 to 400 chars, and add truncation to it. Also adding truncation to <code>ObjectChange.object_repr</code>.</li>
|
|
11128
11570
|
</ul>
|
|
11129
|
-
<h3 id="
|
|
11571
|
+
<h3 id="fixed-in-v146">Fixed in v1.4.6<a class="headerlink" href="#fixed-in-v146" title="Permanent link">¶</a></h3>
|
|
11130
11572
|
<ul>
|
|
11131
11573
|
<li><a href="https://github.com/nautobot/nautobot/issues/2075">#2075</a> - Fixed white screen flash in dark mode.</li>
|
|
11132
11574
|
<li><a href="https://github.com/nautobot/nautobot/issues/2546">#2546</a> - Applied a hotfix for multiple jobs executing from a single scheduled job.</li>
|
|
@@ -11135,42 +11577,42 @@
|
|
|
11135
11577
|
<li><a href="https://github.com/nautobot/nautobot/issues/2574">#2574</a> - Updated <code>nautobot.core.settings</code> to match expected behavior on <code>NAPALM_USERNAME</code>, <code>NAPALM_PASSWORD</code>, and <code>NAPALM_TIMEOUT</code> based on documentation.</li>
|
|
11136
11578
|
<li><a href="https://github.com/nautobot/nautobot/issues/2595">#2595</a> - Fixed NautobotUIViewSet handling of unauthenticated users.</li>
|
|
11137
11579
|
</ul>
|
|
11138
|
-
<h3 id="
|
|
11580
|
+
<h3 id="documentation-in-v146">Documentation in v1.4.6<a class="headerlink" href="#documentation-in-v146" title="Permanent link">¶</a></h3>
|
|
11139
11581
|
<ul>
|
|
11140
11582
|
<li><a href="https://github.com/nautobot/nautobot/issues/2512">#2512</a> - Added link to <code>nautobot-plugin-nornir</code> in the Apps section of the documentation.</li>
|
|
11141
11583
|
<li><a href="https://github.com/nautobot/nautobot/issues/2530">#2530</a> - Updated development documentation to include LTM, additional release schedule information.</li>
|
|
11142
11584
|
<li><a href="https://github.com/nautobot/nautobot/issues/2566">#2566</a> - Clarified documentation on superusers needing staff permission to access admin UI.</li>
|
|
11143
11585
|
<li><a href="https://github.com/nautobot/nautobot/issues/2588">#2588</a> - Added a danger admonition to developer docs about never using <code>pip</code> to install Poetry into Nautobot dev environment.</li>
|
|
11144
11586
|
</ul>
|
|
11145
|
-
<h3 id="
|
|
11587
|
+
<h3 id="housekeeping-in-v146">Housekeeping in v1.4.6<a class="headerlink" href="#housekeeping-in-v146" title="Permanent link">¶</a></h3>
|
|
11146
11588
|
<ul>
|
|
11147
11589
|
<li><a href="https://github.com/nautobot/nautobot/issues/2614">#2614</a> - Fixed CONTRIBUTING.md link to actual Nautobot documentation.</li>
|
|
11148
11590
|
</ul>
|
|
11149
11591
|
<h2 id="v145-2022-10-03">v1.4.5 (2022-10-03)<a class="headerlink" href="#v145-2022-10-03" title="Permanent link">¶</a></h2>
|
|
11150
|
-
<h3 id="
|
|
11592
|
+
<h3 id="added-in-v145">Added in v1.4.5<a class="headerlink" href="#added-in-v145" title="Permanent link">¶</a></h3>
|
|
11151
11593
|
<ul>
|
|
11152
11594
|
<li><a href="https://github.com/nautobot/nautobot/issues/2330">#2330</a> - Added <code>created</code> and <code>last_updated</code> fields to Device <code>Component</code> and <code>ComponentTemplate</code> models.</li>
|
|
11153
11595
|
</ul>
|
|
11154
|
-
<h3 id="
|
|
11596
|
+
<h3 id="changed-in-v145">Changed in v1.4.5<a class="headerlink" href="#changed-in-v145" title="Permanent link">¶</a></h3>
|
|
11155
11597
|
<ul>
|
|
11156
11598
|
<li><a href="https://github.com/nautobot/nautobot/issues/2508">#2508</a> - Updated dark mode theme to be less...dark.</li>
|
|
11157
11599
|
</ul>
|
|
11158
|
-
<h3 id="
|
|
11600
|
+
<h3 id="fixed-in-v145">Fixed in v1.4.5<a class="headerlink" href="#fixed-in-v145" title="Permanent link">¶</a></h3>
|
|
11159
11601
|
<ul>
|
|
11160
11602
|
<li><a href="https://github.com/nautobot/nautobot/issues/2326">#2326</a> - Fixed 500 error in Circuit Termination swap.</li>
|
|
11161
11603
|
<li><a href="https://github.com/nautobot/nautobot/issues/2330">#2330</a> - Fixed missing Change Log tab on device component detail views.</li>
|
|
11162
11604
|
<li><a href="https://github.com/nautobot/nautobot/issues/2466">#2466</a> - Fixed Jobs misleading sensitive variables or requiring approval error message.</li>
|
|
11163
11605
|
<li><a href="https://github.com/nautobot/nautobot/issues/2509">#2509</a> - Fixed template lookup logic in ObjectNotesView, ObjectDynamicGroupsView and ObjectChangeLogView.</li>
|
|
11164
11606
|
</ul>
|
|
11165
|
-
<h3 id="
|
|
11607
|
+
<h3 id="dependencies-in-v145">Dependencies in v1.4.5<a class="headerlink" href="#dependencies-in-v145" title="Permanent link">¶</a></h3>
|
|
11166
11608
|
<ul>
|
|
11167
11609
|
<li><a href="https://github.com/nautobot/nautobot/issues/2537">#2537</a> - Updated <code>django-extensions</code> to <code>3.2.1</code>, <code>drf-spectacular</code> to <code>0.24.2</code>, <code>drf-yasg</code> to <code>1.21.4</code>.</li>
|
|
11168
11610
|
</ul>
|
|
11169
|
-
<h3 id="
|
|
11611
|
+
<h3 id="documentation-in-v145">Documentation in v1.4.5<a class="headerlink" href="#documentation-in-v145" title="Permanent link">¶</a></h3>
|
|
11170
11612
|
<ul>
|
|
11171
11613
|
<li><a href="https://github.com/nautobot/nautobot/issues/2539">#2539</a> - Updated links from nautobot.readthedocs.io to docs.nautobot.com.</li>
|
|
11172
11614
|
</ul>
|
|
11173
|
-
<h3 id="
|
|
11615
|
+
<h3 id="housekeeping-in-v145">Housekeeping in v1.4.5<a class="headerlink" href="#housekeeping-in-v145" title="Permanent link">¶</a></h3>
|
|
11174
11616
|
<ul>
|
|
11175
11617
|
<li><a href="https://github.com/nautobot/nautobot/issues/2445">#2445</a> - Fixed invalid Renovate config.</li>
|
|
11176
11618
|
<li><a href="https://github.com/nautobot/nautobot/issues/2490">#2490</a> - Added change log fragment checkbox to Github pull request template.</li>
|
|
@@ -11179,42 +11621,42 @@
|
|
|
11179
11621
|
<li><a href="https://github.com/nautobot/nautobot/issues/2544">#2544</a> - Updated towncrier template to convert multi-line change fragments into multiple release notes entries.</li>
|
|
11180
11622
|
</ul>
|
|
11181
11623
|
<h2 id="v144-2022-09-26">v1.4.4 (2022-09-26)<a class="headerlink" href="#v144-2022-09-26" title="Permanent link">¶</a></h2>
|
|
11182
|
-
<h3 id="
|
|
11624
|
+
<h3 id="added-in-v144">Added in v1.4.4<a class="headerlink" href="#added-in-v144" title="Permanent link">¶</a></h3>
|
|
11183
11625
|
<ul>
|
|
11184
11626
|
<li><a href="https://github.com/nautobot/nautobot/issues/2023">#2023</a> - Added reusable GitHub Action workflow for use by plugins to test against <code>next</code>, <code>develop</code> routinely.</li>
|
|
11185
11627
|
</ul>
|
|
11186
|
-
<h3 id="
|
|
11628
|
+
<h3 id="changed-in-v144">Changed in v1.4.4<a class="headerlink" href="#changed-in-v144" title="Permanent link">¶</a></h3>
|
|
11187
11629
|
<ul>
|
|
11188
11630
|
<li><a href="https://github.com/nautobot/nautobot/issues/2235">#2235</a> - Added ancestor information to Location and LocationType display names to provide additional context in the UI.</li>
|
|
11189
11631
|
</ul>
|
|
11190
|
-
<h3 id="
|
|
11632
|
+
<h3 id="fixed-in-v144">Fixed in v1.4.4<a class="headerlink" href="#fixed-in-v144" title="Permanent link">¶</a></h3>
|
|
11191
11633
|
<ul>
|
|
11192
11634
|
<li><a href="https://github.com/nautobot/nautobot/issues/2353">#2353</a> - Fixed MultiSelect CustomField being emptied unintentionally after bulk update.</li>
|
|
11193
11635
|
<li><a href="https://github.com/nautobot/nautobot/issues/2375">#2375</a> - Fixed error in Cable list view filtering when <code>color</code> and <code>type</code> filters are not set.</li>
|
|
11194
11636
|
<li><a href="https://github.com/nautobot/nautobot/issues/2461">#2461</a> - Fixed an exception during OpenAPI schema generation when certain Nautobot apps (including <code>nautobot-firewall-models</code>) were installed.</li>
|
|
11195
11637
|
</ul>
|
|
11196
|
-
<h3 id="
|
|
11638
|
+
<h3 id="documentation-in-v144">Documentation in v1.4.4<a class="headerlink" href="#documentation-in-v144" title="Permanent link">¶</a></h3>
|
|
11197
11639
|
<ul>
|
|
11198
11640
|
<li><a href="https://github.com/nautobot/nautobot/issues/2153">#2153</a> - Updated optional settings documentation to provide clarity on Nautobot vs Django settings.</li>
|
|
11199
11641
|
</ul>
|
|
11200
|
-
<h3 id="
|
|
11642
|
+
<h3 id="housekeeping-in-v144">Housekeeping in v1.4.4<a class="headerlink" href="#housekeeping-in-v144" title="Permanent link">¶</a></h3>
|
|
11201
11643
|
<ul>
|
|
11202
11644
|
<li><a href="https://github.com/nautobot/nautobot/issues/2457">#2457</a> - Moved <code>towncrier_template.j2</code> from root to develop directory.</li>
|
|
11203
11645
|
<li><a href="https://github.com/nautobot/nautobot/issues/2468">#2468</a> - Upgraded CI gh-action-setup-poetry-environment action to v3</li>
|
|
11204
11646
|
<li><a href="https://github.com/nautobot/nautobot/pull/2496">#2496</a> - Fixed failing CI due to #2468</li>
|
|
11205
11647
|
</ul>
|
|
11206
11648
|
<h2 id="v143-2022-09-19">v1.4.3 (2022-09-19)<a class="headerlink" href="#v143-2022-09-19" title="Permanent link">¶</a></h2>
|
|
11207
|
-
<h3 id="
|
|
11649
|
+
<h3 id="added-in-v143">Added in v1.4.3<a class="headerlink" href="#added-in-v143" title="Permanent link">¶</a></h3>
|
|
11208
11650
|
<ul>
|
|
11209
11651
|
<li><a href="https://github.com/nautobot/nautobot/issues/2327">#2327</a> - Added help text to the Job scheduling datetime picker to indicate the applicable time zone.</li>
|
|
11210
11652
|
</ul>
|
|
11211
|
-
<h3 id="
|
|
11653
|
+
<h3 id="changed-in-v143">Changed in v1.4.3<a class="headerlink" href="#changed-in-v143" title="Permanent link">¶</a></h3>
|
|
11212
11654
|
<ul>
|
|
11213
11655
|
<li><a href="https://github.com/nautobot/nautobot/issues/2223">#2223</a> - Augment <code>get_route_for_model()</code> to support REST API routes.</li>
|
|
11214
11656
|
<li><a href="https://github.com/nautobot/nautobot/issues/2340">#2340</a> - Improved rendering of badges, labels, buttons, and color selection menus in dark mode.</li>
|
|
11215
11657
|
<li><a href="https://github.com/nautobot/nautobot/issues/2447">#2447</a> - Moved Dynamic Groups tab on object detail view to it's own view as a generic <code>ObjectDynamicGroupsView</code>.</li>
|
|
11216
11658
|
</ul>
|
|
11217
|
-
<h3 id="
|
|
11659
|
+
<h3 id="fixed-in-v143">Fixed in v1.4.3<a class="headerlink" href="#fixed-in-v143" title="Permanent link">¶</a></h3>
|
|
11218
11660
|
<ul>
|
|
11219
11661
|
<li><a href="https://github.com/nautobot/nautobot/issues/138">#138</a> - Fixed lack of user-facing message when an exception occurs while discovering Jobs from a Git repository.</li>
|
|
11220
11662
|
<li><a href="https://github.com/nautobot/nautobot/issues/950">#950</a> - Fixed database concurrency issues with uWSGI pre-forking.</li>
|
|
@@ -11227,18 +11669,18 @@
|
|
|
11227
11669
|
<li><a href="https://github.com/nautobot/nautobot/issues/2382">#2382</a> - Removed extraneous cache and temporary files from the <code>dev</code> and <code>final-dev</code> Docker images to reduce image size.</li>
|
|
11228
11670
|
<li><a href="https://github.com/nautobot/nautobot/issues/2389">#2389</a> - Removed extraneous <code>inspect.getsource()</code> call from Job class.</li>
|
|
11229
11671
|
</ul>
|
|
11230
|
-
<h3 id="
|
|
11672
|
+
<h3 id="dependencies-in-v143">Dependencies in v1.4.3<a class="headerlink" href="#dependencies-in-v143" title="Permanent link">¶</a></h3>
|
|
11231
11673
|
<ul>
|
|
11232
11674
|
<li><a href="https://github.com/nautobot/nautobot/issues/1619">#1619</a> - Updated <code>drf-spectacular</code> dependency to version 0.24.</li>
|
|
11233
11675
|
</ul>
|
|
11234
|
-
<h3 id="
|
|
11676
|
+
<h3 id="documentation-in-v143">Documentation in v1.4.3<a class="headerlink" href="#documentation-in-v143" title="Permanent link">¶</a></h3>
|
|
11235
11677
|
<ul>
|
|
11236
11678
|
<li><a href="https://github.com/nautobot/nautobot/issues/2383">#2383</a> - Updated documentation link for Nautobot ChatOps plugin.</li>
|
|
11237
11679
|
<li><a href="https://github.com/nautobot/nautobot/issues/2400">#2400</a> - Improved formatting of version changes in the documentation.</li>
|
|
11238
11680
|
<li><a href="https://github.com/nautobot/nautobot/issues/2407">#2407</a> - Corrected SSO Backend reference for Azure AD Tenant.</li>
|
|
11239
11681
|
<li><a href="https://github.com/nautobot/nautobot/issues/2431">#2431</a> - Add section to the custom field documentation on ORM filtering.</li>
|
|
11240
11682
|
</ul>
|
|
11241
|
-
<h3 id="
|
|
11683
|
+
<h3 id="housekeeping-in-v143">Housekeeping in v1.4.3<a class="headerlink" href="#housekeeping-in-v143" title="Permanent link">¶</a></h3>
|
|
11242
11684
|
<ul>
|
|
11243
11685
|
<li><a href="https://github.com/nautobot/nautobot/issues/2362">#2362</a> - Added documentation and automation for Nautobot Github project to use <code>towncrier</code> for changelog fragments.</li>
|
|
11244
11686
|
<li><a href="https://github.com/nautobot/nautobot/issues/2364">#2364</a> - Allow <code>invoke</code> tasks to be run even if <code>rich</code> is not installed.</li>
|
|
@@ -11247,7 +11689,7 @@
|
|
|
11247
11689
|
<li><a href="https://github.com/nautobot/nautobot/issues/2449">#2449</a> - CI: Moved dependency build to be a job, not a step.</li>
|
|
11248
11690
|
</ul>
|
|
11249
11691
|
<h2 id="v142-2022-09-05">v1.4.2 (2022-09-05)<a class="headerlink" href="#v142-2022-09-05" title="Permanent link">¶</a></h2>
|
|
11250
|
-
<h3 id="
|
|
11692
|
+
<h3 id="added-in-v142">Added in v1.4.2<a class="headerlink" href="#added-in-v142" title="Permanent link">¶</a></h3>
|
|
11251
11693
|
<ul>
|
|
11252
11694
|
<li><a href="https://github.com/nautobot/nautobot/issues/983">#983</a> - Added functionalities to specify <code>args</code> and <code>kwargs</code> to <code>NavMenuItem</code>.</li>
|
|
11253
11695
|
<li><a href="https://github.com/nautobot/nautobot/issues/2250">#2250</a> - Added "Stats" and "Rack Groups" to Location detail view, added "Locations" to Site detail view.</li>
|
|
@@ -11255,11 +11697,11 @@
|
|
|
11255
11697
|
<li><a href="https://github.com/nautobot/nautobot/issues/2307">#2307</a> - Added <code>dynamic_groups</code> field in GraphQL on objects that can belong to dynamic groups.</li>
|
|
11256
11698
|
<li><a href="https://github.com/nautobot/nautobot/pull/2360">#2360</a> - Added Django natural key to <code>extras.Tag</code>.</li>
|
|
11257
11699
|
</ul>
|
|
11258
|
-
<h3 id="
|
|
11700
|
+
<h3 id="changed-in-v142">Changed in v1.4.2<a class="headerlink" href="#changed-in-v142" title="Permanent link">¶</a></h3>
|
|
11259
11701
|
<ul>
|
|
11260
11702
|
<li><a href="https://github.com/nautobot/nautobot/pull/2360">#2360</a> - Django natural key for Status is now <code>name</code> rather than <code>slug</code>.</li>
|
|
11261
11703
|
</ul>
|
|
11262
|
-
<h3 id="
|
|
11704
|
+
<h3 id="fixed-in-v142">Fixed in v1.4.2<a class="headerlink" href="#fixed-in-v142" title="Permanent link">¶</a></h3>
|
|
11263
11705
|
<ul>
|
|
11264
11706
|
<li><a href="https://github.com/nautobot/nautobot/issues/449">#449</a> - Improved error checking and reporting when syncing Git repositories.</li>
|
|
11265
11707
|
<li><a href="https://github.com/nautobot/nautobot/issues/1227">#1227</a> - The <code>NAUTOBOT_DOCKER_SKIP_INIT</code> environment variable can now be set to "false" (case-insensitive),</li>
|
|
@@ -11273,11 +11715,11 @@
|
|
|
11273
11715
|
<li><a href="https://github.com/nautobot/nautobot/issues/2311">#2311</a> - Fixed autopopulation of "Parent" selection when editing an existing Location.</li>
|
|
11274
11716
|
<li><a href="https://github.com/nautobot/nautobot/issues/2350">#2350</a> - Fixed potential Redis deadlock if Nautobot server restarts at an unfortunate time.</li>
|
|
11275
11717
|
</ul>
|
|
11276
|
-
<h3 id="
|
|
11718
|
+
<h3 id="dependencies-in-v142">Dependencies in v1.4.2<a class="headerlink" href="#dependencies-in-v142" title="Permanent link">¶</a></h3>
|
|
11277
11719
|
<ul>
|
|
11278
11720
|
<li><a href="https://github.com/nautobot/nautobot/pull/2296">#2296</a> - Updated <code>netutils</code> dependency from 1.1.x to 1.2.x.</li>
|
|
11279
11721
|
</ul>
|
|
11280
|
-
<h3 id="
|
|
11722
|
+
<h3 id="documentation-in-v142">Documentation in v1.4.2<a class="headerlink" href="#documentation-in-v142" title="Permanent link">¶</a></h3>
|
|
11281
11723
|
<ul>
|
|
11282
11724
|
<li><a href="https://github.com/nautobot/nautobot/pull/2268">#2268</a> - Fixed broken links in documentation.</li>
|
|
11283
11725
|
<li><a href="https://github.com/nautobot/nautobot/issues/2341">#2341</a> - Fixed omission of docs from published Python packages.</li>
|
|
@@ -11286,7 +11728,7 @@
|
|
|
11286
11728
|
<li><a href="https://github.com/nautobot/nautobot/pull/2365">#2365</a> - Update Network to Code branding name</li>
|
|
11287
11729
|
<li><a href="https://github.com/nautobot/nautobot/pull/2367">#2367</a> - Remove coming soon from projects that exists</li>
|
|
11288
11730
|
</ul>
|
|
11289
|
-
<h3 id="
|
|
11731
|
+
<h3 id="housekeeping-in-v142">Housekeeping in v1.4.2<a class="headerlink" href="#housekeeping-in-v142" title="Permanent link">¶</a></h3>
|
|
11290
11732
|
<ul>
|
|
11291
11733
|
<li><a href="https://github.com/nautobot/nautobot/issues/2011">#2011</a> - replaced all .format() strings and C format strings with fstrings.</li>
|
|
11292
11734
|
<li><a href="https://github.com/nautobot/nautobot/pull/2293">#2293</a> - Updated GitHub bug report template.</li>
|
|
@@ -11296,16 +11738,16 @@
|
|
|
11296
11738
|
<li><a href="https://github.com/nautobot/nautobot/pull/2349">#2349</a> - Docker images are now built with Poetry 1.2.0.</li>
|
|
11297
11739
|
</ul>
|
|
11298
11740
|
<h2 id="v141-2022-08-22">v1.4.1 (2022-08-22)<a class="headerlink" href="#v141-2022-08-22" title="Permanent link">¶</a></h2>
|
|
11299
|
-
<h3 id="
|
|
11741
|
+
<h3 id="added-in-v141">Added in v1.4.1<a class="headerlink" href="#added-in-v141" title="Permanent link">¶</a></h3>
|
|
11300
11742
|
<ul>
|
|
11301
11743
|
<li><a href="https://github.com/nautobot/nautobot/issues/1809">#1809</a> - Added Django natural key to <code>extras.Status</code> to simplify exporting and importing of database dumps for <code>Status</code> objects.</li>
|
|
11302
11744
|
<li><a href="https://github.com/nautobot/nautobot/pull/2202">#2202</a> - Added <code>validate_models</code> management command to validate each instance in the database.</li>
|
|
11303
11745
|
</ul>
|
|
11304
|
-
<h3 id="
|
|
11746
|
+
<h3 id="changed-in-v141">Changed in v1.4.1<a class="headerlink" href="#changed-in-v141" title="Permanent link">¶</a></h3>
|
|
11305
11747
|
<ul>
|
|
11306
11748
|
<li><a href="https://github.com/nautobot/nautobot/issues/2206">#2206</a> - Changed Run button on Job Result to always be displayed, "Re-Run" if available.</li>
|
|
11307
11749
|
</ul>
|
|
11308
|
-
<h3 id="
|
|
11750
|
+
<h3 id="fixed-in-v141">Fixed in v1.4.1<a class="headerlink" href="#fixed-in-v141" title="Permanent link">¶</a></h3>
|
|
11309
11751
|
<ul>
|
|
11310
11752
|
<li><a href="https://github.com/nautobot/nautobot/issues/2209">#2209</a> - Fixed lack of dark-mode support in GraphiQL page.</li>
|
|
11311
11753
|
<li><a href="https://github.com/nautobot/nautobot/issues/2215">#2215</a> - Fixed error seen in migration from 1.3.x if certain default Statuses had been modified.</li>
|
|
@@ -11316,29 +11758,29 @@
|
|
|
11316
11758
|
<li><a href="https://github.com/nautobot/nautobot/issues/2241">#2241</a> - Fixed <code>DynamicGroup.objects.get_for_model()</code> to support nested Dynamic Groups.</li>
|
|
11317
11759
|
<li><a href="https://github.com/nautobot/nautobot/issues/2259">#2259</a> - Fixed footer not bound to bottom of Device View.</li>
|
|
11318
11760
|
</ul>
|
|
11319
|
-
<h3 id="
|
|
11761
|
+
<h3 id="documentation-in-v141">Documentation in v1.4.1<a class="headerlink" href="#documentation-in-v141" title="Permanent link">¶</a></h3>
|
|
11320
11762
|
<ul>
|
|
11321
11763
|
<li><a href="https://github.com/nautobot/nautobot/pull/2218">#2218</a> - Fixed typos/links in release notes and Dynamic Groups docs.</li>
|
|
11322
11764
|
<li><a href="https://github.com/nautobot/nautobot/pull/2252">#2252</a> - Updated Poetry install command for Development Getting Started guide.</li>
|
|
11323
11765
|
</ul>
|
|
11324
|
-
<h3 id="
|
|
11766
|
+
<h3 id="housekeeping-in-v141">Housekeeping in v1.4.1<a class="headerlink" href="#housekeeping-in-v141" title="Permanent link">¶</a></h3>
|
|
11325
11767
|
<ul>
|
|
11326
11768
|
<li><a href="https://github.com/nautobot/nautobot/issues/2213">#2213</a> - Added a new <code>--pull</code> parameter for <code>invoke build</code> to tell Docker to pull images when building containers.</li>
|
|
11327
11769
|
<li><a href="https://github.com/nautobot/nautobot/pull/2220">#2220</a> - Narrowed scope of auto-formatting in VSCode to only apply to Python files.</li>
|
|
11328
11770
|
</ul>
|
|
11329
11771
|
<h2 id="v140-2022-08-15">v1.4.0 (2022-08-15)<a class="headerlink" href="#v140-2022-08-15" title="Permanent link">¶</a></h2>
|
|
11330
|
-
<h3 id="
|
|
11772
|
+
<h3 id="added-in-v140">Added in v1.4.0<a class="headerlink" href="#added-in-v140" title="Permanent link">¶</a></h3>
|
|
11331
11773
|
<ul>
|
|
11332
11774
|
<li><a href="https://github.com/nautobot/nautobot/issues/1812">#1812</a> - Added <code>NautobotViewSet</code> and accompanying helper methods, documentation.</li>
|
|
11333
11775
|
<li><a href="https://github.com/nautobot/nautobot/issues/2105">#2105</a> - Added support for Notes in NautobotBulkEditForm and NautobotEditForm.</li>
|
|
11334
11776
|
<li><a href="https://github.com/nautobot/nautobot/pull/2200">#2200</a> - Added Dynamic Groups support for Cluster, IP Address, Prefix, and Rack.</li>
|
|
11335
11777
|
</ul>
|
|
11336
|
-
<h3 id="
|
|
11778
|
+
<h3 id="changed-in-v140">Changed in v1.4.0<a class="headerlink" href="#changed-in-v140" title="Permanent link">¶</a></h3>
|
|
11337
11779
|
<ul>
|
|
11338
11780
|
<li><a href="https://github.com/nautobot/nautobot/issues/1812">#1812</a> - Changed Circuit app models to use <code>NautobotViewSet</code>s.</li>
|
|
11339
11781
|
<li><a href="https://github.com/nautobot/nautobot/pull/2200">#2200</a> - Group of dynamic group membership links now link to the group's membership table view.</li>
|
|
11340
11782
|
</ul>
|
|
11341
|
-
<h3 id="
|
|
11783
|
+
<h3 id="fixed-in-v140">Fixed in v1.4.0<a class="headerlink" href="#fixed-in-v140" title="Permanent link">¶</a></h3>
|
|
11342
11784
|
<ul>
|
|
11343
11785
|
<li><a href="https://github.com/nautobot/nautobot/issues/1304">#1304</a> - Fixed incorrect display of connection counts on home page.</li>
|
|
11344
11786
|
<li><a href="https://github.com/nautobot/nautobot/issues/1845">#1845</a> - Fixed not being able to schedule job with 'immediate' schedule via API.</li>
|
|
@@ -11350,33 +11792,33 @@
|
|
|
11350
11792
|
<li><a href="https://github.com/nautobot/nautobot/issues/2178">#2192</a> - Fixed job.request removed from job instance in <code>v1.4.0b1</code>.</li>
|
|
11351
11793
|
<li><a href="https://github.com/nautobot/nautobot/pull/2197">#2197</a> - Fixed some display issues in the Dynamic Groups detail view.</li>
|
|
11352
11794
|
</ul>
|
|
11353
|
-
<h3 id="
|
|
11795
|
+
<h3 id="dependencies-in-v140">Dependencies in v1.4.0<a class="headerlink" href="#dependencies-in-v140" title="Permanent link">¶</a></h3>
|
|
11354
11796
|
<ul>
|
|
11355
11797
|
<li><a href="https://github.com/nautobot/nautobot/pull/2183">#2183</a> - Update dependency django to ~3.2.15.</li>
|
|
11356
11798
|
</ul>
|
|
11357
|
-
<h3 id="
|
|
11799
|
+
<h3 id="documentation-in-v140">Documentation in v1.4.0<a class="headerlink" href="#documentation-in-v140" title="Permanent link">¶</a></h3>
|
|
11358
11800
|
<ul>
|
|
11359
11801
|
<li><a href="https://github.com/nautobot/nautobot/pull/2029">#2029</a> - Updated optional settings docs to call out environment variable only settings.</li>
|
|
11360
11802
|
<li><a href="https://github.com/nautobot/nautobot/issues/2193">#2193</a> - Updated Postgres/MySQL <code>dumpdata</code> docs to exclude <code>django_rq</code> exports.</li>
|
|
11361
11803
|
</ul>
|
|
11362
|
-
<h3 id="
|
|
11804
|
+
<h3 id="housekeeping-in-v140">Housekeeping in v1.4.0<a class="headerlink" href="#housekeeping-in-v140" title="Permanent link">¶</a></h3>
|
|
11363
11805
|
<ul>
|
|
11364
11806
|
<li><a href="https://github.com/nautobot/nautobot/pull/2173">#2173</a> - Added flake8 linting and black formatting settings to vscode workspace settings.</li>
|
|
11365
11807
|
<li><a href="https://github.com/nautobot/nautobot/pull/2176">#2176</a> - Update invoke task output to use rich formatting, print full Docker Compose commands.</li>
|
|
11366
11808
|
</ul>
|
|
11367
11809
|
<h2 id="v140rc1-2022-08-10">v1.4.0rc1 (2022-08-10)<a class="headerlink" href="#v140rc1-2022-08-10" title="Permanent link">¶</a></h2>
|
|
11368
|
-
<h3 id="
|
|
11810
|
+
<h3 id="added-in-v140rc1">Added in v1.4.0rc1<a class="headerlink" href="#added-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11369
11811
|
<ul>
|
|
11370
11812
|
<li><a href="https://github.com/nautobot/nautobot/issues/767">#767</a> - Added notes field to Primary and Organizational models.</li>
|
|
11371
11813
|
<li><a href="https://github.com/nautobot/nautobot/issues/1498">#1498</a> - Added extended lookup expression filters to custom fields.</li>
|
|
11372
11814
|
<li><a href="https://github.com/nautobot/nautobot/issues/1962">#1962</a> - Added <code>slug</code> field to Custom Field model, added 1.4 REST API version of the <code>api/extras/custom-fields/</code> endpoints.</li>
|
|
11373
11815
|
<li><a href="https://github.com/nautobot/nautobot/issues/2106">#2106</a> - Added support for listing/creating Notes via REST API.</li>
|
|
11374
11816
|
</ul>
|
|
11375
|
-
<h3 id="
|
|
11817
|
+
<h3 id="changed-in-v140rc1">Changed in v1.4.0rc1<a class="headerlink" href="#changed-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11376
11818
|
<ul>
|
|
11377
11819
|
<li><a href="https://github.com/nautobot/nautobot/pull/2168">#2168</a> - Added model toggle to skip adding missing Dynamic Group filter fields for use in easing integration of new models into Dynamic Groups.</li>
|
|
11378
11820
|
</ul>
|
|
11379
|
-
<h3 id="
|
|
11821
|
+
<h3 id="fixed-in-v140rc1">Fixed in v1.4.0rc1<a class="headerlink" href="#fixed-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11380
11822
|
<ul>
|
|
11381
11823
|
<li><a href="https://github.com/nautobot/nautobot/issues/2090">#2090</a> - Fixed an issue where a REST API PATCH of a Tag could inadvertently reset its associated content-types.</li>
|
|
11382
11824
|
<li><a href="https://github.com/nautobot/nautobot/pull/2132">#2132</a> - Updated job hooks to use slugs in urls instead of pk.</li>
|
|
@@ -11385,17 +11827,17 @@
|
|
|
11385
11827
|
<li><a href="https://github.com/nautobot/nautobot/issues/2137">#2137</a> - Fixed incorrect parameter name in <code>NaturalKeyOrPKMultipleChoiceFilter</code> documentation.</li>
|
|
11386
11828
|
<li><a href="https://github.com/nautobot/nautobot/pull/2142">#2142</a> - Fixed incorrect URL field in REST API nested relationship representation.</li>
|
|
11387
11829
|
</ul>
|
|
11388
|
-
<h3 id="
|
|
11830
|
+
<h3 id="documentation-in-v140rc1">Documentation in v1.4.0rc1<a class="headerlink" href="#documentation-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11389
11831
|
<ul>
|
|
11390
11832
|
<li><a href="https://github.com/nautobot/nautobot/pull/2156">#2156</a> - Update network automation apps listed on overview of docs.</li>
|
|
11391
11833
|
</ul>
|
|
11392
|
-
<h3 id="
|
|
11834
|
+
<h3 id="housekeeping-in-v140rc1">Housekeeping in v1.4.0rc1<a class="headerlink" href="#housekeeping-in-v140rc1" title="Permanent link">¶</a></h3>
|
|
11393
11835
|
<ul>
|
|
11394
11836
|
<li><a href="https://github.com/nautobot/nautobot/issues/2150">#2150</a> - Fixed unit tests performance degradation.</li>
|
|
11395
11837
|
<li><a href="https://github.com/nautobot/nautobot/pull/2165">#2165</a> - Fix up relationship-association API test issue.</li>
|
|
11396
11838
|
</ul>
|
|
11397
11839
|
<h2 id="v140b1-2022-07-30">v1.4.0b1 (2022-07-30)<a class="headerlink" href="#v140b1-2022-07-30" title="Permanent link">¶</a></h2>
|
|
11398
|
-
<h3 id="
|
|
11840
|
+
<h3 id="added-in-v140b1">Added in v1.4.0b1<a class="headerlink" href="#added-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11399
11841
|
<ul>
|
|
11400
11842
|
<li><a href="https://github.com/nautobot/nautobot/issues/1463">#1463</a> - Added REST API support for opt-in <code>relationships</code> data on model endpoints; added <code>NautobotModelSerializer</code> base class.</li>
|
|
11401
11843
|
<li><a href="https://github.com/nautobot/nautobot/issues/1614">#1614</a> - Added support for nesting of Dynamic Groups, allowing inclusion/exclusion rules of sub-group members.</li>
|
|
@@ -11410,22 +11852,22 @@
|
|
|
11410
11852
|
<li><a href="https://github.com/nautobot/nautobot/issues/2051">#2051</a> - Add changelog url for Relationships.</li>
|
|
11411
11853
|
<li><a href="https://github.com/nautobot/nautobot/pull/2061">#2061</a> - Add draggable child groups to Dynamic Groups edit view in UI, recompute and hide weights.</li>
|
|
11412
11854
|
</ul>
|
|
11413
|
-
<h3 id="
|
|
11855
|
+
<h3 id="changed-in-v140b1">Changed in v1.4.0b1<a class="headerlink" href="#changed-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11414
11856
|
<ul>
|
|
11415
11857
|
<li><a href="https://github.com/nautobot/nautobot/pull/2049">#2049</a> - Moved <code>get_changelog_url</code> to a method on objects that support changelogs, updated template context.</li>
|
|
11416
11858
|
</ul>
|
|
11417
|
-
<h3 id="
|
|
11859
|
+
<h3 id="fixed-in-v140b1">Fixed in v1.4.0b1<a class="headerlink" href="#fixed-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11418
11860
|
<ul>
|
|
11419
11861
|
<li><a href="https://github.com/nautobot/nautobot/issues/1710">#1710</a> - Fixed invalid CSS when clicking "Add another" row buttons for formsets on Secrets Groups, Dynamic Groups edit view in the UI.</li>
|
|
11420
11862
|
<li><a href="https://github.com/nautobot/nautobot/issues/2069">#2069</a> - Addressed numerous UX improvements for Dynamic Groups of Dynamic Groups feature to ease usability of this feature.</li>
|
|
11421
11863
|
<li><a href="https://github.com/nautobot/nautobot/issues/2109">#2109</a> - Fixed Relationship Filters are not Applied with "And" Operator.</li>
|
|
11422
11864
|
<li><a href="https://github.com/nautobot/nautobot/issues/2111">#2111</a> - Fixed Invalid filter error thrown for <code>__source</code> with message: "" is not a valid UUID.</li>
|
|
11423
11865
|
</ul>
|
|
11424
|
-
<h3 id="
|
|
11866
|
+
<h3 id="dependencies-in-v140b1">Dependencies in v1.4.0b1<a class="headerlink" href="#dependencies-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11425
11867
|
<ul>
|
|
11426
11868
|
<li><a href="https://github.com/nautobot/nautobot/pull/2116">#2116</a> - Updated package dependencies: Pillow <code>~9.1.1</code> -> <code>~9.2.0</code>, black <code>~22.3.0</code> -> <code>~22.6.0</code>, coverage <code>6.4.1</code> -> <code>6.4.2</code>, django-cacheops <code>6.0</code> -> <code>6.1</code>, django-cryptography <code>1.0</code> -> <code>1.1</code>, django-debug-toolbar <code>~3.4.0</code> -> <code>~3.5.0</code>, django-extensions <code>~3.1.5</code> -> <code>~3.2.0</code>, drf-yasg <code>~1.20.0</code> -> <code>^1.20.0</code>, importlib-metadata <code>~4.4</code> -> <code>^4.4.0</code>, jsonschema <code>~4.4.0</code> -> <code>~4.8.0</code>, mkdocs <code>1.3.0</code> -> <code>1.3.1</code>, mkdocs <code>==1.3.0</code> -> <code>==1.3.1</code>, mkdocs-include-markdown-plugin <code>~3.2.3</code> -> <code>~3.6.0</code>, mkdocs-include-markdown-plugin <code>==3.2.3</code> -> <code>==3.6.1</code>, social-auth-core <code>~4.2.0</code> -> <code>~4.3.0</code>, svgwrite <code>1.4.2</code> -> <code>1.4.3</code></li>
|
|
11427
11869
|
</ul>
|
|
11428
|
-
<h3 id="
|
|
11870
|
+
<h3 id="documentation-in-v140b1">Documentation in v1.4.0b1<a class="headerlink" href="#documentation-in-v140b1" title="Permanent link">¶</a></h3>
|
|
11429
11871
|
<ul>
|
|
11430
11872
|
<li><a href="https://github.com/nautobot/nautobot/pull/2072">#2072</a> - Expand on <code>query_params</code> for <code>ObjectVar</code> in Jobs documentation.</li>
|
|
11431
11873
|
</ul>
|
|
@@ -11437,7 +11879,7 @@
|
|
|
11437
11879
|
<p>Perform the Nautobot upgrade as usual and proceed with post-installation migration.</p>
|
|
11438
11880
|
<p>No data loss is expected as the reordered migration only modified indexing on existing fields.</p>
|
|
11439
11881
|
</div>
|
|
11440
|
-
<h3 id="
|
|
11882
|
+
<h3 id="added-in-v140a2">Added in v1.4.0a2<a class="headerlink" href="#added-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11441
11883
|
<ul>
|
|
11442
11884
|
<li><a href="https://github.com/nautobot/nautobot/issues/1000">#1000</a> - Object detail views can now have extra UI tabs which are defined by a plugin.</li>
|
|
11443
11885
|
<li><a href="https://github.com/nautobot/nautobot/issues/1052">#1052</a> - Initial prototype implementation of Location data model.</li>
|
|
@@ -11448,20 +11890,20 @@
|
|
|
11448
11890
|
<li><a href="https://github.com/nautobot/nautobot/issues/1729">#1729</a> - Add <code>cable_terminations</code> to the <code>model_features</code> registry.</li>
|
|
11449
11891
|
<li><a href="https://github.com/nautobot/nautobot/issues/1893">#1893</a> - Added an object detail view for Relationships.</li>
|
|
11450
11892
|
</ul>
|
|
11451
|
-
<h3 id="
|
|
11893
|
+
<h3 id="changed-in-v140a2">Changed in v1.4.0a2<a class="headerlink" href="#changed-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11452
11894
|
<ul>
|
|
11453
11895
|
<li><a href="https://github.com/nautobot/nautobot/issues/1945">#1945</a> - Change the <code>settings_and_registry</code> default context processor to purely <code>settings</code>, moving registry dictionary to be accessible via <code>registry</code> template tag.</li>
|
|
11454
11896
|
</ul>
|
|
11455
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11897
|
+
<h3 id="removed-in-v140a2">Removed in v1.4.0a2<a class="headerlink" href="#removed-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11456
11898
|
<ul>
|
|
11457
11899
|
<li><a href="https://github.com/nautobot/nautobot/issues/1462">#1462</a> - Removed job source tab from Job and Job Result view.</li>
|
|
11458
11900
|
<li><a href="https://github.com/nautobot/nautobot/issues/2002">#2002</a> - Removed rqworker container from default Docker development environment.</li>
|
|
11459
11901
|
</ul>
|
|
11460
|
-
<h3 id="
|
|
11902
|
+
<h3 id="fixed-in-v140a2">Fixed in v1.4.0a2<a class="headerlink" href="#fixed-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11461
11903
|
<ul>
|
|
11462
11904
|
<li><a href="https://github.com/nautobot/nautobot/issues/1898">#1898</a> - Browsable API is now properly styled as the rest of the app.</li>
|
|
11463
11905
|
</ul>
|
|
11464
|
-
<h3 id="
|
|
11906
|
+
<h3 id="dependencies-in-v140a2">Dependencies in v1.4.0a2<a class="headerlink" href="#dependencies-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11465
11907
|
<ul>
|
|
11466
11908
|
<li><a href="https://github.com/nautobot/nautobot/pull/1908">#1908</a> - Update dependency Markdown to ~3.3.7</li>
|
|
11467
11909
|
<li><a href="https://github.com/nautobot/nautobot/pull/1909">#1909</a> - Update dependency MarkupSafe to ~2.1.1</li>
|
|
@@ -11477,12 +11919,12 @@
|
|
|
11477
11919
|
<li><a href="https://github.com/nautobot/nautobot/pull/1928">#1928</a> - Update dependency napalm to ~3.4.1</li>
|
|
11478
11920
|
<li><a href="https://github.com/nautobot/nautobot/pull/1929">#1929</a> - Update dependency selenium to ~4.2.0</li>
|
|
11479
11921
|
</ul>
|
|
11480
|
-
<h3 id="
|
|
11922
|
+
<h3 id="housekeeping-in-v140a2">Housekeeping in v1.4.0a2<a class="headerlink" href="#housekeeping-in-v140a2" title="Permanent link">¶</a></h3>
|
|
11481
11923
|
<ul>
|
|
11482
11924
|
<li><a href="https://github.com/nautobot/nautobot/issues/1949">#1949</a> - Added TestCaseMixin for Helper Functions across all test case bases.</li>
|
|
11483
11925
|
</ul>
|
|
11484
11926
|
<h2 id="v140a1-2022-06-13">v1.4.0a1 (2022-06-13)<a class="headerlink" href="#v140a1-2022-06-13" title="Permanent link">¶</a></h2>
|
|
11485
|
-
<h3 id="
|
|
11927
|
+
<h3 id="added-in-v140a1">Added in v1.4.0a1<a class="headerlink" href="#added-in-v140a1" title="Permanent link">¶</a></h3>
|
|
11486
11928
|
<ul>
|
|
11487
11929
|
<li><a href="https://github.com/nautobot/nautobot/issues/729">#729</a> - Added UI dark mode.</li>
|
|
11488
11930
|
<li><a href="https://github.com/nautobot/nautobot/issues/984">#984</a> - Added status field to Interface, VMInterface models.</li>
|
|
@@ -11490,12 +11932,12 @@
|
|
|
11490
11932
|
<li><a href="https://github.com/nautobot/nautobot/issues/1455">#1455</a> - Added <code>parent_interface</code> and <code>bridge</code> fields to Interface and VMInterface models.</li>
|
|
11491
11933
|
<li><a href="https://github.com/nautobot/nautobot/pull/1833">#1833</a> - Added <code>hyperlinked_object</code> template filter to consistently reference objects in templates.</li>
|
|
11492
11934
|
</ul>
|
|
11493
|
-
<h3 id="
|
|
11935
|
+
<h3 id="changed-in-v140a1">Changed in v1.4.0a1<a class="headerlink" href="#changed-in-v140a1" title="Permanent link">¶</a></h3>
|
|
11494
11936
|
<ul>
|
|
11495
11937
|
<li><a href="https://github.com/nautobot/nautobot/issues/1736">#1736</a> - <code>STRICT_FILTERING</code> setting is added and enabled by default.</li>
|
|
11496
11938
|
<li><a href="https://github.com/nautobot/nautobot/pull/1793">#1793</a> - Added index notes to fields from analysis, relaxed ConfigContextSchema constraint (unique on <code>name</code>, <code>owner_content_type</code>, <code>owner_object_id</code> instead of just <code>name</code>).</li>
|
|
11497
11939
|
</ul>
|
|
11498
|
-
<h3 id="
|
|
11940
|
+
<h3 id="fixed-in-v140a1">Fixed in v1.4.0a1<a class="headerlink" href="#fixed-in-v140a1" title="Permanent link">¶</a></h3>
|
|
11499
11941
|
<ul>
|
|
11500
11942
|
<li><a href="https://github.com/nautobot/nautobot/issues/1815">#1815</a> - Fix theme link style in footer.</li>
|
|
11501
11943
|
<li><a href="https://github.com/nautobot/nautobot/issues/1831">#1831</a> - Fixed missing <code>parent_interface</code> and <code>bridge</code> from 1.4 serializer of Interfaces.</li>
|
|
@@ -11645,7 +12087,7 @@
|
|
|
11645
12087
|
</div>
|
|
11646
12088
|
|
|
11647
12089
|
|
|
11648
|
-
<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>
|
|
12090
|
+
<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>
|
|
11649
12091
|
|
|
11650
12092
|
|
|
11651
12093
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|