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
|
|
|
@@ -8453,54 +8897,54 @@
|
|
|
8453
8897
|
<ul class="md-nav__list">
|
|
8454
8898
|
|
|
8455
8899
|
<li class="md-nav__item">
|
|
8456
|
-
<a href="#security" class="md-nav__link">
|
|
8900
|
+
<a href="#security-in-v1310" class="md-nav__link">
|
|
8457
8901
|
<span class="md-ellipsis">
|
|
8458
|
-
Security
|
|
8902
|
+
Security in v1.3.10
|
|
8459
8903
|
</span>
|
|
8460
8904
|
</a>
|
|
8461
8905
|
|
|
8462
8906
|
</li>
|
|
8463
8907
|
|
|
8464
8908
|
<li class="md-nav__item">
|
|
8465
|
-
<a href="#
|
|
8909
|
+
<a href="#added-in-v1310" class="md-nav__link">
|
|
8466
8910
|
<span class="md-ellipsis">
|
|
8467
|
-
Added
|
|
8911
|
+
Added in v1.3.10
|
|
8468
8912
|
</span>
|
|
8469
8913
|
</a>
|
|
8470
8914
|
|
|
8471
8915
|
</li>
|
|
8472
8916
|
|
|
8473
8917
|
<li class="md-nav__item">
|
|
8474
|
-
<a href="#
|
|
8918
|
+
<a href="#changed-in-v1310" class="md-nav__link">
|
|
8475
8919
|
<span class="md-ellipsis">
|
|
8476
|
-
Changed
|
|
8920
|
+
Changed in v1.3.10
|
|
8477
8921
|
</span>
|
|
8478
8922
|
</a>
|
|
8479
8923
|
|
|
8480
8924
|
</li>
|
|
8481
8925
|
|
|
8482
8926
|
<li class="md-nav__item">
|
|
8483
|
-
<a href="#fixed" class="md-nav__link">
|
|
8927
|
+
<a href="#fixed-in-v1310" class="md-nav__link">
|
|
8484
8928
|
<span class="md-ellipsis">
|
|
8485
|
-
Fixed
|
|
8929
|
+
Fixed in v1.3.10
|
|
8486
8930
|
</span>
|
|
8487
8931
|
</a>
|
|
8488
8932
|
|
|
8489
8933
|
</li>
|
|
8490
8934
|
|
|
8491
8935
|
<li class="md-nav__item">
|
|
8492
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8936
|
+
<a href="#dependencies-in-v1310" class="md-nav__link">
|
|
8493
8937
|
<span class="md-ellipsis">
|
|
8494
|
-
Dependencies
|
|
8938
|
+
Dependencies in v1.3.10
|
|
8495
8939
|
</span>
|
|
8496
8940
|
</a>
|
|
8497
8941
|
|
|
8498
8942
|
</li>
|
|
8499
8943
|
|
|
8500
8944
|
<li class="md-nav__item">
|
|
8501
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8945
|
+
<a href="#housekeeping-in-v1310" class="md-nav__link">
|
|
8502
8946
|
<span class="md-ellipsis">
|
|
8503
|
-
Housekeeping
|
|
8947
|
+
Housekeeping in v1.3.10
|
|
8504
8948
|
</span>
|
|
8505
8949
|
</a>
|
|
8506
8950
|
|
|
@@ -8522,36 +8966,36 @@
|
|
|
8522
8966
|
<ul class="md-nav__list">
|
|
8523
8967
|
|
|
8524
8968
|
<li class="md-nav__item">
|
|
8525
|
-
<a href="#
|
|
8969
|
+
<a href="#added-in-v139" class="md-nav__link">
|
|
8526
8970
|
<span class="md-ellipsis">
|
|
8527
|
-
Added
|
|
8971
|
+
Added in v1.3.9
|
|
8528
8972
|
</span>
|
|
8529
8973
|
</a>
|
|
8530
8974
|
|
|
8531
8975
|
</li>
|
|
8532
8976
|
|
|
8533
8977
|
<li class="md-nav__item">
|
|
8534
|
-
<a href="#
|
|
8978
|
+
<a href="#changed-in-v139" class="md-nav__link">
|
|
8535
8979
|
<span class="md-ellipsis">
|
|
8536
|
-
Changed
|
|
8980
|
+
Changed in v1.3.9
|
|
8537
8981
|
</span>
|
|
8538
8982
|
</a>
|
|
8539
8983
|
|
|
8540
8984
|
</li>
|
|
8541
8985
|
|
|
8542
8986
|
<li class="md-nav__item">
|
|
8543
|
-
<a href="#
|
|
8987
|
+
<a href="#fixed-in-v139" class="md-nav__link">
|
|
8544
8988
|
<span class="md-ellipsis">
|
|
8545
|
-
Fixed
|
|
8989
|
+
Fixed in v1.3.9
|
|
8546
8990
|
</span>
|
|
8547
8991
|
</a>
|
|
8548
8992
|
|
|
8549
8993
|
</li>
|
|
8550
8994
|
|
|
8551
8995
|
<li class="md-nav__item">
|
|
8552
|
-
<a href="#documentation" class="md-nav__link">
|
|
8996
|
+
<a href="#documentation-in-v139" class="md-nav__link">
|
|
8553
8997
|
<span class="md-ellipsis">
|
|
8554
|
-
Documentation
|
|
8998
|
+
Documentation in v1.3.9
|
|
8555
8999
|
</span>
|
|
8556
9000
|
</a>
|
|
8557
9001
|
|
|
@@ -8573,54 +9017,54 @@
|
|
|
8573
9017
|
<ul class="md-nav__list">
|
|
8574
9018
|
|
|
8575
9019
|
<li class="md-nav__item">
|
|
8576
|
-
<a href="#
|
|
9020
|
+
<a href="#security-in-v138" class="md-nav__link">
|
|
8577
9021
|
<span class="md-ellipsis">
|
|
8578
|
-
Security
|
|
9022
|
+
Security in v1.3.8
|
|
8579
9023
|
</span>
|
|
8580
9024
|
</a>
|
|
8581
9025
|
|
|
8582
9026
|
</li>
|
|
8583
9027
|
|
|
8584
9028
|
<li class="md-nav__item">
|
|
8585
|
-
<a href="#
|
|
9029
|
+
<a href="#added-in-v138" class="md-nav__link">
|
|
8586
9030
|
<span class="md-ellipsis">
|
|
8587
|
-
Added
|
|
9031
|
+
Added in v1.3.8
|
|
8588
9032
|
</span>
|
|
8589
9033
|
</a>
|
|
8590
9034
|
|
|
8591
9035
|
</li>
|
|
8592
9036
|
|
|
8593
9037
|
<li class="md-nav__item">
|
|
8594
|
-
<a href="#
|
|
9038
|
+
<a href="#changed-in-v138" class="md-nav__link">
|
|
8595
9039
|
<span class="md-ellipsis">
|
|
8596
|
-
Changed
|
|
9040
|
+
Changed in v1.3.8
|
|
8597
9041
|
</span>
|
|
8598
9042
|
</a>
|
|
8599
9043
|
|
|
8600
9044
|
</li>
|
|
8601
9045
|
|
|
8602
9046
|
<li class="md-nav__item">
|
|
8603
|
-
<a href="#
|
|
9047
|
+
<a href="#fixed-in-v138" class="md-nav__link">
|
|
8604
9048
|
<span class="md-ellipsis">
|
|
8605
|
-
Fixed
|
|
9049
|
+
Fixed in v1.3.8
|
|
8606
9050
|
</span>
|
|
8607
9051
|
</a>
|
|
8608
9052
|
|
|
8609
9053
|
</li>
|
|
8610
9054
|
|
|
8611
9055
|
<li class="md-nav__item">
|
|
8612
|
-
<a href="#
|
|
9056
|
+
<a href="#dependencies-in-v138" class="md-nav__link">
|
|
8613
9057
|
<span class="md-ellipsis">
|
|
8614
|
-
Dependencies
|
|
9058
|
+
Dependencies in v1.3.8
|
|
8615
9059
|
</span>
|
|
8616
9060
|
</a>
|
|
8617
9061
|
|
|
8618
9062
|
</li>
|
|
8619
9063
|
|
|
8620
9064
|
<li class="md-nav__item">
|
|
8621
|
-
<a href="#
|
|
9065
|
+
<a href="#housekeeping-in-v138" class="md-nav__link">
|
|
8622
9066
|
<span class="md-ellipsis">
|
|
8623
|
-
Housekeeping
|
|
9067
|
+
Housekeeping in v1.3.8
|
|
8624
9068
|
</span>
|
|
8625
9069
|
</a>
|
|
8626
9070
|
|
|
@@ -8642,45 +9086,45 @@
|
|
|
8642
9086
|
<ul class="md-nav__list">
|
|
8643
9087
|
|
|
8644
9088
|
<li class="md-nav__item">
|
|
8645
|
-
<a href="#
|
|
9089
|
+
<a href="#added-in-v137" class="md-nav__link">
|
|
8646
9090
|
<span class="md-ellipsis">
|
|
8647
|
-
Added
|
|
9091
|
+
Added in v1.3.7
|
|
8648
9092
|
</span>
|
|
8649
9093
|
</a>
|
|
8650
9094
|
|
|
8651
9095
|
</li>
|
|
8652
9096
|
|
|
8653
9097
|
<li class="md-nav__item">
|
|
8654
|
-
<a href="#
|
|
9098
|
+
<a href="#changed-in-v137" class="md-nav__link">
|
|
8655
9099
|
<span class="md-ellipsis">
|
|
8656
|
-
Changed
|
|
9100
|
+
Changed in v1.3.7
|
|
8657
9101
|
</span>
|
|
8658
9102
|
</a>
|
|
8659
9103
|
|
|
8660
9104
|
</li>
|
|
8661
9105
|
|
|
8662
9106
|
<li class="md-nav__item">
|
|
8663
|
-
<a href="#
|
|
9107
|
+
<a href="#fixed-in-v137" class="md-nav__link">
|
|
8664
9108
|
<span class="md-ellipsis">
|
|
8665
|
-
Fixed
|
|
9109
|
+
Fixed in v1.3.7
|
|
8666
9110
|
</span>
|
|
8667
9111
|
</a>
|
|
8668
9112
|
|
|
8669
9113
|
</li>
|
|
8670
9114
|
|
|
8671
9115
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
9116
|
+
<a href="#documentation-in-v137" class="md-nav__link">
|
|
8673
9117
|
<span class="md-ellipsis">
|
|
8674
|
-
Documentation
|
|
9118
|
+
Documentation in v1.3.7
|
|
8675
9119
|
</span>
|
|
8676
9120
|
</a>
|
|
8677
9121
|
|
|
8678
9122
|
</li>
|
|
8679
9123
|
|
|
8680
9124
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
9125
|
+
<a href="#housekeeping-in-v137" class="md-nav__link">
|
|
8682
9126
|
<span class="md-ellipsis">
|
|
8683
|
-
Housekeeping
|
|
9127
|
+
Housekeeping in v1.3.7
|
|
8684
9128
|
</span>
|
|
8685
9129
|
</a>
|
|
8686
9130
|
|
|
@@ -8702,27 +9146,27 @@
|
|
|
8702
9146
|
<ul class="md-nav__list">
|
|
8703
9147
|
|
|
8704
9148
|
<li class="md-nav__item">
|
|
8705
|
-
<a href="#
|
|
9149
|
+
<a href="#fixed-in-v136" class="md-nav__link">
|
|
8706
9150
|
<span class="md-ellipsis">
|
|
8707
|
-
Fixed
|
|
9151
|
+
Fixed in v1.3.6
|
|
8708
9152
|
</span>
|
|
8709
9153
|
</a>
|
|
8710
9154
|
|
|
8711
9155
|
</li>
|
|
8712
9156
|
|
|
8713
9157
|
<li class="md-nav__item">
|
|
8714
|
-
<a href="#
|
|
9158
|
+
<a href="#documentation-in-v136" class="md-nav__link">
|
|
8715
9159
|
<span class="md-ellipsis">
|
|
8716
|
-
Documentation
|
|
9160
|
+
Documentation in v1.3.6
|
|
8717
9161
|
</span>
|
|
8718
9162
|
</a>
|
|
8719
9163
|
|
|
8720
9164
|
</li>
|
|
8721
9165
|
|
|
8722
9166
|
<li class="md-nav__item">
|
|
8723
|
-
<a href="#
|
|
9167
|
+
<a href="#housekeeping-in-v136" class="md-nav__link">
|
|
8724
9168
|
<span class="md-ellipsis">
|
|
8725
|
-
Housekeeping
|
|
9169
|
+
Housekeeping in v1.3.6
|
|
8726
9170
|
</span>
|
|
8727
9171
|
</a>
|
|
8728
9172
|
|
|
@@ -8744,36 +9188,36 @@
|
|
|
8744
9188
|
<ul class="md-nav__list">
|
|
8745
9189
|
|
|
8746
9190
|
<li class="md-nav__item">
|
|
8747
|
-
<a href="#
|
|
9191
|
+
<a href="#security-in-v135" class="md-nav__link">
|
|
8748
9192
|
<span class="md-ellipsis">
|
|
8749
|
-
Security
|
|
9193
|
+
Security in v1.3.5
|
|
8750
9194
|
</span>
|
|
8751
9195
|
</a>
|
|
8752
9196
|
|
|
8753
9197
|
</li>
|
|
8754
9198
|
|
|
8755
9199
|
<li class="md-nav__item">
|
|
8756
|
-
<a href="#
|
|
9200
|
+
<a href="#fixed-in-v135" class="md-nav__link">
|
|
8757
9201
|
<span class="md-ellipsis">
|
|
8758
|
-
Fixed
|
|
9202
|
+
Fixed in v1.3.5
|
|
8759
9203
|
</span>
|
|
8760
9204
|
</a>
|
|
8761
9205
|
|
|
8762
9206
|
</li>
|
|
8763
9207
|
|
|
8764
9208
|
<li class="md-nav__item">
|
|
8765
|
-
<a href="#
|
|
9209
|
+
<a href="#documentation-in-v135" class="md-nav__link">
|
|
8766
9210
|
<span class="md-ellipsis">
|
|
8767
|
-
Documentation
|
|
9211
|
+
Documentation in v1.3.5
|
|
8768
9212
|
</span>
|
|
8769
9213
|
</a>
|
|
8770
9214
|
|
|
8771
9215
|
</li>
|
|
8772
9216
|
|
|
8773
9217
|
<li class="md-nav__item">
|
|
8774
|
-
<a href="#
|
|
9218
|
+
<a href="#housekeeping-in-v135" class="md-nav__link">
|
|
8775
9219
|
<span class="md-ellipsis">
|
|
8776
|
-
Housekeeping
|
|
9220
|
+
Housekeeping in v1.3.5
|
|
8777
9221
|
</span>
|
|
8778
9222
|
</a>
|
|
8779
9223
|
|
|
@@ -8795,36 +9239,36 @@
|
|
|
8795
9239
|
<ul class="md-nav__list">
|
|
8796
9240
|
|
|
8797
9241
|
<li class="md-nav__item">
|
|
8798
|
-
<a href="#
|
|
9242
|
+
<a href="#security-in-v134" class="md-nav__link">
|
|
8799
9243
|
<span class="md-ellipsis">
|
|
8800
|
-
Security
|
|
9244
|
+
Security in v1.3.4
|
|
8801
9245
|
</span>
|
|
8802
9246
|
</a>
|
|
8803
9247
|
|
|
8804
9248
|
</li>
|
|
8805
9249
|
|
|
8806
9250
|
<li class="md-nav__item">
|
|
8807
|
-
<a href="#
|
|
9251
|
+
<a href="#added-in-v134" class="md-nav__link">
|
|
8808
9252
|
<span class="md-ellipsis">
|
|
8809
|
-
Added
|
|
9253
|
+
Added in v1.3.4
|
|
8810
9254
|
</span>
|
|
8811
9255
|
</a>
|
|
8812
9256
|
|
|
8813
9257
|
</li>
|
|
8814
9258
|
|
|
8815
9259
|
<li class="md-nav__item">
|
|
8816
|
-
<a href="#
|
|
9260
|
+
<a href="#fixed-in-v134" class="md-nav__link">
|
|
8817
9261
|
<span class="md-ellipsis">
|
|
8818
|
-
Fixed
|
|
9262
|
+
Fixed in v1.3.4
|
|
8819
9263
|
</span>
|
|
8820
9264
|
</a>
|
|
8821
9265
|
|
|
8822
9266
|
</li>
|
|
8823
9267
|
|
|
8824
9268
|
<li class="md-nav__item">
|
|
8825
|
-
<a href="#
|
|
9269
|
+
<a href="#documentation-in-v134" class="md-nav__link">
|
|
8826
9270
|
<span class="md-ellipsis">
|
|
8827
|
-
Documentation
|
|
9271
|
+
Documentation in v1.3.4
|
|
8828
9272
|
</span>
|
|
8829
9273
|
</a>
|
|
8830
9274
|
|
|
@@ -8846,54 +9290,54 @@
|
|
|
8846
9290
|
<ul class="md-nav__list">
|
|
8847
9291
|
|
|
8848
9292
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
9293
|
+
<a href="#added-in-v133" class="md-nav__link">
|
|
8850
9294
|
<span class="md-ellipsis">
|
|
8851
|
-
Added
|
|
9295
|
+
Added in v1.3.3
|
|
8852
9296
|
</span>
|
|
8853
9297
|
</a>
|
|
8854
9298
|
|
|
8855
9299
|
</li>
|
|
8856
9300
|
|
|
8857
9301
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#
|
|
9302
|
+
<a href="#changed-in-v133" class="md-nav__link">
|
|
8859
9303
|
<span class="md-ellipsis">
|
|
8860
|
-
Changed
|
|
9304
|
+
Changed in v1.3.3
|
|
8861
9305
|
</span>
|
|
8862
9306
|
</a>
|
|
8863
9307
|
|
|
8864
9308
|
</li>
|
|
8865
9309
|
|
|
8866
9310
|
<li class="md-nav__item">
|
|
8867
|
-
<a href="#
|
|
9311
|
+
<a href="#fixed-in-v133" class="md-nav__link">
|
|
8868
9312
|
<span class="md-ellipsis">
|
|
8869
|
-
Fixed
|
|
9313
|
+
Fixed in v1.3.3
|
|
8870
9314
|
</span>
|
|
8871
9315
|
</a>
|
|
8872
9316
|
|
|
8873
9317
|
</li>
|
|
8874
9318
|
|
|
8875
9319
|
<li class="md-nav__item">
|
|
8876
|
-
<a href="#
|
|
9320
|
+
<a href="#dependencies-in-v133" class="md-nav__link">
|
|
8877
9321
|
<span class="md-ellipsis">
|
|
8878
|
-
Dependencies
|
|
9322
|
+
Dependencies in v1.3.3
|
|
8879
9323
|
</span>
|
|
8880
9324
|
</a>
|
|
8881
9325
|
|
|
8882
9326
|
</li>
|
|
8883
9327
|
|
|
8884
9328
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
9329
|
+
<a href="#documentation-in-v133" class="md-nav__link">
|
|
8886
9330
|
<span class="md-ellipsis">
|
|
8887
|
-
Documentation
|
|
9331
|
+
Documentation in v1.3.3
|
|
8888
9332
|
</span>
|
|
8889
9333
|
</a>
|
|
8890
9334
|
|
|
8891
9335
|
</li>
|
|
8892
9336
|
|
|
8893
9337
|
<li class="md-nav__item">
|
|
8894
|
-
<a href="#
|
|
9338
|
+
<a href="#housekeeping-in-v133" class="md-nav__link">
|
|
8895
9339
|
<span class="md-ellipsis">
|
|
8896
|
-
Housekeeping
|
|
9340
|
+
Housekeeping in v1.3.3
|
|
8897
9341
|
</span>
|
|
8898
9342
|
</a>
|
|
8899
9343
|
|
|
@@ -8915,54 +9359,54 @@
|
|
|
8915
9359
|
<ul class="md-nav__list">
|
|
8916
9360
|
|
|
8917
9361
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
9362
|
+
<a href="#security-in-v132" class="md-nav__link">
|
|
8919
9363
|
<span class="md-ellipsis">
|
|
8920
|
-
Security
|
|
9364
|
+
Security in v1.3.2
|
|
8921
9365
|
</span>
|
|
8922
9366
|
</a>
|
|
8923
9367
|
|
|
8924
9368
|
</li>
|
|
8925
9369
|
|
|
8926
9370
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
9371
|
+
<a href="#added-in-v132" class="md-nav__link">
|
|
8928
9372
|
<span class="md-ellipsis">
|
|
8929
|
-
Added
|
|
9373
|
+
Added in v1.3.2
|
|
8930
9374
|
</span>
|
|
8931
9375
|
</a>
|
|
8932
9376
|
|
|
8933
9377
|
</li>
|
|
8934
9378
|
|
|
8935
9379
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
9380
|
+
<a href="#changed-in-v132" class="md-nav__link">
|
|
8937
9381
|
<span class="md-ellipsis">
|
|
8938
|
-
Changed
|
|
9382
|
+
Changed in v1.3.2
|
|
8939
9383
|
</span>
|
|
8940
9384
|
</a>
|
|
8941
9385
|
|
|
8942
9386
|
</li>
|
|
8943
9387
|
|
|
8944
9388
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#
|
|
9389
|
+
<a href="#fixed-in-v132" class="md-nav__link">
|
|
8946
9390
|
<span class="md-ellipsis">
|
|
8947
|
-
Fixed
|
|
9391
|
+
Fixed in v1.3.2
|
|
8948
9392
|
</span>
|
|
8949
9393
|
</a>
|
|
8950
9394
|
|
|
8951
9395
|
</li>
|
|
8952
9396
|
|
|
8953
9397
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9398
|
+
<a href="#documentation-in-v132" class="md-nav__link">
|
|
8955
9399
|
<span class="md-ellipsis">
|
|
8956
|
-
Documentation
|
|
9400
|
+
Documentation in v1.3.2
|
|
8957
9401
|
</span>
|
|
8958
9402
|
</a>
|
|
8959
9403
|
|
|
8960
9404
|
</li>
|
|
8961
9405
|
|
|
8962
9406
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
9407
|
+
<a href="#housekeeping-in-v132" class="md-nav__link">
|
|
8964
9408
|
<span class="md-ellipsis">
|
|
8965
|
-
Housekeeping
|
|
9409
|
+
Housekeeping in v1.3.2
|
|
8966
9410
|
</span>
|
|
8967
9411
|
</a>
|
|
8968
9412
|
|
|
@@ -8984,18 +9428,18 @@
|
|
|
8984
9428
|
<ul class="md-nav__list">
|
|
8985
9429
|
|
|
8986
9430
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
9431
|
+
<a href="#changed-in-v131" class="md-nav__link">
|
|
8988
9432
|
<span class="md-ellipsis">
|
|
8989
|
-
Changed
|
|
9433
|
+
Changed in v1.3.1
|
|
8990
9434
|
</span>
|
|
8991
9435
|
</a>
|
|
8992
9436
|
|
|
8993
9437
|
</li>
|
|
8994
9438
|
|
|
8995
9439
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
9440
|
+
<a href="#fixed-in-v131" class="md-nav__link">
|
|
8997
9441
|
<span class="md-ellipsis">
|
|
8998
|
-
Fixed
|
|
9442
|
+
Fixed in v1.3.1
|
|
8999
9443
|
</span>
|
|
9000
9444
|
</a>
|
|
9001
9445
|
|
|
@@ -9017,45 +9461,45 @@
|
|
|
9017
9461
|
<ul class="md-nav__list">
|
|
9018
9462
|
|
|
9019
9463
|
<li class="md-nav__item">
|
|
9020
|
-
<a href="#
|
|
9464
|
+
<a href="#added-in-v130" class="md-nav__link">
|
|
9021
9465
|
<span class="md-ellipsis">
|
|
9022
|
-
Added
|
|
9466
|
+
Added in v1.3.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="#changed-in-v130" class="md-nav__link">
|
|
9030
9474
|
<span class="md-ellipsis">
|
|
9031
|
-
Changed
|
|
9475
|
+
Changed in v1.3.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="#fixed-in-v130" class="md-nav__link">
|
|
9039
9483
|
<span class="md-ellipsis">
|
|
9040
|
-
Fixed
|
|
9484
|
+
Fixed in v1.3.0
|
|
9041
9485
|
</span>
|
|
9042
9486
|
</a>
|
|
9043
9487
|
|
|
9044
9488
|
</li>
|
|
9045
9489
|
|
|
9046
9490
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9491
|
+
<a href="#documentation-in-v130" class="md-nav__link">
|
|
9048
9492
|
<span class="md-ellipsis">
|
|
9049
|
-
Documentation
|
|
9493
|
+
Documentation in v1.3.0
|
|
9050
9494
|
</span>
|
|
9051
9495
|
</a>
|
|
9052
9496
|
|
|
9053
9497
|
</li>
|
|
9054
9498
|
|
|
9055
9499
|
<li class="md-nav__item">
|
|
9056
|
-
<a href="#
|
|
9500
|
+
<a href="#housekeeping-in-v130" class="md-nav__link">
|
|
9057
9501
|
<span class="md-ellipsis">
|
|
9058
|
-
Housekeeping
|
|
9502
|
+
Housekeeping in v1.3.0
|
|
9059
9503
|
</span>
|
|
9060
9504
|
</a>
|
|
9061
9505
|
|
|
@@ -9077,54 +9521,54 @@
|
|
|
9077
9521
|
<ul class="md-nav__list">
|
|
9078
9522
|
|
|
9079
9523
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9524
|
+
<a href="#added-in-v130b1" class="md-nav__link">
|
|
9081
9525
|
<span class="md-ellipsis">
|
|
9082
|
-
Added
|
|
9526
|
+
Added in v1.3.0b1
|
|
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="#changed-in-v130b1" class="md-nav__link">
|
|
9090
9534
|
<span class="md-ellipsis">
|
|
9091
|
-
Changed
|
|
9535
|
+
Changed in v1.3.0b1
|
|
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="#removed-in-v130b1" class="md-nav__link">
|
|
9099
9543
|
<span class="md-ellipsis">
|
|
9100
|
-
Removed
|
|
9544
|
+
Removed in v1.3.0b1
|
|
9101
9545
|
</span>
|
|
9102
9546
|
</a>
|
|
9103
9547
|
|
|
9104
9548
|
</li>
|
|
9105
9549
|
|
|
9106
9550
|
<li class="md-nav__item">
|
|
9107
|
-
<a href="#
|
|
9551
|
+
<a href="#fixed-in-v130b1" class="md-nav__link">
|
|
9108
9552
|
<span class="md-ellipsis">
|
|
9109
|
-
Fixed
|
|
9553
|
+
Fixed in v1.3.0b1
|
|
9110
9554
|
</span>
|
|
9111
9555
|
</a>
|
|
9112
9556
|
|
|
9113
9557
|
</li>
|
|
9114
9558
|
|
|
9115
9559
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9560
|
+
<a href="#dependencies-in-v130b1" class="md-nav__link">
|
|
9117
9561
|
<span class="md-ellipsis">
|
|
9118
|
-
Dependencies
|
|
9562
|
+
Dependencies in v1.3.0b1
|
|
9119
9563
|
</span>
|
|
9120
9564
|
</a>
|
|
9121
9565
|
|
|
9122
9566
|
</li>
|
|
9123
9567
|
|
|
9124
9568
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9569
|
+
<a href="#housekeeping-in-v130b1" class="md-nav__link">
|
|
9126
9570
|
<span class="md-ellipsis">
|
|
9127
|
-
Housekeeping
|
|
9571
|
+
Housekeeping in v1.3.0b1
|
|
9128
9572
|
</span>
|
|
9129
9573
|
</a>
|
|
9130
9574
|
|
|
@@ -9838,54 +10282,54 @@
|
|
|
9838
10282
|
<ul class="md-nav__list">
|
|
9839
10283
|
|
|
9840
10284
|
<li class="md-nav__item">
|
|
9841
|
-
<a href="#security" class="md-nav__link">
|
|
10285
|
+
<a href="#security-in-v1310" class="md-nav__link">
|
|
9842
10286
|
<span class="md-ellipsis">
|
|
9843
|
-
Security
|
|
10287
|
+
Security in v1.3.10
|
|
9844
10288
|
</span>
|
|
9845
10289
|
</a>
|
|
9846
10290
|
|
|
9847
10291
|
</li>
|
|
9848
10292
|
|
|
9849
10293
|
<li class="md-nav__item">
|
|
9850
|
-
<a href="#
|
|
10294
|
+
<a href="#added-in-v1310" class="md-nav__link">
|
|
9851
10295
|
<span class="md-ellipsis">
|
|
9852
|
-
Added
|
|
10296
|
+
Added in v1.3.10
|
|
9853
10297
|
</span>
|
|
9854
10298
|
</a>
|
|
9855
10299
|
|
|
9856
10300
|
</li>
|
|
9857
10301
|
|
|
9858
10302
|
<li class="md-nav__item">
|
|
9859
|
-
<a href="#
|
|
10303
|
+
<a href="#changed-in-v1310" class="md-nav__link">
|
|
9860
10304
|
<span class="md-ellipsis">
|
|
9861
|
-
Changed
|
|
10305
|
+
Changed in v1.3.10
|
|
9862
10306
|
</span>
|
|
9863
10307
|
</a>
|
|
9864
10308
|
|
|
9865
10309
|
</li>
|
|
9866
10310
|
|
|
9867
10311
|
<li class="md-nav__item">
|
|
9868
|
-
<a href="#fixed" class="md-nav__link">
|
|
10312
|
+
<a href="#fixed-in-v1310" class="md-nav__link">
|
|
9869
10313
|
<span class="md-ellipsis">
|
|
9870
|
-
Fixed
|
|
10314
|
+
Fixed in v1.3.10
|
|
9871
10315
|
</span>
|
|
9872
10316
|
</a>
|
|
9873
10317
|
|
|
9874
10318
|
</li>
|
|
9875
10319
|
|
|
9876
10320
|
<li class="md-nav__item">
|
|
9877
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10321
|
+
<a href="#dependencies-in-v1310" class="md-nav__link">
|
|
9878
10322
|
<span class="md-ellipsis">
|
|
9879
|
-
Dependencies
|
|
10323
|
+
Dependencies in v1.3.10
|
|
9880
10324
|
</span>
|
|
9881
10325
|
</a>
|
|
9882
10326
|
|
|
9883
10327
|
</li>
|
|
9884
10328
|
|
|
9885
10329
|
<li class="md-nav__item">
|
|
9886
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10330
|
+
<a href="#housekeeping-in-v1310" class="md-nav__link">
|
|
9887
10331
|
<span class="md-ellipsis">
|
|
9888
|
-
Housekeeping
|
|
10332
|
+
Housekeeping in v1.3.10
|
|
9889
10333
|
</span>
|
|
9890
10334
|
</a>
|
|
9891
10335
|
|
|
@@ -9907,36 +10351,36 @@
|
|
|
9907
10351
|
<ul class="md-nav__list">
|
|
9908
10352
|
|
|
9909
10353
|
<li class="md-nav__item">
|
|
9910
|
-
<a href="#
|
|
10354
|
+
<a href="#added-in-v139" class="md-nav__link">
|
|
9911
10355
|
<span class="md-ellipsis">
|
|
9912
|
-
Added
|
|
10356
|
+
Added in v1.3.9
|
|
9913
10357
|
</span>
|
|
9914
10358
|
</a>
|
|
9915
10359
|
|
|
9916
10360
|
</li>
|
|
9917
10361
|
|
|
9918
10362
|
<li class="md-nav__item">
|
|
9919
|
-
<a href="#
|
|
10363
|
+
<a href="#changed-in-v139" class="md-nav__link">
|
|
9920
10364
|
<span class="md-ellipsis">
|
|
9921
|
-
Changed
|
|
10365
|
+
Changed in v1.3.9
|
|
9922
10366
|
</span>
|
|
9923
10367
|
</a>
|
|
9924
10368
|
|
|
9925
10369
|
</li>
|
|
9926
10370
|
|
|
9927
10371
|
<li class="md-nav__item">
|
|
9928
|
-
<a href="#
|
|
10372
|
+
<a href="#fixed-in-v139" class="md-nav__link">
|
|
9929
10373
|
<span class="md-ellipsis">
|
|
9930
|
-
Fixed
|
|
10374
|
+
Fixed in v1.3.9
|
|
9931
10375
|
</span>
|
|
9932
10376
|
</a>
|
|
9933
10377
|
|
|
9934
10378
|
</li>
|
|
9935
10379
|
|
|
9936
10380
|
<li class="md-nav__item">
|
|
9937
|
-
<a href="#documentation" class="md-nav__link">
|
|
10381
|
+
<a href="#documentation-in-v139" class="md-nav__link">
|
|
9938
10382
|
<span class="md-ellipsis">
|
|
9939
|
-
Documentation
|
|
10383
|
+
Documentation in v1.3.9
|
|
9940
10384
|
</span>
|
|
9941
10385
|
</a>
|
|
9942
10386
|
|
|
@@ -9958,54 +10402,54 @@
|
|
|
9958
10402
|
<ul class="md-nav__list">
|
|
9959
10403
|
|
|
9960
10404
|
<li class="md-nav__item">
|
|
9961
|
-
<a href="#
|
|
10405
|
+
<a href="#security-in-v138" class="md-nav__link">
|
|
9962
10406
|
<span class="md-ellipsis">
|
|
9963
|
-
Security
|
|
10407
|
+
Security in v1.3.8
|
|
9964
10408
|
</span>
|
|
9965
10409
|
</a>
|
|
9966
10410
|
|
|
9967
10411
|
</li>
|
|
9968
10412
|
|
|
9969
10413
|
<li class="md-nav__item">
|
|
9970
|
-
<a href="#
|
|
10414
|
+
<a href="#added-in-v138" class="md-nav__link">
|
|
9971
10415
|
<span class="md-ellipsis">
|
|
9972
|
-
Added
|
|
10416
|
+
Added in v1.3.8
|
|
9973
10417
|
</span>
|
|
9974
10418
|
</a>
|
|
9975
10419
|
|
|
9976
10420
|
</li>
|
|
9977
10421
|
|
|
9978
10422
|
<li class="md-nav__item">
|
|
9979
|
-
<a href="#
|
|
10423
|
+
<a href="#changed-in-v138" class="md-nav__link">
|
|
9980
10424
|
<span class="md-ellipsis">
|
|
9981
|
-
Changed
|
|
10425
|
+
Changed in v1.3.8
|
|
9982
10426
|
</span>
|
|
9983
10427
|
</a>
|
|
9984
10428
|
|
|
9985
10429
|
</li>
|
|
9986
10430
|
|
|
9987
10431
|
<li class="md-nav__item">
|
|
9988
|
-
<a href="#
|
|
10432
|
+
<a href="#fixed-in-v138" class="md-nav__link">
|
|
9989
10433
|
<span class="md-ellipsis">
|
|
9990
|
-
Fixed
|
|
10434
|
+
Fixed in v1.3.8
|
|
9991
10435
|
</span>
|
|
9992
10436
|
</a>
|
|
9993
10437
|
|
|
9994
10438
|
</li>
|
|
9995
10439
|
|
|
9996
10440
|
<li class="md-nav__item">
|
|
9997
|
-
<a href="#
|
|
10441
|
+
<a href="#dependencies-in-v138" class="md-nav__link">
|
|
9998
10442
|
<span class="md-ellipsis">
|
|
9999
|
-
Dependencies
|
|
10443
|
+
Dependencies in v1.3.8
|
|
10000
10444
|
</span>
|
|
10001
10445
|
</a>
|
|
10002
10446
|
|
|
10003
10447
|
</li>
|
|
10004
10448
|
|
|
10005
10449
|
<li class="md-nav__item">
|
|
10006
|
-
<a href="#
|
|
10450
|
+
<a href="#housekeeping-in-v138" class="md-nav__link">
|
|
10007
10451
|
<span class="md-ellipsis">
|
|
10008
|
-
Housekeeping
|
|
10452
|
+
Housekeeping in v1.3.8
|
|
10009
10453
|
</span>
|
|
10010
10454
|
</a>
|
|
10011
10455
|
|
|
@@ -10027,45 +10471,45 @@
|
|
|
10027
10471
|
<ul class="md-nav__list">
|
|
10028
10472
|
|
|
10029
10473
|
<li class="md-nav__item">
|
|
10030
|
-
<a href="#
|
|
10474
|
+
<a href="#added-in-v137" class="md-nav__link">
|
|
10031
10475
|
<span class="md-ellipsis">
|
|
10032
|
-
Added
|
|
10476
|
+
Added in v1.3.7
|
|
10033
10477
|
</span>
|
|
10034
10478
|
</a>
|
|
10035
10479
|
|
|
10036
10480
|
</li>
|
|
10037
10481
|
|
|
10038
10482
|
<li class="md-nav__item">
|
|
10039
|
-
<a href="#
|
|
10483
|
+
<a href="#changed-in-v137" class="md-nav__link">
|
|
10040
10484
|
<span class="md-ellipsis">
|
|
10041
|
-
Changed
|
|
10485
|
+
Changed in v1.3.7
|
|
10042
10486
|
</span>
|
|
10043
10487
|
</a>
|
|
10044
10488
|
|
|
10045
10489
|
</li>
|
|
10046
10490
|
|
|
10047
10491
|
<li class="md-nav__item">
|
|
10048
|
-
<a href="#
|
|
10492
|
+
<a href="#fixed-in-v137" class="md-nav__link">
|
|
10049
10493
|
<span class="md-ellipsis">
|
|
10050
|
-
Fixed
|
|
10494
|
+
Fixed in v1.3.7
|
|
10051
10495
|
</span>
|
|
10052
10496
|
</a>
|
|
10053
10497
|
|
|
10054
10498
|
</li>
|
|
10055
10499
|
|
|
10056
10500
|
<li class="md-nav__item">
|
|
10057
|
-
<a href="#
|
|
10501
|
+
<a href="#documentation-in-v137" class="md-nav__link">
|
|
10058
10502
|
<span class="md-ellipsis">
|
|
10059
|
-
Documentation
|
|
10503
|
+
Documentation in v1.3.7
|
|
10060
10504
|
</span>
|
|
10061
10505
|
</a>
|
|
10062
10506
|
|
|
10063
10507
|
</li>
|
|
10064
10508
|
|
|
10065
10509
|
<li class="md-nav__item">
|
|
10066
|
-
<a href="#
|
|
10510
|
+
<a href="#housekeeping-in-v137" class="md-nav__link">
|
|
10067
10511
|
<span class="md-ellipsis">
|
|
10068
|
-
Housekeeping
|
|
10512
|
+
Housekeeping in v1.3.7
|
|
10069
10513
|
</span>
|
|
10070
10514
|
</a>
|
|
10071
10515
|
|
|
@@ -10087,27 +10531,27 @@
|
|
|
10087
10531
|
<ul class="md-nav__list">
|
|
10088
10532
|
|
|
10089
10533
|
<li class="md-nav__item">
|
|
10090
|
-
<a href="#
|
|
10534
|
+
<a href="#fixed-in-v136" class="md-nav__link">
|
|
10091
10535
|
<span class="md-ellipsis">
|
|
10092
|
-
Fixed
|
|
10536
|
+
Fixed in v1.3.6
|
|
10093
10537
|
</span>
|
|
10094
10538
|
</a>
|
|
10095
10539
|
|
|
10096
10540
|
</li>
|
|
10097
10541
|
|
|
10098
10542
|
<li class="md-nav__item">
|
|
10099
|
-
<a href="#
|
|
10543
|
+
<a href="#documentation-in-v136" class="md-nav__link">
|
|
10100
10544
|
<span class="md-ellipsis">
|
|
10101
|
-
Documentation
|
|
10545
|
+
Documentation in v1.3.6
|
|
10102
10546
|
</span>
|
|
10103
10547
|
</a>
|
|
10104
10548
|
|
|
10105
10549
|
</li>
|
|
10106
10550
|
|
|
10107
10551
|
<li class="md-nav__item">
|
|
10108
|
-
<a href="#
|
|
10552
|
+
<a href="#housekeeping-in-v136" class="md-nav__link">
|
|
10109
10553
|
<span class="md-ellipsis">
|
|
10110
|
-
Housekeeping
|
|
10554
|
+
Housekeeping in v1.3.6
|
|
10111
10555
|
</span>
|
|
10112
10556
|
</a>
|
|
10113
10557
|
|
|
@@ -10129,36 +10573,36 @@
|
|
|
10129
10573
|
<ul class="md-nav__list">
|
|
10130
10574
|
|
|
10131
10575
|
<li class="md-nav__item">
|
|
10132
|
-
<a href="#
|
|
10576
|
+
<a href="#security-in-v135" class="md-nav__link">
|
|
10133
10577
|
<span class="md-ellipsis">
|
|
10134
|
-
Security
|
|
10578
|
+
Security in v1.3.5
|
|
10135
10579
|
</span>
|
|
10136
10580
|
</a>
|
|
10137
10581
|
|
|
10138
10582
|
</li>
|
|
10139
10583
|
|
|
10140
10584
|
<li class="md-nav__item">
|
|
10141
|
-
<a href="#
|
|
10585
|
+
<a href="#fixed-in-v135" class="md-nav__link">
|
|
10142
10586
|
<span class="md-ellipsis">
|
|
10143
|
-
Fixed
|
|
10587
|
+
Fixed in v1.3.5
|
|
10144
10588
|
</span>
|
|
10145
10589
|
</a>
|
|
10146
10590
|
|
|
10147
10591
|
</li>
|
|
10148
10592
|
|
|
10149
10593
|
<li class="md-nav__item">
|
|
10150
|
-
<a href="#
|
|
10594
|
+
<a href="#documentation-in-v135" class="md-nav__link">
|
|
10151
10595
|
<span class="md-ellipsis">
|
|
10152
|
-
Documentation
|
|
10596
|
+
Documentation in v1.3.5
|
|
10153
10597
|
</span>
|
|
10154
10598
|
</a>
|
|
10155
10599
|
|
|
10156
10600
|
</li>
|
|
10157
10601
|
|
|
10158
10602
|
<li class="md-nav__item">
|
|
10159
|
-
<a href="#
|
|
10603
|
+
<a href="#housekeeping-in-v135" class="md-nav__link">
|
|
10160
10604
|
<span class="md-ellipsis">
|
|
10161
|
-
Housekeeping
|
|
10605
|
+
Housekeeping in v1.3.5
|
|
10162
10606
|
</span>
|
|
10163
10607
|
</a>
|
|
10164
10608
|
|
|
@@ -10180,36 +10624,36 @@
|
|
|
10180
10624
|
<ul class="md-nav__list">
|
|
10181
10625
|
|
|
10182
10626
|
<li class="md-nav__item">
|
|
10183
|
-
<a href="#
|
|
10627
|
+
<a href="#security-in-v134" class="md-nav__link">
|
|
10184
10628
|
<span class="md-ellipsis">
|
|
10185
|
-
Security
|
|
10629
|
+
Security in v1.3.4
|
|
10186
10630
|
</span>
|
|
10187
10631
|
</a>
|
|
10188
10632
|
|
|
10189
10633
|
</li>
|
|
10190
10634
|
|
|
10191
10635
|
<li class="md-nav__item">
|
|
10192
|
-
<a href="#
|
|
10636
|
+
<a href="#added-in-v134" class="md-nav__link">
|
|
10193
10637
|
<span class="md-ellipsis">
|
|
10194
|
-
Added
|
|
10638
|
+
Added in v1.3.4
|
|
10195
10639
|
</span>
|
|
10196
10640
|
</a>
|
|
10197
10641
|
|
|
10198
10642
|
</li>
|
|
10199
10643
|
|
|
10200
10644
|
<li class="md-nav__item">
|
|
10201
|
-
<a href="#
|
|
10645
|
+
<a href="#fixed-in-v134" class="md-nav__link">
|
|
10202
10646
|
<span class="md-ellipsis">
|
|
10203
|
-
Fixed
|
|
10647
|
+
Fixed in v1.3.4
|
|
10204
10648
|
</span>
|
|
10205
10649
|
</a>
|
|
10206
10650
|
|
|
10207
10651
|
</li>
|
|
10208
10652
|
|
|
10209
10653
|
<li class="md-nav__item">
|
|
10210
|
-
<a href="#
|
|
10654
|
+
<a href="#documentation-in-v134" class="md-nav__link">
|
|
10211
10655
|
<span class="md-ellipsis">
|
|
10212
|
-
Documentation
|
|
10656
|
+
Documentation in v1.3.4
|
|
10213
10657
|
</span>
|
|
10214
10658
|
</a>
|
|
10215
10659
|
|
|
@@ -10231,54 +10675,54 @@
|
|
|
10231
10675
|
<ul class="md-nav__list">
|
|
10232
10676
|
|
|
10233
10677
|
<li class="md-nav__item">
|
|
10234
|
-
<a href="#
|
|
10678
|
+
<a href="#added-in-v133" class="md-nav__link">
|
|
10235
10679
|
<span class="md-ellipsis">
|
|
10236
|
-
Added
|
|
10680
|
+
Added in v1.3.3
|
|
10237
10681
|
</span>
|
|
10238
10682
|
</a>
|
|
10239
10683
|
|
|
10240
10684
|
</li>
|
|
10241
10685
|
|
|
10242
10686
|
<li class="md-nav__item">
|
|
10243
|
-
<a href="#
|
|
10687
|
+
<a href="#changed-in-v133" class="md-nav__link">
|
|
10244
10688
|
<span class="md-ellipsis">
|
|
10245
|
-
Changed
|
|
10689
|
+
Changed in v1.3.3
|
|
10246
10690
|
</span>
|
|
10247
10691
|
</a>
|
|
10248
10692
|
|
|
10249
10693
|
</li>
|
|
10250
10694
|
|
|
10251
10695
|
<li class="md-nav__item">
|
|
10252
|
-
<a href="#
|
|
10696
|
+
<a href="#fixed-in-v133" class="md-nav__link">
|
|
10253
10697
|
<span class="md-ellipsis">
|
|
10254
|
-
Fixed
|
|
10698
|
+
Fixed in v1.3.3
|
|
10255
10699
|
</span>
|
|
10256
10700
|
</a>
|
|
10257
10701
|
|
|
10258
10702
|
</li>
|
|
10259
10703
|
|
|
10260
10704
|
<li class="md-nav__item">
|
|
10261
|
-
<a href="#
|
|
10705
|
+
<a href="#dependencies-in-v133" class="md-nav__link">
|
|
10262
10706
|
<span class="md-ellipsis">
|
|
10263
|
-
Dependencies
|
|
10707
|
+
Dependencies in v1.3.3
|
|
10264
10708
|
</span>
|
|
10265
10709
|
</a>
|
|
10266
10710
|
|
|
10267
10711
|
</li>
|
|
10268
10712
|
|
|
10269
10713
|
<li class="md-nav__item">
|
|
10270
|
-
<a href="#
|
|
10714
|
+
<a href="#documentation-in-v133" class="md-nav__link">
|
|
10271
10715
|
<span class="md-ellipsis">
|
|
10272
|
-
Documentation
|
|
10716
|
+
Documentation in v1.3.3
|
|
10273
10717
|
</span>
|
|
10274
10718
|
</a>
|
|
10275
10719
|
|
|
10276
10720
|
</li>
|
|
10277
10721
|
|
|
10278
10722
|
<li class="md-nav__item">
|
|
10279
|
-
<a href="#
|
|
10723
|
+
<a href="#housekeeping-in-v133" class="md-nav__link">
|
|
10280
10724
|
<span class="md-ellipsis">
|
|
10281
|
-
Housekeeping
|
|
10725
|
+
Housekeeping in v1.3.3
|
|
10282
10726
|
</span>
|
|
10283
10727
|
</a>
|
|
10284
10728
|
|
|
@@ -10300,54 +10744,54 @@
|
|
|
10300
10744
|
<ul class="md-nav__list">
|
|
10301
10745
|
|
|
10302
10746
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10747
|
+
<a href="#security-in-v132" class="md-nav__link">
|
|
10304
10748
|
<span class="md-ellipsis">
|
|
10305
|
-
Security
|
|
10749
|
+
Security in v1.3.2
|
|
10306
10750
|
</span>
|
|
10307
10751
|
</a>
|
|
10308
10752
|
|
|
10309
10753
|
</li>
|
|
10310
10754
|
|
|
10311
10755
|
<li class="md-nav__item">
|
|
10312
|
-
<a href="#
|
|
10756
|
+
<a href="#added-in-v132" class="md-nav__link">
|
|
10313
10757
|
<span class="md-ellipsis">
|
|
10314
|
-
Added
|
|
10758
|
+
Added in v1.3.2
|
|
10315
10759
|
</span>
|
|
10316
10760
|
</a>
|
|
10317
10761
|
|
|
10318
10762
|
</li>
|
|
10319
10763
|
|
|
10320
10764
|
<li class="md-nav__item">
|
|
10321
|
-
<a href="#
|
|
10765
|
+
<a href="#changed-in-v132" class="md-nav__link">
|
|
10322
10766
|
<span class="md-ellipsis">
|
|
10323
|
-
Changed
|
|
10767
|
+
Changed in v1.3.2
|
|
10324
10768
|
</span>
|
|
10325
10769
|
</a>
|
|
10326
10770
|
|
|
10327
10771
|
</li>
|
|
10328
10772
|
|
|
10329
10773
|
<li class="md-nav__item">
|
|
10330
|
-
<a href="#
|
|
10774
|
+
<a href="#fixed-in-v132" class="md-nav__link">
|
|
10331
10775
|
<span class="md-ellipsis">
|
|
10332
|
-
Fixed
|
|
10776
|
+
Fixed in v1.3.2
|
|
10333
10777
|
</span>
|
|
10334
10778
|
</a>
|
|
10335
10779
|
|
|
10336
10780
|
</li>
|
|
10337
10781
|
|
|
10338
10782
|
<li class="md-nav__item">
|
|
10339
|
-
<a href="#
|
|
10783
|
+
<a href="#documentation-in-v132" class="md-nav__link">
|
|
10340
10784
|
<span class="md-ellipsis">
|
|
10341
|
-
Documentation
|
|
10785
|
+
Documentation in v1.3.2
|
|
10342
10786
|
</span>
|
|
10343
10787
|
</a>
|
|
10344
10788
|
|
|
10345
10789
|
</li>
|
|
10346
10790
|
|
|
10347
10791
|
<li class="md-nav__item">
|
|
10348
|
-
<a href="#
|
|
10792
|
+
<a href="#housekeeping-in-v132" class="md-nav__link">
|
|
10349
10793
|
<span class="md-ellipsis">
|
|
10350
|
-
Housekeeping
|
|
10794
|
+
Housekeeping in v1.3.2
|
|
10351
10795
|
</span>
|
|
10352
10796
|
</a>
|
|
10353
10797
|
|
|
@@ -10369,18 +10813,18 @@
|
|
|
10369
10813
|
<ul class="md-nav__list">
|
|
10370
10814
|
|
|
10371
10815
|
<li class="md-nav__item">
|
|
10372
|
-
<a href="#
|
|
10816
|
+
<a href="#changed-in-v131" class="md-nav__link">
|
|
10373
10817
|
<span class="md-ellipsis">
|
|
10374
|
-
Changed
|
|
10818
|
+
Changed in v1.3.1
|
|
10375
10819
|
</span>
|
|
10376
10820
|
</a>
|
|
10377
10821
|
|
|
10378
10822
|
</li>
|
|
10379
10823
|
|
|
10380
10824
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#
|
|
10825
|
+
<a href="#fixed-in-v131" class="md-nav__link">
|
|
10382
10826
|
<span class="md-ellipsis">
|
|
10383
|
-
Fixed
|
|
10827
|
+
Fixed in v1.3.1
|
|
10384
10828
|
</span>
|
|
10385
10829
|
</a>
|
|
10386
10830
|
|
|
@@ -10402,45 +10846,45 @@
|
|
|
10402
10846
|
<ul class="md-nav__list">
|
|
10403
10847
|
|
|
10404
10848
|
<li class="md-nav__item">
|
|
10405
|
-
<a href="#
|
|
10849
|
+
<a href="#added-in-v130" class="md-nav__link">
|
|
10406
10850
|
<span class="md-ellipsis">
|
|
10407
|
-
Added
|
|
10851
|
+
Added in v1.3.0
|
|
10408
10852
|
</span>
|
|
10409
10853
|
</a>
|
|
10410
10854
|
|
|
10411
10855
|
</li>
|
|
10412
10856
|
|
|
10413
10857
|
<li class="md-nav__item">
|
|
10414
|
-
<a href="#
|
|
10858
|
+
<a href="#changed-in-v130" class="md-nav__link">
|
|
10415
10859
|
<span class="md-ellipsis">
|
|
10416
|
-
Changed
|
|
10860
|
+
Changed in v1.3.0
|
|
10417
10861
|
</span>
|
|
10418
10862
|
</a>
|
|
10419
10863
|
|
|
10420
10864
|
</li>
|
|
10421
10865
|
|
|
10422
10866
|
<li class="md-nav__item">
|
|
10423
|
-
<a href="#
|
|
10867
|
+
<a href="#fixed-in-v130" class="md-nav__link">
|
|
10424
10868
|
<span class="md-ellipsis">
|
|
10425
|
-
Fixed
|
|
10869
|
+
Fixed in v1.3.0
|
|
10426
10870
|
</span>
|
|
10427
10871
|
</a>
|
|
10428
10872
|
|
|
10429
10873
|
</li>
|
|
10430
10874
|
|
|
10431
10875
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
10876
|
+
<a href="#documentation-in-v130" class="md-nav__link">
|
|
10433
10877
|
<span class="md-ellipsis">
|
|
10434
|
-
Documentation
|
|
10878
|
+
Documentation in v1.3.0
|
|
10435
10879
|
</span>
|
|
10436
10880
|
</a>
|
|
10437
10881
|
|
|
10438
10882
|
</li>
|
|
10439
10883
|
|
|
10440
10884
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10885
|
+
<a href="#housekeeping-in-v130" class="md-nav__link">
|
|
10442
10886
|
<span class="md-ellipsis">
|
|
10443
|
-
Housekeeping
|
|
10887
|
+
Housekeeping in v1.3.0
|
|
10444
10888
|
</span>
|
|
10445
10889
|
</a>
|
|
10446
10890
|
|
|
@@ -10462,54 +10906,54 @@
|
|
|
10462
10906
|
<ul class="md-nav__list">
|
|
10463
10907
|
|
|
10464
10908
|
<li class="md-nav__item">
|
|
10465
|
-
<a href="#
|
|
10909
|
+
<a href="#added-in-v130b1" class="md-nav__link">
|
|
10466
10910
|
<span class="md-ellipsis">
|
|
10467
|
-
Added
|
|
10911
|
+
Added in v1.3.0b1
|
|
10468
10912
|
</span>
|
|
10469
10913
|
</a>
|
|
10470
10914
|
|
|
10471
10915
|
</li>
|
|
10472
10916
|
|
|
10473
10917
|
<li class="md-nav__item">
|
|
10474
|
-
<a href="#
|
|
10918
|
+
<a href="#changed-in-v130b1" class="md-nav__link">
|
|
10475
10919
|
<span class="md-ellipsis">
|
|
10476
|
-
Changed
|
|
10920
|
+
Changed in v1.3.0b1
|
|
10477
10921
|
</span>
|
|
10478
10922
|
</a>
|
|
10479
10923
|
|
|
10480
10924
|
</li>
|
|
10481
10925
|
|
|
10482
10926
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
10927
|
+
<a href="#removed-in-v130b1" class="md-nav__link">
|
|
10484
10928
|
<span class="md-ellipsis">
|
|
10485
|
-
Removed
|
|
10929
|
+
Removed in v1.3.0b1
|
|
10486
10930
|
</span>
|
|
10487
10931
|
</a>
|
|
10488
10932
|
|
|
10489
10933
|
</li>
|
|
10490
10934
|
|
|
10491
10935
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
10936
|
+
<a href="#fixed-in-v130b1" class="md-nav__link">
|
|
10493
10937
|
<span class="md-ellipsis">
|
|
10494
|
-
Fixed
|
|
10938
|
+
Fixed in v1.3.0b1
|
|
10495
10939
|
</span>
|
|
10496
10940
|
</a>
|
|
10497
10941
|
|
|
10498
10942
|
</li>
|
|
10499
10943
|
|
|
10500
10944
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10945
|
+
<a href="#dependencies-in-v130b1" class="md-nav__link">
|
|
10502
10946
|
<span class="md-ellipsis">
|
|
10503
|
-
Dependencies
|
|
10947
|
+
Dependencies in v1.3.0b1
|
|
10504
10948
|
</span>
|
|
10505
10949
|
</a>
|
|
10506
10950
|
|
|
10507
10951
|
</li>
|
|
10508
10952
|
|
|
10509
10953
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
10954
|
+
<a href="#housekeeping-in-v130b1" class="md-nav__link">
|
|
10511
10955
|
<span class="md-ellipsis">
|
|
10512
|
-
Housekeeping
|
|
10956
|
+
Housekeeping in v1.3.0b1
|
|
10513
10957
|
</span>
|
|
10514
10958
|
</a>
|
|
10515
10959
|
|
|
@@ -10538,7 +10982,6 @@
|
|
|
10538
10982
|
|
|
10539
10983
|
|
|
10540
10984
|
|
|
10541
|
-
<!-- markdownlint-disable MD024 -->
|
|
10542
10985
|
<h1 id="nautobot-v13">Nautobot v1.3<a class="headerlink" href="#nautobot-v13" title="Permanent link">¶</a></h1>
|
|
10543
10986
|
<p>This document describes all new features and changes in Nautobot 1.3.</p>
|
|
10544
10987
|
<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>
|
|
@@ -10594,7 +11037,7 @@
|
|
|
10594
11037
|
<p><a href="../user-guide/platform-functionality/rest-api/filtering.html#string-fields">New lookup expressions for using regular expressions</a> to filter objects by string (char) fields in the API have been added to all core filters.</p>
|
|
10595
11038
|
<p>The expressions <code>re</code> (regex), <code>nre</code> (negated regex), <code>ire</code> (case-insensitive regex), and <code>nire</code> (negated case-insensitive regex) lookup expressions are now dynamically-generated for filter fields inherited by subclasses of <code>nautobot.utilities.filters.BaseFilterSet</code>.</p>
|
|
10596
11039
|
<h4 id="remove-stale-scheduled-jobs-2091">Remove Stale Scheduled Jobs (<a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a>)<a class="headerlink" href="#remove-stale-scheduled-jobs-2091" title="Permanent link">¶</a></h4>
|
|
10597
|
-
<p><a href="../user-guide/administration/tools/nautobot-server.html#remove_stale_scheduled_jobs">remove_stale_scheduled_jobs</a> management command has been added to delete non-recurring scheduled jobs that were scheduled to run more than a specified days ago.</p>
|
|
11040
|
+
<p><a href="../user-guide/administration/tools/nautobot-server.html#remove_stale_scheduled_jobs"><code>remove_stale_scheduled_jobs</code></a> management command has been added to delete non-recurring scheduled jobs that were scheduled to run more than a specified days ago.</p>
|
|
10598
11041
|
<h4 id="rest-api-token-provisioning-1374">REST API Token Provisioning (<a href="https://github.com/nautobot/nautobot/issues/1374">#1374</a>)<a class="headerlink" href="#rest-api-token-provisioning-1374" title="Permanent link">¶</a></h4>
|
|
10599
11042
|
<p>Nautobot now has an <code>/api/users/tokens/</code> REST API endpoint where a user can provision a new REST API token. This allows a user to gain REST API access without needing to first create a token via the web UI.</p>
|
|
10600
11043
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>curl<span class="w"> </span>-X<span class="w"> </span>POST<span class="w"> </span><span class="se">\</span>
|
|
@@ -10643,7 +11086,7 @@
|
|
|
10643
11086
|
<h4 id="python-36-no-longer-supported-1268">Python 3.6 No Longer Supported (<a href="https://github.com/nautobot/nautobot/issues/1268">#1268</a>)<a class="headerlink" href="#python-36-no-longer-supported-1268" title="Permanent link">¶</a></h4>
|
|
10644
11087
|
<p>As Python 3.6 has reached end-of-life, and many of Nautobot's dependencies have already dropped support for Python 3.6 as a consequence, Nautobot 1.3 and later do not support installation under Python 3.6.</p>
|
|
10645
11088
|
<h2 id="v1310-2022-08-08">v1.3.10 (2022-08-08)<a class="headerlink" href="#v1310-2022-08-08" title="Permanent link">¶</a></h2>
|
|
10646
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11089
|
+
<h3 id="security-in-v1310">Security in v1.3.10<a class="headerlink" href="#security-in-v1310" title="Permanent link">¶</a></h3>
|
|
10647
11090
|
<div class="admonition important">
|
|
10648
11091
|
<p class="admonition-title">Important</p>
|
|
10649
11092
|
<p>With introducing the <code>has_sensitive_variables</code> flag on Job classes and model (see: <a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a>), jobs can be prevented from storing their inputs in the database. Due to the nature of queuing or scheduling jobs, the desired inputs must be stored for future use.</p>
|
|
@@ -10653,7 +11096,7 @@
|
|
|
10653
11096
|
<p>A new management command exists (<code>remove_stale_scheduled_jobs</code>) which will aid in cleaning up schedules to past jobs which may still have sensitive data stored in the database. This command is not exhaustive nor intended to clean up sensitive values stored in the database. You should review the <code>extras_scheduledjob</code> table for any further cleanup.</p>
|
|
10654
11097
|
<p><strong>Note:</strong> Leveraging the Secrets and Secret Groups features in Jobs does not need to be considered a sensitive variable. Secrets are retrieved by reference at run time, which means no secret value is stored directly in the database.</p>
|
|
10655
11098
|
</div>
|
|
10656
|
-
<h3 id="
|
|
11099
|
+
<h3 id="added-in-v1310">Added in v1.3.10<a class="headerlink" href="#added-in-v1310" title="Permanent link">¶</a></h3>
|
|
10657
11100
|
<ul>
|
|
10658
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/1226">#1226</a> - Added custom job intervals package management.</li>
|
|
10659
11102
|
<li><a href="https://github.com/nautobot/nautobot/pull/2073">#2073</a> - Added <code>--local</code> option to <code>nautobot-server runjob</code> command.</li>
|
|
@@ -10661,38 +11104,38 @@
|
|
|
10661
11104
|
<li><a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a> - Added <code>remove_stale_scheduled_jobs</code> management command which removes all stale scheduled jobs and also added <code>has_sensitive_variables</code> field to Job model which prevents the job's input parameters from being saved to the database.</li>
|
|
10662
11105
|
<li><a href="https://github.com/nautobot/nautobot/pull/2143">#2143</a> - Scheduled Job detail view now includes details of any custom interval.</li>
|
|
10663
11106
|
</ul>
|
|
10664
|
-
<h3 id="
|
|
11107
|
+
<h3 id="changed-in-v1310">Changed in v1.3.10<a class="headerlink" href="#changed-in-v1310" title="Permanent link">¶</a></h3>
|
|
10665
11108
|
<ul>
|
|
10666
11109
|
<li><a href="https://github.com/nautobot/nautobot/issues/2114">#2114</a> - Home page now redirects to the login page when <code>HIDE_RESTRICTED_UI</code> is enabled and user is not authenticated.</li>
|
|
10667
11110
|
</ul>
|
|
10668
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11111
|
+
<h3 id="fixed-in-v1310">Fixed in v1.3.10<a class="headerlink" href="#fixed-in-v1310" title="Permanent link">¶</a></h3>
|
|
10669
11112
|
<ul>
|
|
10670
11113
|
<li><a href="https://github.com/nautobot/nautobot/issues/1739">#1739</a> - Fixed paginator not enforcing <code>max_page_size</code> setting in web UI views.</li>
|
|
10671
11114
|
<li><a href="https://github.com/nautobot/nautobot/issues/2060">#2060</a> - Fixed relationship <code>peer_id</code> filter non-existent error on relationship association page.</li>
|
|
10672
11115
|
<li><a href="https://github.com/nautobot/nautobot/issues/2095">#2095</a> - Fixed health check failing with Redis Sentinel, TLS configuration.</li>
|
|
10673
11116
|
</ul>
|
|
10674
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11117
|
+
<h3 id="dependencies-in-v1310">Dependencies in v1.3.10<a class="headerlink" href="#dependencies-in-v1310" title="Permanent link">¶</a></h3>
|
|
10675
11118
|
<ul>
|
|
10676
11119
|
<li><a href="https://github.com/nautobot/nautobot/pull/2115">#2115</a> - Patch updates to <code>mkdocs</code>, <code>svgwrite</code>.</li>
|
|
10677
11120
|
</ul>
|
|
10678
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11121
|
+
<h3 id="housekeeping-in-v1310">Housekeeping in v1.3.10<a class="headerlink" href="#housekeeping-in-v1310" title="Permanent link">¶</a></h3>
|
|
10679
11122
|
<ul>
|
|
10680
11123
|
<li><a href="https://github.com/nautobot/nautobot/pull/2025">#2025</a> - Tweak Renovate config for automated package management.</li>
|
|
10681
11124
|
<li><a href="https://github.com/nautobot/nautobot/pull/2119">#2119</a> - Fixed flaky integration test for cable connection UI.</li>
|
|
10682
11125
|
</ul>
|
|
10683
11126
|
<h2 id="v139-2022-07-25">v1.3.9 (2022-07-25)<a class="headerlink" href="#v139-2022-07-25" title="Permanent link">¶</a></h2>
|
|
10684
|
-
<h3 id="
|
|
11127
|
+
<h3 id="added-in-v139">Added in v1.3.9<a class="headerlink" href="#added-in-v139" title="Permanent link">¶</a></h3>
|
|
10685
11128
|
<ul>
|
|
10686
11129
|
<li><a href="https://github.com/nautobot/nautobot/issues/1595">#1595</a> - Add ability to specify uWSGI buffer size via environment variable.</li>
|
|
10687
11130
|
<li><a href="https://github.com/nautobot/nautobot/issues/1757">#1757</a> - Added nullable face, position to Device bulk edit form to provided desired behavior to bulk assigning to a new rack.</li>
|
|
10688
11131
|
</ul>
|
|
10689
|
-
<h3 id="
|
|
11132
|
+
<h3 id="changed-in-v139">Changed in v1.3.9<a class="headerlink" href="#changed-in-v139" title="Permanent link">¶</a></h3>
|
|
10690
11133
|
<ul>
|
|
10691
11134
|
<li><a href="https://github.com/nautobot/nautobot/issues/386">#386</a> - Clarified messaging in API for rack position occupied.</li>
|
|
10692
11135
|
<li><a href="https://github.com/nautobot/nautobot/issues/1356">#1356</a> - Virtual chassis master device interface list is less confusing.</li>
|
|
10693
11136
|
<li><a href="https://github.com/nautobot/nautobot/pull/2045">#2045</a> - Clarified Job authoring around proper class inheritance.</li>
|
|
10694
11137
|
</ul>
|
|
10695
|
-
<h3 id="
|
|
11138
|
+
<h3 id="fixed-in-v139">Fixed in v1.3.9<a class="headerlink" href="#fixed-in-v139" title="Permanent link">¶</a></h3>
|
|
10696
11139
|
<ul>
|
|
10697
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/1035">#1035</a> - Fix assertion raised if SLAAC Status is missing when creating <code>IPAddress</code> objects</li>
|
|
10698
11141
|
<li><a href="https://github.com/nautobot/nautobot/issues/1694">#1694</a> - Fixed CablePath not found error when disconnects/delete action performed on a cable</li>
|
|
@@ -10705,13 +11148,13 @@
|
|
|
10705
11148
|
<li><a href="https://github.com/nautobot/nautobot/issues/2077">#2077</a> - Fixed an error when viewing object detail pages after uninstalling a plugin but still having RelationshipAssociations involving the plugin's models.</li>
|
|
10706
11149
|
<li><a href="https://github.com/nautobot/nautobot/issues/2081">#2081</a> - Fixed error raised if status connected not found when creating a cable</li>
|
|
10707
11150
|
</ul>
|
|
10708
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11151
|
+
<h3 id="documentation-in-v139">Documentation in v1.3.9<a class="headerlink" href="#documentation-in-v139" title="Permanent link">¶</a></h3>
|
|
10709
11152
|
<ul>
|
|
10710
11153
|
<li><a href="https://github.com/nautobot/nautobot/issues/860">#860</a> - Added documentation that adding device component to device type does not modify existing device instances</li>
|
|
10711
11154
|
<li><a href="https://github.com/nautobot/nautobot/pull/2036">#2036</a> - Fixed outdated UI navigation references in documentation.</li>
|
|
10712
11155
|
</ul>
|
|
10713
11156
|
<h2 id="v138-2022-07-11">v1.3.8 (2022-07-11)<a class="headerlink" href="#v138-2022-07-11" title="Permanent link">¶</a></h2>
|
|
10714
|
-
<h3 id="
|
|
11157
|
+
<h3 id="security-in-v138">Security in v1.3.8<a class="headerlink" href="#security-in-v138" title="Permanent link">¶</a></h3>
|
|
10715
11158
|
<div class="admonition important">
|
|
10716
11159
|
<p class="admonition-title">Important</p>
|
|
10717
11160
|
<p>CVE in Django versions <code>>= 3.2, < 3.2.14</code>. This update upgrades Django to <code>3.2.14</code>.</p>
|
|
@@ -10719,56 +11162,56 @@
|
|
|
10719
11162
|
<ul>
|
|
10720
11163
|
<li><a href="https://github.com/nautobot/nautobot/pull/2004">#2004</a> - Bump Django from 3.2.13 to 3.2.14 for for <a href="https://github.com/advisories/GHSA-p64x-8rxx-wf6q">CVE-2022-34265</a>.</li>
|
|
10721
11164
|
</ul>
|
|
10722
|
-
<h3 id="
|
|
11165
|
+
<h3 id="added-in-v138">Added in v1.3.8<a class="headerlink" href="#added-in-v138" title="Permanent link">¶</a></h3>
|
|
10723
11166
|
<ul>
|
|
10724
11167
|
<li><a href="https://github.com/nautobot/nautobot/issues/1464">#1464</a> - Added "Continue with SSO" link on login page.</li>
|
|
10725
11168
|
</ul>
|
|
10726
|
-
<h3 id="
|
|
11169
|
+
<h3 id="changed-in-v138">Changed in v1.3.8<a class="headerlink" href="#changed-in-v138" title="Permanent link">¶</a></h3>
|
|
10727
11170
|
<ul>
|
|
10728
11171
|
<li><a href="https://github.com/nautobot/nautobot/issues/1407">#1407</a> - Changed custom field export column headings to prefix with <code>cf_</code>.</li>
|
|
10729
11172
|
<li><a href="https://github.com/nautobot/nautobot/issues/1603">#1603</a> - Changed GraphQL schema generation to call time for GraphQL API.</li>
|
|
10730
11173
|
</ul>
|
|
10731
|
-
<h3 id="
|
|
11174
|
+
<h3 id="fixed-in-v138">Fixed in v1.3.8<a class="headerlink" href="#fixed-in-v138" title="Permanent link">¶</a></h3>
|
|
10732
11175
|
<ul>
|
|
10733
11176
|
<li><a href="https://github.com/nautobot/nautobot/issues/1838">#1838</a> - Fixed job result to show latest not oldest.</li>
|
|
10734
11177
|
<li><a href="https://github.com/nautobot/nautobot/issues/1874">#1874</a> - Fixed Git repo sync issue with Sentinel with deprecated <code>rq_count</code> check.</li>
|
|
10735
11178
|
</ul>
|
|
10736
|
-
<h3 id="
|
|
11179
|
+
<h3 id="dependencies-in-v138">Dependencies in v1.3.8<a class="headerlink" href="#dependencies-in-v138" title="Permanent link">¶</a></h3>
|
|
10737
11180
|
<ul>
|
|
10738
11181
|
<li><a href="https://github.com/nautobot/nautobot/pull/2020">#2020</a> - Updated <code>celery >= 5.2.7</code>, <code>django-jinja >= 2.10.2</code>, and <code>mysqlclient >= 2.1.1</code> versions in lock file (patch updates).</li>
|
|
10739
11182
|
</ul>
|
|
10740
|
-
<h3 id="
|
|
11183
|
+
<h3 id="housekeeping-in-v138">Housekeeping in v1.3.8<a class="headerlink" href="#housekeeping-in-v138" title="Permanent link">¶</a></h3>
|
|
10741
11184
|
<ul>
|
|
10742
11185
|
<li><a href="https://github.com/nautobot/nautobot/pull/1977">#1977</a> - Updated Renovate config to batch updates (additional PRs included to further refine config).</li>
|
|
10743
11186
|
</ul>
|
|
10744
11187
|
<h2 id="v137-2022-06-27">v1.3.7 (2022-06-27)<a class="headerlink" href="#v137-2022-06-27" title="Permanent link">¶</a></h2>
|
|
10745
|
-
<h3 id="
|
|
11188
|
+
<h3 id="added-in-v137">Added in v1.3.7<a class="headerlink" href="#added-in-v137" title="Permanent link">¶</a></h3>
|
|
10746
11189
|
<ul>
|
|
10747
11190
|
<li><a href="https://github.com/nautobot/nautobot/issues/1900">#1900</a> - Added ability to filter Git repository table based on provided contents.</li>
|
|
10748
11191
|
</ul>
|
|
10749
|
-
<h3 id="
|
|
11192
|
+
<h3 id="changed-in-v137">Changed in v1.3.7<a class="headerlink" href="#changed-in-v137" title="Permanent link">¶</a></h3>
|
|
10750
11193
|
<ul>
|
|
10751
11194
|
<li><a href="https://github.com/nautobot/nautobot/issues/1645">#1645</a> - Hide search bar for unauthenticated users if <code>HIDE_RESTRICTED_UI</code> is True</li>
|
|
10752
11195
|
<li><a href="https://github.com/nautobot/nautobot/pull/1946">#1946</a> - Increase character limit on <code>FileAttachment.mimetype</code> to 255 to allow for all mime types to be used.</li>
|
|
10753
11196
|
</ul>
|
|
10754
|
-
<h3 id="
|
|
11197
|
+
<h3 id="fixed-in-v137">Fixed in v1.3.7<a class="headerlink" href="#fixed-in-v137" title="Permanent link">¶</a></h3>
|
|
10755
11198
|
<ul>
|
|
10756
11199
|
<li><a href="https://github.com/nautobot/nautobot/issues/1677">#1677</a> - Fixed default values of custom fields on device components (such as Interface) not being applied upon Device creation.</li>
|
|
10757
11200
|
<li><a href="https://github.com/nautobot/nautobot/issues/1769">#1769</a> - Resolve missing menu 'General / Installed Plugins' in navbar if <code>HIDE_RESTRICTED_UI</code> is activated</li>
|
|
10758
11201
|
<li><a href="https://github.com/nautobot/nautobot/issues/1836">#1836</a> - Fixed incorrect pre-population of custom field filters in table views.</li>
|
|
10759
11202
|
<li><a href="https://github.com/nautobot/nautobot/issues/1870">#1870</a> - Fixed cable <code>_abs_length</code> validation error.</li>
|
|
10760
11203
|
</ul>
|
|
10761
|
-
<h3 id="
|
|
11204
|
+
<h3 id="documentation-in-v137">Documentation in v1.3.7<a class="headerlink" href="#documentation-in-v137" title="Permanent link">¶</a></h3>
|
|
10762
11205
|
<ul>
|
|
10763
11206
|
<li><a href="https://github.com/nautobot/nautobot/pull/1941">#1941</a> - Fixed uWSGI config example, development environment links in Docker section of docs.</li>
|
|
10764
11207
|
</ul>
|
|
10765
|
-
<h3 id="
|
|
11208
|
+
<h3 id="housekeeping-in-v137">Housekeeping in v1.3.7<a class="headerlink" href="#housekeeping-in-v137" title="Permanent link">¶</a></h3>
|
|
10766
11209
|
<ul>
|
|
10767
11210
|
<li><a href="https://github.com/nautobot/nautobot/pull/1856">#1896</a> - Added Renovate Bot configuration, targeting <code>next</code>.</li>
|
|
10768
11211
|
<li><a href="https://github.com/nautobot/nautobot/issues/1948">#1948</a> - Switched Renovate Bot configuration to bump lock-file only on patch releases instead of bumping in <code>pyproject.toml</code>.</li>
|
|
10769
11212
|
</ul>
|
|
10770
11213
|
<h2 id="v136-2022-06-13">v1.3.6 (2022-06-13)<a class="headerlink" href="#v136-2022-06-13" title="Permanent link">¶</a></h2>
|
|
10771
|
-
<h3 id="
|
|
11214
|
+
<h3 id="fixed-in-v136">Fixed in v1.3.6<a class="headerlink" href="#fixed-in-v136" title="Permanent link">¶</a></h3>
|
|
10772
11215
|
<ul>
|
|
10773
11216
|
<li><a href="https://github.com/nautobot/nautobot/issues/1409">#1409</a> - Fixed page title on device status (NAPALM) page template.</li>
|
|
10774
11217
|
<li><a href="https://github.com/nautobot/nautobot/issues/1524">#1524</a> - Fixed valid "None" option removed from search field upon display.</li>
|
|
@@ -10779,20 +11222,20 @@
|
|
|
10779
11222
|
<li><a href="https://github.com/nautobot/nautobot/issues/1841">#1841</a> - Fixed incorrect display of boolean values in Git Repository view.</li>
|
|
10780
11223
|
<li><a href="https://github.com/nautobot/nautobot/pull/1850">#1850</a> - Added <code>{{block.super}}</code> to negate the override from the js block in rack.html. This change fixed the issue of unable to navigate away from rack changelog tab.</li>
|
|
10781
11224
|
</ul>
|
|
10782
|
-
<h3 id="
|
|
11225
|
+
<h3 id="documentation-in-v136">Documentation in v1.3.6<a class="headerlink" href="#documentation-in-v136" title="Permanent link">¶</a></h3>
|
|
10783
11226
|
<ul>
|
|
10784
11227
|
<li><a href="https://github.com/nautobot/nautobot/issues/207">#207</a> - Update permissions documentation to add assigning permissions section.</li>
|
|
10785
11228
|
<li><a href="https://github.com/nautobot/nautobot/issues/1763">#1763</a> - Job testing documentation updated to include details around enabling jobs. Job logs database added to <code>TransactionTestCase</code>.</li>
|
|
10786
11229
|
<li><a href="https://github.com/nautobot/nautobot/pull/1856">#1856</a> - Updated links to Slack community.</li>
|
|
10787
11230
|
<li><a href="https://github.com/nautobot/nautobot/pull/1868">#1868</a> - Updated link to advanced Docker compose use in getting started guide.</li>
|
|
10788
11231
|
</ul>
|
|
10789
|
-
<h3 id="
|
|
11232
|
+
<h3 id="housekeeping-in-v136">Housekeeping in v1.3.6<a class="headerlink" href="#housekeeping-in-v136" title="Permanent link">¶</a></h3>
|
|
10790
11233
|
<ul>
|
|
10791
11234
|
<li><a href="https://github.com/nautobot/nautobot/pull/1829">#1829</a> - Change Docker build GitHub Action to cache with matrix awareness.</li>
|
|
10792
11235
|
<li><a href="https://github.com/nautobot/nautobot/pull/1848">#1848</a> - Fix Poetry cache issue in CI causing version tests to fail in <code>next</code>.</li>
|
|
10793
11236
|
</ul>
|
|
10794
11237
|
<h2 id="v135-2022-05-30">v1.3.5 (2022-05-30)<a class="headerlink" href="#v135-2022-05-30" title="Permanent link">¶</a></h2>
|
|
10795
|
-
<h3 id="
|
|
11238
|
+
<h3 id="security-in-v135">Security in v1.3.5<a class="headerlink" href="#security-in-v135" title="Permanent link">¶</a></h3>
|
|
10796
11239
|
<div class="admonition attention">
|
|
10797
11240
|
<p class="admonition-title">Attention</p>
|
|
10798
11241
|
<p><code>PyJWT</code> - Nautobot does not directly depend on <code>PyJWT</code> so your upgrading Nautobot via <code>pip</code> or other package management tools may not pick up the patched version (we are not pinning this dependency). However some tools support an "eager" upgrade policy as an option. For example, <code>pip install --upgrade --upgrade-strategy eager nautobot</code> will upgrade Nautobot and all it's dependencies to their latest compatible version. This may not work for all use cases so it may be safer to update Nautobot then perform <code>pip install --upgrade PyJWT</code>.</p>
|
|
@@ -10801,7 +11244,7 @@
|
|
|
10801
11244
|
<ul>
|
|
10802
11245
|
<li><a href="https://github.com/nautobot/nautobot/pull/1808">#1808</a> - Bump PyJWT from 2.3.0 to 2.4.0</li>
|
|
10803
11246
|
</ul>
|
|
10804
|
-
<h3 id="
|
|
11247
|
+
<h3 id="fixed-in-v135">Fixed in v1.3.5<a class="headerlink" href="#fixed-in-v135" title="Permanent link">¶</a></h3>
|
|
10805
11248
|
<ul>
|
|
10806
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/895">#895</a> - Fixed validation when creating <code>Interface</code> and <code>VMInterface</code> objects via the REST API while specifying <code>untagged_vlan</code> without <code>mode</code> also set in the payload. A 400 error will now be raised as expected.</li>
|
|
10807
11250
|
<li><a href="https://github.com/nautobot/nautobot/issues/1289">#1289</a> - Fixed issue where job result live pagination would reset to page 1 on refresh. The currently selected page will now persist until the job run completes.</li>
|
|
@@ -10813,28 +11256,28 @@
|
|
|
10813
11256
|
<li><a href="https://github.com/nautobot/nautobot/issues/1772">#1772</a> - Fix RelationshipAssociationSerializer not triggering model clean method.</li>
|
|
10814
11257
|
<li><a href="https://github.com/nautobot/nautobot/issues/1784">#1784</a> - Fix <code>nautobot-server dumpdata</code> not working due to <code>django_rq</code> update. Updated documentation.</li>
|
|
10815
11258
|
</ul>
|
|
10816
|
-
<h3 id="
|
|
11259
|
+
<h3 id="documentation-in-v135">Documentation in v1.3.5<a class="headerlink" href="#documentation-in-v135" title="Permanent link">¶</a></h3>
|
|
10817
11260
|
<ul>
|
|
10818
11261
|
<li><a href="https://github.com/nautobot/nautobot/issues/1606">#1606</a> - Added best practices for working with FilterSet classes to developer documentation.</li>
|
|
10819
11262
|
<li><a href="https://github.com/nautobot/nautobot/issues/1796">#1796</a> - Added documentation for using Git Repositories behind/via proxies.</li>
|
|
10820
11263
|
</ul>
|
|
10821
|
-
<h3 id="
|
|
11264
|
+
<h3 id="housekeeping-in-v135">Housekeeping in v1.3.5<a class="headerlink" href="#housekeeping-in-v135" title="Permanent link">¶</a></h3>
|
|
10822
11265
|
<ul>
|
|
10823
11266
|
<li><a href="https://github.com/nautobot/nautobot/pull/1805">#1805</a> - Fix git pre-commit hook incompatibility with dash shell and add warning on skipped tests.</li>
|
|
10824
11267
|
<li><a href="https://github.com/nautobot/nautobot/pull/1811">#1811</a> - Added developer Docker container for running mkdocs instead of locally.</li>
|
|
10825
11268
|
<li><a href="https://github.com/nautobot/nautobot/pull/1818">#1818</a> - Changed README.md to link to correct build status workflows.</li>
|
|
10826
11269
|
</ul>
|
|
10827
11270
|
<h2 id="v134-2022-05-16">v1.3.4 (2022-05-16)<a class="headerlink" href="#v134-2022-05-16" title="Permanent link">¶</a></h2>
|
|
10828
|
-
<h3 id="
|
|
11271
|
+
<h3 id="security-in-v134">Security in v1.3.4<a class="headerlink" href="#security-in-v134" title="Permanent link">¶</a></h3>
|
|
10829
11272
|
<ul>
|
|
10830
11273
|
<li><a href="https://github.com/nautobot/nautobot/issues/1715">#1715</a> - Add <a href="../user-guide/administration/configuration/settings.html#sanitizer_patterns"><code>SANITIZER_PATTERNS</code> optional setting</a> and <code>nautobot.utilities.logging.sanitize</code> function and use it for redaction of Job log entries.</li>
|
|
10831
11274
|
</ul>
|
|
10832
|
-
<h3 id="
|
|
11275
|
+
<h3 id="added-in-v134">Added in v1.3.4<a class="headerlink" href="#added-in-v134" title="Permanent link">¶</a></h3>
|
|
10833
11276
|
<ul>
|
|
10834
11277
|
<li><a href="https://github.com/nautobot/nautobot/pull/1766">#1766</a> - Added configuration for downloaded filename branding.</li>
|
|
10835
11278
|
<li><a href="https://github.com/nautobot/nautobot/pull/1752">#1752</a> - Added a new <code>SearchFilter</code> that is now used on all core filtersets to provide the <code>q=</code> search parameter for basic searching in list view of objects.</li>
|
|
10836
11279
|
</ul>
|
|
10837
|
-
<h3 id="
|
|
11280
|
+
<h3 id="fixed-in-v134">Fixed in v1.3.4<a class="headerlink" href="#fixed-in-v134" title="Permanent link">¶</a></h3>
|
|
10838
11281
|
<ul>
|
|
10839
11282
|
<li><a href="https://github.com/nautobot/nautobot/issues/1263">#1263</a> - Rack device image toggle added back to detail UI.</li>
|
|
10840
11283
|
<li><a href="https://github.com/nautobot/nautobot/issues/1449">#1449</a> - Fixed a performance bug in <code>/api/dcim/devices/</code> and <code>/api/virtualization/virtual-machines/</code> relating to configuration contexts.</li>
|
|
@@ -10842,23 +11285,23 @@
|
|
|
10842
11285
|
<li><a href="https://github.com/nautobot/nautobot/issues/1712">#1712</a> - Fixed circuit termination detail view getting 500 response when it's a provider network.</li>
|
|
10843
11286
|
<li><a href="https://github.com/nautobot/nautobot/issues/1755">#1755</a> - Fixed "Select All" helper widget from taking full UI height.</li>
|
|
10844
11287
|
</ul>
|
|
10845
|
-
<h3 id="
|
|
11288
|
+
<h3 id="documentation-in-v134">Documentation in v1.3.4<a class="headerlink" href="#documentation-in-v134" title="Permanent link">¶</a></h3>
|
|
10846
11289
|
<ul>
|
|
10847
11290
|
<li><a href="https://github.com/nautobot/nautobot/issues/1744">#1744</a> - Updated REST API token provisioning docs to include added in version.</li>
|
|
10848
11291
|
<li><a href="https://github.com/nautobot/nautobot/pull/1751">#1751</a> - Updated secrets documentation advisory notes.</li>
|
|
10849
11292
|
<li><a href="https://github.com/nautobot/nautobot/pull/1761">#1761</a> - Fixed typo in upgrading documentation.</li>
|
|
10850
11293
|
</ul>
|
|
10851
11294
|
<h2 id="v133-2022-05-02">v1.3.3 (2022-05-02)<a class="headerlink" href="#v133-2022-05-02" title="Permanent link">¶</a></h2>
|
|
10852
|
-
<h3 id="
|
|
11295
|
+
<h3 id="added-in-v133">Added in v1.3.3<a class="headerlink" href="#added-in-v133" title="Permanent link">¶</a></h3>
|
|
10853
11296
|
<ul>
|
|
10854
11297
|
<li><a href="https://github.com/nautobot/nautobot/issues/1481">#1481</a> - Pre-Generate Docs, Add Support for Plugin-Provided Docs</li>
|
|
10855
11298
|
<li><a href="https://github.com/nautobot/nautobot/pull/1617">#1617</a> - Added <code>run_job_for_testing</code> helper method for testing Jobs in plugins, internally.</li>
|
|
10856
11299
|
</ul>
|
|
10857
|
-
<h3 id="
|
|
11300
|
+
<h3 id="changed-in-v133">Changed in v1.3.3<a class="headerlink" href="#changed-in-v133" title="Permanent link">¶</a></h3>
|
|
10858
11301
|
<ul>
|
|
10859
11302
|
<li><a href="https://github.com/nautobot/nautobot/issues/1481">#1481</a> - Docs link in footer now opens link to bundled documentation instead of Read the Docs.</li>
|
|
10860
11303
|
</ul>
|
|
10861
|
-
<h3 id="
|
|
11304
|
+
<h3 id="fixed-in-v133">Fixed in v1.3.3<a class="headerlink" href="#fixed-in-v133" title="Permanent link">¶</a></h3>
|
|
10862
11305
|
<ul>
|
|
10863
11306
|
<li><a href="https://github.com/nautobot/nautobot/issues/473">#473</a> - Fix <code>get_return_url</code> for plugin reverse URLs.</li>
|
|
10864
11307
|
<li><a href="https://github.com/nautobot/nautobot/issues/1430">#1430</a> - Fix not being able to print Job results, related IPs.</li>
|
|
@@ -10871,21 +11314,21 @@
|
|
|
10871
11314
|
<li><a href="https://github.com/nautobot/nautobot/pull/1701">#1701</a> - Fix static file serving of drf-spectacular-sidecar assets when using alternative <code>STATICFILES_STORAGE</code> settings.</li>
|
|
10872
11315
|
<li><a href="https://github.com/nautobot/nautobot/pull/1705">#1705</a> - Fix <code>NestedVMInterfaceSerializer</code> referencing the wrong model.</li>
|
|
10873
11316
|
</ul>
|
|
10874
|
-
<h3 id="
|
|
11317
|
+
<h3 id="dependencies-in-v133">Dependencies in v1.3.3<a class="headerlink" href="#dependencies-in-v133" title="Permanent link">¶</a></h3>
|
|
10875
11318
|
<ul>
|
|
10876
11319
|
<li><a href="https://github.com/nautobot/nautobot/pull/1680">#1680</a> - Bump netutils dependency to 1.1.0.</li>
|
|
10877
11320
|
<li><a href="https://github.com/nautobot/nautobot/pull/1700">#1700</a> - Revert vendoring <code>drf-spectacular</code>.</li>
|
|
10878
11321
|
</ul>
|
|
10879
|
-
<h3 id="
|
|
11322
|
+
<h3 id="documentation-in-v133">Documentation in v1.3.3<a class="headerlink" href="#documentation-in-v133" title="Permanent link">¶</a></h3>
|
|
10880
11323
|
<ul>
|
|
10881
11324
|
<li><a href="https://github.com/nautobot/nautobot/pull/1697">#1697</a> - Fix docs incorrectly stating Celery Redis URLs defaulting from CACHES.</li>
|
|
10882
11325
|
</ul>
|
|
10883
|
-
<h3 id="
|
|
11326
|
+
<h3 id="housekeeping-in-v133">Housekeeping in v1.3.3<a class="headerlink" href="#housekeeping-in-v133" title="Permanent link">¶</a></h3>
|
|
10884
11327
|
<ul>
|
|
10885
11328
|
<li><a href="https://github.com/nautobot/nautobot/issues/1685">#1685</a> - Fix Hadolint issue of <code>docker/Dockerfile</code>.</li>
|
|
10886
11329
|
</ul>
|
|
10887
11330
|
<h2 id="v132-2022-04-22">v1.3.2 (2022-04-22)<a class="headerlink" href="#v132-2022-04-22" title="Permanent link">¶</a></h2>
|
|
10888
|
-
<h3 id="
|
|
11331
|
+
<h3 id="security-in-v132">Security in v1.3.2<a class="headerlink" href="#security-in-v132" title="Permanent link">¶</a></h3>
|
|
10889
11332
|
<div class="admonition important">
|
|
10890
11333
|
<p class="admonition-title">Important</p>
|
|
10891
11334
|
<p>Critical CVEs in Django versions <code>>= 3.2, < 3.2.13</code>. This update upgrades Django to <code>3.2.13</code>.</p>
|
|
@@ -10893,41 +11336,41 @@
|
|
|
10893
11336
|
<ul>
|
|
10894
11337
|
<li><a href="https://github.com/nautobot/nautobot/pull/1686">#1686</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-w24h-v9qh-8gxj">CVE-2022-28347</a> and <a href="https://github.com/advisories/GHSA-2gwj-7jmv-h26r">CVE-2022-28346</a> to require Django >=3.2.13.</li>
|
|
10895
11338
|
</ul>
|
|
10896
|
-
<h3 id="
|
|
11339
|
+
<h3 id="added-in-v132">Added in v1.3.2<a class="headerlink" href="#added-in-v132" title="Permanent link">¶</a></h3>
|
|
10897
11340
|
<ul>
|
|
10898
11341
|
<li><a href="https://github.com/nautobot/nautobot/pull/1219">#1219</a> - Add ARM64 support (alpha).</li>
|
|
10899
11342
|
</ul>
|
|
10900
|
-
<h3 id="
|
|
11343
|
+
<h3 id="changed-in-v132">Changed in v1.3.2<a class="headerlink" href="#changed-in-v132" title="Permanent link">¶</a></h3>
|
|
10901
11344
|
<ul>
|
|
10902
11345
|
<li><a href="https://github.com/nautobot/nautobot/pull/1670">#1670</a> - Configure drf-spectacular schema to more closely match drf-yasg (related to: <a href="https://github.com/nautobot/nautobot-ansible/pull/135">nautobot-ansible#135</a>).</li>
|
|
10903
11346
|
</ul>
|
|
10904
|
-
<h3 id="
|
|
11347
|
+
<h3 id="fixed-in-v132">Fixed in v1.3.2<a class="headerlink" href="#fixed-in-v132" title="Permanent link">¶</a></h3>
|
|
10905
11348
|
<ul>
|
|
10906
11349
|
<li><a href="https://github.com/nautobot/nautobot/issues/1682">#1682</a> - Fixed Nautobot health checks failing if Redis Sentinel password is required.</li>
|
|
10907
11350
|
</ul>
|
|
10908
|
-
<h3 id="
|
|
11351
|
+
<h3 id="documentation-in-v132">Documentation in v1.3.2<a class="headerlink" href="#documentation-in-v132" title="Permanent link">¶</a></h3>
|
|
10909
11352
|
<ul>
|
|
10910
11353
|
<li><a href="https://github.com/nautobot/nautobot/issues/1426">#1426</a> - Added plugin development documentation around using ObjectListView.</li>
|
|
10911
11354
|
<li><a href="https://github.com/nautobot/nautobot/pull/1659">#1659</a> - Added some missing test/lint commands to the <a href="../development/core/getting-started.html">development getting-started</a> documentation, and made <code>invoke cli</code> parameters match <code>invoke start/stop</code>.</li>
|
|
10912
11355
|
<li><a href="https://github.com/nautobot/nautobot/pull/1666">#1666</a> - Fixed errors in documentation with incomplete import statements.</li>
|
|
10913
11356
|
<li><a href="https://github.com/nautobot/nautobot/issues/1667">#1667</a> - Updated README.md screenshots.</li>
|
|
10914
11357
|
</ul>
|
|
10915
|
-
<h3 id="
|
|
11358
|
+
<h3 id="housekeeping-in-v132">Housekeeping in v1.3.2<a class="headerlink" href="#housekeeping-in-v132" title="Permanent link">¶</a></h3>
|
|
10916
11359
|
<ul>
|
|
10917
11360
|
<li><a href="https://github.com/nautobot/nautobot/pull/1674">#1674</a> - Added flag in Dockerfile, tasks.py to enable Poetry install parallelization.</li>
|
|
10918
11361
|
</ul>
|
|
10919
11362
|
<h2 id="v131-2022-04-19">v1.3.1 (2022-04-19)<a class="headerlink" href="#v131-2022-04-19" title="Permanent link">¶</a></h2>
|
|
10920
|
-
<h3 id="
|
|
11363
|
+
<h3 id="changed-in-v131">Changed in v1.3.1<a class="headerlink" href="#changed-in-v131" title="Permanent link">¶</a></h3>
|
|
10921
11364
|
<ul>
|
|
10922
11365
|
<li><a href="https://github.com/nautobot/nautobot/pull/1647">#1647</a> - Changed class inheritance of JobViewSet to be simpler and more self-consistent.</li>
|
|
10923
11366
|
</ul>
|
|
10924
|
-
<h3 id="
|
|
11367
|
+
<h3 id="fixed-in-v131">Fixed in v1.3.1<a class="headerlink" href="#fixed-in-v131" title="Permanent link">¶</a></h3>
|
|
10925
11368
|
<ul>
|
|
10926
11369
|
<li><a href="https://github.com/nautobot/nautobot/issues/1278">#1278</a> - Fixed several different errors that could be raised when working with RelationshipAssociations.</li>
|
|
10927
11370
|
<li><a href="https://github.com/nautobot/nautobot/issues/1662">#1662</a> - Fixed <code>nat_outside</code> prefetch on Device API view, and displaying multiple <code>nat_outside</code> entries on VM detail view.</li>
|
|
10928
11371
|
</ul>
|
|
10929
11372
|
<h2 id="v130-2022-04-18">v1.3.0 (2022-04-18)<a class="headerlink" href="#v130-2022-04-18" title="Permanent link">¶</a></h2>
|
|
10930
|
-
<h3 id="
|
|
11373
|
+
<h3 id="added-in-v130">Added in v1.3.0<a class="headerlink" href="#added-in-v130" title="Permanent link">¶</a></h3>
|
|
10931
11374
|
<ul>
|
|
10932
11375
|
<li><a href="https://github.com/nautobot/nautobot/issues/630">#630</a> - Added support for multiple NAT outside IP addresses.</li>
|
|
10933
11376
|
<li><a href="https://github.com/nautobot/nautobot/issues/872">#872</a> - Added ability to scope tags to content types.</li>
|
|
@@ -10938,7 +11381,7 @@
|
|
|
10938
11381
|
<li><a href="https://github.com/nautobot/nautobot/issues/1525">#1525</a> - Implemented support for regex lookup expressions for <code>BaseFilterSet</code> filter fields in the API.</li>
|
|
10939
11382
|
<li><a href="https://github.com/nautobot/nautobot/issues/1638">#1638</a> - Implemented numerous indexes on models natural lookup fields as well as some index togethers for <code>ObjectChange</code>.</li>
|
|
10940
11383
|
</ul>
|
|
10941
|
-
<h3 id="
|
|
11384
|
+
<h3 id="changed-in-v130">Changed in v1.3.0<a class="headerlink" href="#changed-in-v130" title="Permanent link">¶</a></h3>
|
|
10942
11385
|
<ul>
|
|
10943
11386
|
<li><a href="https://github.com/nautobot/nautobot/issues/595">#595</a> - Migrated from <code>drf-yasg</code> (OpenAPI 2.0) to <code>drf-spectacular</code> (OpenAPI 3.0) for REST API interactive Swagger documentation.</li>
|
|
10944
11387
|
<li><a href="https://github.com/nautobot/nautobot/issues/792">#792</a> - Poetry-installed dependencies are now identical between <code>dev</code> and <code>final</code> images.</li>
|
|
@@ -10947,7 +11390,7 @@
|
|
|
10947
11390
|
<li><a href="https://github.com/nautobot/nautobot/issues/1502">#1502</a> Finalized Dynamic Groups implementation for 1.3 release (including documentation and integration tests).</li>
|
|
10948
11391
|
<li><a href="https://github.com/nautobot/nautobot/pull/1521">#1521</a> - Consolidated Job REST API endpoints, taking advantage of REST API versioning.</li>
|
|
10949
11392
|
</ul>
|
|
10950
|
-
<h3 id="
|
|
11393
|
+
<h3 id="fixed-in-v130">Fixed in v1.3.0<a class="headerlink" href="#fixed-in-v130" title="Permanent link">¶</a></h3>
|
|
10951
11394
|
<ul>
|
|
10952
11395
|
<li><a href="https://github.com/nautobot/nautobot/issues/794">#794</a> - Fixed health check issue when using Redis Sentinel for caching with Cacheops. The Redis health check backend is now aware of Redis Sentinel.</li>
|
|
10953
11396
|
<li><a href="https://github.com/nautobot/nautobot/issues/1311">#1311</a> - Fixed where it was not possible to set the rack height to <code>0</code> when performing a bulk edit of device types.</li>
|
|
@@ -10960,20 +11403,20 @@
|
|
|
10960
11403
|
<li><a href="https://github.com/nautobot/nautobot/pull/1632">#1632</a> - Fixed issue accessing request attributes when request may be None.</li>
|
|
10961
11404
|
<li><a href="https://github.com/nautobot/nautobot/pull/1637">#1637</a> - Fixed warnings logged during REST API schema generation.</li>
|
|
10962
11405
|
</ul>
|
|
10963
|
-
<h3 id="
|
|
11406
|
+
<h3 id="documentation-in-v130">Documentation in v1.3.0<a class="headerlink" href="#documentation-in-v130" title="Permanent link">¶</a></h3>
|
|
10964
11407
|
<ul>
|
|
10965
11408
|
<li><a href="https://github.com/nautobot/nautobot/issues/814">#814</a> - Extended documentation for configuring Celery for use Redis Sentinel clustering.</li>
|
|
10966
11409
|
<li><a href="https://github.com/nautobot/nautobot/issues/1479">#1479</a> - Updated Jobs documentation regarding the concrete Job database model.</li>
|
|
10967
11410
|
<li><a href="https://github.com/nautobot/nautobot/issues/1556">#1556</a> - Cleaned up typos and formatting issues across docs, few code spots.</li>
|
|
10968
11411
|
</ul>
|
|
10969
|
-
<h3 id="
|
|
11412
|
+
<h3 id="housekeeping-in-v130">Housekeeping in v1.3.0<a class="headerlink" href="#housekeeping-in-v130" title="Permanent link">¶</a></h3>
|
|
10970
11413
|
<ul>
|
|
10971
11414
|
<li><a href="https://github.com/nautobot/nautobot/issues/1385">#1385</a> - Added MarkdownLint validation and enforcement to CI.</li>
|
|
10972
11415
|
<li><a href="https://github.com/nautobot/nautobot/issues/1417">#1417</a> - CI scope improvements for streamlined performance.</li>
|
|
10973
11416
|
<li><a href="https://github.com/nautobot/nautobot/issues/1516">#1516</a> - Fixed MySQL unit tests running in Docker environment and revised recommended MySQL encoding settings.</li>
|
|
10974
11417
|
</ul>
|
|
10975
11418
|
<h2 id="v130b1-2022-03-11">v1.3.0b1 (2022-03-11)<a class="headerlink" href="#v130b1-2022-03-11" title="Permanent link">¶</a></h2>
|
|
10976
|
-
<h3 id="
|
|
11419
|
+
<h3 id="added-in-v130b1">Added in v1.3.0b1<a class="headerlink" href="#added-in-v130b1" title="Permanent link">¶</a></h3>
|
|
10977
11420
|
<ul>
|
|
10978
11421
|
<li><a href="https://github.com/nautobot/nautobot/issues/5">#5</a> - Added the option to perform a "dry run" of Git repository syncing.</li>
|
|
10979
11422
|
<li><a href="https://github.com/nautobot/nautobot/issues/330">#330</a> - Added pre-/post-change data to WebHooks leveraging snapshots.</li>
|
|
@@ -10994,7 +11437,7 @@
|
|
|
10994
11437
|
<li><a href="https://github.com/nautobot/nautobot/pull/1457">#1457</a> - Added new Jobs REST API, added control logic to use JobModel rather than JobClass where appropriate; improved permissions enforcement for Jobs.</li>
|
|
10995
11438
|
<li><a href="https://github.com/nautobot/nautobot/issues/1470">#1470</a> - Added plugin framework for extending FilterSets and Filter Forms.</li>
|
|
10996
11439
|
</ul>
|
|
10997
|
-
<h3 id="
|
|
11440
|
+
<h3 id="changed-in-v130b1">Changed in v1.3.0b1<a class="headerlink" href="#changed-in-v130b1" title="Permanent link">¶</a></h3>
|
|
10998
11441
|
<ul>
|
|
10999
11442
|
<li><a href="https://github.com/nautobot/nautobot/issues/368">#368</a> - Added <code>nautobot.extras.forms.NautobotModelForm</code> and <code>nautobot.extras.filters.NautobotFilterSet</code> base classes. All form classes which inherited from all three of (<code>BootstrapMixin</code>, <code>CustomFieldModelForm</code>, and <code>RelationshipModelForm</code>) now inherit from <code>NautobotModelForm</code> as their base class. All filterset classes which inherited from all three of (<code>BaseFilterSet</code>, <code>CreatedUpdatedFilterSet</code>, and <code>CustomFieldModelFilterSet</code>) now inherit from <code>NautobotFilterSet</code> as their base class.</li>
|
|
11000
11443
|
<li><a href="https://github.com/nautobot/nautobot/issues/591">#591</a> - All uses of <code>type()</code> are now refactored to use <code>isinstance()</code> where applicable.</li>
|
|
@@ -11005,15 +11448,15 @@
|
|
|
11005
11448
|
<li><a href="https://github.com/nautobot/nautobot/pull/1252">#1252</a> - As Python 3.6 has reached end-of-life, the default Docker images published for this release (i.e. <code>1.3.0</code>, <code>stable</code>, <code>latest</code>) have been updated to use Python 3.7 instead.</li>
|
|
11006
11449
|
<li><a href="https://github.com/nautobot/nautobot/pull/1367">#1367</a> - Extracted Job-related models to submodule <code>nautobot.extras.models.jobs</code>; refined Job testing best practices.</li>
|
|
11007
11450
|
</ul>
|
|
11008
|
-
<h3 id="
|
|
11451
|
+
<h3 id="removed-in-v130b1">Removed in v1.3.0b1<a class="headerlink" href="#removed-in-v130b1" title="Permanent link">¶</a></h3>
|
|
11009
11452
|
<ul>
|
|
11010
11453
|
<li><a href="https://github.com/nautobot/nautobot/issues/1268">#1268</a> - Drop Support for Python 3.6.</li>
|
|
11011
11454
|
</ul>
|
|
11012
|
-
<h3 id="
|
|
11455
|
+
<h3 id="fixed-in-v130b1">Fixed in v1.3.0b1<a class="headerlink" href="#fixed-in-v130b1" title="Permanent link">¶</a></h3>
|
|
11013
11456
|
<ul>
|
|
11014
11457
|
<li><a href="https://github.com/nautobot/nautobot/issues/1440">#1440</a> - Handle models missing serializer methods, dependent from adding pre-/post-change data to WebHooks.</li>
|
|
11015
11458
|
</ul>
|
|
11016
|
-
<h3 id="
|
|
11459
|
+
<h3 id="dependencies-in-v130b1">Dependencies in v1.3.0b1<a class="headerlink" href="#dependencies-in-v130b1" title="Permanent link">¶</a></h3>
|
|
11017
11460
|
<ul>
|
|
11018
11461
|
<li><a href="https://github.com/nautobot/nautobot/issues/1277">#1277</a> - Updated Django dependency to 3.2.X LTS.</li>
|
|
11019
11462
|
<li><a href="https://github.com/nautobot/nautobot/pull/1307">#1307</a> - Updated various Python package dependencies to their latest compatible versions.</li>
|
|
@@ -11021,7 +11464,7 @@
|
|
|
11021
11464
|
<li><a href="https://github.com/nautobot/nautobot/issues/1391">#1391</a> - Updated Jinja2 dependency to 3.0.X.</li>
|
|
11022
11465
|
<li><a href="https://github.com/nautobot/nautobot/issues/1435">#1435</a> - Update to Selenium 4.X.</li>
|
|
11023
11466
|
</ul>
|
|
11024
|
-
<h3 id="
|
|
11467
|
+
<h3 id="housekeeping-in-v130b1">Housekeeping in v1.3.0b1<a class="headerlink" href="#housekeeping-in-v130b1" title="Permanent link">¶</a></h3>
|
|
11025
11468
|
<ul>
|
|
11026
11469
|
<li><a href="https://github.com/nautobot/nautobot/issues/443">#443</a> - The provided "Dummy Plugin" has been renamed to "Example Plugin".</li>
|
|
11027
11470
|
<li><a href="https://github.com/nautobot/nautobot/pull/1314">#1314</a> - Updated various development-only Python package dependencies to their latest compatible versions.</li>
|
|
@@ -11169,7 +11612,7 @@
|
|
|
11169
11612
|
</div>
|
|
11170
11613
|
|
|
11171
11614
|
|
|
11172
|
-
<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>
|
|
11615
|
+
<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>
|
|
11173
11616
|
|
|
11174
11617
|
|
|
11175
11618
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|