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
|
|
|
@@ -8588,54 +9032,54 @@
|
|
|
8588
9032
|
<ul class="md-nav__list">
|
|
8589
9033
|
|
|
8590
9034
|
<li class="md-nav__item">
|
|
8591
|
-
<a href="#security" class="md-nav__link">
|
|
9035
|
+
<a href="#security-in-v103" class="md-nav__link">
|
|
8592
9036
|
<span class="md-ellipsis">
|
|
8593
|
-
Security
|
|
9037
|
+
Security in v1.0.3
|
|
8594
9038
|
</span>
|
|
8595
9039
|
</a>
|
|
8596
9040
|
|
|
8597
9041
|
</li>
|
|
8598
9042
|
|
|
8599
9043
|
<li class="md-nav__item">
|
|
8600
|
-
<a href="#
|
|
9044
|
+
<a href="#added-in-v103" class="md-nav__link">
|
|
8601
9045
|
<span class="md-ellipsis">
|
|
8602
|
-
Added
|
|
9046
|
+
Added in v1.0.3
|
|
8603
9047
|
</span>
|
|
8604
9048
|
</a>
|
|
8605
9049
|
|
|
8606
9050
|
</li>
|
|
8607
9051
|
|
|
8608
9052
|
<li class="md-nav__item">
|
|
8609
|
-
<a href="#
|
|
9053
|
+
<a href="#changed-in-v103" class="md-nav__link">
|
|
8610
9054
|
<span class="md-ellipsis">
|
|
8611
|
-
Changed
|
|
9055
|
+
Changed in v1.0.3
|
|
8612
9056
|
</span>
|
|
8613
9057
|
</a>
|
|
8614
9058
|
|
|
8615
9059
|
</li>
|
|
8616
9060
|
|
|
8617
9061
|
<li class="md-nav__item">
|
|
8618
|
-
<a href="#fixed" class="md-nav__link">
|
|
9062
|
+
<a href="#fixed-in-v103" class="md-nav__link">
|
|
8619
9063
|
<span class="md-ellipsis">
|
|
8620
|
-
Fixed
|
|
9064
|
+
Fixed in v1.0.3
|
|
8621
9065
|
</span>
|
|
8622
9066
|
</a>
|
|
8623
9067
|
|
|
8624
9068
|
</li>
|
|
8625
9069
|
|
|
8626
9070
|
<li class="md-nav__item">
|
|
8627
|
-
<a href="#documentation" class="md-nav__link">
|
|
9071
|
+
<a href="#documentation-in-v103" class="md-nav__link">
|
|
8628
9072
|
<span class="md-ellipsis">
|
|
8629
|
-
Documentation
|
|
9073
|
+
Documentation in v1.0.3
|
|
8630
9074
|
</span>
|
|
8631
9075
|
</a>
|
|
8632
9076
|
|
|
8633
9077
|
</li>
|
|
8634
9078
|
|
|
8635
9079
|
<li class="md-nav__item">
|
|
8636
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
9080
|
+
<a href="#housekeeping-in-v103" class="md-nav__link">
|
|
8637
9081
|
<span class="md-ellipsis">
|
|
8638
|
-
Housekeeping
|
|
9082
|
+
Housekeeping in v1.0.3
|
|
8639
9083
|
</span>
|
|
8640
9084
|
</a>
|
|
8641
9085
|
|
|
@@ -8657,54 +9101,54 @@
|
|
|
8657
9101
|
<ul class="md-nav__list">
|
|
8658
9102
|
|
|
8659
9103
|
<li class="md-nav__item">
|
|
8660
|
-
<a href="#
|
|
9104
|
+
<a href="#added-in-v102" class="md-nav__link">
|
|
8661
9105
|
<span class="md-ellipsis">
|
|
8662
|
-
Added
|
|
9106
|
+
Added in v1.0.2
|
|
8663
9107
|
</span>
|
|
8664
9108
|
</a>
|
|
8665
9109
|
|
|
8666
9110
|
</li>
|
|
8667
9111
|
|
|
8668
9112
|
<li class="md-nav__item">
|
|
8669
|
-
<a href="#
|
|
9113
|
+
<a href="#changed-in-v102" class="md-nav__link">
|
|
8670
9114
|
<span class="md-ellipsis">
|
|
8671
|
-
Changed
|
|
9115
|
+
Changed in v1.0.2
|
|
8672
9116
|
</span>
|
|
8673
9117
|
</a>
|
|
8674
9118
|
|
|
8675
9119
|
</li>
|
|
8676
9120
|
|
|
8677
9121
|
<li class="md-nav__item">
|
|
8678
|
-
<a href="#
|
|
9122
|
+
<a href="#removed-in-v102" class="md-nav__link">
|
|
8679
9123
|
<span class="md-ellipsis">
|
|
8680
|
-
Removed
|
|
9124
|
+
Removed in v1.0.2
|
|
8681
9125
|
</span>
|
|
8682
9126
|
</a>
|
|
8683
9127
|
|
|
8684
9128
|
</li>
|
|
8685
9129
|
|
|
8686
9130
|
<li class="md-nav__item">
|
|
8687
|
-
<a href="#
|
|
9131
|
+
<a href="#fixed-in-v102" class="md-nav__link">
|
|
8688
9132
|
<span class="md-ellipsis">
|
|
8689
|
-
Fixed
|
|
9133
|
+
Fixed in v1.0.2
|
|
8690
9134
|
</span>
|
|
8691
9135
|
</a>
|
|
8692
9136
|
|
|
8693
9137
|
</li>
|
|
8694
9138
|
|
|
8695
9139
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#
|
|
9140
|
+
<a href="#documentation-in-v102" class="md-nav__link">
|
|
8697
9141
|
<span class="md-ellipsis">
|
|
8698
|
-
Documentation
|
|
9142
|
+
Documentation in v1.0.2
|
|
8699
9143
|
</span>
|
|
8700
9144
|
</a>
|
|
8701
9145
|
|
|
8702
9146
|
</li>
|
|
8703
9147
|
|
|
8704
9148
|
<li class="md-nav__item">
|
|
8705
|
-
<a href="#
|
|
9149
|
+
<a href="#housekeeping-in-v102" class="md-nav__link">
|
|
8706
9150
|
<span class="md-ellipsis">
|
|
8707
|
-
Housekeeping
|
|
9151
|
+
Housekeeping in v1.0.2
|
|
8708
9152
|
</span>
|
|
8709
9153
|
</a>
|
|
8710
9154
|
|
|
@@ -8726,36 +9170,36 @@
|
|
|
8726
9170
|
<ul class="md-nav__list">
|
|
8727
9171
|
|
|
8728
9172
|
<li class="md-nav__item">
|
|
8729
|
-
<a href="#
|
|
9173
|
+
<a href="#added-in-v101" class="md-nav__link">
|
|
8730
9174
|
<span class="md-ellipsis">
|
|
8731
|
-
Added
|
|
9175
|
+
Added in v1.0.1
|
|
8732
9176
|
</span>
|
|
8733
9177
|
</a>
|
|
8734
9178
|
|
|
8735
9179
|
</li>
|
|
8736
9180
|
|
|
8737
9181
|
<li class="md-nav__item">
|
|
8738
|
-
<a href="#
|
|
9182
|
+
<a href="#fixed-in-v101" class="md-nav__link">
|
|
8739
9183
|
<span class="md-ellipsis">
|
|
8740
|
-
Fixed
|
|
9184
|
+
Fixed in v1.0.1
|
|
8741
9185
|
</span>
|
|
8742
9186
|
</a>
|
|
8743
9187
|
|
|
8744
9188
|
</li>
|
|
8745
9189
|
|
|
8746
9190
|
<li class="md-nav__item">
|
|
8747
|
-
<a href="#
|
|
9191
|
+
<a href="#documentation-in-v101" class="md-nav__link">
|
|
8748
9192
|
<span class="md-ellipsis">
|
|
8749
|
-
Documentation
|
|
9193
|
+
Documentation in v1.0.1
|
|
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="#housekeeping-in-v101" class="md-nav__link">
|
|
8757
9201
|
<span class="md-ellipsis">
|
|
8758
|
-
Housekeeping
|
|
9202
|
+
Housekeeping in v1.0.1
|
|
8759
9203
|
</span>
|
|
8760
9204
|
</a>
|
|
8761
9205
|
|
|
@@ -8777,25 +9221,25 @@
|
|
|
8777
9221
|
<ul class="md-nav__list">
|
|
8778
9222
|
|
|
8779
9223
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#
|
|
9224
|
+
<a href="#added-in-v100" class="md-nav__link">
|
|
8781
9225
|
<span class="md-ellipsis">
|
|
8782
|
-
Added
|
|
9226
|
+
Added in v1.0.0
|
|
8783
9227
|
</span>
|
|
8784
9228
|
</a>
|
|
8785
9229
|
|
|
8786
9230
|
</li>
|
|
8787
9231
|
|
|
8788
9232
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#
|
|
9233
|
+
<a href="#changed-in-v100" class="md-nav__link">
|
|
8790
9234
|
<span class="md-ellipsis">
|
|
8791
|
-
Changed
|
|
9235
|
+
Changed in v1.0.0
|
|
8792
9236
|
</span>
|
|
8793
9237
|
</a>
|
|
8794
9238
|
|
|
8795
9239
|
</li>
|
|
8796
9240
|
|
|
8797
9241
|
<li class="md-nav__item">
|
|
8798
|
-
<a href="#
|
|
9242
|
+
<a href="#fixed" class="md-nav__link">
|
|
8799
9243
|
<span class="md-ellipsis">
|
|
8800
9244
|
Fixed
|
|
8801
9245
|
</span>
|
|
@@ -8804,9 +9248,9 @@
|
|
|
8804
9248
|
</li>
|
|
8805
9249
|
|
|
8806
9250
|
<li class="md-nav__item">
|
|
8807
|
-
<a href="#dependencies" class="md-nav__link">
|
|
9251
|
+
<a href="#dependencies-in-v100" class="md-nav__link">
|
|
8808
9252
|
<span class="md-ellipsis">
|
|
8809
|
-
Dependencies
|
|
9253
|
+
Dependencies in v1.0.0
|
|
8810
9254
|
</span>
|
|
8811
9255
|
</a>
|
|
8812
9256
|
|
|
@@ -8828,45 +9272,45 @@
|
|
|
8828
9272
|
<ul class="md-nav__list">
|
|
8829
9273
|
|
|
8830
9274
|
<li class="md-nav__item">
|
|
8831
|
-
<a href="#
|
|
9275
|
+
<a href="#changed-in-v100b4" class="md-nav__link">
|
|
8832
9276
|
<span class="md-ellipsis">
|
|
8833
|
-
Changed
|
|
9277
|
+
Changed in v1.0.0b4
|
|
8834
9278
|
</span>
|
|
8835
9279
|
</a>
|
|
8836
9280
|
|
|
8837
9281
|
</li>
|
|
8838
9282
|
|
|
8839
9283
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
9284
|
+
<a href="#fixed-in-v100b4" class="md-nav__link">
|
|
8841
9285
|
<span class="md-ellipsis">
|
|
8842
|
-
Fixed
|
|
9286
|
+
Fixed in v1.0.0b4
|
|
8843
9287
|
</span>
|
|
8844
9288
|
</a>
|
|
8845
9289
|
|
|
8846
9290
|
</li>
|
|
8847
9291
|
|
|
8848
9292
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
9293
|
+
<a href="#dependencies-in-v100b4" class="md-nav__link">
|
|
8850
9294
|
<span class="md-ellipsis">
|
|
8851
|
-
Dependencies
|
|
9295
|
+
Dependencies in v1.0.0b4
|
|
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="#documentation-in-v100b4" class="md-nav__link">
|
|
8859
9303
|
<span class="md-ellipsis">
|
|
8860
|
-
Documentation
|
|
9304
|
+
Documentation in v1.0.0b4
|
|
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="#housekeeping-in-v100b4" class="md-nav__link">
|
|
8868
9312
|
<span class="md-ellipsis">
|
|
8869
|
-
Housekeeping
|
|
9313
|
+
Housekeeping in v1.0.0b4
|
|
8870
9314
|
</span>
|
|
8871
9315
|
</a>
|
|
8872
9316
|
|
|
@@ -8888,54 +9332,54 @@
|
|
|
8888
9332
|
<ul class="md-nav__list">
|
|
8889
9333
|
|
|
8890
9334
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
9335
|
+
<a href="#added-in-v100b3" class="md-nav__link">
|
|
8892
9336
|
<span class="md-ellipsis">
|
|
8893
|
-
Added
|
|
9337
|
+
Added in v1.0.0b3
|
|
8894
9338
|
</span>
|
|
8895
9339
|
</a>
|
|
8896
9340
|
|
|
8897
9341
|
</li>
|
|
8898
9342
|
|
|
8899
9343
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#
|
|
9344
|
+
<a href="#changed-in-v100b3" class="md-nav__link">
|
|
8901
9345
|
<span class="md-ellipsis">
|
|
8902
|
-
Changed
|
|
9346
|
+
Changed in v1.0.0b3
|
|
8903
9347
|
</span>
|
|
8904
9348
|
</a>
|
|
8905
9349
|
|
|
8906
9350
|
</li>
|
|
8907
9351
|
|
|
8908
9352
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
9353
|
+
<a href="#removed-in-v100b3" class="md-nav__link">
|
|
8910
9354
|
<span class="md-ellipsis">
|
|
8911
|
-
Removed
|
|
9355
|
+
Removed in v1.0.0b3
|
|
8912
9356
|
</span>
|
|
8913
9357
|
</a>
|
|
8914
9358
|
|
|
8915
9359
|
</li>
|
|
8916
9360
|
|
|
8917
9361
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
9362
|
+
<a href="#fixed-in-v100b3" class="md-nav__link">
|
|
8919
9363
|
<span class="md-ellipsis">
|
|
8920
|
-
Fixed
|
|
9364
|
+
Fixed in v1.0.0b3
|
|
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="#documentation-in-v100b3" class="md-nav__link">
|
|
8928
9372
|
<span class="md-ellipsis">
|
|
8929
|
-
Documentation
|
|
9373
|
+
Documentation in v1.0.0b3
|
|
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="#housekeeping-in-v100b3" class="md-nav__link">
|
|
8937
9381
|
<span class="md-ellipsis">
|
|
8938
|
-
Housekeeping
|
|
9382
|
+
Housekeeping in v1.0.0b3
|
|
8939
9383
|
</span>
|
|
8940
9384
|
</a>
|
|
8941
9385
|
|
|
@@ -8957,54 +9401,54 @@
|
|
|
8957
9401
|
<ul class="md-nav__list">
|
|
8958
9402
|
|
|
8959
9403
|
<li class="md-nav__item">
|
|
8960
|
-
<a href="#
|
|
9404
|
+
<a href="#added-in-v100b2" class="md-nav__link">
|
|
8961
9405
|
<span class="md-ellipsis">
|
|
8962
|
-
Added
|
|
9406
|
+
Added in v1.0.0b2
|
|
8963
9407
|
</span>
|
|
8964
9408
|
</a>
|
|
8965
9409
|
|
|
8966
9410
|
</li>
|
|
8967
9411
|
|
|
8968
9412
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
9413
|
+
<a href="#changed-in-v100b2" class="md-nav__link">
|
|
8970
9414
|
<span class="md-ellipsis">
|
|
8971
|
-
Changed
|
|
9415
|
+
Changed in v1.0.0b2
|
|
8972
9416
|
</span>
|
|
8973
9417
|
</a>
|
|
8974
9418
|
|
|
8975
9419
|
</li>
|
|
8976
9420
|
|
|
8977
9421
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
9422
|
+
<a href="#removed-in-v100b2" class="md-nav__link">
|
|
8979
9423
|
<span class="md-ellipsis">
|
|
8980
|
-
Removed
|
|
9424
|
+
Removed in v1.0.0b2
|
|
8981
9425
|
</span>
|
|
8982
9426
|
</a>
|
|
8983
9427
|
|
|
8984
9428
|
</li>
|
|
8985
9429
|
|
|
8986
9430
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
9431
|
+
<a href="#fixed-in-v100b2" class="md-nav__link">
|
|
8988
9432
|
<span class="md-ellipsis">
|
|
8989
|
-
Fixed
|
|
9433
|
+
Fixed in v1.0.0b2
|
|
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="#documentation-in-v100b2" class="md-nav__link">
|
|
8997
9441
|
<span class="md-ellipsis">
|
|
8998
|
-
Documentation
|
|
9442
|
+
Documentation in v1.0.0b2
|
|
8999
9443
|
</span>
|
|
9000
9444
|
</a>
|
|
9001
9445
|
|
|
9002
9446
|
</li>
|
|
9003
9447
|
|
|
9004
9448
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#housekeeeping" class="md-nav__link">
|
|
9449
|
+
<a href="#housekeeeping-in-v100b2" class="md-nav__link">
|
|
9006
9450
|
<span class="md-ellipsis">
|
|
9007
|
-
Housekeeeping
|
|
9451
|
+
Housekeeeping in v1.0.0b2
|
|
9008
9452
|
</span>
|
|
9009
9453
|
</a>
|
|
9010
9454
|
|
|
@@ -9026,9 +9470,9 @@
|
|
|
9026
9470
|
<ul class="md-nav__list">
|
|
9027
9471
|
|
|
9028
9472
|
<li class="md-nav__item">
|
|
9029
|
-
<a href="#
|
|
9473
|
+
<a href="#fixed-in-v100b1" class="md-nav__link">
|
|
9030
9474
|
<span class="md-ellipsis">
|
|
9031
|
-
Fixed
|
|
9475
|
+
Fixed in v1.0.0b1
|
|
9032
9476
|
</span>
|
|
9033
9477
|
</a>
|
|
9034
9478
|
|
|
@@ -9751,54 +10195,54 @@
|
|
|
9751
10195
|
<ul class="md-nav__list">
|
|
9752
10196
|
|
|
9753
10197
|
<li class="md-nav__item">
|
|
9754
|
-
<a href="#security" class="md-nav__link">
|
|
10198
|
+
<a href="#security-in-v103" class="md-nav__link">
|
|
9755
10199
|
<span class="md-ellipsis">
|
|
9756
|
-
Security
|
|
10200
|
+
Security in v1.0.3
|
|
9757
10201
|
</span>
|
|
9758
10202
|
</a>
|
|
9759
10203
|
|
|
9760
10204
|
</li>
|
|
9761
10205
|
|
|
9762
10206
|
<li class="md-nav__item">
|
|
9763
|
-
<a href="#
|
|
10207
|
+
<a href="#added-in-v103" class="md-nav__link">
|
|
9764
10208
|
<span class="md-ellipsis">
|
|
9765
|
-
Added
|
|
10209
|
+
Added in v1.0.3
|
|
9766
10210
|
</span>
|
|
9767
10211
|
</a>
|
|
9768
10212
|
|
|
9769
10213
|
</li>
|
|
9770
10214
|
|
|
9771
10215
|
<li class="md-nav__item">
|
|
9772
|
-
<a href="#
|
|
10216
|
+
<a href="#changed-in-v103" class="md-nav__link">
|
|
9773
10217
|
<span class="md-ellipsis">
|
|
9774
|
-
Changed
|
|
10218
|
+
Changed in v1.0.3
|
|
9775
10219
|
</span>
|
|
9776
10220
|
</a>
|
|
9777
10221
|
|
|
9778
10222
|
</li>
|
|
9779
10223
|
|
|
9780
10224
|
<li class="md-nav__item">
|
|
9781
|
-
<a href="#fixed" class="md-nav__link">
|
|
10225
|
+
<a href="#fixed-in-v103" class="md-nav__link">
|
|
9782
10226
|
<span class="md-ellipsis">
|
|
9783
|
-
Fixed
|
|
10227
|
+
Fixed in v1.0.3
|
|
9784
10228
|
</span>
|
|
9785
10229
|
</a>
|
|
9786
10230
|
|
|
9787
10231
|
</li>
|
|
9788
10232
|
|
|
9789
10233
|
<li class="md-nav__item">
|
|
9790
|
-
<a href="#documentation" class="md-nav__link">
|
|
10234
|
+
<a href="#documentation-in-v103" class="md-nav__link">
|
|
9791
10235
|
<span class="md-ellipsis">
|
|
9792
|
-
Documentation
|
|
10236
|
+
Documentation in v1.0.3
|
|
9793
10237
|
</span>
|
|
9794
10238
|
</a>
|
|
9795
10239
|
|
|
9796
10240
|
</li>
|
|
9797
10241
|
|
|
9798
10242
|
<li class="md-nav__item">
|
|
9799
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10243
|
+
<a href="#housekeeping-in-v103" class="md-nav__link">
|
|
9800
10244
|
<span class="md-ellipsis">
|
|
9801
|
-
Housekeeping
|
|
10245
|
+
Housekeeping in v1.0.3
|
|
9802
10246
|
</span>
|
|
9803
10247
|
</a>
|
|
9804
10248
|
|
|
@@ -9820,54 +10264,54 @@
|
|
|
9820
10264
|
<ul class="md-nav__list">
|
|
9821
10265
|
|
|
9822
10266
|
<li class="md-nav__item">
|
|
9823
|
-
<a href="#
|
|
10267
|
+
<a href="#added-in-v102" class="md-nav__link">
|
|
9824
10268
|
<span class="md-ellipsis">
|
|
9825
|
-
Added
|
|
10269
|
+
Added in v1.0.2
|
|
9826
10270
|
</span>
|
|
9827
10271
|
</a>
|
|
9828
10272
|
|
|
9829
10273
|
</li>
|
|
9830
10274
|
|
|
9831
10275
|
<li class="md-nav__item">
|
|
9832
|
-
<a href="#
|
|
10276
|
+
<a href="#changed-in-v102" class="md-nav__link">
|
|
9833
10277
|
<span class="md-ellipsis">
|
|
9834
|
-
Changed
|
|
10278
|
+
Changed in v1.0.2
|
|
9835
10279
|
</span>
|
|
9836
10280
|
</a>
|
|
9837
10281
|
|
|
9838
10282
|
</li>
|
|
9839
10283
|
|
|
9840
10284
|
<li class="md-nav__item">
|
|
9841
|
-
<a href="#
|
|
10285
|
+
<a href="#removed-in-v102" class="md-nav__link">
|
|
9842
10286
|
<span class="md-ellipsis">
|
|
9843
|
-
Removed
|
|
10287
|
+
Removed in v1.0.2
|
|
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="#fixed-in-v102" class="md-nav__link">
|
|
9851
10295
|
<span class="md-ellipsis">
|
|
9852
|
-
Fixed
|
|
10296
|
+
Fixed in v1.0.2
|
|
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="#documentation-in-v102" class="md-nav__link">
|
|
9860
10304
|
<span class="md-ellipsis">
|
|
9861
|
-
Documentation
|
|
10305
|
+
Documentation in v1.0.2
|
|
9862
10306
|
</span>
|
|
9863
10307
|
</a>
|
|
9864
10308
|
|
|
9865
10309
|
</li>
|
|
9866
10310
|
|
|
9867
10311
|
<li class="md-nav__item">
|
|
9868
|
-
<a href="#
|
|
10312
|
+
<a href="#housekeeping-in-v102" class="md-nav__link">
|
|
9869
10313
|
<span class="md-ellipsis">
|
|
9870
|
-
Housekeeping
|
|
10314
|
+
Housekeeping in v1.0.2
|
|
9871
10315
|
</span>
|
|
9872
10316
|
</a>
|
|
9873
10317
|
|
|
@@ -9889,36 +10333,36 @@
|
|
|
9889
10333
|
<ul class="md-nav__list">
|
|
9890
10334
|
|
|
9891
10335
|
<li class="md-nav__item">
|
|
9892
|
-
<a href="#
|
|
10336
|
+
<a href="#added-in-v101" class="md-nav__link">
|
|
9893
10337
|
<span class="md-ellipsis">
|
|
9894
|
-
Added
|
|
10338
|
+
Added in v1.0.1
|
|
9895
10339
|
</span>
|
|
9896
10340
|
</a>
|
|
9897
10341
|
|
|
9898
10342
|
</li>
|
|
9899
10343
|
|
|
9900
10344
|
<li class="md-nav__item">
|
|
9901
|
-
<a href="#
|
|
10345
|
+
<a href="#fixed-in-v101" class="md-nav__link">
|
|
9902
10346
|
<span class="md-ellipsis">
|
|
9903
|
-
Fixed
|
|
10347
|
+
Fixed in v1.0.1
|
|
9904
10348
|
</span>
|
|
9905
10349
|
</a>
|
|
9906
10350
|
|
|
9907
10351
|
</li>
|
|
9908
10352
|
|
|
9909
10353
|
<li class="md-nav__item">
|
|
9910
|
-
<a href="#
|
|
10354
|
+
<a href="#documentation-in-v101" class="md-nav__link">
|
|
9911
10355
|
<span class="md-ellipsis">
|
|
9912
|
-
Documentation
|
|
10356
|
+
Documentation in v1.0.1
|
|
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="#housekeeping-in-v101" class="md-nav__link">
|
|
9920
10364
|
<span class="md-ellipsis">
|
|
9921
|
-
Housekeeping
|
|
10365
|
+
Housekeeping in v1.0.1
|
|
9922
10366
|
</span>
|
|
9923
10367
|
</a>
|
|
9924
10368
|
|
|
@@ -9940,25 +10384,25 @@
|
|
|
9940
10384
|
<ul class="md-nav__list">
|
|
9941
10385
|
|
|
9942
10386
|
<li class="md-nav__item">
|
|
9943
|
-
<a href="#
|
|
10387
|
+
<a href="#added-in-v100" class="md-nav__link">
|
|
9944
10388
|
<span class="md-ellipsis">
|
|
9945
|
-
Added
|
|
10389
|
+
Added in v1.0.0
|
|
9946
10390
|
</span>
|
|
9947
10391
|
</a>
|
|
9948
10392
|
|
|
9949
10393
|
</li>
|
|
9950
10394
|
|
|
9951
10395
|
<li class="md-nav__item">
|
|
9952
|
-
<a href="#
|
|
10396
|
+
<a href="#changed-in-v100" class="md-nav__link">
|
|
9953
10397
|
<span class="md-ellipsis">
|
|
9954
|
-
Changed
|
|
10398
|
+
Changed in v1.0.0
|
|
9955
10399
|
</span>
|
|
9956
10400
|
</a>
|
|
9957
10401
|
|
|
9958
10402
|
</li>
|
|
9959
10403
|
|
|
9960
10404
|
<li class="md-nav__item">
|
|
9961
|
-
<a href="#
|
|
10405
|
+
<a href="#fixed" class="md-nav__link">
|
|
9962
10406
|
<span class="md-ellipsis">
|
|
9963
10407
|
Fixed
|
|
9964
10408
|
</span>
|
|
@@ -9967,9 +10411,9 @@
|
|
|
9967
10411
|
</li>
|
|
9968
10412
|
|
|
9969
10413
|
<li class="md-nav__item">
|
|
9970
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10414
|
+
<a href="#dependencies-in-v100" class="md-nav__link">
|
|
9971
10415
|
<span class="md-ellipsis">
|
|
9972
|
-
Dependencies
|
|
10416
|
+
Dependencies in v1.0.0
|
|
9973
10417
|
</span>
|
|
9974
10418
|
</a>
|
|
9975
10419
|
|
|
@@ -9991,45 +10435,45 @@
|
|
|
9991
10435
|
<ul class="md-nav__list">
|
|
9992
10436
|
|
|
9993
10437
|
<li class="md-nav__item">
|
|
9994
|
-
<a href="#
|
|
10438
|
+
<a href="#changed-in-v100b4" class="md-nav__link">
|
|
9995
10439
|
<span class="md-ellipsis">
|
|
9996
|
-
Changed
|
|
10440
|
+
Changed in v1.0.0b4
|
|
9997
10441
|
</span>
|
|
9998
10442
|
</a>
|
|
9999
10443
|
|
|
10000
10444
|
</li>
|
|
10001
10445
|
|
|
10002
10446
|
<li class="md-nav__item">
|
|
10003
|
-
<a href="#
|
|
10447
|
+
<a href="#fixed-in-v100b4" class="md-nav__link">
|
|
10004
10448
|
<span class="md-ellipsis">
|
|
10005
|
-
Fixed
|
|
10449
|
+
Fixed in v1.0.0b4
|
|
10006
10450
|
</span>
|
|
10007
10451
|
</a>
|
|
10008
10452
|
|
|
10009
10453
|
</li>
|
|
10010
10454
|
|
|
10011
10455
|
<li class="md-nav__item">
|
|
10012
|
-
<a href="#
|
|
10456
|
+
<a href="#dependencies-in-v100b4" class="md-nav__link">
|
|
10013
10457
|
<span class="md-ellipsis">
|
|
10014
|
-
Dependencies
|
|
10458
|
+
Dependencies in v1.0.0b4
|
|
10015
10459
|
</span>
|
|
10016
10460
|
</a>
|
|
10017
10461
|
|
|
10018
10462
|
</li>
|
|
10019
10463
|
|
|
10020
10464
|
<li class="md-nav__item">
|
|
10021
|
-
<a href="#
|
|
10465
|
+
<a href="#documentation-in-v100b4" class="md-nav__link">
|
|
10022
10466
|
<span class="md-ellipsis">
|
|
10023
|
-
Documentation
|
|
10467
|
+
Documentation in v1.0.0b4
|
|
10024
10468
|
</span>
|
|
10025
10469
|
</a>
|
|
10026
10470
|
|
|
10027
10471
|
</li>
|
|
10028
10472
|
|
|
10029
10473
|
<li class="md-nav__item">
|
|
10030
|
-
<a href="#
|
|
10474
|
+
<a href="#housekeeping-in-v100b4" class="md-nav__link">
|
|
10031
10475
|
<span class="md-ellipsis">
|
|
10032
|
-
Housekeeping
|
|
10476
|
+
Housekeeping in v1.0.0b4
|
|
10033
10477
|
</span>
|
|
10034
10478
|
</a>
|
|
10035
10479
|
|
|
@@ -10051,54 +10495,54 @@
|
|
|
10051
10495
|
<ul class="md-nav__list">
|
|
10052
10496
|
|
|
10053
10497
|
<li class="md-nav__item">
|
|
10054
|
-
<a href="#
|
|
10498
|
+
<a href="#added-in-v100b3" class="md-nav__link">
|
|
10055
10499
|
<span class="md-ellipsis">
|
|
10056
|
-
Added
|
|
10500
|
+
Added in v1.0.0b3
|
|
10057
10501
|
</span>
|
|
10058
10502
|
</a>
|
|
10059
10503
|
|
|
10060
10504
|
</li>
|
|
10061
10505
|
|
|
10062
10506
|
<li class="md-nav__item">
|
|
10063
|
-
<a href="#
|
|
10507
|
+
<a href="#changed-in-v100b3" class="md-nav__link">
|
|
10064
10508
|
<span class="md-ellipsis">
|
|
10065
|
-
Changed
|
|
10509
|
+
Changed in v1.0.0b3
|
|
10066
10510
|
</span>
|
|
10067
10511
|
</a>
|
|
10068
10512
|
|
|
10069
10513
|
</li>
|
|
10070
10514
|
|
|
10071
10515
|
<li class="md-nav__item">
|
|
10072
|
-
<a href="#
|
|
10516
|
+
<a href="#removed-in-v100b3" class="md-nav__link">
|
|
10073
10517
|
<span class="md-ellipsis">
|
|
10074
|
-
Removed
|
|
10518
|
+
Removed in v1.0.0b3
|
|
10075
10519
|
</span>
|
|
10076
10520
|
</a>
|
|
10077
10521
|
|
|
10078
10522
|
</li>
|
|
10079
10523
|
|
|
10080
10524
|
<li class="md-nav__item">
|
|
10081
|
-
<a href="#
|
|
10525
|
+
<a href="#fixed-in-v100b3" class="md-nav__link">
|
|
10082
10526
|
<span class="md-ellipsis">
|
|
10083
|
-
Fixed
|
|
10527
|
+
Fixed in v1.0.0b3
|
|
10084
10528
|
</span>
|
|
10085
10529
|
</a>
|
|
10086
10530
|
|
|
10087
10531
|
</li>
|
|
10088
10532
|
|
|
10089
10533
|
<li class="md-nav__item">
|
|
10090
|
-
<a href="#
|
|
10534
|
+
<a href="#documentation-in-v100b3" class="md-nav__link">
|
|
10091
10535
|
<span class="md-ellipsis">
|
|
10092
|
-
Documentation
|
|
10536
|
+
Documentation in v1.0.0b3
|
|
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="#housekeeping-in-v100b3" class="md-nav__link">
|
|
10100
10544
|
<span class="md-ellipsis">
|
|
10101
|
-
Housekeeping
|
|
10545
|
+
Housekeeping in v1.0.0b3
|
|
10102
10546
|
</span>
|
|
10103
10547
|
</a>
|
|
10104
10548
|
|
|
@@ -10120,54 +10564,54 @@
|
|
|
10120
10564
|
<ul class="md-nav__list">
|
|
10121
10565
|
|
|
10122
10566
|
<li class="md-nav__item">
|
|
10123
|
-
<a href="#
|
|
10567
|
+
<a href="#added-in-v100b2" class="md-nav__link">
|
|
10124
10568
|
<span class="md-ellipsis">
|
|
10125
|
-
Added
|
|
10569
|
+
Added in v1.0.0b2
|
|
10126
10570
|
</span>
|
|
10127
10571
|
</a>
|
|
10128
10572
|
|
|
10129
10573
|
</li>
|
|
10130
10574
|
|
|
10131
10575
|
<li class="md-nav__item">
|
|
10132
|
-
<a href="#
|
|
10576
|
+
<a href="#changed-in-v100b2" class="md-nav__link">
|
|
10133
10577
|
<span class="md-ellipsis">
|
|
10134
|
-
Changed
|
|
10578
|
+
Changed in v1.0.0b2
|
|
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="#removed-in-v100b2" class="md-nav__link">
|
|
10142
10586
|
<span class="md-ellipsis">
|
|
10143
|
-
Removed
|
|
10587
|
+
Removed in v1.0.0b2
|
|
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="#fixed-in-v100b2" class="md-nav__link">
|
|
10151
10595
|
<span class="md-ellipsis">
|
|
10152
|
-
Fixed
|
|
10596
|
+
Fixed in v1.0.0b2
|
|
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="#documentation-in-v100b2" class="md-nav__link">
|
|
10160
10604
|
<span class="md-ellipsis">
|
|
10161
|
-
Documentation
|
|
10605
|
+
Documentation in v1.0.0b2
|
|
10162
10606
|
</span>
|
|
10163
10607
|
</a>
|
|
10164
10608
|
|
|
10165
10609
|
</li>
|
|
10166
10610
|
|
|
10167
10611
|
<li class="md-nav__item">
|
|
10168
|
-
<a href="#housekeeeping" class="md-nav__link">
|
|
10612
|
+
<a href="#housekeeeping-in-v100b2" class="md-nav__link">
|
|
10169
10613
|
<span class="md-ellipsis">
|
|
10170
|
-
Housekeeeping
|
|
10614
|
+
Housekeeeping in v1.0.0b2
|
|
10171
10615
|
</span>
|
|
10172
10616
|
</a>
|
|
10173
10617
|
|
|
@@ -10189,9 +10633,9 @@
|
|
|
10189
10633
|
<ul class="md-nav__list">
|
|
10190
10634
|
|
|
10191
10635
|
<li class="md-nav__item">
|
|
10192
|
-
<a href="#
|
|
10636
|
+
<a href="#fixed-in-v100b1" class="md-nav__link">
|
|
10193
10637
|
<span class="md-ellipsis">
|
|
10194
|
-
Fixed
|
|
10638
|
+
Fixed in v1.0.0b1
|
|
10195
10639
|
</span>
|
|
10196
10640
|
</a>
|
|
10197
10641
|
|
|
@@ -10220,7 +10664,6 @@
|
|
|
10220
10664
|
|
|
10221
10665
|
|
|
10222
10666
|
|
|
10223
|
-
<!-- markdownlint-disable MD024 -->
|
|
10224
10667
|
<h1 id="nautobot-v10">Nautobot v1.0<a class="headerlink" href="#nautobot-v10" title="Permanent link">¶</a></h1>
|
|
10225
10668
|
<p>This document describes all new features and changes in Nautobot 1.0, a divergent fork of NetBox 2.10. For the launch of Nautobot 1.0 and for the purpose of this document, all “new” features or “changes” are referring to the features and changes comparing Nautobot 1.0 coming from NetBox 2.10. All future release notes will only refer to features and changes relative to prior releases of Nautobot.</p>
|
|
10226
10669
|
<p>Users migrating from NetBox to Nautobot should also refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation as well.</p>
|
|
@@ -10315,20 +10758,20 @@
|
|
|
10315
10758
|
<h4 id="related-devices">Related Devices<a class="headerlink" href="#related-devices" title="Permanent link">¶</a></h4>
|
|
10316
10759
|
<p>The "Related Devices" table has been removed from the detailed Device view.</p>
|
|
10317
10760
|
<h2 id="v103-2021-06-21">v1.0.3 (2021-06-21)<a class="headerlink" href="#v103-2021-06-21" title="Permanent link">¶</a></h2>
|
|
10318
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10761
|
+
<h3 id="security-in-v103">Security in v1.0.3<a class="headerlink" href="#security-in-v103" title="Permanent link">¶</a></h3>
|
|
10319
10762
|
<ul>
|
|
10320
10763
|
<li><a href="https://github.com/nautobot/nautobot/issues/418">#418</a> - Removed unused JQuery-UI component flagged by vulnerability scanner (CVE-2020-7729)</li>
|
|
10321
10764
|
</ul>
|
|
10322
|
-
<h3 id="
|
|
10765
|
+
<h3 id="added-in-v103">Added in v1.0.3<a class="headerlink" href="#added-in-v103" title="Permanent link">¶</a></h3>
|
|
10323
10766
|
<ul>
|
|
10324
10767
|
<li><a href="https://github.com/nautobot/nautobot/issues/143">#143</a> - Added "copy" button on hover to <code>Device</code> detail view for name, primary IP addresses, and serial number.</li>
|
|
10325
10768
|
<li><a href="https://github.com/nautobot/nautobot/pull/576">#576</a> - <code>JobResult</code> detail views now support custom links and plugin template extensions</li>
|
|
10326
10769
|
</ul>
|
|
10327
|
-
<h3 id="
|
|
10770
|
+
<h3 id="changed-in-v103">Changed in v1.0.3<a class="headerlink" href="#changed-in-v103" title="Permanent link">¶</a></h3>
|
|
10328
10771
|
<ul>
|
|
10329
10772
|
<li><a href="https://github.com/nautobot/nautobot/issues/537">#537</a> - To mitigate CVE-2021-31542, the minimum supported Django version is now 3.1.12.</li>
|
|
10330
10773
|
</ul>
|
|
10331
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10774
|
+
<h3 id="fixed-in-v103">Fixed in v1.0.3<a class="headerlink" href="#fixed-in-v103" title="Permanent link">¶</a></h3>
|
|
10332
10775
|
<ul>
|
|
10333
10776
|
<li><a href="https://github.com/nautobot/nautobot/issues/342">#342</a> - Fixed inconsistent behavior in <code>Site.time_zone</code> to emit and accept input as a null field if not set when using API</li>
|
|
10334
10777
|
<li><a href="https://github.com/nautobot/nautobot/issues/389">#389</a> - Fixed incorrect TaggedItem base class that caused tag issues on MySQL.</li>
|
|
@@ -10347,7 +10790,7 @@
|
|
|
10347
10790
|
<li><a href="https://github.com/nautobot/nautobot/issues/570">#570</a> - Fixed inability to import <code>ExportTemplates</code> for the <code>VLAN</code> model via Git.</li>
|
|
10348
10791
|
<li><a href="https://github.com/nautobot/nautobot/pull/583">#583</a> - Fixed incorrect rejection of various forms when explicitly selecting a <code>null</code> option. (Port of <a href="https://github.com/netbox-community/netbox/pull/5704">NetBox #5704</a>)</li>
|
|
10349
10792
|
</ul>
|
|
10350
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10793
|
+
<h3 id="documentation-in-v103">Documentation in v1.0.3<a class="headerlink" href="#documentation-in-v103" title="Permanent link">¶</a></h3>
|
|
10351
10794
|
<ul>
|
|
10352
10795
|
<li><a href="https://github.com/nautobot/nautobot/issues/220">#220</a> - Added a troubleshooting section to the development guide for issues encountered when using the multi-threaded development server</li>
|
|
10353
10796
|
<li><a href="https://github.com/nautobot/nautobot/pull/505">#505</a> - Added example of Okta OAuth2 integration to the docs.</li>
|
|
@@ -10355,13 +10798,13 @@
|
|
|
10355
10798
|
<li><a href="https://github.com/nautobot/nautobot/issues/523">#523</a> - Added instructions for using LDAP TLS Options to SSO documentation</li>
|
|
10356
10799
|
<li><a href="https://github.com/nautobot/nautobot/pull/542">#542</a> - Fixed incorrect documentation for running <code>nautobot-server test</code> commands.</li>
|
|
10357
10800
|
</ul>
|
|
10358
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10801
|
+
<h3 id="housekeeping-in-v103">Housekeeping in v1.0.3<a class="headerlink" href="#housekeeping-in-v103" title="Permanent link">¶</a></h3>
|
|
10359
10802
|
<ul>
|
|
10360
10803
|
<li><a href="https://github.com/nautobot/nautobot/issues/183">#183</a> - Implemented a baseline integration test suite using Selenium</li>
|
|
10361
10804
|
<li><a href="https://github.com/nautobot/nautobot/pull/540">#540</a> - Fixed intermittent CI failures due to DockerHub rate limits.</li>
|
|
10362
10805
|
</ul>
|
|
10363
10806
|
<h2 id="v102-2021-05-27">v1.0.2 (2021-05-27)<a class="headerlink" href="#v102-2021-05-27" title="Permanent link">¶</a></h2>
|
|
10364
|
-
<h3 id="
|
|
10807
|
+
<h3 id="added-in-v102">Added in v1.0.2<a class="headerlink" href="#added-in-v102" title="Permanent link">¶</a></h3>
|
|
10365
10808
|
<ul>
|
|
10366
10809
|
<li><a href="https://github.com/nautobot/nautobot/issues/14">#14</a> - Plugins are now officially permitted to use the generic view classes defined in <code>nautobot.core.views.generic</code> and corresponding base templates defined in <code>nautobot/core/templates/generic/</code>.</li>
|
|
10367
10810
|
<li><a href="https://github.com/nautobot/nautobot/pull/430">#430</a> - GraphQL <code>ip_addresses</code> now includes an <code>assigned_object</code> field</li>
|
|
@@ -10371,15 +10814,15 @@
|
|
|
10371
10814
|
<li><a href="https://github.com/nautobot/nautobot/issues/451">#451</a> - Added static GraphQL type for VirtualMachine model</li>
|
|
10372
10815
|
<li><a href="https://github.com/nautobot/nautobot/pull/465">#465</a> - Added Virtual Chassis to the Home Page</li>
|
|
10373
10816
|
</ul>
|
|
10374
|
-
<h3 id="
|
|
10817
|
+
<h3 id="changed-in-v102">Changed in v1.0.2<a class="headerlink" href="#changed-in-v102" title="Permanent link">¶</a></h3>
|
|
10375
10818
|
<ul>
|
|
10376
10819
|
<li><a href="https://github.com/nautobot/nautobot/issues/448">#448</a> - <code>nautobot-server init</code> no longer provides an option to overwrite the existing configuration files.</li>
|
|
10377
10820
|
</ul>
|
|
10378
|
-
<h3 id="
|
|
10821
|
+
<h3 id="removed-in-v102">Removed in v1.0.2<a class="headerlink" href="#removed-in-v102" title="Permanent link">¶</a></h3>
|
|
10379
10822
|
<ul>
|
|
10380
10823
|
<li><a href="https://github.com/nautobot/nautobot/issues/456">#456</a> - Removed markdown-include</li>
|
|
10381
10824
|
</ul>
|
|
10382
|
-
<h3 id="
|
|
10825
|
+
<h3 id="fixed-in-v102">Fixed in v1.0.2<a class="headerlink" href="#fixed-in-v102" title="Permanent link">¶</a></h3>
|
|
10383
10826
|
<ul>
|
|
10384
10827
|
<li><a href="https://github.com/nautobot/nautobot/issues/309">#309</a> - Fixed erroneous termination display when cables are connected to power feeds.</li>
|
|
10385
10828
|
<li><a href="https://github.com/nautobot/nautobot/issues/396">#396</a> - Fixed <code>ValidationError</code> not being raised when Relationship filters are invalid</li>
|
|
@@ -10394,12 +10837,12 @@
|
|
|
10394
10837
|
<li><a href="https://github.com/nautobot/nautobot/issues/482">#482</a> - Fixed <code>FieldError</code> from being raised when a <code>JobResult</code> references a model with no <code>name</code> field</li>
|
|
10395
10838
|
<li><a href="https://github.com/nautobot/nautobot/issues/488">#488</a> - Fix migrations in MySQL by hard-coding the <code>VarbinaryIPField</code> to use <code>varbinary(16)</code></li>
|
|
10396
10839
|
</ul>
|
|
10397
|
-
<h3 id="
|
|
10840
|
+
<h3 id="documentation-in-v102">Documentation in v1.0.2<a class="headerlink" href="#documentation-in-v102" title="Permanent link">¶</a></h3>
|
|
10398
10841
|
<ul>
|
|
10399
10842
|
<li><a href="https://github.com/nautobot/nautobot/pull/417">#417</a> - Fixed incorrect link to Docker docs from installation docs</li>
|
|
10400
10843
|
<li><a href="https://github.com/nautobot/nautobot/pull/423">#423</a> - Clarified reference to <code>/config_contexts/</code> folder in Git user guide</li>
|
|
10401
10844
|
</ul>
|
|
10402
|
-
<h3 id="
|
|
10845
|
+
<h3 id="housekeeping-in-v102">Housekeeping in v1.0.2<a class="headerlink" href="#housekeeping-in-v102" title="Permanent link">¶</a></h3>
|
|
10403
10846
|
<ul>
|
|
10404
10847
|
<li><a href="https://github.com/nautobot/nautobot/issues/162">#162</a> - Added Invoke tasks <code>dumpdata</code> and <code>loaddata</code> for database backup/restoration in the development environment.</li>
|
|
10405
10848
|
<li><a href="https://github.com/nautobot/nautobot/issues/456">#456</a> - Added mkdocs-include-markdown-plugin as a development dependency.</li>
|
|
@@ -10407,12 +10850,12 @@
|
|
|
10407
10850
|
<li><a href="https://github.com/nautobot/nautobot/issues/486">#486</a> - Fixed failing Docker builds due to do missing <code>examples</code> development dependency</li>
|
|
10408
10851
|
</ul>
|
|
10409
10852
|
<h2 id="v101-2021-05-06">v1.0.1 (2021-05-06)<a class="headerlink" href="#v101-2021-05-06" title="Permanent link">¶</a></h2>
|
|
10410
|
-
<h3 id="
|
|
10853
|
+
<h3 id="added-in-v101">Added in v1.0.1<a class="headerlink" href="#added-in-v101" title="Permanent link">¶</a></h3>
|
|
10411
10854
|
<ul>
|
|
10412
10855
|
<li><a href="https://github.com/nautobot/nautobot/issues/242">#242</a> - Added a production-ready <code>Dockerfile</code> for clustered deployment</li>
|
|
10413
10856
|
<li><a href="https://github.com/nautobot/nautobot/issues/356">#356</a> - Added a new <code>nautobot-server startplugin</code> management command to ease plugin development</li>
|
|
10414
10857
|
</ul>
|
|
10415
|
-
<h3 id="
|
|
10858
|
+
<h3 id="fixed-in-v101">Fixed in v1.0.1<a class="headerlink" href="#fixed-in-v101" title="Permanent link">¶</a></h3>
|
|
10416
10859
|
<ul>
|
|
10417
10860
|
<li><a href="https://github.com/nautobot/nautobot/issues/336">#336</a> - Fixed <code>nautobot.utilities.api.get_serializer_for_model</code> to now support the plugins namespace</li>
|
|
10418
10861
|
<li><a href="https://github.com/nautobot/nautobot/issues/337">#337</a> - Fixed <code>nautobot.extras.plugins.api.views.PluginsAPIRootView</code> no longer creates null entries when <code>PluginConfig</code> does not define a <code>base_url</code></li>
|
|
@@ -10422,28 +10865,28 @@
|
|
|
10422
10865
|
<li><a href="https://github.com/nautobot/nautobot/issues/398">#398</a> - Fixed <code>VirtualChassis</code> edit view to now show "Update" button vs. "Create"</li>
|
|
10423
10866
|
<li><a href="https://github.com/nautobot/nautobot/issues/399">#399</a> - Fixed <code>nautobot.utilities.utils.get_filterset_for_model</code> to now support the plugins namespace</li>
|
|
10424
10867
|
</ul>
|
|
10425
|
-
<h3 id="
|
|
10868
|
+
<h3 id="documentation-in-v101">Documentation in v1.0.1<a class="headerlink" href="#documentation-in-v101" title="Permanent link">¶</a></h3>
|
|
10426
10869
|
<ul>
|
|
10427
10870
|
<li><a href="https://github.com/nautobot/nautobot/issues/15">#15</a> - Added documentation for plugins using generic models to get change logging using <code>ChangeLoggedModel</code></li>
|
|
10428
10871
|
<li><a href="https://github.com/nautobot/nautobot/pull/362">#362</a> - Updated sample code in plugin development guide to inherit from <code>BaseModel</code></li>
|
|
10429
10872
|
<li><a href="https://github.com/nautobot/nautobot/issues/400">#400</a> - Fixed the <code>class_path</code> format for Jobs API usage documentation not being clear enough</li>
|
|
10430
10873
|
</ul>
|
|
10431
|
-
<h3 id="
|
|
10874
|
+
<h3 id="housekeeping-in-v101">Housekeeping in v1.0.1<a class="headerlink" href="#housekeeping-in-v101" title="Permanent link">¶</a></h3>
|
|
10432
10875
|
<ul>
|
|
10433
10876
|
<li><a href="https://github.com/nautobot/nautobot/pull/366">#366</a> - Added GraphQL filter tests for <code>interfaces</code> queries and added missing unit tests for <code>Interface</code> filtersets</li>
|
|
10434
10877
|
<li><a href="https://github.com/nautobot/nautobot/issues/402">#402</a> - Docs build requirements will now install <code>markdown-include</code> version from PyPI instead of GitHub</li>
|
|
10435
10878
|
<li><a href="https://github.com/nautobot/nautobot/pull/409">#409</a> - Fixed misspelling: "Datbase" --> "Database" in <code>nautobot_config.py.j2</code></li>
|
|
10436
10879
|
</ul>
|
|
10437
10880
|
<h2 id="v100-2021-04-26">v1.0.0 (2021-04-26)<a class="headerlink" href="#v100-2021-04-26" title="Permanent link">¶</a></h2>
|
|
10438
|
-
<h3 id="
|
|
10881
|
+
<h3 id="added-in-v100">Added in v1.0.0<a class="headerlink" href="#added-in-v100" title="Permanent link">¶</a></h3>
|
|
10439
10882
|
<ul>
|
|
10440
10883
|
<li><a href="https://github.com/nautobot/nautobot/pull/290">#290</a> - Added REST API endpoint for triggering a Git repository sync</li>
|
|
10441
10884
|
</ul>
|
|
10442
|
-
<h3 id="
|
|
10885
|
+
<h3 id="changed-in-v100">Changed in v1.0.0<a class="headerlink" href="#changed-in-v100" title="Permanent link">¶</a></h3>
|
|
10443
10886
|
<ul>
|
|
10444
10887
|
<li><a href="https://github.com/nautobot/nautobot/issues/333">#333</a> - Relationships now display the name of the related object type as well as the count</li>
|
|
10445
10888
|
</ul>
|
|
10446
|
-
<h3 id="
|
|
10889
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10447
10890
|
<ul>
|
|
10448
10891
|
<li><a href="https://github.com/nautobot/nautobot/issues/276">#276</a> - Fixed 500 error when creating Rack Reservation with invalid units</li>
|
|
10449
10892
|
<li><a href="https://github.com/nautobot/nautobot/issues/277">#277</a> - Fixed 500 error when editing/updating IPAM Services with invalid ports</li>
|
|
@@ -10453,18 +10896,18 @@
|
|
|
10453
10896
|
<li><a href="https://github.com/nautobot/nautobot/issues/359">#359</a> - Fixed incorrect GraphQL filtering of cables by <code>site</code></li>
|
|
10454
10897
|
<li><a href="https://github.com/nautobot/nautobot/issues/361">#361</a> - Fixed duplicate "tags" field when creating a cable connection</li>
|
|
10455
10898
|
</ul>
|
|
10456
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10899
|
+
<h3 id="dependencies-in-v100">Dependencies in v1.0.0<a class="headerlink" href="#dependencies-in-v100" title="Permanent link">¶</a></h3>
|
|
10457
10900
|
<ul>
|
|
10458
10901
|
<li><a href="https://github.com/nautobot/nautobot/pull/358">#358</a> - Updated Python dependencies to their latest patch versions</li>
|
|
10459
10902
|
</ul>
|
|
10460
10903
|
<h2 id="v100b4-2021-04-19">v1.0.0b4 (2021-04-19)<a class="headerlink" href="#v100b4-2021-04-19" title="Permanent link">¶</a></h2>
|
|
10461
|
-
<h3 id="
|
|
10904
|
+
<h3 id="changed-in-v100b4">Changed in v1.0.0b4<a class="headerlink" href="#changed-in-v100b4" title="Permanent link">¶</a></h3>
|
|
10462
10905
|
<ul>
|
|
10463
10906
|
<li><a href="https://github.com/nautobot/nautobot/pull/217">#217</a> - Replaced JSONB aggregation with custom cross-database implementation that supports PG and MySQL</li>
|
|
10464
10907
|
<li><a href="https://github.com/nautobot/nautobot/pull/245">#245</a> - Replaced PG-specific "advisory locks" with cross-database distributed Redis lock</li>
|
|
10465
10908
|
<li><a href="https://github.com/nautobot/nautobot/pull/289">#289</a> - Updated natural unicode-aware sorting for interface/device names to support MySQL</li>
|
|
10466
10909
|
</ul>
|
|
10467
|
-
<h3 id="
|
|
10910
|
+
<h3 id="fixed-in-v100b4">Fixed in v1.0.0b4<a class="headerlink" href="#fixed-in-v100b4" title="Permanent link">¶</a></h3>
|
|
10468
10911
|
<ul>
|
|
10469
10912
|
<li><a href="https://github.com/nautobot/nautobot/issues/167">#167</a> - Fix to enable to query <code>ip_addresses</code> by parent in GraphQL</li>
|
|
10470
10913
|
<li><a href="https://github.com/nautobot/nautobot/issues/212">#212</a> - Allow plugins to use built-in buttons</li>
|
|
@@ -10493,11 +10936,11 @@
|
|
|
10493
10936
|
<li><a href="https://github.com/nautobot/nautobot/issues/326">#326</a> - Fix 404 error when attempting to delete a RelationshipAssociation from the list view</li>
|
|
10494
10937
|
<li><a href="https://github.com/nautobot/nautobot/pull/373">#373</a> - Fix missing "Bulk Add IP Addresses" tab</li>
|
|
10495
10938
|
</ul>
|
|
10496
|
-
<h3 id="
|
|
10939
|
+
<h3 id="dependencies-in-v100b4">Dependencies in v1.0.0b4<a class="headerlink" href="#dependencies-in-v100b4" title="Permanent link">¶</a></h3>
|
|
10497
10940
|
<ul>
|
|
10498
10941
|
<li><a href="https://github.com/nautobot/nautobot/pull/273">#273</a> - Update to jQuery 3.6.0</li>
|
|
10499
10942
|
</ul>
|
|
10500
|
-
<h3 id="
|
|
10943
|
+
<h3 id="documentation-in-v100b4">Documentation in v1.0.0b4<a class="headerlink" href="#documentation-in-v100b4" title="Permanent link">¶</a></h3>
|
|
10501
10944
|
<ul>
|
|
10502
10945
|
<li><a href="https://github.com/nautobot/nautobot/issues/96">#96</a> - Implemented user guide documentation for GraphQL</li>
|
|
10503
10946
|
<li><a href="https://github.com/nautobot/nautobot/issues/97">#97</a> - Implemented user guide documentation for Git as a Data Source</li>
|
|
@@ -10507,7 +10950,7 @@
|
|
|
10507
10950
|
<li><a href="https://github.com/nautobot/nautobot/issues/262">#262</a> - Revised Nautobot upgrade and NetBox migration guides</li>
|
|
10508
10951
|
<li><a href="https://github.com/nautobot/nautobot/issues/264">#264</a> - Fix missing parenthesis in datasources example</li>
|
|
10509
10952
|
</ul>
|
|
10510
|
-
<h3 id="
|
|
10953
|
+
<h3 id="housekeeping-in-v100b4">Housekeeping in v1.0.0b4<a class="headerlink" href="#housekeeping-in-v100b4" title="Permanent link">¶</a></h3>
|
|
10511
10954
|
<ul>
|
|
10512
10955
|
<li><a href="https://github.com/nautobot/nautobot/pull/211">#211</a> - Travis CI build improvements to simplify entry points and make tests fail faster</li>
|
|
10513
10956
|
<li><a href="https://github.com/nautobot/nautobot/pull/324">#324</a> - Fix unit test execution on MySQL by changing subquery limiting to list slicing</li>
|
|
@@ -10517,14 +10960,14 @@
|
|
|
10517
10960
|
<p class="admonition-title">Warning</p>
|
|
10518
10961
|
<p>v1.0.0b3 introduces several database changes that are <strong>not</strong> backwards-compatible with v1.0.0b2 and earlier. There is no direct upgrade path from v1.0.0b2 to v1.0.0b3 - you <strong>must</strong> create a new database when installing v1.0.0b3!</p>
|
|
10519
10962
|
</div>
|
|
10520
|
-
<h3 id="
|
|
10963
|
+
<h3 id="added-in-v100b3">Added in v1.0.0b3<a class="headerlink" href="#added-in-v100b3" title="Permanent link">¶</a></h3>
|
|
10521
10964
|
<ul>
|
|
10522
10965
|
<li><a href="https://github.com/nautobot/nautobot/issues/105">#105</a> - Added tooltip with detailed information to utilization graph bars.</li>
|
|
10523
10966
|
<li><a href="https://github.com/nautobot/nautobot/pull/141">#141</a> - Custom Link UI now includes example usage hints</li>
|
|
10524
10967
|
<li><a href="https://github.com/nautobot/nautobot/pull/227">#227</a> - Add QFSP+ (64GFC) FiberChannel interface type</li>
|
|
10525
10968
|
<li><a href="https://github.com/nautobot/nautobot/pull/236">#236</a> - Add <code>post_upgrade</code> to developer docs and add <code>invoke post-upgrade</code></li>
|
|
10526
10969
|
</ul>
|
|
10527
|
-
<h3 id="
|
|
10970
|
+
<h3 id="changed-in-v100b3">Changed in v1.0.0b3<a class="headerlink" href="#changed-in-v100b3" title="Permanent link">¶</a></h3>
|
|
10528
10971
|
<p>Major backwards-incompatible database changes were included in this beta release that are intended are to pave the way for us to support MySQL as a database backend in a future update. Of those changes, these are the most notable:</p>
|
|
10529
10972
|
<ul>
|
|
10530
10973
|
<li>All IPAM objects with network field types (<code>ipam.Aggregate</code>, <code>ipam.IPAddress</code>, and <code>ipam.Prefix</code>) are no longer hard-coded to use PostgreSQL-only <code>inet</code> or <code>cidr</code> field types and are now using a custom implementation leveraging SQL-standard <code>varbinary</code> field types</li>
|
|
@@ -10548,12 +10991,12 @@
|
|
|
10548
10991
|
<li><a href="https://github.com/nautobot/nautobot/pull/208">#208</a> - Custom fields model refactor</li>
|
|
10549
10992
|
<li><a href="https://github.com/nautobot/nautobot/pull/241">#241</a> - Swap <code>contrib.postgres.fields.JSONField</code> for <code>db.models.JSONField</code></li>
|
|
10550
10993
|
</ul>
|
|
10551
|
-
<h3 id="
|
|
10994
|
+
<h3 id="removed-in-v100b3">Removed in v1.0.0b3<a class="headerlink" href="#removed-in-v100b3" title="Permanent link">¶</a></h3>
|
|
10552
10995
|
<ul>
|
|
10553
10996
|
<li><a href="https://github.com/nautobot/nautobot/pull/189">#188</a> - Remove <code>CSRF_TRUSTED_ORIGINS</code> from core settings</li>
|
|
10554
10997
|
<li><a href="https://github.com/nautobot/nautobot/pull/189">#189</a> - Remove all references to <code>settings.BASE_PATH</code></li>
|
|
10555
10998
|
</ul>
|
|
10556
|
-
<h3 id="
|
|
10999
|
+
<h3 id="fixed-in-v100b3">Fixed in v1.0.0b3<a class="headerlink" href="#fixed-in-v100b3" title="Permanent link">¶</a></h3>
|
|
10557
11000
|
<ul>
|
|
10558
11001
|
<li><a href="https://github.com/nautobot/nautobot/issues/26">#26</a> - <code>nautobot-server runserver</code> does not work using <code>poetry run</code></li>
|
|
10559
11002
|
<li><a href="https://github.com/nautobot/nautobot/issues/58">#58</a> - GraphQL Device Query - Role filter issue</li>
|
|
@@ -10574,7 +11017,7 @@
|
|
|
10574
11017
|
<li><a href="https://github.com/nautobot/nautobot/issues/213">#213</a> - Programming Error Exception Value: relation <code>"social_auth_usersocialauth"</code> does not exist</li>
|
|
10575
11018
|
<li><a href="https://github.com/nautobot/nautobot/issues/224">#224</a> - Edit view for IPAM network objects does not emit the current network address value</li>
|
|
10576
11019
|
</ul>
|
|
10577
|
-
<h3 id="
|
|
11020
|
+
<h3 id="documentation-in-v100b3">Documentation in v1.0.0b3<a class="headerlink" href="#documentation-in-v100b3" title="Permanent link">¶</a></h3>
|
|
10578
11021
|
<ul>
|
|
10579
11022
|
<li><a href="https://github.com/nautobot/nautobot/issues/84">#84</a> - Revised developer documentation for clarity and current workflows</li>
|
|
10580
11023
|
<li><a href="https://github.com/nautobot/nautobot/issues/100">#100</a> - Added detailed documentation of the <code>nautobot-server</code> command</li>
|
|
@@ -10591,7 +11034,7 @@
|
|
|
10591
11034
|
<li><a href="https://github.com/nautobot/nautobot/issues/205">#205</a> - API Documentation shows numeric id instead of UUID</li>
|
|
10592
11035
|
<li><a href="https://github.com/nautobot/nautobot/pull/235">#235</a> - Update restart docs to include worker</li>
|
|
10593
11036
|
</ul>
|
|
10594
|
-
<h3 id="
|
|
11037
|
+
<h3 id="housekeeping-in-v100b3">Housekeeping in v1.0.0b3<a class="headerlink" href="#housekeeping-in-v100b3" title="Permanent link">¶</a></h3>
|
|
10595
11038
|
<ul>
|
|
10596
11039
|
<li><a href="https://github.com/nautobot/nautobot/pull/109">#109</a> - Docker development environment build now automatically installs from any present <code>local_requirements.txt</code> file</li>
|
|
10597
11040
|
<li><a href="https://github.com/nautobot/nautobot/pull/124">#124</a> - Removed incorrect statement from feature request template</li>
|
|
@@ -10600,21 +11043,21 @@
|
|
|
10600
11043
|
<li><a href="https://github.com/nautobot/nautobot/issues/255">#255</a> - Update docs <code>edit_uri</code> to point to correct path</li>
|
|
10601
11044
|
</ul>
|
|
10602
11045
|
<h2 id="v100b2-2021-03-08">v1.0.0b2 (2021-03-08)<a class="headerlink" href="#v100b2-2021-03-08" title="Permanent link">¶</a></h2>
|
|
10603
|
-
<h3 id="
|
|
11046
|
+
<h3 id="added-in-v100b2">Added in v1.0.0b2<a class="headerlink" href="#added-in-v100b2" title="Permanent link">¶</a></h3>
|
|
10604
11047
|
<ul>
|
|
10605
11048
|
<li><a href="https://github.com/nautobot/nautobot/issues/48">#48</a> - Additional unit testing and bug fixes for Relationships feature.</li>
|
|
10606
11049
|
<li><a href="https://github.com/nautobot/nautobot/pull/99">#99</a> - Add <code>BASE_PATH</code> to <code>development/nautobot_config.py</code>.</li>
|
|
10607
11050
|
<li><a href="https://github.com/nautobot/nautobot/pull/107">#107</a> - Add <code>nautobot-server post_upgrade</code> command</li>
|
|
10608
11051
|
</ul>
|
|
10609
|
-
<h3 id="
|
|
11052
|
+
<h3 id="changed-in-v100b2">Changed in v1.0.0b2<a class="headerlink" href="#changed-in-v100b2" title="Permanent link">¶</a></h3>
|
|
10610
11053
|
<ul>
|
|
10611
11054
|
<li><a href="https://github.com/nautobot/nautobot/issues/88">#88</a> - Replace Gunicorn w/ uWSGI</li>
|
|
10612
11055
|
</ul>
|
|
10613
|
-
<h3 id="
|
|
11056
|
+
<h3 id="removed-in-v100b2">Removed in v1.0.0b2<a class="headerlink" href="#removed-in-v100b2" title="Permanent link">¶</a></h3>
|
|
10614
11057
|
<ul>
|
|
10615
11058
|
<li><a href="https://github.com/nautobot/nautobot/pull/72">#72</a> - Removed issue template for "Documentation Change"; use "Bug" or "Feature Request" issue templates instead.</li>
|
|
10616
11059
|
</ul>
|
|
10617
|
-
<h3 id="
|
|
11060
|
+
<h3 id="fixed-in-v100b2">Fixed in v1.0.0b2<a class="headerlink" href="#fixed-in-v100b2" title="Permanent link">¶</a></h3>
|
|
10618
11061
|
<ul>
|
|
10619
11062
|
<li><a href="https://github.com/nautobot/nautobot/pull/41">#41</a> - Incorrect field name in CustomLink Admin page.</li>
|
|
10620
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/45">#45</a> - Incorrect button labels when creating/editing an Interface record.</li>
|
|
@@ -10622,7 +11065,7 @@
|
|
|
10622
11065
|
<li><a href="https://github.com/nautobot/nautobot/issues/81">#81</a> - Unable to change Device rack position after creation.</li>
|
|
10623
11066
|
<li><a href="https://github.com/nautobot/nautobot/issues/93">#93</a> - Bug when setting <code>CACHEOPS_DEFAULTS</code> timeout value to <code>0</code>.</li>
|
|
10624
11067
|
</ul>
|
|
10625
|
-
<h3 id="
|
|
11068
|
+
<h3 id="documentation-in-v100b2">Documentation in v1.0.0b2<a class="headerlink" href="#documentation-in-v100b2" title="Permanent link">¶</a></h3>
|
|
10626
11069
|
<ul>
|
|
10627
11070
|
<li><a href="https://github.com/nautobot/nautobot/issues/35">#35</a> - Documentation for troubleshooting Nautobot's interaction with SELinux.</li>
|
|
10628
11071
|
<li><a href="https://github.com/nautobot/nautobot/pull/36">#36</a> - Broken links to ReadTheDocs pages.</li>
|
|
@@ -10641,7 +11084,7 @@
|
|
|
10641
11084
|
<li><a href="https://github.com/nautobot/nautobot/issues/101">#101</a> - Complete documentation of <code>NAUTOBOT_ROOT</code></li>
|
|
10642
11085
|
<li><a href="https://github.com/nautobot/nautobot/pull/106">#106</a> - Revise deployment docs to use <code>$PATH</code> instead of venv activate</li>
|
|
10643
11086
|
</ul>
|
|
10644
|
-
<h3 id="housekeeeping">Housekeeeping<a class="headerlink" href="#housekeeeping" title="Permanent link">¶</a></h3>
|
|
11087
|
+
<h3 id="housekeeeping-in-v100b2">Housekeeeping in v1.0.0b2<a class="headerlink" href="#housekeeeping-in-v100b2" title="Permanent link">¶</a></h3>
|
|
10645
11088
|
<ul>
|
|
10646
11089
|
<li><a href="https://github.com/nautobot/nautobot/issues/51">#51</a> - Incorrect functioning of "development container" in VSCode integration.</li>
|
|
10647
11090
|
<li><a href="https://github.com/nautobot/nautobot/pull/52">#52</a> - Disabled Poetry's "parallel installation" feature for CI and development builds.</li>
|
|
@@ -10657,7 +11100,7 @@
|
|
|
10657
11100
|
</ul>
|
|
10658
11101
|
<h2 id="v100b1-2021-02-24">v1.0.0b1 (2021-02-24)<a class="headerlink" href="#v100b1-2021-02-24" title="Permanent link">¶</a></h2>
|
|
10659
11102
|
<p>Initial public beta release.</p>
|
|
10660
|
-
<h3 id="
|
|
11103
|
+
<h3 id="fixed-in-v100b1">Fixed in v1.0.0b1<a class="headerlink" href="#fixed-in-v100b1" title="Permanent link">¶</a></h3>
|
|
10661
11104
|
<ul>
|
|
10662
11105
|
<li>Fixed a bug, inherited from NetBox 2.10, in which object permissions were not filtered correctly in the admin interface.</li>
|
|
10663
11106
|
<li>Fixed a bug, inherited from NetBox 2.10, in which the UI would report an exception if the database contains ChangeLog entries that reference a nonexistent ContentType.</li>
|
|
@@ -10805,7 +11248,7 @@
|
|
|
10805
11248
|
</div>
|
|
10806
11249
|
|
|
10807
11250
|
|
|
10808
|
-
<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>
|
|
11251
|
+
<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>
|
|
10809
11252
|
|
|
10810
11253
|
|
|
10811
11254
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|