nautobot 2.4.0__py3-none-any.whl → 2.4.0b1__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/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- 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 +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +0 -1
- nautobot/circuits/api/views.py +8 -4
- nautobot/circuits/tables.py +1 -2
- nautobot/circuits/templates/circuits/circuit_create.html +7 -1
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +10 -6
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +16 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +9 -3
- nautobot/core/api/schema.py +2 -13
- nautobot/core/api/serializers.py +34 -40
- nautobot/core/api/views.py +4 -56
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +1 -1
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +16 -21
- nautobot/core/fixtures/user-data.json +59 -0
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +11 -14
- nautobot/core/forms/forms.py +2 -33
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +7 -28
- nautobot/core/jobs/cleanup.py +12 -48
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +3 -6
- nautobot/core/settings.py +2 -29
- nautobot/core/settings.yaml +0 -21
- nautobot/core/tables.py +60 -74
- nautobot/core/templates/inc/media.html +0 -3
- nautobot/core/templates/inc/nav_menu.html +0 -1
- nautobot/core/templates/nautobot_config.py.j2 +0 -13
- nautobot/core/templates/search.html +0 -7
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +0 -7
- nautobot/core/templatetags/helpers.py +2 -11
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +15 -170
- nautobot/core/testing/filters.py +2 -25
- nautobot/core/testing/forms.py +0 -2
- nautobot/core/testing/mixins.py +2 -7
- nautobot/core/testing/views.py +29 -44
- nautobot/core/tests/integration/test_app_home.py +1 -0
- nautobot/core/tests/integration/test_app_navbar.py +1 -0
- nautobot/core/tests/integration/test_filters.py +2 -0
- nautobot/core/tests/integration/test_home.py +1 -0
- nautobot/core/tests/integration/test_navbar.py +1 -0
- nautobot/core/tests/integration/test_view_authentication.py +0 -1
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +1 -98
- nautobot/core/tests/test_csv.py +3 -25
- nautobot/core/tests/test_forms.py +0 -1
- nautobot/core/tests/test_jobs.py +1 -303
- nautobot/core/tests/test_settings_schema.py +0 -7
- nautobot/core/tests/test_tables.py +0 -100
- nautobot/core/tests/test_utils.py +1 -63
- nautobot/core/tests/test_views.py +3 -30
- nautobot/core/ui/nav.py +0 -1
- nautobot/core/ui/object_detail.py +1 -15
- nautobot/core/urls.py +0 -11
- nautobot/core/utils/lookup.py +8 -11
- nautobot/core/utils/requests.py +9 -24
- nautobot/core/views/__init__.py +0 -42
- nautobot/core/views/generic.py +176 -78
- nautobot/core/views/mixins.py +34 -94
- nautobot/core/views/renderers.py +6 -6
- nautobot/dcim/api/serializers.py +62 -54
- nautobot/dcim/api/views.py +113 -47
- nautobot/dcim/filters/__init__.py +2 -31
- nautobot/dcim/forms.py +17 -36
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +20 -22
- nautobot/dcim/models/devices.py +1 -10
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +5 -6
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +5 -7
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +7 -1
- nautobot/dcim/templates/dcim/controller_retrieve.html +9 -1
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +0 -2
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +0 -5
- nautobot/dcim/templates/dcim/device.html +9 -1
- nautobot/dcim/templates/dcim/device_edit.html +37 -36
- nautobot/dcim/templates/dcim/location.html +9 -1
- nautobot/dcim/templates/dcim/location_edit.html +7 -1
- nautobot/dcim/templates/dcim/rack.html +9 -1
- nautobot/dcim/templates/dcim/rack_edit.html +7 -1
- nautobot/dcim/templates/dcim/rackreservation.html +9 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +9 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +7 -1
- nautobot/dcim/tests/test_api.py +3 -16
- nautobot/dcim/tests/test_filters.py +0 -33
- nautobot/dcim/tests/test_forms.py +2 -51
- nautobot/dcim/tests/test_graphql.py +0 -52
- nautobot/dcim/tests/test_models.py +5 -34
- nautobot/dcim/tests/test_views.py +83 -21
- nautobot/dcim/views.py +13 -1
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +85 -90
- nautobot/extras/api/views.py +27 -22
- nautobot/extras/constants.py +0 -2
- nautobot/extras/filters/__init__.py +6 -8
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +31 -139
- nautobot/extras/forms/mixins.py +5 -13
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +2 -1
- nautobot/extras/jobs.py +12 -70
- nautobot/extras/managers.py +1 -3
- nautobot/extras/migrations/0018_joblog_data_migration.py +9 -7
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +11 -12
- nautobot/extras/models/groups.py +9 -11
- nautobot/extras/models/jobs.py +4 -23
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/__init__.py +2 -13
- nautobot/extras/plugins/marketplace_manifest.yml +79 -84
- nautobot/extras/plugins/tables.py +14 -16
- nautobot/extras/plugins/views.py +69 -65
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/tables.py +5 -7
- nautobot/extras/templates/extras/dynamicgroup.html +9 -1
- nautobot/extras/templates/extras/job_detail.html +0 -16
- nautobot/extras/templates/extras/job_edit.html +0 -1
- nautobot/extras/templates/extras/jobqueue_retrieve.html +9 -1
- nautobot/extras/templates/extras/marketplace.html +11 -29
- nautobot/extras/templates/extras/plugin_detail.html +15 -32
- nautobot/extras/templates/extras/plugins_tiles.html +10 -21
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +1 -3
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/integration/test_plugin_banner.py +2 -0
- nautobot/extras/tests/test_api.py +13 -13
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +1 -2
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +1 -20
- nautobot/extras/tests/test_jobs.py +19 -160
- nautobot/extras/tests/test_models.py +10 -10
- nautobot/extras/tests/test_plugins.py +9 -62
- nautobot/extras/tests/test_relationships.py +9 -120
- nautobot/extras/tests/test_views.py +191 -52
- nautobot/extras/utils.py +2 -3
- nautobot/extras/views.py +98 -30
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +33 -41
- nautobot/ipam/api/views.py +117 -68
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +2 -3
- nautobot/ipam/lookups.py +62 -101
- nautobot/ipam/models.py +16 -66
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +7 -23
- nautobot/ipam/templates/ipam/ipaddress.html +9 -1
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +7 -1
- nautobot/ipam/templates/ipam/ipaddress_edit.html +7 -1
- nautobot/ipam/templates/ipam/prefix.html +9 -1
- nautobot/ipam/templates/ipam/prefix_edit.html +7 -1
- nautobot/ipam/templates/ipam/vlan.html +9 -1
- nautobot/ipam/templates/ipam/vlan_edit.html +7 -1
- nautobot/ipam/templates/ipam/vrf_edit.html +7 -1
- nautobot/ipam/tests/test_api.py +3 -416
- nautobot/ipam/tests/test_forms.py +47 -49
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +34 -95
- nautobot/ipam/tests/test_querysets.py +1 -63
- nautobot/ipam/tests/test_views.py +0 -3
- nautobot/ipam/utils/__init__.py +6 -36
- nautobot/ipam/views.py +87 -61
- 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 +2 -40
- 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/docs/404.html +4 -46
- nautobot/project-static/docs/apps/index.html +4 -46
- nautobot/project-static/docs/apps/nautobot-apps.html +6 -47
- nautobot/project-static/docs/assets/_mkdocstrings.css +1 -25
- nautobot/project-static/docs/assets/javascripts/{bundle.88dd0f4e.min.js → bundle.83f73b43.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.88dd0f4e.min.js.map → bundle.83f73b43.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +10 -62
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +7 -59
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +122 -374
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +18 -90
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +21 -95
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +6 -53
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +5 -52
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +17 -79
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +28 -102
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +21 -108
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +38 -131
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +65 -239
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +165 -581
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +36 -109
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +167 -453
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +211 -493
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +8 -60
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +15 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +55 -407
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +205 -585
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +412 -858
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +7 -59
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +186 -448
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +147 -365
- nautobot/project-static/docs/development/apps/api/configuration-view.html +4 -46
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/global-search.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/graphql.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +7 -68
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +4 -46
- nautobot/project-static/docs/development/apps/api/prometheus.html +4 -46
- nautobot/project-static/docs/development/apps/api/setup.html +4 -46
- nautobot/project-static/docs/development/apps/api/testing.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/base-template.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/notes.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +6 -52
- nautobot/project-static/docs/development/apps/api/views/urls.html +4 -46
- nautobot/project-static/docs/development/apps/index.html +4 -46
- nautobot/project-static/docs/development/apps/migration/code-updates.html +4 -46
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +4 -46
- nautobot/project-static/docs/development/apps/migration/from-v1.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +4 -46
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +8 -50
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +4 -46
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +14 -211
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +4 -46
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +4 -46
- nautobot/project-static/docs/development/core/application-registry.html +4 -46
- nautobot/project-static/docs/development/core/best-practices.html +4 -46
- nautobot/project-static/docs/development/core/bootstrap-ui.html +4 -46
- nautobot/project-static/docs/development/core/caching.html +4 -46
- nautobot/project-static/docs/development/core/controllers.html +4 -46
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +74 -73
- nautobot/project-static/docs/development/core/generic-views.html +4 -46
- nautobot/project-static/docs/development/core/getting-started.html +224 -249
- nautobot/project-static/docs/development/core/homepage.html +7 -49
- nautobot/project-static/docs/development/core/index.html +4 -46
- nautobot/project-static/docs/development/core/{minikube-dev-environment-for-k8s-jobs.html → local-k8s.html} +168 -469
- nautobot/project-static/docs/development/core/model-checklist.html +12 -56
- nautobot/project-static/docs/development/core/model-features.html +4 -46
- nautobot/project-static/docs/development/core/natural-keys.html +4 -46
- nautobot/project-static/docs/development/core/navigation-menu.html +4 -46
- nautobot/project-static/docs/development/core/release-checklist.html +7 -49
- nautobot/project-static/docs/development/core/role-internals.html +4 -46
- nautobot/project-static/docs/development/core/settings.html +4 -46
- nautobot/project-static/docs/development/core/style-guide.html +7 -49
- nautobot/project-static/docs/development/core/templates.html +4 -46
- nautobot/project-static/docs/development/core/testing.html +4 -46
- nautobot/project-static/docs/development/core/ui-component-framework.html +273 -369
- nautobot/project-static/docs/development/core/user-preferences.html +4 -46
- nautobot/project-static/docs/development/index.html +4 -46
- nautobot/project-static/docs/development/jobs/index.html +122 -216
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +4 -46
- nautobot/project-static/docs/index.html +23 -54
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +7 -47
- nautobot/project-static/docs/overview/design_philosophy.html +4 -46
- nautobot/project-static/docs/release-notes/index.html +12 -52
- nautobot/project-static/docs/release-notes/version-1.0.html +193 -234
- nautobot/project-static/docs/release-notes/version-1.1.html +190 -231
- nautobot/project-static/docs/release-notes/version-1.2.html +265 -306
- nautobot/project-static/docs/release-notes/version-1.3.html +291 -332
- nautobot/project-static/docs/release-notes/version-1.4.html +377 -417
- nautobot/project-static/docs/release-notes/version-1.5.html +566 -605
- nautobot/project-static/docs/release-notes/version-1.6.html +447 -904
- nautobot/project-static/docs/release-notes/version-2.0.html +489 -528
- nautobot/project-static/docs/release-notes/version-2.1.html +324 -363
- nautobot/project-static/docs/release-notes/version-2.2.html +317 -356
- nautobot/project-static/docs/release-notes/version-2.3.html +352 -997
- nautobot/project-static/docs/release-notes/version-2.4.html +101 -417
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +287 -295
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +6 -48
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +8 -110
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +6 -48
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +8 -66
- nautobot/project-static/docs/user-guide/administration/installation/index.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +5 -47
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/services.html +4 -46
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +4 -46
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +4 -46
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +4 -46
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +8 -49
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +12 -50
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +7 -49
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +7 -51
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +7 -49
- nautobot/project-static/docs/user-guide/index.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +8 -50
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +7 -50
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +7 -49
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +5 -47
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +25 -94
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +5 -74
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +4 -46
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +13 -9
- nautobot/tenancy/views.py +2 -4
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +4 -5
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +24 -5
- nautobot/virtualization/filters.py +3 -20
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +7 -1
- nautobot/virtualization/templates/virtualization/virtualmachine.html +9 -1
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +8 -2
- nautobot/virtualization/tests/test_filters.py +0 -17
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +9 -1
- nautobot/wireless/tests/test_filters.py +1 -29
- nautobot/wireless/views.py +10 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/METADATA +6 -6
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/RECORD +543 -591
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/WHEEL +1 -1
- nautobot/core/api/constants.py +0 -11
- nautobot/core/jobs/bulk_actions.py +0 -248
- nautobot/core/templates/about.html +0 -67
- nautobot/core/templates/inc/tenancy_form_panel.html +0 -9
- nautobot/core/templates/inc/tenant_table_row.html +0 -11
- nautobot/core/utils/querysets.py +0 -64
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +0 -25
- nautobot/dcim/tests/integration/test_controller.py +0 -62
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +0 -71
- nautobot/dcim/tests/test_jobs.py +0 -118
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +0 -22
- nautobot/extras/migrations/0121_alter_team_contacts.py +0 -17
- nautobot/extras/test_jobs/singleton.py +0 -16
- 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/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/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/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/wireless-networks-and-controllers.html +0 -9444
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +0 -9722
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +0 -42
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.46">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -2112,27 +2112,6 @@
|
|
|
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
|
-
|
|
2136
2115
|
</ul>
|
|
2137
2116
|
</nav>
|
|
2138
2117
|
|
|
@@ -5152,27 +5131,6 @@
|
|
|
5152
5131
|
|
|
5153
5132
|
|
|
5154
5133
|
|
|
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
|
-
|
|
5176
5134
|
<li class="md-nav__item">
|
|
5177
5135
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5178
5136
|
|
|
@@ -8097,11 +8055,11 @@
|
|
|
8097
8055
|
|
|
8098
8056
|
|
|
8099
8057
|
<li class="md-nav__item">
|
|
8100
|
-
<a href="../development/core/
|
|
8058
|
+
<a href="../development/core/local-k8s.html" class="md-nav__link">
|
|
8101
8059
|
|
|
8102
8060
|
|
|
8103
8061
|
<span class="md-ellipsis">
|
|
8104
|
-
|
|
8062
|
+
Local Kubernetes Cluster
|
|
8105
8063
|
</span>
|
|
8106
8064
|
|
|
8107
8065
|
|
|
@@ -8885,45 +8843,45 @@
|
|
|
8885
8843
|
<ul class="md-nav__list">
|
|
8886
8844
|
|
|
8887
8845
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
8846
|
+
<a href="#added_1" class="md-nav__link">
|
|
8889
8847
|
<span class="md-ellipsis">
|
|
8890
|
-
Added
|
|
8848
|
+
Added
|
|
8891
8849
|
</span>
|
|
8892
8850
|
</a>
|
|
8893
8851
|
|
|
8894
8852
|
</li>
|
|
8895
8853
|
|
|
8896
8854
|
<li class="md-nav__item">
|
|
8897
|
-
<a href="#
|
|
8855
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8898
8856
|
<span class="md-ellipsis">
|
|
8899
|
-
Changed
|
|
8857
|
+
Changed
|
|
8900
8858
|
</span>
|
|
8901
8859
|
</a>
|
|
8902
8860
|
|
|
8903
8861
|
</li>
|
|
8904
8862
|
|
|
8905
8863
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#fixed
|
|
8864
|
+
<a href="#fixed" class="md-nav__link">
|
|
8907
8865
|
<span class="md-ellipsis">
|
|
8908
|
-
Fixed
|
|
8866
|
+
Fixed
|
|
8909
8867
|
</span>
|
|
8910
8868
|
</a>
|
|
8911
8869
|
|
|
8912
8870
|
</li>
|
|
8913
8871
|
|
|
8914
8872
|
<li class="md-nav__item">
|
|
8915
|
-
<a href="#documentation
|
|
8873
|
+
<a href="#documentation" class="md-nav__link">
|
|
8916
8874
|
<span class="md-ellipsis">
|
|
8917
|
-
Documentation
|
|
8875
|
+
Documentation
|
|
8918
8876
|
</span>
|
|
8919
8877
|
</a>
|
|
8920
8878
|
|
|
8921
8879
|
</li>
|
|
8922
8880
|
|
|
8923
8881
|
<li class="md-nav__item">
|
|
8924
|
-
<a href="#housekeeping
|
|
8882
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8925
8883
|
<span class="md-ellipsis">
|
|
8926
|
-
Housekeeping
|
|
8884
|
+
Housekeeping
|
|
8927
8885
|
</span>
|
|
8928
8886
|
</a>
|
|
8929
8887
|
|
|
@@ -8945,18 +8903,18 @@
|
|
|
8945
8903
|
<ul class="md-nav__list">
|
|
8946
8904
|
|
|
8947
8905
|
<li class="md-nav__item">
|
|
8948
|
-
<a href="#
|
|
8906
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8949
8907
|
<span class="md-ellipsis">
|
|
8950
|
-
Documentation
|
|
8908
|
+
Documentation
|
|
8951
8909
|
</span>
|
|
8952
8910
|
</a>
|
|
8953
8911
|
|
|
8954
8912
|
</li>
|
|
8955
8913
|
|
|
8956
8914
|
<li class="md-nav__item">
|
|
8957
|
-
<a href="#
|
|
8915
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8958
8916
|
<span class="md-ellipsis">
|
|
8959
|
-
Housekeeping
|
|
8917
|
+
Housekeeping
|
|
8960
8918
|
</span>
|
|
8961
8919
|
</a>
|
|
8962
8920
|
|
|
@@ -8978,18 +8936,18 @@
|
|
|
8978
8936
|
<ul class="md-nav__list">
|
|
8979
8937
|
|
|
8980
8938
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#security
|
|
8939
|
+
<a href="#security" class="md-nav__link">
|
|
8982
8940
|
<span class="md-ellipsis">
|
|
8983
|
-
Security
|
|
8941
|
+
Security
|
|
8984
8942
|
</span>
|
|
8985
8943
|
</a>
|
|
8986
8944
|
|
|
8987
8945
|
</li>
|
|
8988
8946
|
|
|
8989
8947
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#
|
|
8948
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8991
8949
|
<span class="md-ellipsis">
|
|
8992
|
-
Fixed
|
|
8950
|
+
Fixed
|
|
8993
8951
|
</span>
|
|
8994
8952
|
</a>
|
|
8995
8953
|
|
|
@@ -9011,54 +8969,54 @@
|
|
|
9011
8969
|
<ul class="md-nav__list">
|
|
9012
8970
|
|
|
9013
8971
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
8972
|
+
<a href="#added_2" class="md-nav__link">
|
|
9015
8973
|
<span class="md-ellipsis">
|
|
9016
|
-
Added
|
|
8974
|
+
Added
|
|
9017
8975
|
</span>
|
|
9018
8976
|
</a>
|
|
9019
8977
|
|
|
9020
8978
|
</li>
|
|
9021
8979
|
|
|
9022
8980
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
8981
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9024
8982
|
<span class="md-ellipsis">
|
|
9025
|
-
Changed
|
|
8983
|
+
Changed
|
|
9026
8984
|
</span>
|
|
9027
8985
|
</a>
|
|
9028
8986
|
|
|
9029
8987
|
</li>
|
|
9030
8988
|
|
|
9031
8989
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
8990
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9033
8991
|
<span class="md-ellipsis">
|
|
9034
|
-
Fixed
|
|
8992
|
+
Fixed
|
|
9035
8993
|
</span>
|
|
9036
8994
|
</a>
|
|
9037
8995
|
|
|
9038
8996
|
</li>
|
|
9039
8997
|
|
|
9040
8998
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#dependencies
|
|
8999
|
+
<a href="#dependencies" class="md-nav__link">
|
|
9042
9000
|
<span class="md-ellipsis">
|
|
9043
|
-
Dependencies
|
|
9001
|
+
Dependencies
|
|
9044
9002
|
</span>
|
|
9045
9003
|
</a>
|
|
9046
9004
|
|
|
9047
9005
|
</li>
|
|
9048
9006
|
|
|
9049
9007
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
9008
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9051
9009
|
<span class="md-ellipsis">
|
|
9052
|
-
Documentation
|
|
9010
|
+
Documentation
|
|
9053
9011
|
</span>
|
|
9054
9012
|
</a>
|
|
9055
9013
|
|
|
9056
9014
|
</li>
|
|
9057
9015
|
|
|
9058
9016
|
<li class="md-nav__item">
|
|
9059
|
-
<a href="#
|
|
9017
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9060
9018
|
<span class="md-ellipsis">
|
|
9061
|
-
Housekeeping
|
|
9019
|
+
Housekeeping
|
|
9062
9020
|
</span>
|
|
9063
9021
|
</a>
|
|
9064
9022
|
|
|
@@ -9080,9 +9038,9 @@
|
|
|
9080
9038
|
<ul class="md-nav__list">
|
|
9081
9039
|
|
|
9082
9040
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9041
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9084
9042
|
<span class="md-ellipsis">
|
|
9085
|
-
Housekeeping
|
|
9043
|
+
Housekeeping
|
|
9086
9044
|
</span>
|
|
9087
9045
|
</a>
|
|
9088
9046
|
|
|
@@ -9104,45 +9062,45 @@
|
|
|
9104
9062
|
<ul class="md-nav__list">
|
|
9105
9063
|
|
|
9106
9064
|
<li class="md-nav__item">
|
|
9107
|
-
<a href="#
|
|
9065
|
+
<a href="#added_3" class="md-nav__link">
|
|
9108
9066
|
<span class="md-ellipsis">
|
|
9109
|
-
Added
|
|
9067
|
+
Added
|
|
9110
9068
|
</span>
|
|
9111
9069
|
</a>
|
|
9112
9070
|
|
|
9113
9071
|
</li>
|
|
9114
9072
|
|
|
9115
9073
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9074
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9117
9075
|
<span class="md-ellipsis">
|
|
9118
|
-
Fixed
|
|
9076
|
+
Fixed
|
|
9119
9077
|
</span>
|
|
9120
9078
|
</a>
|
|
9121
9079
|
|
|
9122
9080
|
</li>
|
|
9123
9081
|
|
|
9124
9082
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9083
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9126
9084
|
<span class="md-ellipsis">
|
|
9127
|
-
Dependencies
|
|
9085
|
+
Dependencies
|
|
9128
9086
|
</span>
|
|
9129
9087
|
</a>
|
|
9130
9088
|
|
|
9131
9089
|
</li>
|
|
9132
9090
|
|
|
9133
9091
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9092
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9135
9093
|
<span class="md-ellipsis">
|
|
9136
|
-
Documentation
|
|
9094
|
+
Documentation
|
|
9137
9095
|
</span>
|
|
9138
9096
|
</a>
|
|
9139
9097
|
|
|
9140
9098
|
</li>
|
|
9141
9099
|
|
|
9142
9100
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9101
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9144
9102
|
<span class="md-ellipsis">
|
|
9145
|
-
Housekeeping
|
|
9103
|
+
Housekeeping
|
|
9146
9104
|
</span>
|
|
9147
9105
|
</a>
|
|
9148
9106
|
|
|
@@ -9164,27 +9122,27 @@
|
|
|
9164
9122
|
<ul class="md-nav__list">
|
|
9165
9123
|
|
|
9166
9124
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
9125
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9168
9126
|
<span class="md-ellipsis">
|
|
9169
|
-
Fixed
|
|
9127
|
+
Fixed
|
|
9170
9128
|
</span>
|
|
9171
9129
|
</a>
|
|
9172
9130
|
|
|
9173
9131
|
</li>
|
|
9174
9132
|
|
|
9175
9133
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#
|
|
9134
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9177
9135
|
<span class="md-ellipsis">
|
|
9178
|
-
Documentation
|
|
9136
|
+
Documentation
|
|
9179
9137
|
</span>
|
|
9180
9138
|
</a>
|
|
9181
9139
|
|
|
9182
9140
|
</li>
|
|
9183
9141
|
|
|
9184
9142
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9143
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9186
9144
|
<span class="md-ellipsis">
|
|
9187
|
-
Housekeeping
|
|
9145
|
+
Housekeeping
|
|
9188
9146
|
</span>
|
|
9189
9147
|
</a>
|
|
9190
9148
|
|
|
@@ -9206,45 +9164,45 @@
|
|
|
9206
9164
|
<ul class="md-nav__list">
|
|
9207
9165
|
|
|
9208
9166
|
<li class="md-nav__item">
|
|
9209
|
-
<a href="#
|
|
9167
|
+
<a href="#security_1" class="md-nav__link">
|
|
9210
9168
|
<span class="md-ellipsis">
|
|
9211
|
-
Security
|
|
9169
|
+
Security
|
|
9212
9170
|
</span>
|
|
9213
9171
|
</a>
|
|
9214
9172
|
|
|
9215
9173
|
</li>
|
|
9216
9174
|
|
|
9217
9175
|
<li class="md-nav__item">
|
|
9218
|
-
<a href="#
|
|
9176
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9219
9177
|
<span class="md-ellipsis">
|
|
9220
|
-
Changed
|
|
9178
|
+
Changed
|
|
9221
9179
|
</span>
|
|
9222
9180
|
</a>
|
|
9223
9181
|
|
|
9224
9182
|
</li>
|
|
9225
9183
|
|
|
9226
9184
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9185
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9228
9186
|
<span class="md-ellipsis">
|
|
9229
|
-
Fixed
|
|
9187
|
+
Fixed
|
|
9230
9188
|
</span>
|
|
9231
9189
|
</a>
|
|
9232
9190
|
|
|
9233
9191
|
</li>
|
|
9234
9192
|
|
|
9235
9193
|
<li class="md-nav__item">
|
|
9236
|
-
<a href="#
|
|
9194
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9237
9195
|
<span class="md-ellipsis">
|
|
9238
|
-
Documentation
|
|
9196
|
+
Documentation
|
|
9239
9197
|
</span>
|
|
9240
9198
|
</a>
|
|
9241
9199
|
|
|
9242
9200
|
</li>
|
|
9243
9201
|
|
|
9244
9202
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9203
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9246
9204
|
<span class="md-ellipsis">
|
|
9247
|
-
Housekeeping
|
|
9205
|
+
Housekeeping
|
|
9248
9206
|
</span>
|
|
9249
9207
|
</a>
|
|
9250
9208
|
|
|
@@ -9266,27 +9224,27 @@
|
|
|
9266
9224
|
<ul class="md-nav__list">
|
|
9267
9225
|
|
|
9268
9226
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9227
|
+
<a href="#security_2" class="md-nav__link">
|
|
9270
9228
|
<span class="md-ellipsis">
|
|
9271
|
-
Security
|
|
9229
|
+
Security
|
|
9272
9230
|
</span>
|
|
9273
9231
|
</a>
|
|
9274
9232
|
|
|
9275
9233
|
</li>
|
|
9276
9234
|
|
|
9277
9235
|
<li class="md-nav__item">
|
|
9278
|
-
<a href="#
|
|
9236
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9279
9237
|
<span class="md-ellipsis">
|
|
9280
|
-
Fixed
|
|
9238
|
+
Fixed
|
|
9281
9239
|
</span>
|
|
9282
9240
|
</a>
|
|
9283
9241
|
|
|
9284
9242
|
</li>
|
|
9285
9243
|
|
|
9286
9244
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9245
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9288
9246
|
<span class="md-ellipsis">
|
|
9289
|
-
Documentation
|
|
9247
|
+
Documentation
|
|
9290
9248
|
</span>
|
|
9291
9249
|
</a>
|
|
9292
9250
|
|
|
@@ -9308,36 +9266,36 @@
|
|
|
9308
9266
|
<ul class="md-nav__list">
|
|
9309
9267
|
|
|
9310
9268
|
<li class="md-nav__item">
|
|
9311
|
-
<a href="#
|
|
9269
|
+
<a href="#added_4" class="md-nav__link">
|
|
9312
9270
|
<span class="md-ellipsis">
|
|
9313
|
-
Added
|
|
9271
|
+
Added
|
|
9314
9272
|
</span>
|
|
9315
9273
|
</a>
|
|
9316
9274
|
|
|
9317
9275
|
</li>
|
|
9318
9276
|
|
|
9319
9277
|
<li class="md-nav__item">
|
|
9320
|
-
<a href="#
|
|
9278
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9321
9279
|
<span class="md-ellipsis">
|
|
9322
|
-
Changed
|
|
9280
|
+
Changed
|
|
9323
9281
|
</span>
|
|
9324
9282
|
</a>
|
|
9325
9283
|
|
|
9326
9284
|
</li>
|
|
9327
9285
|
|
|
9328
9286
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9287
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9330
9288
|
<span class="md-ellipsis">
|
|
9331
|
-
Fixed
|
|
9289
|
+
Fixed
|
|
9332
9290
|
</span>
|
|
9333
9291
|
</a>
|
|
9334
9292
|
|
|
9335
9293
|
</li>
|
|
9336
9294
|
|
|
9337
9295
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9296
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
9339
9297
|
<span class="md-ellipsis">
|
|
9340
|
-
Documentation
|
|
9298
|
+
Documentation
|
|
9341
9299
|
</span>
|
|
9342
9300
|
</a>
|
|
9343
9301
|
|
|
@@ -9359,36 +9317,36 @@
|
|
|
9359
9317
|
<ul class="md-nav__list">
|
|
9360
9318
|
|
|
9361
9319
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9320
|
+
<a href="#security_3" class="md-nav__link">
|
|
9363
9321
|
<span class="md-ellipsis">
|
|
9364
|
-
Security
|
|
9322
|
+
Security
|
|
9365
9323
|
</span>
|
|
9366
9324
|
</a>
|
|
9367
9325
|
|
|
9368
9326
|
</li>
|
|
9369
9327
|
|
|
9370
9328
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9329
|
+
<a href="#added_5" class="md-nav__link">
|
|
9372
9330
|
<span class="md-ellipsis">
|
|
9373
|
-
Added
|
|
9331
|
+
Added
|
|
9374
9332
|
</span>
|
|
9375
9333
|
</a>
|
|
9376
9334
|
|
|
9377
9335
|
</li>
|
|
9378
9336
|
|
|
9379
9337
|
<li class="md-nav__item">
|
|
9380
|
-
<a href="#
|
|
9338
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9381
9339
|
<span class="md-ellipsis">
|
|
9382
|
-
Changed
|
|
9340
|
+
Changed
|
|
9383
9341
|
</span>
|
|
9384
9342
|
</a>
|
|
9385
9343
|
|
|
9386
9344
|
</li>
|
|
9387
9345
|
|
|
9388
9346
|
<li class="md-nav__item">
|
|
9389
|
-
<a href="#
|
|
9347
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9390
9348
|
<span class="md-ellipsis">
|
|
9391
|
-
Fixed
|
|
9349
|
+
Fixed
|
|
9392
9350
|
</span>
|
|
9393
9351
|
</a>
|
|
9394
9352
|
|
|
@@ -9410,54 +9368,54 @@
|
|
|
9410
9368
|
<ul class="md-nav__list">
|
|
9411
9369
|
|
|
9412
9370
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9371
|
+
<a href="#added_6" class="md-nav__link">
|
|
9414
9372
|
<span class="md-ellipsis">
|
|
9415
|
-
Added
|
|
9373
|
+
Added
|
|
9416
9374
|
</span>
|
|
9417
9375
|
</a>
|
|
9418
9376
|
|
|
9419
9377
|
</li>
|
|
9420
9378
|
|
|
9421
9379
|
<li class="md-nav__item">
|
|
9422
|
-
<a href="#
|
|
9380
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9423
9381
|
<span class="md-ellipsis">
|
|
9424
|
-
Changed
|
|
9382
|
+
Changed
|
|
9425
9383
|
</span>
|
|
9426
9384
|
</a>
|
|
9427
9385
|
|
|
9428
9386
|
</li>
|
|
9429
9387
|
|
|
9430
9388
|
<li class="md-nav__item">
|
|
9431
|
-
<a href="#removed
|
|
9389
|
+
<a href="#removed" class="md-nav__link">
|
|
9432
9390
|
<span class="md-ellipsis">
|
|
9433
|
-
Removed
|
|
9391
|
+
Removed
|
|
9434
9392
|
</span>
|
|
9435
9393
|
</a>
|
|
9436
9394
|
|
|
9437
9395
|
</li>
|
|
9438
9396
|
|
|
9439
9397
|
<li class="md-nav__item">
|
|
9440
|
-
<a href="#
|
|
9398
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9441
9399
|
<span class="md-ellipsis">
|
|
9442
|
-
Fixed
|
|
9400
|
+
Fixed
|
|
9443
9401
|
</span>
|
|
9444
9402
|
</a>
|
|
9445
9403
|
|
|
9446
9404
|
</li>
|
|
9447
9405
|
|
|
9448
9406
|
<li class="md-nav__item">
|
|
9449
|
-
<a href="#
|
|
9407
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9450
9408
|
<span class="md-ellipsis">
|
|
9451
|
-
Dependencies
|
|
9409
|
+
Dependencies
|
|
9452
9410
|
</span>
|
|
9453
9411
|
</a>
|
|
9454
9412
|
|
|
9455
9413
|
</li>
|
|
9456
9414
|
|
|
9457
9415
|
<li class="md-nav__item">
|
|
9458
|
-
<a href="#
|
|
9416
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
9459
9417
|
<span class="md-ellipsis">
|
|
9460
|
-
Documentation
|
|
9418
|
+
Documentation
|
|
9461
9419
|
</span>
|
|
9462
9420
|
</a>
|
|
9463
9421
|
|
|
@@ -9479,54 +9437,54 @@
|
|
|
9479
9437
|
<ul class="md-nav__list">
|
|
9480
9438
|
|
|
9481
9439
|
<li class="md-nav__item">
|
|
9482
|
-
<a href="#
|
|
9440
|
+
<a href="#security_4" class="md-nav__link">
|
|
9483
9441
|
<span class="md-ellipsis">
|
|
9484
|
-
Security
|
|
9442
|
+
Security
|
|
9485
9443
|
</span>
|
|
9486
9444
|
</a>
|
|
9487
9445
|
|
|
9488
9446
|
</li>
|
|
9489
9447
|
|
|
9490
9448
|
<li class="md-nav__item">
|
|
9491
|
-
<a href="#
|
|
9449
|
+
<a href="#added_7" class="md-nav__link">
|
|
9492
9450
|
<span class="md-ellipsis">
|
|
9493
|
-
Added
|
|
9451
|
+
Added
|
|
9494
9452
|
</span>
|
|
9495
9453
|
</a>
|
|
9496
9454
|
|
|
9497
9455
|
</li>
|
|
9498
9456
|
|
|
9499
9457
|
<li class="md-nav__item">
|
|
9500
|
-
<a href="#
|
|
9458
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9501
9459
|
<span class="md-ellipsis">
|
|
9502
|
-
Changed
|
|
9460
|
+
Changed
|
|
9503
9461
|
</span>
|
|
9504
9462
|
</a>
|
|
9505
9463
|
|
|
9506
9464
|
</li>
|
|
9507
9465
|
|
|
9508
9466
|
<li class="md-nav__item">
|
|
9509
|
-
<a href="#
|
|
9467
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9510
9468
|
<span class="md-ellipsis">
|
|
9511
|
-
Fixed
|
|
9469
|
+
Fixed
|
|
9512
9470
|
</span>
|
|
9513
9471
|
</a>
|
|
9514
9472
|
|
|
9515
9473
|
</li>
|
|
9516
9474
|
|
|
9517
9475
|
<li class="md-nav__item">
|
|
9518
|
-
<a href="#
|
|
9476
|
+
<a href="#documentation_9" class="md-nav__link">
|
|
9519
9477
|
<span class="md-ellipsis">
|
|
9520
|
-
Documentation
|
|
9478
|
+
Documentation
|
|
9521
9479
|
</span>
|
|
9522
9480
|
</a>
|
|
9523
9481
|
|
|
9524
9482
|
</li>
|
|
9525
9483
|
|
|
9526
9484
|
<li class="md-nav__item">
|
|
9527
|
-
<a href="#
|
|
9485
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9528
9486
|
<span class="md-ellipsis">
|
|
9529
|
-
Housekeeping
|
|
9487
|
+
Housekeeping
|
|
9530
9488
|
</span>
|
|
9531
9489
|
</a>
|
|
9532
9490
|
|
|
@@ -10186,45 +10144,45 @@
|
|
|
10186
10144
|
<ul class="md-nav__list">
|
|
10187
10145
|
|
|
10188
10146
|
<li class="md-nav__item">
|
|
10189
|
-
<a href="#
|
|
10147
|
+
<a href="#added_1" class="md-nav__link">
|
|
10190
10148
|
<span class="md-ellipsis">
|
|
10191
|
-
Added
|
|
10149
|
+
Added
|
|
10192
10150
|
</span>
|
|
10193
10151
|
</a>
|
|
10194
10152
|
|
|
10195
10153
|
</li>
|
|
10196
10154
|
|
|
10197
10155
|
<li class="md-nav__item">
|
|
10198
|
-
<a href="#
|
|
10156
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10199
10157
|
<span class="md-ellipsis">
|
|
10200
|
-
Changed
|
|
10158
|
+
Changed
|
|
10201
10159
|
</span>
|
|
10202
10160
|
</a>
|
|
10203
10161
|
|
|
10204
10162
|
</li>
|
|
10205
10163
|
|
|
10206
10164
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#fixed
|
|
10165
|
+
<a href="#fixed" class="md-nav__link">
|
|
10208
10166
|
<span class="md-ellipsis">
|
|
10209
|
-
Fixed
|
|
10167
|
+
Fixed
|
|
10210
10168
|
</span>
|
|
10211
10169
|
</a>
|
|
10212
10170
|
|
|
10213
10171
|
</li>
|
|
10214
10172
|
|
|
10215
10173
|
<li class="md-nav__item">
|
|
10216
|
-
<a href="#documentation
|
|
10174
|
+
<a href="#documentation" class="md-nav__link">
|
|
10217
10175
|
<span class="md-ellipsis">
|
|
10218
|
-
Documentation
|
|
10176
|
+
Documentation
|
|
10219
10177
|
</span>
|
|
10220
10178
|
</a>
|
|
10221
10179
|
|
|
10222
10180
|
</li>
|
|
10223
10181
|
|
|
10224
10182
|
<li class="md-nav__item">
|
|
10225
|
-
<a href="#housekeeping
|
|
10183
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10226
10184
|
<span class="md-ellipsis">
|
|
10227
|
-
Housekeeping
|
|
10185
|
+
Housekeeping
|
|
10228
10186
|
</span>
|
|
10229
10187
|
</a>
|
|
10230
10188
|
|
|
@@ -10246,18 +10204,18 @@
|
|
|
10246
10204
|
<ul class="md-nav__list">
|
|
10247
10205
|
|
|
10248
10206
|
<li class="md-nav__item">
|
|
10249
|
-
<a href="#
|
|
10207
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10250
10208
|
<span class="md-ellipsis">
|
|
10251
|
-
Documentation
|
|
10209
|
+
Documentation
|
|
10252
10210
|
</span>
|
|
10253
10211
|
</a>
|
|
10254
10212
|
|
|
10255
10213
|
</li>
|
|
10256
10214
|
|
|
10257
10215
|
<li class="md-nav__item">
|
|
10258
|
-
<a href="#
|
|
10216
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10259
10217
|
<span class="md-ellipsis">
|
|
10260
|
-
Housekeeping
|
|
10218
|
+
Housekeeping
|
|
10261
10219
|
</span>
|
|
10262
10220
|
</a>
|
|
10263
10221
|
|
|
@@ -10279,18 +10237,18 @@
|
|
|
10279
10237
|
<ul class="md-nav__list">
|
|
10280
10238
|
|
|
10281
10239
|
<li class="md-nav__item">
|
|
10282
|
-
<a href="#security
|
|
10240
|
+
<a href="#security" class="md-nav__link">
|
|
10283
10241
|
<span class="md-ellipsis">
|
|
10284
|
-
Security
|
|
10242
|
+
Security
|
|
10285
10243
|
</span>
|
|
10286
10244
|
</a>
|
|
10287
10245
|
|
|
10288
10246
|
</li>
|
|
10289
10247
|
|
|
10290
10248
|
<li class="md-nav__item">
|
|
10291
|
-
<a href="#
|
|
10249
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10292
10250
|
<span class="md-ellipsis">
|
|
10293
|
-
Fixed
|
|
10251
|
+
Fixed
|
|
10294
10252
|
</span>
|
|
10295
10253
|
</a>
|
|
10296
10254
|
|
|
@@ -10312,54 +10270,54 @@
|
|
|
10312
10270
|
<ul class="md-nav__list">
|
|
10313
10271
|
|
|
10314
10272
|
<li class="md-nav__item">
|
|
10315
|
-
<a href="#
|
|
10273
|
+
<a href="#added_2" class="md-nav__link">
|
|
10316
10274
|
<span class="md-ellipsis">
|
|
10317
|
-
Added
|
|
10275
|
+
Added
|
|
10318
10276
|
</span>
|
|
10319
10277
|
</a>
|
|
10320
10278
|
|
|
10321
10279
|
</li>
|
|
10322
10280
|
|
|
10323
10281
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10282
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10325
10283
|
<span class="md-ellipsis">
|
|
10326
|
-
Changed
|
|
10284
|
+
Changed
|
|
10327
10285
|
</span>
|
|
10328
10286
|
</a>
|
|
10329
10287
|
|
|
10330
10288
|
</li>
|
|
10331
10289
|
|
|
10332
10290
|
<li class="md-nav__item">
|
|
10333
|
-
<a href="#
|
|
10291
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10334
10292
|
<span class="md-ellipsis">
|
|
10335
|
-
Fixed
|
|
10293
|
+
Fixed
|
|
10336
10294
|
</span>
|
|
10337
10295
|
</a>
|
|
10338
10296
|
|
|
10339
10297
|
</li>
|
|
10340
10298
|
|
|
10341
10299
|
<li class="md-nav__item">
|
|
10342
|
-
<a href="#dependencies
|
|
10300
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10343
10301
|
<span class="md-ellipsis">
|
|
10344
|
-
Dependencies
|
|
10302
|
+
Dependencies
|
|
10345
10303
|
</span>
|
|
10346
10304
|
</a>
|
|
10347
10305
|
|
|
10348
10306
|
</li>
|
|
10349
10307
|
|
|
10350
10308
|
<li class="md-nav__item">
|
|
10351
|
-
<a href="#
|
|
10309
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10352
10310
|
<span class="md-ellipsis">
|
|
10353
|
-
Documentation
|
|
10311
|
+
Documentation
|
|
10354
10312
|
</span>
|
|
10355
10313
|
</a>
|
|
10356
10314
|
|
|
10357
10315
|
</li>
|
|
10358
10316
|
|
|
10359
10317
|
<li class="md-nav__item">
|
|
10360
|
-
<a href="#
|
|
10318
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10361
10319
|
<span class="md-ellipsis">
|
|
10362
|
-
Housekeeping
|
|
10320
|
+
Housekeeping
|
|
10363
10321
|
</span>
|
|
10364
10322
|
</a>
|
|
10365
10323
|
|
|
@@ -10381,9 +10339,9 @@
|
|
|
10381
10339
|
<ul class="md-nav__list">
|
|
10382
10340
|
|
|
10383
10341
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10342
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10385
10343
|
<span class="md-ellipsis">
|
|
10386
|
-
Housekeeping
|
|
10344
|
+
Housekeeping
|
|
10387
10345
|
</span>
|
|
10388
10346
|
</a>
|
|
10389
10347
|
|
|
@@ -10405,45 +10363,45 @@
|
|
|
10405
10363
|
<ul class="md-nav__list">
|
|
10406
10364
|
|
|
10407
10365
|
<li class="md-nav__item">
|
|
10408
|
-
<a href="#
|
|
10366
|
+
<a href="#added_3" class="md-nav__link">
|
|
10409
10367
|
<span class="md-ellipsis">
|
|
10410
|
-
Added
|
|
10368
|
+
Added
|
|
10411
10369
|
</span>
|
|
10412
10370
|
</a>
|
|
10413
10371
|
|
|
10414
10372
|
</li>
|
|
10415
10373
|
|
|
10416
10374
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10375
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10418
10376
|
<span class="md-ellipsis">
|
|
10419
|
-
Fixed
|
|
10377
|
+
Fixed
|
|
10420
10378
|
</span>
|
|
10421
10379
|
</a>
|
|
10422
10380
|
|
|
10423
10381
|
</li>
|
|
10424
10382
|
|
|
10425
10383
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#
|
|
10384
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10427
10385
|
<span class="md-ellipsis">
|
|
10428
|
-
Dependencies
|
|
10386
|
+
Dependencies
|
|
10429
10387
|
</span>
|
|
10430
10388
|
</a>
|
|
10431
10389
|
|
|
10432
10390
|
</li>
|
|
10433
10391
|
|
|
10434
10392
|
<li class="md-nav__item">
|
|
10435
|
-
<a href="#
|
|
10393
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10436
10394
|
<span class="md-ellipsis">
|
|
10437
|
-
Documentation
|
|
10395
|
+
Documentation
|
|
10438
10396
|
</span>
|
|
10439
10397
|
</a>
|
|
10440
10398
|
|
|
10441
10399
|
</li>
|
|
10442
10400
|
|
|
10443
10401
|
<li class="md-nav__item">
|
|
10444
|
-
<a href="#
|
|
10402
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10445
10403
|
<span class="md-ellipsis">
|
|
10446
|
-
Housekeeping
|
|
10404
|
+
Housekeeping
|
|
10447
10405
|
</span>
|
|
10448
10406
|
</a>
|
|
10449
10407
|
|
|
@@ -10465,27 +10423,27 @@
|
|
|
10465
10423
|
<ul class="md-nav__list">
|
|
10466
10424
|
|
|
10467
10425
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10426
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10469
10427
|
<span class="md-ellipsis">
|
|
10470
|
-
Fixed
|
|
10428
|
+
Fixed
|
|
10471
10429
|
</span>
|
|
10472
10430
|
</a>
|
|
10473
10431
|
|
|
10474
10432
|
</li>
|
|
10475
10433
|
|
|
10476
10434
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10435
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10478
10436
|
<span class="md-ellipsis">
|
|
10479
|
-
Documentation
|
|
10437
|
+
Documentation
|
|
10480
10438
|
</span>
|
|
10481
10439
|
</a>
|
|
10482
10440
|
|
|
10483
10441
|
</li>
|
|
10484
10442
|
|
|
10485
10443
|
<li class="md-nav__item">
|
|
10486
|
-
<a href="#
|
|
10444
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10487
10445
|
<span class="md-ellipsis">
|
|
10488
|
-
Housekeeping
|
|
10446
|
+
Housekeeping
|
|
10489
10447
|
</span>
|
|
10490
10448
|
</a>
|
|
10491
10449
|
|
|
@@ -10507,45 +10465,45 @@
|
|
|
10507
10465
|
<ul class="md-nav__list">
|
|
10508
10466
|
|
|
10509
10467
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
10468
|
+
<a href="#security_1" class="md-nav__link">
|
|
10511
10469
|
<span class="md-ellipsis">
|
|
10512
|
-
Security
|
|
10470
|
+
Security
|
|
10513
10471
|
</span>
|
|
10514
10472
|
</a>
|
|
10515
10473
|
|
|
10516
10474
|
</li>
|
|
10517
10475
|
|
|
10518
10476
|
<li class="md-nav__item">
|
|
10519
|
-
<a href="#
|
|
10477
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10520
10478
|
<span class="md-ellipsis">
|
|
10521
|
-
Changed
|
|
10479
|
+
Changed
|
|
10522
10480
|
</span>
|
|
10523
10481
|
</a>
|
|
10524
10482
|
|
|
10525
10483
|
</li>
|
|
10526
10484
|
|
|
10527
10485
|
<li class="md-nav__item">
|
|
10528
|
-
<a href="#
|
|
10486
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10529
10487
|
<span class="md-ellipsis">
|
|
10530
|
-
Fixed
|
|
10488
|
+
Fixed
|
|
10531
10489
|
</span>
|
|
10532
10490
|
</a>
|
|
10533
10491
|
|
|
10534
10492
|
</li>
|
|
10535
10493
|
|
|
10536
10494
|
<li class="md-nav__item">
|
|
10537
|
-
<a href="#
|
|
10495
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
10538
10496
|
<span class="md-ellipsis">
|
|
10539
|
-
Documentation
|
|
10497
|
+
Documentation
|
|
10540
10498
|
</span>
|
|
10541
10499
|
</a>
|
|
10542
10500
|
|
|
10543
10501
|
</li>
|
|
10544
10502
|
|
|
10545
10503
|
<li class="md-nav__item">
|
|
10546
|
-
<a href="#
|
|
10504
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10547
10505
|
<span class="md-ellipsis">
|
|
10548
|
-
Housekeeping
|
|
10506
|
+
Housekeeping
|
|
10549
10507
|
</span>
|
|
10550
10508
|
</a>
|
|
10551
10509
|
|
|
@@ -10567,27 +10525,27 @@
|
|
|
10567
10525
|
<ul class="md-nav__list">
|
|
10568
10526
|
|
|
10569
10527
|
<li class="md-nav__item">
|
|
10570
|
-
<a href="#
|
|
10528
|
+
<a href="#security_2" class="md-nav__link">
|
|
10571
10529
|
<span class="md-ellipsis">
|
|
10572
|
-
Security
|
|
10530
|
+
Security
|
|
10573
10531
|
</span>
|
|
10574
10532
|
</a>
|
|
10575
10533
|
|
|
10576
10534
|
</li>
|
|
10577
10535
|
|
|
10578
10536
|
<li class="md-nav__item">
|
|
10579
|
-
<a href="#
|
|
10537
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10580
10538
|
<span class="md-ellipsis">
|
|
10581
|
-
Fixed
|
|
10539
|
+
Fixed
|
|
10582
10540
|
</span>
|
|
10583
10541
|
</a>
|
|
10584
10542
|
|
|
10585
10543
|
</li>
|
|
10586
10544
|
|
|
10587
10545
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
10546
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10589
10547
|
<span class="md-ellipsis">
|
|
10590
|
-
Documentation
|
|
10548
|
+
Documentation
|
|
10591
10549
|
</span>
|
|
10592
10550
|
</a>
|
|
10593
10551
|
|
|
@@ -10609,36 +10567,36 @@
|
|
|
10609
10567
|
<ul class="md-nav__list">
|
|
10610
10568
|
|
|
10611
10569
|
<li class="md-nav__item">
|
|
10612
|
-
<a href="#
|
|
10570
|
+
<a href="#added_4" class="md-nav__link">
|
|
10613
10571
|
<span class="md-ellipsis">
|
|
10614
|
-
Added
|
|
10572
|
+
Added
|
|
10615
10573
|
</span>
|
|
10616
10574
|
</a>
|
|
10617
10575
|
|
|
10618
10576
|
</li>
|
|
10619
10577
|
|
|
10620
10578
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10579
|
+
<a href="#changed_4" class="md-nav__link">
|
|
10622
10580
|
<span class="md-ellipsis">
|
|
10623
|
-
Changed
|
|
10581
|
+
Changed
|
|
10624
10582
|
</span>
|
|
10625
10583
|
</a>
|
|
10626
10584
|
|
|
10627
10585
|
</li>
|
|
10628
10586
|
|
|
10629
10587
|
<li class="md-nav__item">
|
|
10630
|
-
<a href="#
|
|
10588
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10631
10589
|
<span class="md-ellipsis">
|
|
10632
|
-
Fixed
|
|
10590
|
+
Fixed
|
|
10633
10591
|
</span>
|
|
10634
10592
|
</a>
|
|
10635
10593
|
|
|
10636
10594
|
</li>
|
|
10637
10595
|
|
|
10638
10596
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
10597
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10640
10598
|
<span class="md-ellipsis">
|
|
10641
|
-
Documentation
|
|
10599
|
+
Documentation
|
|
10642
10600
|
</span>
|
|
10643
10601
|
</a>
|
|
10644
10602
|
|
|
@@ -10660,36 +10618,36 @@
|
|
|
10660
10618
|
<ul class="md-nav__list">
|
|
10661
10619
|
|
|
10662
10620
|
<li class="md-nav__item">
|
|
10663
|
-
<a href="#
|
|
10621
|
+
<a href="#security_3" class="md-nav__link">
|
|
10664
10622
|
<span class="md-ellipsis">
|
|
10665
|
-
Security
|
|
10623
|
+
Security
|
|
10666
10624
|
</span>
|
|
10667
10625
|
</a>
|
|
10668
10626
|
|
|
10669
10627
|
</li>
|
|
10670
10628
|
|
|
10671
10629
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10630
|
+
<a href="#added_5" class="md-nav__link">
|
|
10673
10631
|
<span class="md-ellipsis">
|
|
10674
|
-
Added
|
|
10632
|
+
Added
|
|
10675
10633
|
</span>
|
|
10676
10634
|
</a>
|
|
10677
10635
|
|
|
10678
10636
|
</li>
|
|
10679
10637
|
|
|
10680
10638
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10639
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10682
10640
|
<span class="md-ellipsis">
|
|
10683
|
-
Changed
|
|
10641
|
+
Changed
|
|
10684
10642
|
</span>
|
|
10685
10643
|
</a>
|
|
10686
10644
|
|
|
10687
10645
|
</li>
|
|
10688
10646
|
|
|
10689
10647
|
<li class="md-nav__item">
|
|
10690
|
-
<a href="#
|
|
10648
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10691
10649
|
<span class="md-ellipsis">
|
|
10692
|
-
Fixed
|
|
10650
|
+
Fixed
|
|
10693
10651
|
</span>
|
|
10694
10652
|
</a>
|
|
10695
10653
|
|
|
@@ -10711,54 +10669,54 @@
|
|
|
10711
10669
|
<ul class="md-nav__list">
|
|
10712
10670
|
|
|
10713
10671
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
10672
|
+
<a href="#added_6" class="md-nav__link">
|
|
10715
10673
|
<span class="md-ellipsis">
|
|
10716
|
-
Added
|
|
10674
|
+
Added
|
|
10717
10675
|
</span>
|
|
10718
10676
|
</a>
|
|
10719
10677
|
|
|
10720
10678
|
</li>
|
|
10721
10679
|
|
|
10722
10680
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
10681
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10724
10682
|
<span class="md-ellipsis">
|
|
10725
|
-
Changed
|
|
10683
|
+
Changed
|
|
10726
10684
|
</span>
|
|
10727
10685
|
</a>
|
|
10728
10686
|
|
|
10729
10687
|
</li>
|
|
10730
10688
|
|
|
10731
10689
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#removed
|
|
10690
|
+
<a href="#removed" class="md-nav__link">
|
|
10733
10691
|
<span class="md-ellipsis">
|
|
10734
|
-
Removed
|
|
10692
|
+
Removed
|
|
10735
10693
|
</span>
|
|
10736
10694
|
</a>
|
|
10737
10695
|
|
|
10738
10696
|
</li>
|
|
10739
10697
|
|
|
10740
10698
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
10699
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10742
10700
|
<span class="md-ellipsis">
|
|
10743
|
-
Fixed
|
|
10701
|
+
Fixed
|
|
10744
10702
|
</span>
|
|
10745
10703
|
</a>
|
|
10746
10704
|
|
|
10747
10705
|
</li>
|
|
10748
10706
|
|
|
10749
10707
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10708
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10751
10709
|
<span class="md-ellipsis">
|
|
10752
|
-
Dependencies
|
|
10710
|
+
Dependencies
|
|
10753
10711
|
</span>
|
|
10754
10712
|
</a>
|
|
10755
10713
|
|
|
10756
10714
|
</li>
|
|
10757
10715
|
|
|
10758
10716
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
10717
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
10760
10718
|
<span class="md-ellipsis">
|
|
10761
|
-
Documentation
|
|
10719
|
+
Documentation
|
|
10762
10720
|
</span>
|
|
10763
10721
|
</a>
|
|
10764
10722
|
|
|
@@ -10780,54 +10738,54 @@
|
|
|
10780
10738
|
<ul class="md-nav__list">
|
|
10781
10739
|
|
|
10782
10740
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
10741
|
+
<a href="#security_4" class="md-nav__link">
|
|
10784
10742
|
<span class="md-ellipsis">
|
|
10785
|
-
Security
|
|
10743
|
+
Security
|
|
10786
10744
|
</span>
|
|
10787
10745
|
</a>
|
|
10788
10746
|
|
|
10789
10747
|
</li>
|
|
10790
10748
|
|
|
10791
10749
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
10750
|
+
<a href="#added_7" class="md-nav__link">
|
|
10793
10751
|
<span class="md-ellipsis">
|
|
10794
|
-
Added
|
|
10752
|
+
Added
|
|
10795
10753
|
</span>
|
|
10796
10754
|
</a>
|
|
10797
10755
|
|
|
10798
10756
|
</li>
|
|
10799
10757
|
|
|
10800
10758
|
<li class="md-nav__item">
|
|
10801
|
-
<a href="#
|
|
10759
|
+
<a href="#changed_7" class="md-nav__link">
|
|
10802
10760
|
<span class="md-ellipsis">
|
|
10803
|
-
Changed
|
|
10761
|
+
Changed
|
|
10804
10762
|
</span>
|
|
10805
10763
|
</a>
|
|
10806
10764
|
|
|
10807
10765
|
</li>
|
|
10808
10766
|
|
|
10809
10767
|
<li class="md-nav__item">
|
|
10810
|
-
<a href="#
|
|
10768
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10811
10769
|
<span class="md-ellipsis">
|
|
10812
|
-
Fixed
|
|
10770
|
+
Fixed
|
|
10813
10771
|
</span>
|
|
10814
10772
|
</a>
|
|
10815
10773
|
|
|
10816
10774
|
</li>
|
|
10817
10775
|
|
|
10818
10776
|
<li class="md-nav__item">
|
|
10819
|
-
<a href="#
|
|
10777
|
+
<a href="#documentation_9" class="md-nav__link">
|
|
10820
10778
|
<span class="md-ellipsis">
|
|
10821
|
-
Documentation
|
|
10779
|
+
Documentation
|
|
10822
10780
|
</span>
|
|
10823
10781
|
</a>
|
|
10824
10782
|
|
|
10825
10783
|
</li>
|
|
10826
10784
|
|
|
10827
10785
|
<li class="md-nav__item">
|
|
10828
|
-
<a href="#
|
|
10786
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10829
10787
|
<span class="md-ellipsis">
|
|
10830
|
-
Housekeeping
|
|
10788
|
+
Housekeeping
|
|
10831
10789
|
</span>
|
|
10832
10790
|
</a>
|
|
10833
10791
|
|
|
@@ -10856,6 +10814,7 @@
|
|
|
10856
10814
|
|
|
10857
10815
|
|
|
10858
10816
|
|
|
10817
|
+
<!-- markdownlint-disable MD024 -->
|
|
10859
10818
|
<h1 id="nautobot-v12">Nautobot v1.2<a class="headerlink" href="#nautobot-v12" title="Permanent link">¶</a></h1>
|
|
10860
10819
|
<p>This document describes all new features and changes in Nautobot 1.2.</p>
|
|
10861
10820
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -10943,51 +10902,51 @@
|
|
|
10943
10902
|
<p>All models that have <code>slug</code> fields now use <code>AutoSlugField</code> from the <code>django-extensions</code> package. This means that when creating a record via the REST API, CSV import, or direct ORM Python calls, the <code>slug</code> field is now fully optional; if unspecified, it will be automatically assigned a unique value, just as how a <code>slug</code> is auto-populated in the UI when creating a new record.</p>
|
|
10944
10903
|
<p>Just as with the UI, the <code>slug</code> can still always be explicitly set if desired.</p>
|
|
10945
10904
|
<h2 id="v1211-2022-04-04">v1.2.11 (2022-04-04)<a class="headerlink" href="#v1211-2022-04-04" title="Permanent link">¶</a></h2>
|
|
10946
|
-
<h3 id="
|
|
10905
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10947
10906
|
<ul>
|
|
10948
10907
|
<li><a href="https://github.com/nautobot/nautobot/issues/1123">#1123</a> - Add validation for IPAddress <code>assigned_object_type</code> and <code>assigned_object_id</code>.</li>
|
|
10949
10908
|
<li><a href="https://github.com/nautobot/nautobot/issues/1146">#1146</a> - Added change date filtering lookup expressions to GraphQL.</li>
|
|
10950
10909
|
<li><a href="https://github.com/nautobot/nautobot/issues/1495">#1495</a> - Added full coverage of cable termination types to Graphene.</li>
|
|
10951
10910
|
<li><a href="https://github.com/nautobot/nautobot/issues/1501">#1501</a> - Add IP field to CSV export of device.</li>
|
|
10952
10911
|
</ul>
|
|
10953
|
-
<h3 id="
|
|
10912
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10954
10913
|
<ul>
|
|
10955
10914
|
<li><a href="https://github.com/nautobot/nautobot/pull/1536">#1536</a> - Removed the ServiceUnavailable exception when no <code>primary_ip</code> is available for a device, but other connection options are available.</li>
|
|
10956
10915
|
<li><a href="https://github.com/nautobot/nautobot/issues/1581">#1581</a> - Changed MultipleChoiceJSONField to accept choices as a callable, fixing Datasource Contents provided by plugins are not accepted as valid choice by REST API.</li>
|
|
10957
10916
|
</ul>
|
|
10958
|
-
<h3 id="fixed
|
|
10917
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10959
10918
|
<ul>
|
|
10960
10919
|
<li><a href="https://github.com/nautobot/nautobot/issues/1313">#1313</a> - Fixed GraphQL query error on OneToOneFields such as <code>IPAddress.primary_ip4_for</code></li>
|
|
10961
10920
|
<li><a href="https://github.com/nautobot/nautobot/issues/1408">#1408</a> - Fixed incorrect HTML in the Devices detail views.</li>
|
|
10962
10921
|
<li><a href="https://github.com/nautobot/nautobot/issues/1467">#1467</a> - Fixed an issue where at certain browser widths the nav bar would cover the top of the page content.</li>
|
|
10963
10922
|
<li><a href="https://github.com/nautobot/nautobot/issues/1523">#1523</a> - Fixed primary IP being unset after creating/updating different interface</li>
|
|
10964
10923
|
</ul>
|
|
10965
|
-
<h3 id="documentation
|
|
10924
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10966
10925
|
<ul>
|
|
10967
10926
|
<li><a href="https://github.com/nautobot/nautobot/pull/1529">#1529</a> - Added list of standard hex colors to the Tags documentation.</li>
|
|
10968
10927
|
<li><a href="https://github.com/nautobot/nautobot/issues/1583">#1583</a> - Fixed Nautobot service definition in PostgreSQL-backed development environment.</li>
|
|
10969
10928
|
<li><a href="https://github.com/nautobot/nautobot/issues/1584">#1584</a> - Replaced links in docs to celeryproject.org with celeryq.dev</li>
|
|
10970
10929
|
</ul>
|
|
10971
|
-
<h3 id="housekeeping
|
|
10930
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10972
10931
|
<ul>
|
|
10973
10932
|
<li><a href="https://github.com/nautobot/nautobot/issues/1548">#1548</a> - Pin Jinja2 version for mkdocs requirements to fix RTD docs builds related to API deprecation in Jinja2 >= 3.1.0</li>
|
|
10974
10933
|
<li><a href="https://github.com/nautobot/nautobot/pull/1599">#1599</a> - Bump mkdocs version for Snyk report.</li>
|
|
10975
10934
|
</ul>
|
|
10976
10935
|
<h2 id="v1210-2022-03-21">v1.2.10 (2022-03-21)<a class="headerlink" href="#v1210-2022-03-21" title="Permanent link">¶</a></h2>
|
|
10977
|
-
<h3 id="
|
|
10936
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10978
10937
|
<ul>
|
|
10979
10938
|
<li><a href="https://github.com/nautobot/nautobot/pull/1492">#1492</a> - Added note in the Jobs documentation about the use of <code>AbortTransaction</code> to end the job and force rollback.</li>
|
|
10980
10939
|
<li><a href="https://github.com/nautobot/nautobot/issues/1511">#1511</a> - Fixed left column of Read The Docs being cut off.</li>
|
|
10981
10940
|
<li><a href="https://github.com/nautobot/nautobot/pull/1517">#1517</a> - Added password filtering example to advanced logging section in docs.</li>
|
|
10982
10941
|
<li><a href="https://github.com/nautobot/nautobot/pull/1522">#1522</a> - Fixed link name attribute name in developer docs.</li>
|
|
10983
10942
|
</ul>
|
|
10984
|
-
<h3 id="
|
|
10943
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10985
10944
|
<ul>
|
|
10986
10945
|
<li><a href="https://github.com/nautobot/nautobot/pull/1514">#1514</a> - Simplified switching between PostgreSQL and MySQL database backends in the developer environment.</li>
|
|
10987
10946
|
<li><a href="https://github.com/nautobot/nautobot/pull/1518">#1518</a> - Updated GitHub Pull Request template to include detail section, todo list.</li>
|
|
10988
10947
|
</ul>
|
|
10989
10948
|
<h2 id="v129-2022-03-14">v1.2.9 (2022-03-14)<a class="headerlink" href="#v129-2022-03-14" title="Permanent link">¶</a></h2>
|
|
10990
|
-
<h3 id="security
|
|
10949
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10991
10950
|
<div class="admonition danger">
|
|
10992
10951
|
<p class="admonition-title">Danger</p>
|
|
10993
10952
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -10999,23 +10958,23 @@
|
|
|
10999
10958
|
<ul>
|
|
11000
10959
|
<li><a href="https://github.com/nautobot/nautobot/issues/1487">#1487</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a>, <a href="https://github.com/advisories/GHSA-9j59-75qj-795w">CVE-2022-24303</a>, and <a href="https://github.com/advisories/GHSA-4fx9-vc88-q2xc">potential infinite loop</a> by requiring Pillow >=9.0.1 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
11001
10960
|
</ul>
|
|
11002
|
-
<h3 id="
|
|
10961
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11003
10962
|
<ul>
|
|
11004
10963
|
<li><a href="https://github.com/nautobot/nautobot/issues/1431">#1431</a> - Fixed potential failure of <code>extras.0017_joblog_data_migration</code> migration when the job logs contain messages mistakenly logged as object references.</li>
|
|
11005
10964
|
<li><a href="https://github.com/nautobot/nautobot/issues/1459">#1459</a> - Fixed incorrect display of related devices and VMs in the Cluster Type and Cluster Group detail views.</li>
|
|
11006
10965
|
<li><a href="https://github.com/nautobot/nautobot/issues/1469">#1469</a> - Fixed incorrect CSV export for devices</li>
|
|
11007
10966
|
</ul>
|
|
11008
10967
|
<h2 id="v128-2022-03-07">v1.2.8 (2022-03-07)<a class="headerlink" href="#v128-2022-03-07" title="Permanent link">¶</a></h2>
|
|
11009
|
-
<h3 id="
|
|
10968
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
11010
10969
|
<ul>
|
|
11011
10970
|
<li><a href="https://github.com/nautobot/nautobot/issues/1242">#1242</a> - Add MAJOR.MINOR tags to Docker images upon release.</li>
|
|
11012
10971
|
<li><a href="https://github.com/nautobot/nautobot/pull/1446">#1446</a> - Apply title labels to Docker images.</li>
|
|
11013
10972
|
</ul>
|
|
11014
|
-
<h3 id="
|
|
10973
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11015
10974
|
<ul>
|
|
11016
10975
|
<li><a href="https://github.com/nautobot/nautobot/pull/1452">#1452</a> - Changed GitHub release workflow to not run on prerelease releases.</li>
|
|
11017
10976
|
</ul>
|
|
11018
|
-
<h3 id="
|
|
10977
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11019
10978
|
<ul>
|
|
11020
10979
|
<li><a href="https://github.com/nautobot/nautobot/issues/1301">#1301</a> - Fixed window history handling for views with tabs in Safari/Firefox.</li>
|
|
11021
10980
|
<li><a href="https://github.com/nautobot/nautobot/issues/1302">#1302</a> - Fixed missing Advanced tab on Virtual Machine detail view.</li>
|
|
@@ -11025,15 +10984,15 @@
|
|
|
11025
10984
|
<li><a href="https://github.com/nautobot/nautobot/issues/1412">#1412</a> - Fixed not being able to query for prefix family via GraphQL.</li>
|
|
11026
10985
|
<li><a href="https://github.com/nautobot/nautobot/issues/1442">#1442</a> - Fixed missing Advanced tab on Job Result, Git Repository, and Config Context Schema detail views.</li>
|
|
11027
10986
|
</ul>
|
|
11028
|
-
<h3 id="dependencies
|
|
10987
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11029
10988
|
<ul>
|
|
11030
10989
|
<li><a href="https://github.com/nautobot/nautobot/issues/1432">#1432</a> - Update django-redis to <code>5.2.x</code> to address <code>5.1.x</code> blocking redis <code>4.x</code> versions.</li>
|
|
11031
10990
|
</ul>
|
|
11032
|
-
<h3 id="
|
|
10991
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
11033
10992
|
<ul>
|
|
11034
10993
|
<li><a href="https://github.com/nautobot/nautobot/pull/1419">#1419</a> - Add documentation for specifying a CA cert file for LDAP authentication backend.</li>
|
|
11035
10994
|
</ul>
|
|
11036
|
-
<h3 id="
|
|
10995
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11037
10996
|
<ul>
|
|
11038
10997
|
<li><a href="https://github.com/nautobot/nautobot/issues/839">#839</a> - Add CODE_OF_CONDUCT.md to repository.</li>
|
|
11039
10998
|
<li><a href="https://github.com/nautobot/nautobot/pull/1299">#1299</a> - Add SECURITY.md to repository.</li>
|
|
@@ -11043,17 +11002,17 @@
|
|
|
11043
11002
|
<li><a href="https://github.com/nautobot/nautobot/pull/1453">#1453</a> - Changed feature request to use GitHub Issue Form.</li>
|
|
11044
11003
|
</ul>
|
|
11045
11004
|
<h2 id="v127-2022-02-22">v1.2.7 (2022-02-22)<a class="headerlink" href="#v127-2022-02-22" title="Permanent link">¶</a></h2>
|
|
11046
|
-
<h3 id="
|
|
11005
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11047
11006
|
<ul>
|
|
11048
11007
|
<li><a href="https://github.com/nautobot/nautobot/issues/1403">#1403</a> - Changes the GitHub Action on Release version template variable name.</li>
|
|
11049
11008
|
</ul>
|
|
11050
11009
|
<h2 id="v126-2022-02-22">v1.2.6 (2022-02-22)<a class="headerlink" href="#v126-2022-02-22" title="Permanent link">¶</a></h2>
|
|
11051
|
-
<h3 id="
|
|
11010
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11052
11011
|
<ul>
|
|
11053
11012
|
<li><a href="https://github.com/nautobot/nautobot/issues/1279">#1279</a> - Circuit terminations now render custom relationships on the circuit detail page.</li>
|
|
11054
11013
|
<li><a href="https://github.com/nautobot/nautobot/issues/1353">#1353</a> - Added UI for deleting previously uploaded images when editing a DeviceType.</li>
|
|
11055
11014
|
</ul>
|
|
11056
|
-
<h3 id="
|
|
11015
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11057
11016
|
<ul>
|
|
11058
11017
|
<li><a href="https://github.com/nautobot/nautobot/issues/1249">#1249</a> - Fixed a timing issue where after creating a custom field with a default value and immediately assigning values to this custom field on individual objects, the custom field values could be automatically reverted to the default value.</li>
|
|
11059
11018
|
<li><a href="https://github.com/nautobot/nautobot/pull/1280">#1280</a> - Added missing <code>get_absolute_url</code> method to the <code>CircuitTermination</code> model, fixing a UI error that could occur when relationships involve CircuitTerminations.</li>
|
|
@@ -11062,23 +11021,23 @@
|
|
|
11062
11021
|
<li><a href="https://github.com/nautobot/nautobot/issues/1335">#1335</a> - Fixed an issue with the Secret create/edit form that caused problems when defining AWS secrets using the <code>nautobot-secrets-providers</code> plugin.</li>
|
|
11063
11022
|
<li><a href="https://github.com/nautobot/nautobot/issues/1346">#1346</a> - Fixed an error in the periodic execution of Celery's built-in <code>celery.backend_cleanup</code> task.</li>
|
|
11064
11023
|
</ul>
|
|
11065
|
-
<h3 id="
|
|
11024
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11066
11025
|
<ul>
|
|
11067
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/1390">#1390</a> - Pinned transitive dependency <code>MarkupSafe</code> to version 2.0.1 as later versions are incompatible with Nautobot's current <code>Jinja2</code> dependency.</li>
|
|
11068
11027
|
</ul>
|
|
11069
|
-
<h3 id="
|
|
11028
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
11070
11029
|
<ul>
|
|
11071
11030
|
<li><a href="https://github.com/nautobot/nautobot/pull/1283">#1283</a> - Update Sentinel docs to have 3 hosts (minimum per Redis docs), and change <code>CELERY_BROKER_URL</code> to a multiline string instead of a Tuple (tuple is invalid, and raises an exception when job completes).</li>
|
|
11072
11031
|
<li><a href="https://github.com/nautobot/nautobot/pull/1328">#1328</a> - Fixed an error in the <a href="../user-guide/platform-functionality/jobs/index.html#jobs-and-class_path">Job class-path documentation</a>.</li>
|
|
11073
11032
|
<li><a href="https://github.com/nautobot/nautobot/issues/1386">#1386</a> - Updated release schedule in docs for patch releases, now every two weeks.</li>
|
|
11074
11033
|
</ul>
|
|
11075
|
-
<h3 id="
|
|
11034
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11076
11035
|
<ul>
|
|
11077
11036
|
<li><a href="https://github.com/nautobot/nautobot/pull/1327">#1327</a> - Fixes the broken dependencies from the Release action.</li>
|
|
11078
11037
|
<li><a href="https://github.com/nautobot/nautobot/issues/1360">#1360</a> - Fixed an issue in the development environment that could cause Selenium integration tests to error out.</li>
|
|
11079
11038
|
</ul>
|
|
11080
11039
|
<h2 id="v125-2022-02-02">v1.2.5 (2022-02-02)<a class="headerlink" href="#v125-2022-02-02" title="Permanent link">¶</a></h2>
|
|
11081
|
-
<h3 id="
|
|
11040
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11082
11041
|
<ul>
|
|
11083
11042
|
<li><a href="https://github.com/nautobot/nautobot/issues/371">#371</a> - Fixed a server error that could occur when importing cables via CSV.</li>
|
|
11084
11043
|
<li><a href="https://github.com/nautobot/nautobot/issues/1161">#1161</a> - The <code>description</code> field for device component templates is now correctly propagated to device components created from these templates.</li>
|
|
@@ -11086,16 +11045,16 @@
|
|
|
11086
11045
|
<li><a href="https://github.com/nautobot/nautobot/issues/1282">#1282</a> - Fixed a server error when editing User accounts.</li>
|
|
11087
11046
|
<li><a href="https://github.com/nautobot/nautobot/pull/1308">#1308</a> - Fixed another server error that could occur when importing cables via CSV.</li>
|
|
11088
11047
|
</ul>
|
|
11089
|
-
<h3 id="
|
|
11048
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11090
11049
|
<ul>
|
|
11091
11050
|
<li><a href="https://github.com/nautobot/nautobot/pull/1293">#1293</a> - Reorganized the developer documents somewhat to reduce duplication of information, added diagrams for issue intake process.</li>
|
|
11092
11051
|
</ul>
|
|
11093
|
-
<h3 id="
|
|
11052
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11094
11053
|
<ul>
|
|
11095
11054
|
<li><a href="https://github.com/nautobot/nautobot/pull/1272">#1272</a> - Fixed GitHub Actions syntax and Slack payload for <code>release</code> CI workflow</li>
|
|
11096
11055
|
</ul>
|
|
11097
11056
|
<h2 id="v124-2022-01-13">v1.2.4 (2022-01-13)<a class="headerlink" href="#v124-2022-01-13" title="Permanent link">¶</a></h2>
|
|
11098
|
-
<h3 id="
|
|
11057
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11099
11058
|
<div class="admonition danger">
|
|
11100
11059
|
<p class="admonition-title">Danger</p>
|
|
11101
11060
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -11107,27 +11066,27 @@
|
|
|
11107
11066
|
<ul>
|
|
11108
11067
|
<li><a href="https://github.com/nautobot/nautobot/issues/1267">#1267</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22815</a>, <a href="https://github.com/advisories/GHSA-xrcv-f9gm-v42c">CVE-2022-22816</a>, and <a href="https://github.com/advisories/GHSA-8vj2-vxx3-667w">CVE-2022-22817</a> to require Pillow >=9.0.0 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
11109
11068
|
</ul>
|
|
11110
|
-
<h3 id="
|
|
11069
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11111
11070
|
<ul>
|
|
11112
11071
|
<li><a href="https://github.com/nautobot/nautobot/issues/616">#616</a> - The REST API now no longer permits setting non-string values for text-type custom fields.</li>
|
|
11113
11072
|
</ul>
|
|
11114
|
-
<h3 id="
|
|
11073
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11115
11074
|
<ul>
|
|
11116
11075
|
<li><a href="https://github.com/nautobot/nautobot/issues/1053">#1053</a> - Fixed error when removing an IP address from an interface when it was previously the parent device's primary IP.</li>
|
|
11117
11076
|
<li><a href="https://github.com/nautobot/nautobot/issues/1140">#1140</a> - Fixed incorrect UI widgets in the updated Admin UI.</li>
|
|
11118
11077
|
<li><a href="https://github.com/nautobot/nautobot/issues/1253">#1253</a> - Fixed missing code that prevented switching between tabs in the device-type detail view.</li>
|
|
11119
11078
|
</ul>
|
|
11120
|
-
<h3 id="
|
|
11079
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11121
11080
|
<ul>
|
|
11122
11081
|
<li><a href="https://github.com/nautobot/nautobot/issues/1113">#1113</a> - Added <a href="../user-guide/administration/configuration/redis.html#high-availability-using-redis-sentinel">documentation</a> about using Redis Sentinel with Nautobot.</li>
|
|
11123
11082
|
</ul>
|
|
11124
|
-
<h3 id="
|
|
11083
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11125
11084
|
<ul>
|
|
11126
11085
|
<li><a href="https://github.com/nautobot/nautobot/pull/1251">#1251</a> - Added <code>workflow_call</code> to the GitHub Actions CI workflow so that it may be called by other GHA workflows.</li>
|
|
11127
11086
|
<li><a href="https://github.com/nautobot/nautobot/pull/1243">#1243</a> - Github CI action no longer runs for pull requests that don't impact Nautobot code, such as documentation, examples, etc.</li>
|
|
11128
11087
|
</ul>
|
|
11129
11088
|
<h2 id="v123-2022-01-07">v1.2.3 (2022-01-07)<a class="headerlink" href="#v123-2022-01-07" title="Permanent link">¶</a></h2>
|
|
11130
|
-
<h3 id="
|
|
11089
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11131
11090
|
<div class="admonition danger">
|
|
11132
11091
|
<p class="admonition-title">Danger</p>
|
|
11133
11092
|
<p>It is highly recommended that users of Python 3.6 prioritize upgrading to a newer version of Python. <strong>Nautobot will be removing support for Python 3.6 in a future update.</strong></p>
|
|
@@ -11139,7 +11098,7 @@
|
|
|
11139
11098
|
<ul>
|
|
11140
11099
|
<li><a href="https://github.com/nautobot/nautobot/issues/1238">#1238</a> - Implemented fix for <a href="https://github.com/advisories/GHSA-q4xr-rc97-m4xx">CVE-2021-23727</a> to require Celery >=5.2.2 for Python version >=3.7. For Python version <3.7 (e.g. 3.6), it is recommended that you prioritize upgrading your environment to use Python 3.7 or higher. Support for Python 3.6 will be removed in a future update.</li>
|
|
11141
11100
|
</ul>
|
|
11142
|
-
<h3 id="
|
|
11101
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11143
11102
|
<ul>
|
|
11144
11103
|
<li><a href="https://github.com/nautobot/nautobot/issues/313">#313</a> - REST API documentation now correctly shows that <code>status</code> is a required field.</li>
|
|
11145
11104
|
<li><a href="https://github.com/nautobot/nautobot/issues/477">#477</a> - Model <code>TextField</code>s are now correctly mapped to <code>MultiValueCharFilter</code> in filter classes.</li>
|
|
@@ -11151,50 +11110,50 @@
|
|
|
11151
11110
|
<li><a href="https://github.com/nautobot/nautobot/pull/1229">#1229</a> - Fixed a template rendering error in the login page.</li>
|
|
11152
11111
|
<li><a href="https://github.com/nautobot/nautobot/issues/1234">#1234</a> - Fixed missing changelog support for Custom Fields.</li>
|
|
11153
11112
|
</ul>
|
|
11154
|
-
<h3 id="
|
|
11113
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
11155
11114
|
<ul>
|
|
11156
11115
|
<li><a href="https://github.com/nautobot/nautobot/issues/1037">#1037</a> - Added documentation about how to successfully use the <code>nautobot-server dumpdata</code> and <code>nautobot-server loaddata</code> commands.</li>
|
|
11157
11116
|
</ul>
|
|
11158
11117
|
<h2 id="v122-2021-12-27">v1.2.2 (2021-12-27)<a class="headerlink" href="#v122-2021-12-27" title="Permanent link">¶</a></h2>
|
|
11159
|
-
<h3 id="
|
|
11118
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11160
11119
|
<ul>
|
|
11161
11120
|
<li><a href="https://github.com/nautobot/nautobot/pull/1152">#1152</a> - Added REST API and GraphQL for <code>JobLogEntry</code> objects.</li>
|
|
11162
11121
|
</ul>
|
|
11163
|
-
<h3 id="
|
|
11122
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11164
11123
|
<ul>
|
|
11165
11124
|
<li><a href="https://github.com/nautobot/nautobot/issues/650">#650</a> - Job Results UI now render job log messages immediately</li>
|
|
11166
11125
|
</ul>
|
|
11167
|
-
<h3 id="
|
|
11126
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11168
11127
|
<ul>
|
|
11169
11128
|
<li><a href="https://github.com/nautobot/nautobot/pull/1181">#1181</a> - Avoid throwing a 500 error in the case where users have deleted a required Status value. (Preventing the user from doing this will need to be a later fix.)</li>
|
|
11170
11129
|
<li><a href="https://github.com/nautobot/nautobot/issues/1193">#1193</a> - Fixed <code>JobResult</code> page may fail to list <code>JobLogEntries</code> in chronological order</li>
|
|
11171
11130
|
<li><a href="https://github.com/nautobot/nautobot/issues/1195">#1195</a> - Job log entries now again correctly render inline Markdown formatting.</li>
|
|
11172
11131
|
</ul>
|
|
11173
|
-
<h3 id="
|
|
11132
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
11174
11133
|
<ul>
|
|
11175
11134
|
<li><a href="https://github.com/nautobot/nautobot/pull/1186">#1186</a> - Corrected an error in the docs regarding developing secrets providers in plugins.</li>
|
|
11176
11135
|
<li><a href="https://github.com/nautobot/nautobot/pull/1188">#1188</a> - Corrected some errors in the developer documentation about our branch management approach.</li>
|
|
11177
11136
|
</ul>
|
|
11178
11137
|
<h2 id="v121-2021-12-16">v1.2.1 (2021-12-16)<a class="headerlink" href="#v121-2021-12-16" title="Permanent link">¶</a></h2>
|
|
11179
|
-
<h3 id="
|
|
11138
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11180
11139
|
<ul>
|
|
11181
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/1077">#1077</a> - Updated <code>graphiql</code> to 1.5.16 as well as updating the associated Javascript libraries used in the GraphiQL UI to address a reported security flaw in older versions of GraphiQL. To the best of our understanding, the Nautobot implementation of GraphiQL was not vulnerable to said flaw.</li>
|
|
11182
11141
|
</ul>
|
|
11183
|
-
<h3 id="
|
|
11142
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11184
11143
|
<ul>
|
|
11185
11144
|
<li><a href="https://github.com/nautobot/nautobot/issues/1110">#1110</a> - Added GraphQL support for the <code>ObjectChange</code> model.</li>
|
|
11186
11145
|
</ul>
|
|
11187
|
-
<h3 id="
|
|
11146
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11188
11147
|
<ul>
|
|
11189
11148
|
<li><a href="https://github.com/nautobot/nautobot/issues/1106">#1106</a> - Updating Docker health checks to be more robust and greatly reduce performance impact.</li>
|
|
11190
11149
|
</ul>
|
|
11191
|
-
<h3 id="
|
|
11150
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11192
11151
|
<ul>
|
|
11193
11152
|
<li><a href="https://github.com/nautobot/nautobot/pull/1170">#1170</a> - Fixed bug in renamed column of <code>JobResultTable</code> where rename was not made to the <code>Meta</code>.</li>
|
|
11194
11153
|
<li><a href="https://github.com/nautobot/nautobot/issues/1173">#1173</a> - Fixed official Docker image: v1.2.0 tagged images fail to load with <code>ImportError: libxml2.so.2</code>.</li>
|
|
11195
11154
|
</ul>
|
|
11196
11155
|
<h2 id="v120-2021-12-15">v1.2.0 (2021-12-15)<a class="headerlink" href="#v120-2021-12-15" title="Permanent link">¶</a></h2>
|
|
11197
|
-
<h3 id="
|
|
11156
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11198
11157
|
<ul>
|
|
11199
11158
|
<li><a href="https://github.com/nautobot/nautobot/issues/876">#876</a> - Added option to apply a validation regex when defining CustomFieldChoices.</li>
|
|
11200
11159
|
<li><a href="https://github.com/nautobot/nautobot/issues/982">#982</a> - Added IPAM custom lookup database functions.</li>
|
|
@@ -11203,16 +11162,16 @@
|
|
|
11203
11162
|
<li><a href="https://github.com/nautobot/nautobot/issues/1082">#1082</a> - Added <code>netutils</code> template filters for both Django and Jinja2 template rendering.</li>
|
|
11204
11163
|
<li><a href="https://github.com/nautobot/nautobot/pull/1159">#1159</a> - Add <code>family</code> field to <code>IPAddressType</code> for GraphQL API enable filtering of <code>IPAddress</code> objects by <code>family</code>.</li>
|
|
11205
11164
|
</ul>
|
|
11206
|
-
<h3 id="
|
|
11165
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11207
11166
|
<ul>
|
|
11208
11167
|
<li><a href="https://github.com/nautobot/nautobot/issues/1068">#1068</a> - Docker images now include optional Nautobot dependencies by default.</li>
|
|
11209
11168
|
<li><a href="https://github.com/nautobot/nautobot/issues/1095">#1095</a> - Refined Admin Configuration UI.</li>
|
|
11210
11169
|
</ul>
|
|
11211
|
-
<h3 id="removed
|
|
11170
|
+
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11212
11171
|
<ul>
|
|
11213
11172
|
<li><a href="https://github.com/nautobot/nautobot/issues/1094">#1094</a> - Removed leftover custom field management views from Admin UI</li>
|
|
11214
11173
|
</ul>
|
|
11215
|
-
<h3 id="
|
|
11174
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11216
11175
|
<ul>
|
|
11217
11176
|
<li><a href="https://github.com/nautobot/nautobot/issues/453">#453</a> - Fixed potential <code>ValueError</code> when rendering <code>JobResult</code> detail view with non-standard <code>JobResult.data</code> contents.</li>
|
|
11218
11177
|
<li><a href="https://github.com/nautobot/nautobot/issues/864">#864</a> - Fixed inconsistent <code>JobResult</code> detail view page templates.</li>
|
|
@@ -11230,11 +11189,11 @@
|
|
|
11230
11189
|
<li><a href="https://github.com/nautobot/nautobot/issues/1154">#1154</a> - Fixed inability to save changes in Admin Configuration UI.</li>
|
|
11231
11190
|
<li><a href="https://github.com/nautobot/nautobot/issues/1162">#1162</a> - Fixed error when creating a <code>NavMenuItem</code> without specifying the <code>buttons</code> argument.</li>
|
|
11232
11191
|
</ul>
|
|
11233
|
-
<h3 id="
|
|
11192
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11234
11193
|
<ul>
|
|
11235
11194
|
<li><a href="https://github.com/nautobot/nautobot/pull/1105">#1105</a> - Reverted minimum Python 3.6 version to 3.6.0 rather than 3.6.2.</li>
|
|
11236
11195
|
</ul>
|
|
11237
|
-
<h3 id="
|
|
11196
|
+
<h3 id="documentation_8">Documentation<a class="headerlink" href="#documentation_8" title="Permanent link">¶</a></h3>
|
|
11238
11197
|
<ul>
|
|
11239
11198
|
<li><a href="https://github.com/nautobot/nautobot/issues/843">#843</a> - Added more information about Celery in the Upgrading Nautobot docs.</li>
|
|
11240
11199
|
<li><a href="https://github.com/nautobot/nautobot/issues/888">#888</a> - Addressed FIXME comment in LDAP documentation.</li>
|
|
@@ -11246,11 +11205,11 @@
|
|
|
11246
11205
|
<li><a href="https://github.com/nautobot/nautobot/pull/1143">#1143</a> - Added documentation on using LDAP with multiple LDAP servers.</li>
|
|
11247
11206
|
</ul>
|
|
11248
11207
|
<h2 id="v120b1-2021-11-19">v1.2.0b1 (2021-11-19)<a class="headerlink" href="#v120b1-2021-11-19" title="Permanent link">¶</a></h2>
|
|
11249
|
-
<h3 id="
|
|
11208
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
11250
11209
|
<ul>
|
|
11251
11210
|
<li><a href="https://github.com/nautobot/nautobot/issues/1017">#1017</a> - Custom field descriptions no longer potentially render as arbitrary HTML in object edit forms; Markdown format is now supported as a less dangerous option.</li>
|
|
11252
11211
|
</ul>
|
|
11253
|
-
<h3 id="
|
|
11212
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11254
11213
|
<ul>
|
|
11255
11214
|
<li><a href="https://github.com/nautobot/nautobot/issues/13">#13</a> - Added <code>nautobot_database_ready</code> signal</li>
|
|
11256
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/125">#125</a> - Added support for <code>approval_required = True</code> on Jobs</li>
|
|
@@ -11276,7 +11235,7 @@
|
|
|
11276
11235
|
<li><a href="https://github.com/nautobot/nautobot/pull/947">#947</a> - Added <code>DISABLE_PREFIX_LIST_HIERARCHY</code> setting to render IPAM Prefix list view as a flat list</li>
|
|
11277
11236
|
<li><a href="https://github.com/nautobot/nautobot/pull/953">#953</a> - Added option to use MySQL in docker-compose development environment</li>
|
|
11278
11237
|
</ul>
|
|
11279
|
-
<h3 id="
|
|
11238
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
11280
11239
|
<ul>
|
|
11281
11240
|
<li><a href="https://github.com/nautobot/nautobot/issues/222">#222</a> - Changed wildcard imports to explicitly enumerated imports and enabled associated Flake8 linter rules.</li>
|
|
11282
11241
|
<li><a href="https://github.com/nautobot/nautobot/issues/472">#472</a> - <code>JobResult</code> lists now show the associated Job's name (if available) instead of the Job's <code>class_path</code>.</li>
|
|
@@ -11284,20 +11243,20 @@
|
|
|
11284
11243
|
<li><a href="https://github.com/nautobot/nautobot/pull/877">#877</a> - Hid unused "Social Auth" section from Django admin page.</li>
|
|
11285
11244
|
<li><a href="https://github.com/nautobot/nautobot/pull/900">#900</a> - Admin site has been revised and re-skinned to more closely match the core Nautobot UI.</li>
|
|
11286
11245
|
</ul>
|
|
11287
|
-
<h3 id="
|
|
11246
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11288
11247
|
<ul>
|
|
11289
11248
|
<li><a href="https://github.com/nautobot/nautobot/issues/852">#852</a> - Fixed missing "Change Log" tab on certain object detail views</li>
|
|
11290
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/853">#853</a> - Fixed <code>AttributeError</code> on certain object detail views</li>
|
|
11291
11250
|
<li><a href="https://github.com/nautobot/nautobot/issues/891">#891</a> - Fixed custom field select/multiselect not handled by new UI and added integration tests</li>
|
|
11292
11251
|
<li><a href="https://github.com/nautobot/nautobot/issues/966">#966</a> - Fixed missing "Advanced" tab on Device detail views</li>
|
|
11293
11252
|
</ul>
|
|
11294
|
-
<h3 id="
|
|
11253
|
+
<h3 id="documentation_9">Documentation<a class="headerlink" href="#documentation_9" title="Permanent link">¶</a></h3>
|
|
11295
11254
|
<ul>
|
|
11296
11255
|
<li><a href="https://github.com/nautobot/nautobot/issues/642">#642</a> - Added documentation of the <code>GIT_SSL_NO_VERIFY</code> environment variable for using self-signed Git repositories</li>
|
|
11297
11256
|
<li><a href="https://github.com/nautobot/nautobot/pull/866">#866</a> - Added documentation for job scheduling and approvals</li>
|
|
11298
11257
|
<li><a href="https://github.com/nautobot/nautobot/issues/1060">#1060</a> - Fixed documentation incorrectly indicating that the Admin UI was the only way to manage custom field definitions.</li>
|
|
11299
11258
|
</ul>
|
|
11300
|
-
<h3 id="
|
|
11259
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11301
11260
|
<ul>
|
|
11302
11261
|
<li><a href="https://github.com/nautobot/nautobot/pull/879">#879</a> - Added API testing for job scheduling and approvals</li>
|
|
11303
11262
|
<li><a href="https://github.com/nautobot/nautobot/pull/908">#908</a> - Added UI testing for job scheduling and approvals</li>
|
|
@@ -11448,7 +11407,7 @@
|
|
|
11448
11407
|
<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>
|
|
11449
11408
|
|
|
11450
11409
|
|
|
11451
|
-
<script src="../assets/javascripts/bundle.
|
|
11410
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
11452
11411
|
|
|
11453
11412
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11454
11413
|
|