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
|
|
|
@@ -8204,36 +8648,36 @@
|
|
|
8204
8648
|
<ul class="md-nav__list">
|
|
8205
8649
|
|
|
8206
8650
|
<li class="md-nav__item">
|
|
8207
|
-
<a href="#
|
|
8651
|
+
<a href="#added-in-v229" class="md-nav__link">
|
|
8208
8652
|
<span class="md-ellipsis">
|
|
8209
|
-
Added
|
|
8653
|
+
Added in v2.2.9
|
|
8210
8654
|
</span>
|
|
8211
8655
|
</a>
|
|
8212
8656
|
|
|
8213
8657
|
</li>
|
|
8214
8658
|
|
|
8215
8659
|
<li class="md-nav__item">
|
|
8216
|
-
<a href="#fixed" class="md-nav__link">
|
|
8660
|
+
<a href="#fixed-in-v229" class="md-nav__link">
|
|
8217
8661
|
<span class="md-ellipsis">
|
|
8218
|
-
Fixed
|
|
8662
|
+
Fixed in v2.2.9
|
|
8219
8663
|
</span>
|
|
8220
8664
|
</a>
|
|
8221
8665
|
|
|
8222
8666
|
</li>
|
|
8223
8667
|
|
|
8224
8668
|
<li class="md-nav__item">
|
|
8225
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8669
|
+
<a href="#dependencies-in-v229" class="md-nav__link">
|
|
8226
8670
|
<span class="md-ellipsis">
|
|
8227
|
-
Dependencies
|
|
8671
|
+
Dependencies in v2.2.9
|
|
8228
8672
|
</span>
|
|
8229
8673
|
</a>
|
|
8230
8674
|
|
|
8231
8675
|
</li>
|
|
8232
8676
|
|
|
8233
8677
|
<li class="md-nav__item">
|
|
8234
|
-
<a href="#documentation" class="md-nav__link">
|
|
8678
|
+
<a href="#documentation-in-v229" class="md-nav__link">
|
|
8235
8679
|
<span class="md-ellipsis">
|
|
8236
|
-
Documentation
|
|
8680
|
+
Documentation in v2.2.9
|
|
8237
8681
|
</span>
|
|
8238
8682
|
</a>
|
|
8239
8683
|
|
|
@@ -8255,45 +8699,45 @@
|
|
|
8255
8699
|
<ul class="md-nav__list">
|
|
8256
8700
|
|
|
8257
8701
|
<li class="md-nav__item">
|
|
8258
|
-
<a href="#security" class="md-nav__link">
|
|
8702
|
+
<a href="#security-in-v228" class="md-nav__link">
|
|
8259
8703
|
<span class="md-ellipsis">
|
|
8260
|
-
Security
|
|
8704
|
+
Security in v2.2.8
|
|
8261
8705
|
</span>
|
|
8262
8706
|
</a>
|
|
8263
8707
|
|
|
8264
8708
|
</li>
|
|
8265
8709
|
|
|
8266
8710
|
<li class="md-nav__item">
|
|
8267
|
-
<a href="#
|
|
8711
|
+
<a href="#fixed-in-v228" class="md-nav__link">
|
|
8268
8712
|
<span class="md-ellipsis">
|
|
8269
|
-
Fixed
|
|
8713
|
+
Fixed in v2.2.8
|
|
8270
8714
|
</span>
|
|
8271
8715
|
</a>
|
|
8272
8716
|
|
|
8273
8717
|
</li>
|
|
8274
8718
|
|
|
8275
8719
|
<li class="md-nav__item">
|
|
8276
|
-
<a href="#
|
|
8720
|
+
<a href="#dependencies-in-v228" class="md-nav__link">
|
|
8277
8721
|
<span class="md-ellipsis">
|
|
8278
|
-
Dependencies
|
|
8722
|
+
Dependencies in v2.2.8
|
|
8279
8723
|
</span>
|
|
8280
8724
|
</a>
|
|
8281
8725
|
|
|
8282
8726
|
</li>
|
|
8283
8727
|
|
|
8284
8728
|
<li class="md-nav__item">
|
|
8285
|
-
<a href="#
|
|
8729
|
+
<a href="#documentation-in-v228" class="md-nav__link">
|
|
8286
8730
|
<span class="md-ellipsis">
|
|
8287
|
-
Documentation
|
|
8731
|
+
Documentation in v2.2.8
|
|
8288
8732
|
</span>
|
|
8289
8733
|
</a>
|
|
8290
8734
|
|
|
8291
8735
|
</li>
|
|
8292
8736
|
|
|
8293
8737
|
<li class="md-nav__item">
|
|
8294
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8738
|
+
<a href="#housekeeping-in-v228" class="md-nav__link">
|
|
8295
8739
|
<span class="md-ellipsis">
|
|
8296
|
-
Housekeeping
|
|
8740
|
+
Housekeeping in v2.2.8
|
|
8297
8741
|
</span>
|
|
8298
8742
|
</a>
|
|
8299
8743
|
|
|
@@ -8315,36 +8759,36 @@
|
|
|
8315
8759
|
<ul class="md-nav__list">
|
|
8316
8760
|
|
|
8317
8761
|
<li class="md-nav__item">
|
|
8318
|
-
<a href="#
|
|
8762
|
+
<a href="#security-in-v227" class="md-nav__link">
|
|
8319
8763
|
<span class="md-ellipsis">
|
|
8320
|
-
Security
|
|
8764
|
+
Security in v2.2.7
|
|
8321
8765
|
</span>
|
|
8322
8766
|
</a>
|
|
8323
8767
|
|
|
8324
8768
|
</li>
|
|
8325
8769
|
|
|
8326
8770
|
<li class="md-nav__item">
|
|
8327
|
-
<a href="#
|
|
8771
|
+
<a href="#fixed-in-v227" class="md-nav__link">
|
|
8328
8772
|
<span class="md-ellipsis">
|
|
8329
|
-
Fixed
|
|
8773
|
+
Fixed in v2.2.7
|
|
8330
8774
|
</span>
|
|
8331
8775
|
</a>
|
|
8332
8776
|
|
|
8333
8777
|
</li>
|
|
8334
8778
|
|
|
8335
8779
|
<li class="md-nav__item">
|
|
8336
|
-
<a href="#
|
|
8780
|
+
<a href="#dependencies-in-v227" class="md-nav__link">
|
|
8337
8781
|
<span class="md-ellipsis">
|
|
8338
|
-
Dependencies
|
|
8782
|
+
Dependencies in v2.2.7
|
|
8339
8783
|
</span>
|
|
8340
8784
|
</a>
|
|
8341
8785
|
|
|
8342
8786
|
</li>
|
|
8343
8787
|
|
|
8344
8788
|
<li class="md-nav__item">
|
|
8345
|
-
<a href="#
|
|
8789
|
+
<a href="#housekeeping-in-v227" class="md-nav__link">
|
|
8346
8790
|
<span class="md-ellipsis">
|
|
8347
|
-
Housekeeping
|
|
8791
|
+
Housekeeping in v2.2.7
|
|
8348
8792
|
</span>
|
|
8349
8793
|
</a>
|
|
8350
8794
|
|
|
@@ -8366,54 +8810,54 @@
|
|
|
8366
8810
|
<ul class="md-nav__list">
|
|
8367
8811
|
|
|
8368
8812
|
<li class="md-nav__item">
|
|
8369
|
-
<a href="#
|
|
8813
|
+
<a href="#security-in-v226" class="md-nav__link">
|
|
8370
8814
|
<span class="md-ellipsis">
|
|
8371
|
-
Security
|
|
8815
|
+
Security in v2.2.6
|
|
8372
8816
|
</span>
|
|
8373
8817
|
</a>
|
|
8374
8818
|
|
|
8375
8819
|
</li>
|
|
8376
8820
|
|
|
8377
8821
|
<li class="md-nav__item">
|
|
8378
|
-
<a href="#
|
|
8822
|
+
<a href="#added-in-v226" class="md-nav__link">
|
|
8379
8823
|
<span class="md-ellipsis">
|
|
8380
|
-
Added
|
|
8824
|
+
Added in v2.2.6
|
|
8381
8825
|
</span>
|
|
8382
8826
|
</a>
|
|
8383
8827
|
|
|
8384
8828
|
</li>
|
|
8385
8829
|
|
|
8386
8830
|
<li class="md-nav__item">
|
|
8387
|
-
<a href="#
|
|
8831
|
+
<a href="#changed-in-v226" class="md-nav__link">
|
|
8388
8832
|
<span class="md-ellipsis">
|
|
8389
|
-
Changed
|
|
8833
|
+
Changed in v2.2.6
|
|
8390
8834
|
</span>
|
|
8391
8835
|
</a>
|
|
8392
8836
|
|
|
8393
8837
|
</li>
|
|
8394
8838
|
|
|
8395
8839
|
<li class="md-nav__item">
|
|
8396
|
-
<a href="#
|
|
8840
|
+
<a href="#fixed-in-v226" class="md-nav__link">
|
|
8397
8841
|
<span class="md-ellipsis">
|
|
8398
|
-
Fixed
|
|
8842
|
+
Fixed in v2.2.6
|
|
8399
8843
|
</span>
|
|
8400
8844
|
</a>
|
|
8401
8845
|
|
|
8402
8846
|
</li>
|
|
8403
8847
|
|
|
8404
8848
|
<li class="md-nav__item">
|
|
8405
|
-
<a href="#
|
|
8849
|
+
<a href="#documentation-in-v226" class="md-nav__link">
|
|
8406
8850
|
<span class="md-ellipsis">
|
|
8407
|
-
Documentation
|
|
8851
|
+
Documentation in v2.2.6
|
|
8408
8852
|
</span>
|
|
8409
8853
|
</a>
|
|
8410
8854
|
|
|
8411
8855
|
</li>
|
|
8412
8856
|
|
|
8413
8857
|
<li class="md-nav__item">
|
|
8414
|
-
<a href="#
|
|
8858
|
+
<a href="#housekeeping-in-v226" class="md-nav__link">
|
|
8415
8859
|
<span class="md-ellipsis">
|
|
8416
|
-
Housekeeping
|
|
8860
|
+
Housekeeping in v2.2.6
|
|
8417
8861
|
</span>
|
|
8418
8862
|
</a>
|
|
8419
8863
|
|
|
@@ -8435,54 +8879,54 @@
|
|
|
8435
8879
|
<ul class="md-nav__list">
|
|
8436
8880
|
|
|
8437
8881
|
<li class="md-nav__item">
|
|
8438
|
-
<a href="#
|
|
8882
|
+
<a href="#security-in-v225" class="md-nav__link">
|
|
8439
8883
|
<span class="md-ellipsis">
|
|
8440
|
-
Security
|
|
8884
|
+
Security in v2.2.5
|
|
8441
8885
|
</span>
|
|
8442
8886
|
</a>
|
|
8443
8887
|
|
|
8444
8888
|
</li>
|
|
8445
8889
|
|
|
8446
8890
|
<li class="md-nav__item">
|
|
8447
|
-
<a href="#
|
|
8891
|
+
<a href="#added-in-v225" class="md-nav__link">
|
|
8448
8892
|
<span class="md-ellipsis">
|
|
8449
|
-
Added
|
|
8893
|
+
Added in v2.2.5
|
|
8450
8894
|
</span>
|
|
8451
8895
|
</a>
|
|
8452
8896
|
|
|
8453
8897
|
</li>
|
|
8454
8898
|
|
|
8455
8899
|
<li class="md-nav__item">
|
|
8456
|
-
<a href="#removed" class="md-nav__link">
|
|
8900
|
+
<a href="#removed-in-v225" class="md-nav__link">
|
|
8457
8901
|
<span class="md-ellipsis">
|
|
8458
|
-
Removed
|
|
8902
|
+
Removed in v2.2.5
|
|
8459
8903
|
</span>
|
|
8460
8904
|
</a>
|
|
8461
8905
|
|
|
8462
8906
|
</li>
|
|
8463
8907
|
|
|
8464
8908
|
<li class="md-nav__item">
|
|
8465
|
-
<a href="#
|
|
8909
|
+
<a href="#fixed-in-v225" class="md-nav__link">
|
|
8466
8910
|
<span class="md-ellipsis">
|
|
8467
|
-
Fixed
|
|
8911
|
+
Fixed in v2.2.5
|
|
8468
8912
|
</span>
|
|
8469
8913
|
</a>
|
|
8470
8914
|
|
|
8471
8915
|
</li>
|
|
8472
8916
|
|
|
8473
8917
|
<li class="md-nav__item">
|
|
8474
|
-
<a href="#
|
|
8918
|
+
<a href="#documentation-in-v225" class="md-nav__link">
|
|
8475
8919
|
<span class="md-ellipsis">
|
|
8476
|
-
Documentation
|
|
8920
|
+
Documentation in v2.2.5
|
|
8477
8921
|
</span>
|
|
8478
8922
|
</a>
|
|
8479
8923
|
|
|
8480
8924
|
</li>
|
|
8481
8925
|
|
|
8482
8926
|
<li class="md-nav__item">
|
|
8483
|
-
<a href="#
|
|
8927
|
+
<a href="#housekeeping-in-v225" class="md-nav__link">
|
|
8484
8928
|
<span class="md-ellipsis">
|
|
8485
|
-
Housekeeping
|
|
8929
|
+
Housekeeping in v2.2.5
|
|
8486
8930
|
</span>
|
|
8487
8931
|
</a>
|
|
8488
8932
|
|
|
@@ -8504,45 +8948,45 @@
|
|
|
8504
8948
|
<ul class="md-nav__list">
|
|
8505
8949
|
|
|
8506
8950
|
<li class="md-nav__item">
|
|
8507
|
-
<a href="#
|
|
8951
|
+
<a href="#security-in-v224" class="md-nav__link">
|
|
8508
8952
|
<span class="md-ellipsis">
|
|
8509
|
-
Security
|
|
8953
|
+
Security in v2.2.4
|
|
8510
8954
|
</span>
|
|
8511
8955
|
</a>
|
|
8512
8956
|
|
|
8513
8957
|
</li>
|
|
8514
8958
|
|
|
8515
8959
|
<li class="md-nav__item">
|
|
8516
|
-
<a href="#
|
|
8960
|
+
<a href="#added-in-v224" class="md-nav__link">
|
|
8517
8961
|
<span class="md-ellipsis">
|
|
8518
|
-
Added
|
|
8962
|
+
Added in v2.2.4
|
|
8519
8963
|
</span>
|
|
8520
8964
|
</a>
|
|
8521
8965
|
|
|
8522
8966
|
</li>
|
|
8523
8967
|
|
|
8524
8968
|
<li class="md-nav__item">
|
|
8525
|
-
<a href="#
|
|
8969
|
+
<a href="#fixed-in-v224" class="md-nav__link">
|
|
8526
8970
|
<span class="md-ellipsis">
|
|
8527
|
-
Fixed
|
|
8971
|
+
Fixed in v2.2.4
|
|
8528
8972
|
</span>
|
|
8529
8973
|
</a>
|
|
8530
8974
|
|
|
8531
8975
|
</li>
|
|
8532
8976
|
|
|
8533
8977
|
<li class="md-nav__item">
|
|
8534
|
-
<a href="#
|
|
8978
|
+
<a href="#documentation-in-v224" class="md-nav__link">
|
|
8535
8979
|
<span class="md-ellipsis">
|
|
8536
|
-
Documentation
|
|
8980
|
+
Documentation in v2.2.4
|
|
8537
8981
|
</span>
|
|
8538
8982
|
</a>
|
|
8539
8983
|
|
|
8540
8984
|
</li>
|
|
8541
8985
|
|
|
8542
8986
|
<li class="md-nav__item">
|
|
8543
|
-
<a href="#
|
|
8987
|
+
<a href="#housekeeping-in-v224" class="md-nav__link">
|
|
8544
8988
|
<span class="md-ellipsis">
|
|
8545
|
-
Housekeeping
|
|
8989
|
+
Housekeeping in v2.2.4
|
|
8546
8990
|
</span>
|
|
8547
8991
|
</a>
|
|
8548
8992
|
|
|
@@ -8564,54 +9008,54 @@
|
|
|
8564
9008
|
<ul class="md-nav__list">
|
|
8565
9009
|
|
|
8566
9010
|
<li class="md-nav__item">
|
|
8567
|
-
<a href="#
|
|
9011
|
+
<a href="#security-in-v223" class="md-nav__link">
|
|
8568
9012
|
<span class="md-ellipsis">
|
|
8569
|
-
Security
|
|
9013
|
+
Security in v2.2.3
|
|
8570
9014
|
</span>
|
|
8571
9015
|
</a>
|
|
8572
9016
|
|
|
8573
9017
|
</li>
|
|
8574
9018
|
|
|
8575
9019
|
<li class="md-nav__item">
|
|
8576
|
-
<a href="#
|
|
9020
|
+
<a href="#added-in-v223" class="md-nav__link">
|
|
8577
9021
|
<span class="md-ellipsis">
|
|
8578
|
-
Added
|
|
9022
|
+
Added in v2.2.3
|
|
8579
9023
|
</span>
|
|
8580
9024
|
</a>
|
|
8581
9025
|
|
|
8582
9026
|
</li>
|
|
8583
9027
|
|
|
8584
9028
|
<li class="md-nav__item">
|
|
8585
|
-
<a href="#
|
|
9029
|
+
<a href="#changed-in-v223" class="md-nav__link">
|
|
8586
9030
|
<span class="md-ellipsis">
|
|
8587
|
-
Changed
|
|
9031
|
+
Changed in v2.2.3
|
|
8588
9032
|
</span>
|
|
8589
9033
|
</a>
|
|
8590
9034
|
|
|
8591
9035
|
</li>
|
|
8592
9036
|
|
|
8593
9037
|
<li class="md-nav__item">
|
|
8594
|
-
<a href="#
|
|
9038
|
+
<a href="#fixed-in-v223" class="md-nav__link">
|
|
8595
9039
|
<span class="md-ellipsis">
|
|
8596
|
-
Fixed
|
|
9040
|
+
Fixed in v2.2.3
|
|
8597
9041
|
</span>
|
|
8598
9042
|
</a>
|
|
8599
9043
|
|
|
8600
9044
|
</li>
|
|
8601
9045
|
|
|
8602
9046
|
<li class="md-nav__item">
|
|
8603
|
-
<a href="#
|
|
9047
|
+
<a href="#documentation-in-v223" class="md-nav__link">
|
|
8604
9048
|
<span class="md-ellipsis">
|
|
8605
|
-
Documentation
|
|
9049
|
+
Documentation in v2.2.3
|
|
8606
9050
|
</span>
|
|
8607
9051
|
</a>
|
|
8608
9052
|
|
|
8609
9053
|
</li>
|
|
8610
9054
|
|
|
8611
9055
|
<li class="md-nav__item">
|
|
8612
|
-
<a href="#
|
|
9056
|
+
<a href="#housekeeping-in-v223" class="md-nav__link">
|
|
8613
9057
|
<span class="md-ellipsis">
|
|
8614
|
-
Housekeeping
|
|
9058
|
+
Housekeeping in v2.2.3
|
|
8615
9059
|
</span>
|
|
8616
9060
|
</a>
|
|
8617
9061
|
|
|
@@ -8633,54 +9077,54 @@
|
|
|
8633
9077
|
<ul class="md-nav__list">
|
|
8634
9078
|
|
|
8635
9079
|
<li class="md-nav__item">
|
|
8636
|
-
<a href="#
|
|
9080
|
+
<a href="#security-in-v222" class="md-nav__link">
|
|
8637
9081
|
<span class="md-ellipsis">
|
|
8638
|
-
Security
|
|
9082
|
+
Security in v2.2.2
|
|
8639
9083
|
</span>
|
|
8640
9084
|
</a>
|
|
8641
9085
|
|
|
8642
9086
|
</li>
|
|
8643
9087
|
|
|
8644
9088
|
<li class="md-nav__item">
|
|
8645
|
-
<a href="#
|
|
9089
|
+
<a href="#added-in-v222" class="md-nav__link">
|
|
8646
9090
|
<span class="md-ellipsis">
|
|
8647
|
-
Added
|
|
9091
|
+
Added in v2.2.2
|
|
8648
9092
|
</span>
|
|
8649
9093
|
</a>
|
|
8650
9094
|
|
|
8651
9095
|
</li>
|
|
8652
9096
|
|
|
8653
9097
|
<li class="md-nav__item">
|
|
8654
|
-
<a href="#
|
|
9098
|
+
<a href="#changed-in-v222" class="md-nav__link">
|
|
8655
9099
|
<span class="md-ellipsis">
|
|
8656
|
-
Changed
|
|
9100
|
+
Changed in v2.2.2
|
|
8657
9101
|
</span>
|
|
8658
9102
|
</a>
|
|
8659
9103
|
|
|
8660
9104
|
</li>
|
|
8661
9105
|
|
|
8662
9106
|
<li class="md-nav__item">
|
|
8663
|
-
<a href="#
|
|
9107
|
+
<a href="#fixed-in-v222" class="md-nav__link">
|
|
8664
9108
|
<span class="md-ellipsis">
|
|
8665
|
-
Fixed
|
|
9109
|
+
Fixed in v2.2.2
|
|
8666
9110
|
</span>
|
|
8667
9111
|
</a>
|
|
8668
9112
|
|
|
8669
9113
|
</li>
|
|
8670
9114
|
|
|
8671
9115
|
<li class="md-nav__item">
|
|
8672
|
-
<a href="#
|
|
9116
|
+
<a href="#documentation-in-v222" class="md-nav__link">
|
|
8673
9117
|
<span class="md-ellipsis">
|
|
8674
|
-
Documentation
|
|
9118
|
+
Documentation in v2.2.2
|
|
8675
9119
|
</span>
|
|
8676
9120
|
</a>
|
|
8677
9121
|
|
|
8678
9122
|
</li>
|
|
8679
9123
|
|
|
8680
9124
|
<li class="md-nav__item">
|
|
8681
|
-
<a href="#
|
|
9125
|
+
<a href="#housekeeping-in-v222" class="md-nav__link">
|
|
8682
9126
|
<span class="md-ellipsis">
|
|
8683
|
-
Housekeeping
|
|
9127
|
+
Housekeeping in v2.2.2
|
|
8684
9128
|
</span>
|
|
8685
9129
|
</a>
|
|
8686
9130
|
|
|
@@ -8702,63 +9146,63 @@
|
|
|
8702
9146
|
<ul class="md-nav__list">
|
|
8703
9147
|
|
|
8704
9148
|
<li class="md-nav__item">
|
|
8705
|
-
<a href="#
|
|
9149
|
+
<a href="#security-in-v221" class="md-nav__link">
|
|
8706
9150
|
<span class="md-ellipsis">
|
|
8707
|
-
Security
|
|
9151
|
+
Security in v2.2.1
|
|
8708
9152
|
</span>
|
|
8709
9153
|
</a>
|
|
8710
9154
|
|
|
8711
9155
|
</li>
|
|
8712
9156
|
|
|
8713
9157
|
<li class="md-nav__item">
|
|
8714
|
-
<a href="#
|
|
9158
|
+
<a href="#added-in-v221" class="md-nav__link">
|
|
8715
9159
|
<span class="md-ellipsis">
|
|
8716
|
-
Added
|
|
9160
|
+
Added in v2.2.1
|
|
8717
9161
|
</span>
|
|
8718
9162
|
</a>
|
|
8719
9163
|
|
|
8720
9164
|
</li>
|
|
8721
9165
|
|
|
8722
9166
|
<li class="md-nav__item">
|
|
8723
|
-
<a href="#
|
|
9167
|
+
<a href="#changed-in-v221" class="md-nav__link">
|
|
8724
9168
|
<span class="md-ellipsis">
|
|
8725
|
-
Changed
|
|
9169
|
+
Changed in v2.2.1
|
|
8726
9170
|
</span>
|
|
8727
9171
|
</a>
|
|
8728
9172
|
|
|
8729
9173
|
</li>
|
|
8730
9174
|
|
|
8731
9175
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#
|
|
9176
|
+
<a href="#fixed-in-v221" class="md-nav__link">
|
|
8733
9177
|
<span class="md-ellipsis">
|
|
8734
|
-
Fixed
|
|
9178
|
+
Fixed in v2.2.1
|
|
8735
9179
|
</span>
|
|
8736
9180
|
</a>
|
|
8737
9181
|
|
|
8738
9182
|
</li>
|
|
8739
9183
|
|
|
8740
9184
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#
|
|
9185
|
+
<a href="#dependencies-in-v221" class="md-nav__link">
|
|
8742
9186
|
<span class="md-ellipsis">
|
|
8743
|
-
Dependencies
|
|
9187
|
+
Dependencies in v2.2.1
|
|
8744
9188
|
</span>
|
|
8745
9189
|
</a>
|
|
8746
9190
|
|
|
8747
9191
|
</li>
|
|
8748
9192
|
|
|
8749
9193
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#
|
|
9194
|
+
<a href="#documentation-in-v221" class="md-nav__link">
|
|
8751
9195
|
<span class="md-ellipsis">
|
|
8752
|
-
Documentation
|
|
9196
|
+
Documentation in v2.2.1
|
|
8753
9197
|
</span>
|
|
8754
9198
|
</a>
|
|
8755
9199
|
|
|
8756
9200
|
</li>
|
|
8757
9201
|
|
|
8758
9202
|
<li class="md-nav__item">
|
|
8759
|
-
<a href="#
|
|
9203
|
+
<a href="#housekeeping-in-v221" class="md-nav__link">
|
|
8760
9204
|
<span class="md-ellipsis">
|
|
8761
|
-
Housekeeping
|
|
9205
|
+
Housekeeping in v2.2.1
|
|
8762
9206
|
</span>
|
|
8763
9207
|
</a>
|
|
8764
9208
|
|
|
@@ -8780,45 +9224,45 @@
|
|
|
8780
9224
|
<ul class="md-nav__list">
|
|
8781
9225
|
|
|
8782
9226
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
9227
|
+
<a href="#added-in-v220" class="md-nav__link">
|
|
8784
9228
|
<span class="md-ellipsis">
|
|
8785
|
-
Added
|
|
9229
|
+
Added in v2.2.0
|
|
8786
9230
|
</span>
|
|
8787
9231
|
</a>
|
|
8788
9232
|
|
|
8789
9233
|
</li>
|
|
8790
9234
|
|
|
8791
9235
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
9236
|
+
<a href="#changed-in-v220" class="md-nav__link">
|
|
8793
9237
|
<span class="md-ellipsis">
|
|
8794
|
-
Changed
|
|
9238
|
+
Changed in v2.2.0
|
|
8795
9239
|
</span>
|
|
8796
9240
|
</a>
|
|
8797
9241
|
|
|
8798
9242
|
</li>
|
|
8799
9243
|
|
|
8800
9244
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
9245
|
+
<a href="#fixed-in-v220" class="md-nav__link">
|
|
8802
9246
|
<span class="md-ellipsis">
|
|
8803
|
-
Fixed
|
|
9247
|
+
Fixed in v2.2.0
|
|
8804
9248
|
</span>
|
|
8805
9249
|
</a>
|
|
8806
9250
|
|
|
8807
9251
|
</li>
|
|
8808
9252
|
|
|
8809
9253
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
9254
|
+
<a href="#dependencies-in-v220" class="md-nav__link">
|
|
8811
9255
|
<span class="md-ellipsis">
|
|
8812
|
-
Dependencies
|
|
9256
|
+
Dependencies in v2.2.0
|
|
8813
9257
|
</span>
|
|
8814
9258
|
</a>
|
|
8815
9259
|
|
|
8816
9260
|
</li>
|
|
8817
9261
|
|
|
8818
9262
|
<li class="md-nav__item">
|
|
8819
|
-
<a href="#
|
|
9263
|
+
<a href="#housekeeping-in-v220" class="md-nav__link">
|
|
8820
9264
|
<span class="md-ellipsis">
|
|
8821
|
-
Housekeeping
|
|
9265
|
+
Housekeeping in v2.2.0
|
|
8822
9266
|
</span>
|
|
8823
9267
|
</a>
|
|
8824
9268
|
|
|
@@ -8840,72 +9284,72 @@
|
|
|
8840
9284
|
<ul class="md-nav__list">
|
|
8841
9285
|
|
|
8842
9286
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#
|
|
9287
|
+
<a href="#added-in-v220-beta1" class="md-nav__link">
|
|
8844
9288
|
<span class="md-ellipsis">
|
|
8845
|
-
Added
|
|
9289
|
+
Added in v2.2.0-beta.1
|
|
8846
9290
|
</span>
|
|
8847
9291
|
</a>
|
|
8848
9292
|
|
|
8849
9293
|
</li>
|
|
8850
9294
|
|
|
8851
9295
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
9296
|
+
<a href="#changed-in-v220-beta1" class="md-nav__link">
|
|
8853
9297
|
<span class="md-ellipsis">
|
|
8854
|
-
Changed
|
|
9298
|
+
Changed in v2.2.0-beta.1
|
|
8855
9299
|
</span>
|
|
8856
9300
|
</a>
|
|
8857
9301
|
|
|
8858
9302
|
</li>
|
|
8859
9303
|
|
|
8860
9304
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#deprecated" class="md-nav__link">
|
|
9305
|
+
<a href="#deprecated-in-v220-beta1" class="md-nav__link">
|
|
8862
9306
|
<span class="md-ellipsis">
|
|
8863
|
-
Deprecated
|
|
9307
|
+
Deprecated in v2.2.0-beta.1
|
|
8864
9308
|
</span>
|
|
8865
9309
|
</a>
|
|
8866
9310
|
|
|
8867
9311
|
</li>
|
|
8868
9312
|
|
|
8869
9313
|
<li class="md-nav__item">
|
|
8870
|
-
<a href="#
|
|
9314
|
+
<a href="#removed-in-v220-beta1" class="md-nav__link">
|
|
8871
9315
|
<span class="md-ellipsis">
|
|
8872
|
-
Removed
|
|
9316
|
+
Removed in v2.2.0-beta.1
|
|
8873
9317
|
</span>
|
|
8874
9318
|
</a>
|
|
8875
9319
|
|
|
8876
9320
|
</li>
|
|
8877
9321
|
|
|
8878
9322
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#
|
|
9323
|
+
<a href="#fixed-in-v220-beta1" class="md-nav__link">
|
|
8880
9324
|
<span class="md-ellipsis">
|
|
8881
|
-
Fixed
|
|
9325
|
+
Fixed in v2.2.0-beta.1
|
|
8882
9326
|
</span>
|
|
8883
9327
|
</a>
|
|
8884
9328
|
|
|
8885
9329
|
</li>
|
|
8886
9330
|
|
|
8887
9331
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
9332
|
+
<a href="#dependencies-in-v220-beta1" class="md-nav__link">
|
|
8889
9333
|
<span class="md-ellipsis">
|
|
8890
|
-
Dependencies
|
|
9334
|
+
Dependencies in v2.2.0-beta.1
|
|
8891
9335
|
</span>
|
|
8892
9336
|
</a>
|
|
8893
9337
|
|
|
8894
9338
|
</li>
|
|
8895
9339
|
|
|
8896
9340
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#
|
|
9341
|
+
<a href="#documentation-in-v220-beta1" class="md-nav__link">
|
|
8898
9342
|
<span class="md-ellipsis">
|
|
8899
|
-
Documentation
|
|
9343
|
+
Documentation in v2.2.0-beta.1
|
|
8900
9344
|
</span>
|
|
8901
9345
|
</a>
|
|
8902
9346
|
|
|
8903
9347
|
</li>
|
|
8904
9348
|
|
|
8905
9349
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#
|
|
9350
|
+
<a href="#housekeeping-in-v220-beta1" class="md-nav__link">
|
|
8907
9351
|
<span class="md-ellipsis">
|
|
8908
|
-
Housekeeping
|
|
9352
|
+
Housekeeping in v2.2.0-beta.1
|
|
8909
9353
|
</span>
|
|
8910
9354
|
</a>
|
|
8911
9355
|
|
|
@@ -9622,36 +10066,36 @@
|
|
|
9622
10066
|
<ul class="md-nav__list">
|
|
9623
10067
|
|
|
9624
10068
|
<li class="md-nav__item">
|
|
9625
|
-
<a href="#
|
|
10069
|
+
<a href="#added-in-v229" class="md-nav__link">
|
|
9626
10070
|
<span class="md-ellipsis">
|
|
9627
|
-
Added
|
|
10071
|
+
Added in v2.2.9
|
|
9628
10072
|
</span>
|
|
9629
10073
|
</a>
|
|
9630
10074
|
|
|
9631
10075
|
</li>
|
|
9632
10076
|
|
|
9633
10077
|
<li class="md-nav__item">
|
|
9634
|
-
<a href="#fixed" class="md-nav__link">
|
|
10078
|
+
<a href="#fixed-in-v229" class="md-nav__link">
|
|
9635
10079
|
<span class="md-ellipsis">
|
|
9636
|
-
Fixed
|
|
10080
|
+
Fixed in v2.2.9
|
|
9637
10081
|
</span>
|
|
9638
10082
|
</a>
|
|
9639
10083
|
|
|
9640
10084
|
</li>
|
|
9641
10085
|
|
|
9642
10086
|
<li class="md-nav__item">
|
|
9643
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10087
|
+
<a href="#dependencies-in-v229" class="md-nav__link">
|
|
9644
10088
|
<span class="md-ellipsis">
|
|
9645
|
-
Dependencies
|
|
10089
|
+
Dependencies in v2.2.9
|
|
9646
10090
|
</span>
|
|
9647
10091
|
</a>
|
|
9648
10092
|
|
|
9649
10093
|
</li>
|
|
9650
10094
|
|
|
9651
10095
|
<li class="md-nav__item">
|
|
9652
|
-
<a href="#documentation" class="md-nav__link">
|
|
10096
|
+
<a href="#documentation-in-v229" class="md-nav__link">
|
|
9653
10097
|
<span class="md-ellipsis">
|
|
9654
|
-
Documentation
|
|
10098
|
+
Documentation in v2.2.9
|
|
9655
10099
|
</span>
|
|
9656
10100
|
</a>
|
|
9657
10101
|
|
|
@@ -9673,45 +10117,45 @@
|
|
|
9673
10117
|
<ul class="md-nav__list">
|
|
9674
10118
|
|
|
9675
10119
|
<li class="md-nav__item">
|
|
9676
|
-
<a href="#security" class="md-nav__link">
|
|
10120
|
+
<a href="#security-in-v228" class="md-nav__link">
|
|
9677
10121
|
<span class="md-ellipsis">
|
|
9678
|
-
Security
|
|
10122
|
+
Security in v2.2.8
|
|
9679
10123
|
</span>
|
|
9680
10124
|
</a>
|
|
9681
10125
|
|
|
9682
10126
|
</li>
|
|
9683
10127
|
|
|
9684
10128
|
<li class="md-nav__item">
|
|
9685
|
-
<a href="#
|
|
10129
|
+
<a href="#fixed-in-v228" class="md-nav__link">
|
|
9686
10130
|
<span class="md-ellipsis">
|
|
9687
|
-
Fixed
|
|
10131
|
+
Fixed in v2.2.8
|
|
9688
10132
|
</span>
|
|
9689
10133
|
</a>
|
|
9690
10134
|
|
|
9691
10135
|
</li>
|
|
9692
10136
|
|
|
9693
10137
|
<li class="md-nav__item">
|
|
9694
|
-
<a href="#
|
|
10138
|
+
<a href="#dependencies-in-v228" class="md-nav__link">
|
|
9695
10139
|
<span class="md-ellipsis">
|
|
9696
|
-
Dependencies
|
|
10140
|
+
Dependencies in v2.2.8
|
|
9697
10141
|
</span>
|
|
9698
10142
|
</a>
|
|
9699
10143
|
|
|
9700
10144
|
</li>
|
|
9701
10145
|
|
|
9702
10146
|
<li class="md-nav__item">
|
|
9703
|
-
<a href="#
|
|
10147
|
+
<a href="#documentation-in-v228" class="md-nav__link">
|
|
9704
10148
|
<span class="md-ellipsis">
|
|
9705
|
-
Documentation
|
|
10149
|
+
Documentation in v2.2.8
|
|
9706
10150
|
</span>
|
|
9707
10151
|
</a>
|
|
9708
10152
|
|
|
9709
10153
|
</li>
|
|
9710
10154
|
|
|
9711
10155
|
<li class="md-nav__item">
|
|
9712
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10156
|
+
<a href="#housekeeping-in-v228" class="md-nav__link">
|
|
9713
10157
|
<span class="md-ellipsis">
|
|
9714
|
-
Housekeeping
|
|
10158
|
+
Housekeeping in v2.2.8
|
|
9715
10159
|
</span>
|
|
9716
10160
|
</a>
|
|
9717
10161
|
|
|
@@ -9733,36 +10177,36 @@
|
|
|
9733
10177
|
<ul class="md-nav__list">
|
|
9734
10178
|
|
|
9735
10179
|
<li class="md-nav__item">
|
|
9736
|
-
<a href="#
|
|
10180
|
+
<a href="#security-in-v227" class="md-nav__link">
|
|
9737
10181
|
<span class="md-ellipsis">
|
|
9738
|
-
Security
|
|
10182
|
+
Security in v2.2.7
|
|
9739
10183
|
</span>
|
|
9740
10184
|
</a>
|
|
9741
10185
|
|
|
9742
10186
|
</li>
|
|
9743
10187
|
|
|
9744
10188
|
<li class="md-nav__item">
|
|
9745
|
-
<a href="#
|
|
10189
|
+
<a href="#fixed-in-v227" class="md-nav__link">
|
|
9746
10190
|
<span class="md-ellipsis">
|
|
9747
|
-
Fixed
|
|
10191
|
+
Fixed in v2.2.7
|
|
9748
10192
|
</span>
|
|
9749
10193
|
</a>
|
|
9750
10194
|
|
|
9751
10195
|
</li>
|
|
9752
10196
|
|
|
9753
10197
|
<li class="md-nav__item">
|
|
9754
|
-
<a href="#
|
|
10198
|
+
<a href="#dependencies-in-v227" class="md-nav__link">
|
|
9755
10199
|
<span class="md-ellipsis">
|
|
9756
|
-
Dependencies
|
|
10200
|
+
Dependencies in v2.2.7
|
|
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="#housekeeping-in-v227" class="md-nav__link">
|
|
9764
10208
|
<span class="md-ellipsis">
|
|
9765
|
-
Housekeeping
|
|
10209
|
+
Housekeeping in v2.2.7
|
|
9766
10210
|
</span>
|
|
9767
10211
|
</a>
|
|
9768
10212
|
|
|
@@ -9784,54 +10228,54 @@
|
|
|
9784
10228
|
<ul class="md-nav__list">
|
|
9785
10229
|
|
|
9786
10230
|
<li class="md-nav__item">
|
|
9787
|
-
<a href="#
|
|
10231
|
+
<a href="#security-in-v226" class="md-nav__link">
|
|
9788
10232
|
<span class="md-ellipsis">
|
|
9789
|
-
Security
|
|
10233
|
+
Security in v2.2.6
|
|
9790
10234
|
</span>
|
|
9791
10235
|
</a>
|
|
9792
10236
|
|
|
9793
10237
|
</li>
|
|
9794
10238
|
|
|
9795
10239
|
<li class="md-nav__item">
|
|
9796
|
-
<a href="#
|
|
10240
|
+
<a href="#added-in-v226" class="md-nav__link">
|
|
9797
10241
|
<span class="md-ellipsis">
|
|
9798
|
-
Added
|
|
10242
|
+
Added in v2.2.6
|
|
9799
10243
|
</span>
|
|
9800
10244
|
</a>
|
|
9801
10245
|
|
|
9802
10246
|
</li>
|
|
9803
10247
|
|
|
9804
10248
|
<li class="md-nav__item">
|
|
9805
|
-
<a href="#
|
|
10249
|
+
<a href="#changed-in-v226" class="md-nav__link">
|
|
9806
10250
|
<span class="md-ellipsis">
|
|
9807
|
-
Changed
|
|
10251
|
+
Changed in v2.2.6
|
|
9808
10252
|
</span>
|
|
9809
10253
|
</a>
|
|
9810
10254
|
|
|
9811
10255
|
</li>
|
|
9812
10256
|
|
|
9813
10257
|
<li class="md-nav__item">
|
|
9814
|
-
<a href="#
|
|
10258
|
+
<a href="#fixed-in-v226" class="md-nav__link">
|
|
9815
10259
|
<span class="md-ellipsis">
|
|
9816
|
-
Fixed
|
|
10260
|
+
Fixed in v2.2.6
|
|
9817
10261
|
</span>
|
|
9818
10262
|
</a>
|
|
9819
10263
|
|
|
9820
10264
|
</li>
|
|
9821
10265
|
|
|
9822
10266
|
<li class="md-nav__item">
|
|
9823
|
-
<a href="#
|
|
10267
|
+
<a href="#documentation-in-v226" class="md-nav__link">
|
|
9824
10268
|
<span class="md-ellipsis">
|
|
9825
|
-
Documentation
|
|
10269
|
+
Documentation in v2.2.6
|
|
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="#housekeeping-in-v226" class="md-nav__link">
|
|
9833
10277
|
<span class="md-ellipsis">
|
|
9834
|
-
Housekeeping
|
|
10278
|
+
Housekeeping in v2.2.6
|
|
9835
10279
|
</span>
|
|
9836
10280
|
</a>
|
|
9837
10281
|
|
|
@@ -9853,54 +10297,54 @@
|
|
|
9853
10297
|
<ul class="md-nav__list">
|
|
9854
10298
|
|
|
9855
10299
|
<li class="md-nav__item">
|
|
9856
|
-
<a href="#
|
|
10300
|
+
<a href="#security-in-v225" class="md-nav__link">
|
|
9857
10301
|
<span class="md-ellipsis">
|
|
9858
|
-
Security
|
|
10302
|
+
Security in v2.2.5
|
|
9859
10303
|
</span>
|
|
9860
10304
|
</a>
|
|
9861
10305
|
|
|
9862
10306
|
</li>
|
|
9863
10307
|
|
|
9864
10308
|
<li class="md-nav__item">
|
|
9865
|
-
<a href="#
|
|
10309
|
+
<a href="#added-in-v225" class="md-nav__link">
|
|
9866
10310
|
<span class="md-ellipsis">
|
|
9867
|
-
Added
|
|
10311
|
+
Added in v2.2.5
|
|
9868
10312
|
</span>
|
|
9869
10313
|
</a>
|
|
9870
10314
|
|
|
9871
10315
|
</li>
|
|
9872
10316
|
|
|
9873
10317
|
<li class="md-nav__item">
|
|
9874
|
-
<a href="#removed" class="md-nav__link">
|
|
10318
|
+
<a href="#removed-in-v225" class="md-nav__link">
|
|
9875
10319
|
<span class="md-ellipsis">
|
|
9876
|
-
Removed
|
|
10320
|
+
Removed in v2.2.5
|
|
9877
10321
|
</span>
|
|
9878
10322
|
</a>
|
|
9879
10323
|
|
|
9880
10324
|
</li>
|
|
9881
10325
|
|
|
9882
10326
|
<li class="md-nav__item">
|
|
9883
|
-
<a href="#
|
|
10327
|
+
<a href="#fixed-in-v225" class="md-nav__link">
|
|
9884
10328
|
<span class="md-ellipsis">
|
|
9885
|
-
Fixed
|
|
10329
|
+
Fixed in v2.2.5
|
|
9886
10330
|
</span>
|
|
9887
10331
|
</a>
|
|
9888
10332
|
|
|
9889
10333
|
</li>
|
|
9890
10334
|
|
|
9891
10335
|
<li class="md-nav__item">
|
|
9892
|
-
<a href="#
|
|
10336
|
+
<a href="#documentation-in-v225" class="md-nav__link">
|
|
9893
10337
|
<span class="md-ellipsis">
|
|
9894
|
-
Documentation
|
|
10338
|
+
Documentation in v2.2.5
|
|
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="#housekeeping-in-v225" class="md-nav__link">
|
|
9902
10346
|
<span class="md-ellipsis">
|
|
9903
|
-
Housekeeping
|
|
10347
|
+
Housekeeping in v2.2.5
|
|
9904
10348
|
</span>
|
|
9905
10349
|
</a>
|
|
9906
10350
|
|
|
@@ -9922,45 +10366,45 @@
|
|
|
9922
10366
|
<ul class="md-nav__list">
|
|
9923
10367
|
|
|
9924
10368
|
<li class="md-nav__item">
|
|
9925
|
-
<a href="#
|
|
10369
|
+
<a href="#security-in-v224" class="md-nav__link">
|
|
9926
10370
|
<span class="md-ellipsis">
|
|
9927
|
-
Security
|
|
10371
|
+
Security in v2.2.4
|
|
9928
10372
|
</span>
|
|
9929
10373
|
</a>
|
|
9930
10374
|
|
|
9931
10375
|
</li>
|
|
9932
10376
|
|
|
9933
10377
|
<li class="md-nav__item">
|
|
9934
|
-
<a href="#
|
|
10378
|
+
<a href="#added-in-v224" class="md-nav__link">
|
|
9935
10379
|
<span class="md-ellipsis">
|
|
9936
|
-
Added
|
|
10380
|
+
Added in v2.2.4
|
|
9937
10381
|
</span>
|
|
9938
10382
|
</a>
|
|
9939
10383
|
|
|
9940
10384
|
</li>
|
|
9941
10385
|
|
|
9942
10386
|
<li class="md-nav__item">
|
|
9943
|
-
<a href="#
|
|
10387
|
+
<a href="#fixed-in-v224" class="md-nav__link">
|
|
9944
10388
|
<span class="md-ellipsis">
|
|
9945
|
-
Fixed
|
|
10389
|
+
Fixed in v2.2.4
|
|
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="#documentation-in-v224" class="md-nav__link">
|
|
9953
10397
|
<span class="md-ellipsis">
|
|
9954
|
-
Documentation
|
|
10398
|
+
Documentation in v2.2.4
|
|
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="#housekeeping-in-v224" class="md-nav__link">
|
|
9962
10406
|
<span class="md-ellipsis">
|
|
9963
|
-
Housekeeping
|
|
10407
|
+
Housekeeping in v2.2.4
|
|
9964
10408
|
</span>
|
|
9965
10409
|
</a>
|
|
9966
10410
|
|
|
@@ -9982,54 +10426,54 @@
|
|
|
9982
10426
|
<ul class="md-nav__list">
|
|
9983
10427
|
|
|
9984
10428
|
<li class="md-nav__item">
|
|
9985
|
-
<a href="#
|
|
10429
|
+
<a href="#security-in-v223" class="md-nav__link">
|
|
9986
10430
|
<span class="md-ellipsis">
|
|
9987
|
-
Security
|
|
10431
|
+
Security in v2.2.3
|
|
9988
10432
|
</span>
|
|
9989
10433
|
</a>
|
|
9990
10434
|
|
|
9991
10435
|
</li>
|
|
9992
10436
|
|
|
9993
10437
|
<li class="md-nav__item">
|
|
9994
|
-
<a href="#
|
|
10438
|
+
<a href="#added-in-v223" class="md-nav__link">
|
|
9995
10439
|
<span class="md-ellipsis">
|
|
9996
|
-
Added
|
|
10440
|
+
Added in v2.2.3
|
|
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="#changed-in-v223" class="md-nav__link">
|
|
10004
10448
|
<span class="md-ellipsis">
|
|
10005
|
-
Changed
|
|
10449
|
+
Changed in v2.2.3
|
|
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="#fixed-in-v223" class="md-nav__link">
|
|
10013
10457
|
<span class="md-ellipsis">
|
|
10014
|
-
Fixed
|
|
10458
|
+
Fixed in v2.2.3
|
|
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-v223" class="md-nav__link">
|
|
10022
10466
|
<span class="md-ellipsis">
|
|
10023
|
-
Documentation
|
|
10467
|
+
Documentation in v2.2.3
|
|
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-v223" class="md-nav__link">
|
|
10031
10475
|
<span class="md-ellipsis">
|
|
10032
|
-
Housekeeping
|
|
10476
|
+
Housekeeping in v2.2.3
|
|
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="#security-in-v222" class="md-nav__link">
|
|
10055
10499
|
<span class="md-ellipsis">
|
|
10056
|
-
Security
|
|
10500
|
+
Security in v2.2.2
|
|
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="#added-in-v222" class="md-nav__link">
|
|
10064
10508
|
<span class="md-ellipsis">
|
|
10065
|
-
Added
|
|
10509
|
+
Added in v2.2.2
|
|
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="#changed-in-v222" class="md-nav__link">
|
|
10073
10517
|
<span class="md-ellipsis">
|
|
10074
|
-
Changed
|
|
10518
|
+
Changed in v2.2.2
|
|
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-v222" class="md-nav__link">
|
|
10082
10526
|
<span class="md-ellipsis">
|
|
10083
|
-
Fixed
|
|
10527
|
+
Fixed in v2.2.2
|
|
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-v222" class="md-nav__link">
|
|
10091
10535
|
<span class="md-ellipsis">
|
|
10092
|
-
Documentation
|
|
10536
|
+
Documentation in v2.2.2
|
|
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-v222" class="md-nav__link">
|
|
10100
10544
|
<span class="md-ellipsis">
|
|
10101
|
-
Housekeeping
|
|
10545
|
+
Housekeeping in v2.2.2
|
|
10102
10546
|
</span>
|
|
10103
10547
|
</a>
|
|
10104
10548
|
|
|
@@ -10120,63 +10564,63 @@
|
|
|
10120
10564
|
<ul class="md-nav__list">
|
|
10121
10565
|
|
|
10122
10566
|
<li class="md-nav__item">
|
|
10123
|
-
<a href="#
|
|
10567
|
+
<a href="#security-in-v221" class="md-nav__link">
|
|
10124
10568
|
<span class="md-ellipsis">
|
|
10125
|
-
Security
|
|
10569
|
+
Security in v2.2.1
|
|
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="#added-in-v221" class="md-nav__link">
|
|
10133
10577
|
<span class="md-ellipsis">
|
|
10134
|
-
Added
|
|
10578
|
+
Added in v2.2.1
|
|
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="#changed-in-v221" class="md-nav__link">
|
|
10142
10586
|
<span class="md-ellipsis">
|
|
10143
|
-
Changed
|
|
10587
|
+
Changed in v2.2.1
|
|
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-v221" class="md-nav__link">
|
|
10151
10595
|
<span class="md-ellipsis">
|
|
10152
|
-
Fixed
|
|
10596
|
+
Fixed in v2.2.1
|
|
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="#dependencies-in-v221" class="md-nav__link">
|
|
10160
10604
|
<span class="md-ellipsis">
|
|
10161
|
-
Dependencies
|
|
10605
|
+
Dependencies in v2.2.1
|
|
10162
10606
|
</span>
|
|
10163
10607
|
</a>
|
|
10164
10608
|
|
|
10165
10609
|
</li>
|
|
10166
10610
|
|
|
10167
10611
|
<li class="md-nav__item">
|
|
10168
|
-
<a href="#
|
|
10612
|
+
<a href="#documentation-in-v221" class="md-nav__link">
|
|
10169
10613
|
<span class="md-ellipsis">
|
|
10170
|
-
Documentation
|
|
10614
|
+
Documentation in v2.2.1
|
|
10171
10615
|
</span>
|
|
10172
10616
|
</a>
|
|
10173
10617
|
|
|
10174
10618
|
</li>
|
|
10175
10619
|
|
|
10176
10620
|
<li class="md-nav__item">
|
|
10177
|
-
<a href="#
|
|
10621
|
+
<a href="#housekeeping-in-v221" class="md-nav__link">
|
|
10178
10622
|
<span class="md-ellipsis">
|
|
10179
|
-
Housekeeping
|
|
10623
|
+
Housekeeping in v2.2.1
|
|
10180
10624
|
</span>
|
|
10181
10625
|
</a>
|
|
10182
10626
|
|
|
@@ -10198,45 +10642,45 @@
|
|
|
10198
10642
|
<ul class="md-nav__list">
|
|
10199
10643
|
|
|
10200
10644
|
<li class="md-nav__item">
|
|
10201
|
-
<a href="#
|
|
10645
|
+
<a href="#added-in-v220" class="md-nav__link">
|
|
10202
10646
|
<span class="md-ellipsis">
|
|
10203
|
-
Added
|
|
10647
|
+
Added in v2.2.0
|
|
10204
10648
|
</span>
|
|
10205
10649
|
</a>
|
|
10206
10650
|
|
|
10207
10651
|
</li>
|
|
10208
10652
|
|
|
10209
10653
|
<li class="md-nav__item">
|
|
10210
|
-
<a href="#
|
|
10654
|
+
<a href="#changed-in-v220" class="md-nav__link">
|
|
10211
10655
|
<span class="md-ellipsis">
|
|
10212
|
-
Changed
|
|
10656
|
+
Changed in v2.2.0
|
|
10213
10657
|
</span>
|
|
10214
10658
|
</a>
|
|
10215
10659
|
|
|
10216
10660
|
</li>
|
|
10217
10661
|
|
|
10218
10662
|
<li class="md-nav__item">
|
|
10219
|
-
<a href="#
|
|
10663
|
+
<a href="#fixed-in-v220" class="md-nav__link">
|
|
10220
10664
|
<span class="md-ellipsis">
|
|
10221
|
-
Fixed
|
|
10665
|
+
Fixed in v2.2.0
|
|
10222
10666
|
</span>
|
|
10223
10667
|
</a>
|
|
10224
10668
|
|
|
10225
10669
|
</li>
|
|
10226
10670
|
|
|
10227
10671
|
<li class="md-nav__item">
|
|
10228
|
-
<a href="#
|
|
10672
|
+
<a href="#dependencies-in-v220" class="md-nav__link">
|
|
10229
10673
|
<span class="md-ellipsis">
|
|
10230
|
-
Dependencies
|
|
10674
|
+
Dependencies in v2.2.0
|
|
10231
10675
|
</span>
|
|
10232
10676
|
</a>
|
|
10233
10677
|
|
|
10234
10678
|
</li>
|
|
10235
10679
|
|
|
10236
10680
|
<li class="md-nav__item">
|
|
10237
|
-
<a href="#
|
|
10681
|
+
<a href="#housekeeping-in-v220" class="md-nav__link">
|
|
10238
10682
|
<span class="md-ellipsis">
|
|
10239
|
-
Housekeeping
|
|
10683
|
+
Housekeeping in v2.2.0
|
|
10240
10684
|
</span>
|
|
10241
10685
|
</a>
|
|
10242
10686
|
|
|
@@ -10258,72 +10702,72 @@
|
|
|
10258
10702
|
<ul class="md-nav__list">
|
|
10259
10703
|
|
|
10260
10704
|
<li class="md-nav__item">
|
|
10261
|
-
<a href="#
|
|
10705
|
+
<a href="#added-in-v220-beta1" class="md-nav__link">
|
|
10262
10706
|
<span class="md-ellipsis">
|
|
10263
|
-
Added
|
|
10707
|
+
Added in v2.2.0-beta.1
|
|
10264
10708
|
</span>
|
|
10265
10709
|
</a>
|
|
10266
10710
|
|
|
10267
10711
|
</li>
|
|
10268
10712
|
|
|
10269
10713
|
<li class="md-nav__item">
|
|
10270
|
-
<a href="#
|
|
10714
|
+
<a href="#changed-in-v220-beta1" class="md-nav__link">
|
|
10271
10715
|
<span class="md-ellipsis">
|
|
10272
|
-
Changed
|
|
10716
|
+
Changed in v2.2.0-beta.1
|
|
10273
10717
|
</span>
|
|
10274
10718
|
</a>
|
|
10275
10719
|
|
|
10276
10720
|
</li>
|
|
10277
10721
|
|
|
10278
10722
|
<li class="md-nav__item">
|
|
10279
|
-
<a href="#deprecated" class="md-nav__link">
|
|
10723
|
+
<a href="#deprecated-in-v220-beta1" class="md-nav__link">
|
|
10280
10724
|
<span class="md-ellipsis">
|
|
10281
|
-
Deprecated
|
|
10725
|
+
Deprecated in v2.2.0-beta.1
|
|
10282
10726
|
</span>
|
|
10283
10727
|
</a>
|
|
10284
10728
|
|
|
10285
10729
|
</li>
|
|
10286
10730
|
|
|
10287
10731
|
<li class="md-nav__item">
|
|
10288
|
-
<a href="#
|
|
10732
|
+
<a href="#removed-in-v220-beta1" class="md-nav__link">
|
|
10289
10733
|
<span class="md-ellipsis">
|
|
10290
|
-
Removed
|
|
10734
|
+
Removed in v2.2.0-beta.1
|
|
10291
10735
|
</span>
|
|
10292
10736
|
</a>
|
|
10293
10737
|
|
|
10294
10738
|
</li>
|
|
10295
10739
|
|
|
10296
10740
|
<li class="md-nav__item">
|
|
10297
|
-
<a href="#
|
|
10741
|
+
<a href="#fixed-in-v220-beta1" class="md-nav__link">
|
|
10298
10742
|
<span class="md-ellipsis">
|
|
10299
|
-
Fixed
|
|
10743
|
+
Fixed in v2.2.0-beta.1
|
|
10300
10744
|
</span>
|
|
10301
10745
|
</a>
|
|
10302
10746
|
|
|
10303
10747
|
</li>
|
|
10304
10748
|
|
|
10305
10749
|
<li class="md-nav__item">
|
|
10306
|
-
<a href="#
|
|
10750
|
+
<a href="#dependencies-in-v220-beta1" class="md-nav__link">
|
|
10307
10751
|
<span class="md-ellipsis">
|
|
10308
|
-
Dependencies
|
|
10752
|
+
Dependencies in v2.2.0-beta.1
|
|
10309
10753
|
</span>
|
|
10310
10754
|
</a>
|
|
10311
10755
|
|
|
10312
10756
|
</li>
|
|
10313
10757
|
|
|
10314
10758
|
<li class="md-nav__item">
|
|
10315
|
-
<a href="#
|
|
10759
|
+
<a href="#documentation-in-v220-beta1" class="md-nav__link">
|
|
10316
10760
|
<span class="md-ellipsis">
|
|
10317
|
-
Documentation
|
|
10761
|
+
Documentation in v2.2.0-beta.1
|
|
10318
10762
|
</span>
|
|
10319
10763
|
</a>
|
|
10320
10764
|
|
|
10321
10765
|
</li>
|
|
10322
10766
|
|
|
10323
10767
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10768
|
+
<a href="#housekeeping-in-v220-beta1" class="md-nav__link">
|
|
10325
10769
|
<span class="md-ellipsis">
|
|
10326
|
-
Housekeeping
|
|
10770
|
+
Housekeeping in v2.2.0-beta.1
|
|
10327
10771
|
</span>
|
|
10328
10772
|
</a>
|
|
10329
10773
|
|
|
@@ -10352,8 +10796,6 @@
|
|
|
10352
10796
|
|
|
10353
10797
|
|
|
10354
10798
|
|
|
10355
|
-
<!-- markdownlint-disable MD024 -->
|
|
10356
|
-
|
|
10357
10799
|
<h1 id="nautobot-v22">Nautobot v2.2<a class="headerlink" href="#nautobot-v22" title="Permanent link">¶</a></h1>
|
|
10358
10800
|
<p>This document describes all new features and changes in Nautobot 2.2.</p>
|
|
10359
10801
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -10389,16 +10831,15 @@
|
|
|
10389
10831
|
<p><code>Installed Plugins</code> view has been renamed to <code>Installed Apps</code>. <code>Plugin</code> terminologies in <code>Installed Plugins</code> (now <code>Installed Apps</code>) view and dependent views have been changed to <code>App</code> throughout. <code>Plugin</code> references in documentation (excluding old release-notes) have been replaced by <code>App</code>. <code>Plugins</code> navigation menu has been renamed to <code>Apps</code>.</p>
|
|
10390
10832
|
<h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">¶</a></h4>
|
|
10391
10833
|
<p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
|
|
10392
|
-
<!-- towncrier release notes start -->
|
|
10393
10834
|
<h2 id="v229-2024-08-05">v2.2.9 (2024-08-05)<a class="headerlink" href="#v229-2024-08-05" title="Permanent link">¶</a></h2>
|
|
10394
|
-
<h3 id="
|
|
10835
|
+
<h3 id="added-in-v229">Added in v2.2.9<a class="headerlink" href="#added-in-v229" title="Permanent link">¶</a></h3>
|
|
10395
10836
|
<ul>
|
|
10396
10837
|
<li><a href="https://github.com/nautobot/nautobot/issues/5965">#5965</a> - Added missing controller references for DeviceRedundancyGroup in the UI.</li>
|
|
10397
10838
|
<li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Added caching to <code>FeatureQuery().get_choices()</code> and <code>FeatureQuery().list_subclasses()</code>.</li>
|
|
10398
10839
|
<li><a href="https://github.com/nautobot/nautobot/issues/6029">#6029</a> - Added environment variable support for setting <code>CELERY_WORKER_PREFETCH_MULTIPLIER</code>.</li>
|
|
10399
10840
|
<li><a href="https://github.com/nautobot/nautobot/issues/6030">#6030</a> - Added links from the Job list and detail views to quickly filter the list of Job Results to the corresponding Job.</li>
|
|
10400
10841
|
</ul>
|
|
10401
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10842
|
+
<h3 id="fixed-in-v229">Fixed in v2.2.9<a class="headerlink" href="#fixed-in-v229" title="Permanent link">¶</a></h3>
|
|
10402
10843
|
<ul>
|
|
10403
10844
|
<li><a href="https://github.com/nautobot/nautobot/issues/5775">#5775</a> - Reintroduced <code>Add IP Address</code> button to VirtualMachine Interface table.</li>
|
|
10404
10845
|
<li><a href="https://github.com/nautobot/nautobot/issues/5785">#5785</a> - Fixed Scheduled Jobs not respecting Job Soft / Hard Time Limit.</li>
|
|
@@ -10413,11 +10854,11 @@
|
|
|
10413
10854
|
<li><a href="https://github.com/nautobot/nautobot/issues/5992">#5992</a> - Added signal to clear relevant content-type caches after running migrations.</li>
|
|
10414
10855
|
<li><a href="https://github.com/nautobot/nautobot/issues/6022">#6022</a> - Fixed incorrect labels for derived filters (<code>tenant__n</code>, <code>tenant__isw</code>, etc.) when the base filter (<code>tenant</code>, etc.) has a custom label.</li>
|
|
10415
10856
|
</ul>
|
|
10416
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10857
|
+
<h3 id="dependencies-in-v229">Dependencies in v2.2.9<a class="headerlink" href="#dependencies-in-v229" title="Permanent link">¶</a></h3>
|
|
10417
10858
|
<ul>
|
|
10418
10859
|
<li><a href="https://github.com/nautobot/nautobot/issues/6010">#6010</a> - Pinned <code>django-storages</code> temporarily to 1.14.3 due to an <a href="https://github.com/revsys/django-health-check/issues/434">incompatibility</a> between <code>django-health-check</code> and version 1.14.4 of <code>django-storages</code>.</li>
|
|
10419
10860
|
</ul>
|
|
10420
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10861
|
+
<h3 id="documentation-in-v229">Documentation in v2.2.9<a class="headerlink" href="#documentation-in-v229" title="Permanent link">¶</a></h3>
|
|
10421
10862
|
<ul>
|
|
10422
10863
|
<li><a href="https://github.com/nautobot/nautobot/issues/5949">#5949</a> - Fixed NewBranch job code in documentation.</li>
|
|
10423
10864
|
<li><a href="https://github.com/nautobot/nautobot/issues/5958">#5958</a> - Added an example job that uses a custom template to render the job form.</li>
|
|
@@ -10426,37 +10867,37 @@
|
|
|
10426
10867
|
<li><a href="https://github.com/nautobot/nautobot/issues/6024">#6024</a> - Added documentation for the <code>nautobot-server validate_models</code> command.</li>
|
|
10427
10868
|
</ul>
|
|
10428
10869
|
<h2 id="v228-2024-07-22">v2.2.8 (2024-07-22)<a class="headerlink" href="#v228-2024-07-22" title="Permanent link">¶</a></h2>
|
|
10429
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10870
|
+
<h3 id="security-in-v228">Security in v2.2.8<a class="headerlink" href="#security-in-v228" title="Permanent link">¶</a></h3>
|
|
10430
10871
|
<ul>
|
|
10431
10872
|
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.1</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10432
10873
|
</ul>
|
|
10433
|
-
<h3 id="
|
|
10874
|
+
<h3 id="fixed-in-v228">Fixed in v2.2.8<a class="headerlink" href="#fixed-in-v228" title="Permanent link">¶</a></h3>
|
|
10434
10875
|
<ul>
|
|
10435
10876
|
<li><a href="https://github.com/nautobot/nautobot/issues/5569">#5569</a> - Fixed relationship required to ignore objects that do not match the related filter.</li>
|
|
10436
10877
|
<li><a href="https://github.com/nautobot/nautobot/issues/5613">#5613</a> - Fixed intermittent failure in integration test for dynamic groups.</li>
|
|
10437
10878
|
<li><a href="https://github.com/nautobot/nautobot/issues/5906">#5906</a> - Added support for filtering in GraphQL of objects identified by a many-to-many relation (<code>Location.prefixes</code>, <code>Prefix.locations</code>, etc.)</li>
|
|
10438
10879
|
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
10439
10880
|
</ul>
|
|
10440
|
-
<h3 id="
|
|
10881
|
+
<h3 id="dependencies-in-v228">Dependencies in v2.2.8<a class="headerlink" href="#dependencies-in-v228" title="Permanent link">¶</a></h3>
|
|
10441
10882
|
<ul>
|
|
10442
10883
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated dependency <code>social-auth-app-django</code> to <code>~5.4.2</code>.</li>
|
|
10443
10884
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated optional dependency <code>django-storages</code> to <code>~1.14.4</code>.</li>
|
|
10444
10885
|
</ul>
|
|
10445
|
-
<h3 id="
|
|
10886
|
+
<h3 id="documentation-in-v228">Documentation in v2.2.8<a class="headerlink" href="#documentation-in-v228" title="Permanent link">¶</a></h3>
|
|
10446
10887
|
<ul>
|
|
10447
10888
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.29</code>.</li>
|
|
10448
10889
|
<li><a href="https://github.com/nautobot/nautobot/issues/5874">#5874</a> - Updated documentation regarding Nautobot on Ubuntu 24.04.</li>
|
|
10449
10890
|
</ul>
|
|
10450
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10891
|
+
<h3 id="housekeeping-in-v228">Housekeeping in v2.2.8<a class="headerlink" href="#housekeeping-in-v228" title="Permanent link">¶</a></h3>
|
|
10451
10892
|
<ul>
|
|
10452
10893
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Added integration test to do basic checking for static media failures caused by typos in template files.</li>
|
|
10453
10894
|
</ul>
|
|
10454
10895
|
<h2 id="v227-2024-07-08">v2.2.7 (2024-07-08)<a class="headerlink" href="#v227-2024-07-08" title="Permanent link">¶</a></h2>
|
|
10455
|
-
<h3 id="
|
|
10896
|
+
<h3 id="security-in-v227">Security in v2.2.7<a class="headerlink" href="#security-in-v227" title="Permanent link">¶</a></h3>
|
|
10456
10897
|
<ul>
|
|
10457
10898
|
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10458
10899
|
</ul>
|
|
10459
|
-
<h3 id="
|
|
10900
|
+
<h3 id="fixed-in-v227">Fixed in v2.2.7<a class="headerlink" href="#fixed-in-v227" title="Permanent link">¶</a></h3>
|
|
10460
10901
|
<ul>
|
|
10461
10902
|
<li><a href="https://github.com/nautobot/nautobot/issues/4237">#4237</a> - Fixed display issue with multiple tags filter on dynamic groups. Multiple Tags are now correctly displayed with an AND.</li>
|
|
10462
10903
|
<li><a href="https://github.com/nautobot/nautobot/issues/5093">#5093</a> - Fixed blank page redirect when syncing or running a dry run on a GIT Repo with no workers available; now redirects to the GIT Repo Detail page with an error message.</li>
|
|
@@ -10464,33 +10905,33 @@
|
|
|
10464
10905
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed lack of API versioning of responses to a POST to <code>/api/ipam/prefixes/<id>/available-prefixes/</code> to allocate child prefixes of a prefix.</li>
|
|
10465
10906
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed incorrect OpenAPI schema for <code>/api/ipam/prefixes/<id>/available-prefixes/</code> and <code>/api/ipam/prefixes/<id>/available-ips/</code>.</li>
|
|
10466
10907
|
</ul>
|
|
10467
|
-
<h3 id="
|
|
10908
|
+
<h3 id="dependencies-in-v227">Dependencies in v2.2.7<a class="headerlink" href="#dependencies-in-v227" title="Permanent link">¶</a></h3>
|
|
10468
10909
|
<ul>
|
|
10469
10910
|
<li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
|
|
10470
10911
|
<li><a href="https://github.com/nautobot/nautobot/pull/5896">#5896</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
10471
10912
|
</ul>
|
|
10472
|
-
<h3 id="
|
|
10913
|
+
<h3 id="housekeeping-in-v227">Housekeeping in v2.2.7<a class="headerlink" href="#housekeeping-in-v227" title="Permanent link">¶</a></h3>
|
|
10473
10914
|
<ul>
|
|
10474
10915
|
<li><a href="https://github.com/nautobot/nautobot/issues/5847">#5847</a> - Updated the term plugin to app within the GitHub templates.</li>
|
|
10475
10916
|
<li><a href="https://github.com/nautobot/nautobot/issues/5858">#5858</a> - Enhanced the test runner to include a hash of applied database migrations as part of the factory dump filename, reducing the likelihood of using the wrong cached data for a given branch.</li>
|
|
10476
10917
|
</ul>
|
|
10477
10918
|
<h2 id="v226-2024-06-24">v2.2.6 (2024-06-24)<a class="headerlink" href="#v226-2024-06-24" title="Permanent link">¶</a></h2>
|
|
10478
|
-
<h3 id="
|
|
10919
|
+
<h3 id="security-in-v226">Security in v2.2.6<a class="headerlink" href="#security-in-v226" title="Permanent link">¶</a></h3>
|
|
10479
10920
|
<ul>
|
|
10480
10921
|
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10481
10922
|
</ul>
|
|
10482
|
-
<h3 id="
|
|
10923
|
+
<h3 id="added-in-v226">Added in v2.2.6<a class="headerlink" href="#added-in-v226" title="Permanent link">¶</a></h3>
|
|
10483
10924
|
<ul>
|
|
10484
10925
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
|
|
10485
10926
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
|
|
10486
10927
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Added <code>--print-hashes</code> option to <code>nautobot-server generate_test_data</code> command.</li>
|
|
10487
10928
|
<li><a href="https://github.com/nautobot/nautobot/issues/5807">#5807</a> - Added the ability to sort and filter the <code>IPAddress</code> list view by the <code>nat_inside</code> field.</li>
|
|
10488
10929
|
</ul>
|
|
10489
|
-
<h3 id="
|
|
10930
|
+
<h3 id="changed-in-v226">Changed in v2.2.6<a class="headerlink" href="#changed-in-v226" title="Permanent link">¶</a></h3>
|
|
10490
10931
|
<ul>
|
|
10491
10932
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
|
|
10492
10933
|
</ul>
|
|
10493
|
-
<h3 id="
|
|
10934
|
+
<h3 id="fixed-in-v226">Fixed in v2.2.6<a class="headerlink" href="#fixed-in-v226" title="Permanent link">¶</a></h3>
|
|
10494
10935
|
<ul>
|
|
10495
10936
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
|
|
10496
10937
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
|
|
@@ -10498,25 +10939,25 @@
|
|
|
10498
10939
|
<li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
|
|
10499
10940
|
<li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
|
|
10500
10941
|
</ul>
|
|
10501
|
-
<h3 id="
|
|
10942
|
+
<h3 id="documentation-in-v226">Documentation in v2.2.6<a class="headerlink" href="#documentation-in-v226" title="Permanent link">¶</a></h3>
|
|
10502
10943
|
<ul>
|
|
10503
10944
|
<li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
|
|
10504
10945
|
<li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
|
|
10505
10946
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated <code>mkdocs-material</code> to 9.5.25.</li>
|
|
10506
10947
|
</ul>
|
|
10507
|
-
<h3 id="
|
|
10948
|
+
<h3 id="housekeeping-in-v226">Housekeeping in v2.2.6<a class="headerlink" href="#housekeeping-in-v226" title="Permanent link">¶</a></h3>
|
|
10508
10949
|
<ul>
|
|
10509
10950
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependencies <code>requests</code> to <code>~2.32.2</code> and <code>watchdog</code> to <code>~4.0.1</code>.</li>
|
|
10510
10951
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Refactored <code>generate_test_data</code> implementation for improved debuggability.</li>
|
|
10511
10952
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Fixed a bug in <code>ControllerManagedDeviceGroupFactory</code> that could result in nondeterministic test data.</li>
|
|
10512
10953
|
</ul>
|
|
10513
10954
|
<h2 id="v225-2024-05-28">v2.2.5 (2024-05-28)<a class="headerlink" href="#v225-2024-05-28" title="Permanent link">¶</a></h2>
|
|
10514
|
-
<h3 id="
|
|
10955
|
+
<h3 id="security-in-v225">Security in v2.2.5<a class="headerlink" href="#security-in-v225" title="Permanent link">¶</a></h3>
|
|
10515
10956
|
<ul>
|
|
10516
10957
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
10517
10958
|
<li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
10518
10959
|
</ul>
|
|
10519
|
-
<h3 id="
|
|
10960
|
+
<h3 id="added-in-v225">Added in v2.2.5<a class="headerlink" href="#added-in-v225" title="Permanent link">¶</a></h3>
|
|
10520
10961
|
<ul>
|
|
10521
10962
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
|
|
10522
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
|
|
@@ -10524,11 +10965,11 @@
|
|
|
10524
10965
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Added a generic test case that asserts that all list views provide an appropriate FilterForm class.</li>
|
|
10525
10966
|
<li><a href="https://github.com/nautobot/nautobot/issues/5747">#5747</a> - Added "Circuit Terminations" navigation menu item.</li>
|
|
10526
10967
|
</ul>
|
|
10527
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
10968
|
+
<h3 id="removed-in-v225">Removed in v2.2.5<a class="headerlink" href="#removed-in-v225" title="Permanent link">¶</a></h3>
|
|
10528
10969
|
<ul>
|
|
10529
10970
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
|
|
10530
10971
|
</ul>
|
|
10531
|
-
<h3 id="
|
|
10972
|
+
<h3 id="fixed-in-v225">Fixed in v2.2.5<a class="headerlink" href="#fixed-in-v225" title="Permanent link">¶</a></h3>
|
|
10532
10973
|
<ul>
|
|
10533
10974
|
<li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
|
|
10534
10975
|
<li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
|
|
@@ -10541,51 +10982,51 @@
|
|
|
10541
10982
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
|
|
10542
10983
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
|
|
10543
10984
|
</ul>
|
|
10544
|
-
<h3 id="
|
|
10985
|
+
<h3 id="documentation-in-v225">Documentation in v2.2.5<a class="headerlink" href="#documentation-in-v225" title="Permanent link">¶</a></h3>
|
|
10545
10986
|
<ul>
|
|
10546
10987
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
|
|
10547
10988
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
10548
10989
|
</ul>
|
|
10549
|
-
<h3 id="
|
|
10990
|
+
<h3 id="housekeeping-in-v225">Housekeeping in v2.2.5<a class="headerlink" href="#housekeeping-in-v225" title="Permanent link">¶</a></h3>
|
|
10550
10991
|
<ul>
|
|
10551
10992
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated <code>pylint</code> to <code>~3.1.1</code>.</li>
|
|
10552
10993
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
10553
10994
|
</ul>
|
|
10554
10995
|
<h2 id="v224-2024-05-13">v2.2.4 (2024-05-13)<a class="headerlink" href="#v224-2024-05-13" title="Permanent link">¶</a></h2>
|
|
10555
|
-
<h3 id="
|
|
10996
|
+
<h3 id="security-in-v224">Security in v2.2.4<a class="headerlink" href="#security-in-v224" title="Permanent link">¶</a></h3>
|
|
10556
10997
|
<ul>
|
|
10557
10998
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
10558
10999
|
<li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
10559
11000
|
</ul>
|
|
10560
|
-
<h3 id="
|
|
11001
|
+
<h3 id="added-in-v224">Added in v2.2.4<a class="headerlink" href="#added-in-v224" title="Permanent link">¶</a></h3>
|
|
10561
11002
|
<ul>
|
|
10562
11003
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
10563
11004
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
10564
11005
|
</ul>
|
|
10565
|
-
<h3 id="
|
|
11006
|
+
<h3 id="fixed-in-v224">Fixed in v2.2.4<a class="headerlink" href="#fixed-in-v224" title="Permanent link">¶</a></h3>
|
|
10566
11007
|
<ul>
|
|
10567
11008
|
<li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
|
|
10568
11009
|
<li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
|
|
10569
11010
|
<li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
|
|
10570
11011
|
<li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
|
|
10571
11012
|
</ul>
|
|
10572
|
-
<h3 id="
|
|
11013
|
+
<h3 id="documentation-in-v224">Documentation in v2.2.4<a class="headerlink" href="#documentation-in-v224" title="Permanent link">¶</a></h3>
|
|
10573
11014
|
<ul>
|
|
10574
11015
|
<li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
|
|
10575
11016
|
</ul>
|
|
10576
|
-
<h3 id="
|
|
11017
|
+
<h3 id="housekeeping-in-v224">Housekeeping in v2.2.4<a class="headerlink" href="#housekeeping-in-v224" title="Permanent link">¶</a></h3>
|
|
10577
11018
|
<ul>
|
|
10578
11019
|
<li><a href="https://github.com/nautobot/nautobot/issues/5263">#5263</a> - Updated <code>nh3</code> to <code>0.2.17</code> in <code>poetry.lock</code>.</li>
|
|
10579
11020
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed <code>"version"</code> from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
10580
11021
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
10581
11022
|
</ul>
|
|
10582
11023
|
<h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">¶</a></h2>
|
|
10583
|
-
<h3 id="
|
|
11024
|
+
<h3 id="security-in-v223">Security in v2.2.3<a class="headerlink" href="#security-in-v223" title="Permanent link">¶</a></h3>
|
|
10584
11025
|
<ul>
|
|
10585
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
|
|
10586
11027
|
<li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
10587
11028
|
</ul>
|
|
10588
|
-
<h3 id="
|
|
11029
|
+
<h3 id="added-in-v223">Added in v2.2.3<a class="headerlink" href="#added-in-v223" title="Permanent link">¶</a></h3>
|
|
10589
11030
|
<ul>
|
|
10590
11031
|
<li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
|
|
10591
11032
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
|
|
@@ -10593,11 +11034,11 @@
|
|
|
10593
11034
|
<li><a href="https://github.com/nautobot/nautobot/issues/5560">#5560</a> - Added a template tag which creates a hyperlink that opens in a new tab.</li>
|
|
10594
11035
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
|
|
10595
11036
|
</ul>
|
|
10596
|
-
<h3 id="
|
|
11037
|
+
<h3 id="changed-in-v223">Changed in v2.2.3<a class="headerlink" href="#changed-in-v223" title="Permanent link">¶</a></h3>
|
|
10597
11038
|
<ul>
|
|
10598
11039
|
<li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
|
|
10599
11040
|
</ul>
|
|
10600
|
-
<h3 id="
|
|
11041
|
+
<h3 id="fixed-in-v223">Fixed in v2.2.3<a class="headerlink" href="#fixed-in-v223" title="Permanent link">¶</a></h3>
|
|
10601
11042
|
<ul>
|
|
10602
11043
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
|
|
10603
11044
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
|
|
@@ -10610,67 +11051,67 @@
|
|
|
10610
11051
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
|
|
10611
11052
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
|
|
10612
11053
|
</ul>
|
|
10613
|
-
<h3 id="
|
|
11054
|
+
<h3 id="documentation-in-v223">Documentation in v2.2.3<a class="headerlink" href="#documentation-in-v223" title="Permanent link">¶</a></h3>
|
|
10614
11055
|
<ul>
|
|
10615
11056
|
<li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
|
|
10616
11057
|
<li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
|
|
10617
11058
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
|
|
10618
11059
|
<li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
|
|
10619
11060
|
</ul>
|
|
10620
|
-
<h3 id="
|
|
11061
|
+
<h3 id="housekeeping-in-v223">Housekeeping in v2.2.3<a class="headerlink" href="#housekeeping-in-v223" title="Permanent link">¶</a></h3>
|
|
10621
11062
|
<ul>
|
|
10622
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
|
|
10623
11064
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
|
|
10624
11065
|
<li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
|
|
10625
11066
|
</ul>
|
|
10626
11067
|
<h2 id="v222-2024-04-18">v2.2.2 (2024-04-18)<a class="headerlink" href="#v222-2024-04-18" title="Permanent link">¶</a></h2>
|
|
10627
|
-
<h3 id="
|
|
11068
|
+
<h3 id="security-in-v222">Security in v2.2.2<a class="headerlink" href="#security-in-v222" title="Permanent link">¶</a></h3>
|
|
10628
11069
|
<ul>
|
|
10629
11070
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
10630
11071
|
</ul>
|
|
10631
|
-
<h3 id="
|
|
11072
|
+
<h3 id="added-in-v222">Added in v2.2.2<a class="headerlink" href="#added-in-v222" title="Permanent link">¶</a></h3>
|
|
10632
11073
|
<ul>
|
|
10633
11074
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
|
|
10634
11075
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
|
|
10635
11076
|
</ul>
|
|
10636
|
-
<h3 id="
|
|
11077
|
+
<h3 id="changed-in-v222">Changed in v2.2.2<a class="headerlink" href="#changed-in-v222" title="Permanent link">¶</a></h3>
|
|
10637
11078
|
<ul>
|
|
10638
11079
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Improved performance of bulk-edit and bulk-delete UI operations by refactoring change logging logic.</li>
|
|
10639
11080
|
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
10640
11081
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
10641
11082
|
</ul>
|
|
10642
|
-
<h3 id="
|
|
11083
|
+
<h3 id="fixed-in-v222">Fixed in v2.2.2<a class="headerlink" href="#fixed-in-v222" title="Permanent link">¶</a></h3>
|
|
10643
11084
|
<ul>
|
|
10644
11085
|
<li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
|
|
10645
11086
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
10646
11087
|
</ul>
|
|
10647
|
-
<h3 id="
|
|
11088
|
+
<h3 id="documentation-in-v222">Documentation in v2.2.2<a class="headerlink" href="#documentation-in-v222" title="Permanent link">¶</a></h3>
|
|
10648
11089
|
<ul>
|
|
10649
11090
|
<li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
|
|
10650
11091
|
</ul>
|
|
10651
|
-
<h3 id="
|
|
11092
|
+
<h3 id="housekeeping-in-v222">Housekeeping in v2.2.2<a class="headerlink" href="#housekeeping-in-v222" title="Permanent link">¶</a></h3>
|
|
10652
11093
|
<ul>
|
|
10653
11094
|
<li><a href="https://github.com/nautobot/nautobot/issues/5590">#5590</a> - Fixed upstream testing workflows showing successful when one of the steps fail.</li>
|
|
10654
11095
|
</ul>
|
|
10655
11096
|
<h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">¶</a></h2>
|
|
10656
|
-
<h3 id="
|
|
11097
|
+
<h3 id="security-in-v221">Security in v2.2.1<a class="headerlink" href="#security-in-v221" title="Permanent link">¶</a></h3>
|
|
10657
11098
|
<ul>
|
|
10658
11099
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
10659
11100
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
10660
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10661
11102
|
</ul>
|
|
10662
|
-
<h3 id="
|
|
11103
|
+
<h3 id="added-in-v221">Added in v2.2.1<a class="headerlink" href="#added-in-v221" title="Permanent link">¶</a></h3>
|
|
10663
11104
|
<ul>
|
|
10664
11105
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
10665
11106
|
<li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
|
|
10666
11107
|
<li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
|
|
10667
11108
|
<li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
|
|
10668
11109
|
</ul>
|
|
10669
|
-
<h3 id="
|
|
11110
|
+
<h3 id="changed-in-v221">Changed in v2.2.1<a class="headerlink" href="#changed-in-v221" title="Permanent link">¶</a></h3>
|
|
10670
11111
|
<ul>
|
|
10671
11112
|
<li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
|
|
10672
11113
|
</ul>
|
|
10673
|
-
<h3 id="
|
|
11114
|
+
<h3 id="fixed-in-v221">Fixed in v2.2.1<a class="headerlink" href="#fixed-in-v221" title="Permanent link">¶</a></h3>
|
|
10674
11115
|
<ul>
|
|
10675
11116
|
<li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
|
|
10676
11117
|
<li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
|
|
@@ -10680,20 +11121,20 @@
|
|
|
10680
11121
|
<li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
|
|
10681
11122
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
|
|
10682
11123
|
</ul>
|
|
10683
|
-
<h3 id="
|
|
11124
|
+
<h3 id="dependencies-in-v221">Dependencies in v2.2.1<a class="headerlink" href="#dependencies-in-v221" title="Permanent link">¶</a></h3>
|
|
10684
11125
|
<ul>
|
|
10685
11126
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>>=4.7.0,<4.19.0</code> to <code>^4.7.0</code>.</li>
|
|
10686
11127
|
<li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
|
|
10687
11128
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
|
|
10688
11129
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
10689
11130
|
</ul>
|
|
10690
|
-
<h3 id="
|
|
11131
|
+
<h3 id="documentation-in-v221">Documentation in v2.2.1<a class="headerlink" href="#documentation-in-v221" title="Permanent link">¶</a></h3>
|
|
10691
11132
|
<ul>
|
|
10692
11133
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
10693
11134
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
10694
11135
|
<li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
|
|
10695
11136
|
</ul>
|
|
10696
|
-
<h3 id="
|
|
11137
|
+
<h3 id="housekeeping-in-v221">Housekeeping in v2.2.1<a class="headerlink" href="#housekeeping-in-v221" title="Permanent link">¶</a></h3>
|
|
10697
11138
|
<ul>
|
|
10698
11139
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
|
|
10699
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
|
|
@@ -10703,12 +11144,12 @@
|
|
|
10703
11144
|
<p class="admonition-title">Warning</p>
|
|
10704
11145
|
<p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
|
|
10705
11146
|
</div>
|
|
10706
|
-
<h3 id="
|
|
11147
|
+
<h3 id="added-in-v220">Added in v2.2.0<a class="headerlink" href="#added-in-v220" title="Permanent link">¶</a></h3>
|
|
10707
11148
|
<ul>
|
|
10708
11149
|
<li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
|
|
10709
11150
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
|
|
10710
11151
|
</ul>
|
|
10711
|
-
<h3 id="
|
|
11152
|
+
<h3 id="changed-in-v220">Changed in v2.2.0<a class="headerlink" href="#changed-in-v220" title="Permanent link">¶</a></h3>
|
|
10712
11153
|
<ul>
|
|
10713
11154
|
<li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
|
|
10714
11155
|
<li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
|
|
@@ -10721,24 +11162,24 @@
|
|
|
10721
11162
|
<li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
|
|
10722
11163
|
<li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
|
|
10723
11164
|
</ul>
|
|
10724
|
-
<h3 id="
|
|
11165
|
+
<h3 id="fixed-in-v220">Fixed in v2.2.0<a class="headerlink" href="#fixed-in-v220" title="Permanent link">¶</a></h3>
|
|
10725
11166
|
<ul>
|
|
10726
11167
|
<li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
|
|
10727
11168
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
|
|
10728
11169
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
|
|
10729
11170
|
<li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result <task_id></code>.</li>
|
|
10730
11171
|
</ul>
|
|
10731
|
-
<h3 id="
|
|
11172
|
+
<h3 id="dependencies-in-v220">Dependencies in v2.2.0<a class="headerlink" href="#dependencies-in-v220" title="Permanent link">¶</a></h3>
|
|
10732
11173
|
<ul>
|
|
10733
11174
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & it's dependency on <code>ecdsa</code>.</li>
|
|
10734
11175
|
</ul>
|
|
10735
|
-
<h3 id="
|
|
11176
|
+
<h3 id="housekeeping-in-v220">Housekeeping in v2.2.0<a class="headerlink" href="#housekeeping-in-v220" title="Permanent link">¶</a></h3>
|
|
10736
11177
|
<ul>
|
|
10737
11178
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
10738
11179
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
10739
11180
|
</ul>
|
|
10740
11181
|
<h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">¶</a></h2>
|
|
10741
|
-
<h3 id="
|
|
11182
|
+
<h3 id="added-in-v220-beta1">Added in v2.2.0-beta.1<a class="headerlink" href="#added-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10742
11183
|
<ul>
|
|
10743
11184
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
10744
11185
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
|
|
@@ -10777,7 +11218,7 @@
|
|
|
10777
11218
|
<li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
|
|
10778
11219
|
<li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
|
|
10779
11220
|
</ul>
|
|
10780
|
-
<h3 id="
|
|
11221
|
+
<h3 id="changed-in-v220-beta1">Changed in v2.2.0-beta.1<a class="headerlink" href="#changed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10781
11222
|
<ul>
|
|
10782
11223
|
<li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
|
|
10783
11224
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
|
|
@@ -10796,18 +11237,18 @@
|
|
|
10796
11237
|
<li><a href="https://github.com/nautobot/nautobot/issues/5412">#5412</a> - Changed DeviceType YAML/JSON import to now map unrecognized port template <code>type</code> values to <code>"other"</code> instead of failing the import.</li>
|
|
10797
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5414">#5414</a> - Changed <code>ImportObjects.roll_back_if_error</code> form field help text and label.</li>
|
|
10798
11239
|
</ul>
|
|
10799
|
-
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
11240
|
+
<h3 id="deprecated-in-v220-beta1">Deprecated in v2.2.0-beta.1<a class="headerlink" href="#deprecated-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10800
11241
|
<ul>
|
|
10801
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Deprecated the <code>import_button</code> button template-tag.</li>
|
|
10802
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Deprecated the <code>nautobot.apps.exceptions.ConfigurationError</code> class as it is no longer used in Nautobot core and is trivially reimplementable by any App if desired.</li>
|
|
10803
11244
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Deprecated the <code>plugins</code> key under the <code>/api/status/</code> REST API endpoint. Refer to <code>nautobot-apps</code> instead.</li>
|
|
10804
11245
|
</ul>
|
|
10805
|
-
<h3 id="
|
|
11246
|
+
<h3 id="removed-in-v220-beta1">Removed in v2.2.0-beta.1<a class="headerlink" href="#removed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10806
11247
|
<ul>
|
|
10807
11248
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
|
|
10808
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
|
|
10809
11250
|
</ul>
|
|
10810
|
-
<h3 id="
|
|
11251
|
+
<h3 id="fixed-in-v220-beta1">Fixed in v2.2.0-beta.1<a class="headerlink" href="#fixed-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10811
11252
|
<ul>
|
|
10812
11253
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
10813
11254
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
|
|
@@ -10820,18 +11261,18 @@
|
|
|
10820
11261
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
|
|
10821
11262
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
|
|
10822
11263
|
</ul>
|
|
10823
|
-
<h3 id="
|
|
11264
|
+
<h3 id="dependencies-in-v220-beta1">Dependencies in v2.2.0-beta.1<a class="headerlink" href="#dependencies-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10824
11265
|
<ul>
|
|
10825
11266
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
|
|
10826
11267
|
</ul>
|
|
10827
|
-
<h3 id="
|
|
11268
|
+
<h3 id="documentation-in-v220-beta1">Documentation in v2.2.0-beta.1<a class="headerlink" href="#documentation-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10828
11269
|
<ul>
|
|
10829
11270
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
|
|
10830
11271
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
|
|
10831
11272
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide > Code Reference" section of the documentation.</li>
|
|
10832
11273
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
|
|
10833
11274
|
</ul>
|
|
10834
|
-
<h3 id="
|
|
11275
|
+
<h3 id="housekeeping-in-v220-beta1">Housekeeping in v2.2.0-beta.1<a class="headerlink" href="#housekeeping-in-v220-beta1" title="Permanent link">¶</a></h3>
|
|
10835
11276
|
<ul>
|
|
10836
11277
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
|
|
10837
11278
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>
|
|
@@ -10997,7 +11438,7 @@
|
|
|
10997
11438
|
</div>
|
|
10998
11439
|
|
|
10999
11440
|
|
|
11000
|
-
<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>
|
|
11441
|
+
<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>
|
|
11001
11442
|
|
|
11002
11443
|
|
|
11003
11444
|
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|