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
|
|
|
@@ -8843,18 +8801,18 @@
|
|
|
8843
8801
|
<ul class="md-nav__list">
|
|
8844
8802
|
|
|
8845
8803
|
<li class="md-nav__item">
|
|
8846
|
-
<a href="#
|
|
8804
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8847
8805
|
<span class="md-ellipsis">
|
|
8848
|
-
Changed
|
|
8806
|
+
Changed
|
|
8849
8807
|
</span>
|
|
8850
8808
|
</a>
|
|
8851
8809
|
|
|
8852
8810
|
</li>
|
|
8853
8811
|
|
|
8854
8812
|
<li class="md-nav__item">
|
|
8855
|
-
<a href="#fixed
|
|
8813
|
+
<a href="#fixed" class="md-nav__link">
|
|
8856
8814
|
<span class="md-ellipsis">
|
|
8857
|
-
Fixed
|
|
8815
|
+
Fixed
|
|
8858
8816
|
</span>
|
|
8859
8817
|
</a>
|
|
8860
8818
|
|
|
@@ -8876,45 +8834,45 @@
|
|
|
8876
8834
|
<ul class="md-nav__list">
|
|
8877
8835
|
|
|
8878
8836
|
<li class="md-nav__item">
|
|
8879
|
-
<a href="#
|
|
8837
|
+
<a href="#added_1" class="md-nav__link">
|
|
8880
8838
|
<span class="md-ellipsis">
|
|
8881
|
-
Added
|
|
8839
|
+
Added
|
|
8882
8840
|
</span>
|
|
8883
8841
|
</a>
|
|
8884
8842
|
|
|
8885
8843
|
</li>
|
|
8886
8844
|
|
|
8887
8845
|
<li class="md-nav__item">
|
|
8888
|
-
<a href="#
|
|
8846
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8889
8847
|
<span class="md-ellipsis">
|
|
8890
|
-
Changed
|
|
8848
|
+
Changed
|
|
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="#fixed_1" class="md-nav__link">
|
|
8898
8856
|
<span class="md-ellipsis">
|
|
8899
|
-
Fixed
|
|
8857
|
+
Fixed
|
|
8900
8858
|
</span>
|
|
8901
8859
|
</a>
|
|
8902
8860
|
|
|
8903
8861
|
</li>
|
|
8904
8862
|
|
|
8905
8863
|
<li class="md-nav__item">
|
|
8906
|
-
<a href="#documentation
|
|
8864
|
+
<a href="#documentation" class="md-nav__link">
|
|
8907
8865
|
<span class="md-ellipsis">
|
|
8908
|
-
Documentation
|
|
8866
|
+
Documentation
|
|
8909
8867
|
</span>
|
|
8910
8868
|
</a>
|
|
8911
8869
|
|
|
8912
8870
|
</li>
|
|
8913
8871
|
|
|
8914
8872
|
<li class="md-nav__item">
|
|
8915
|
-
<a href="#housekeeping
|
|
8873
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8916
8874
|
<span class="md-ellipsis">
|
|
8917
|
-
Housekeeping
|
|
8875
|
+
Housekeeping
|
|
8918
8876
|
</span>
|
|
8919
8877
|
</a>
|
|
8920
8878
|
|
|
@@ -8936,63 +8894,63 @@
|
|
|
8936
8894
|
<ul class="md-nav__list">
|
|
8937
8895
|
|
|
8938
8896
|
<li class="md-nav__item">
|
|
8939
|
-
<a href="#security
|
|
8897
|
+
<a href="#security" class="md-nav__link">
|
|
8940
8898
|
<span class="md-ellipsis">
|
|
8941
|
-
Security
|
|
8899
|
+
Security
|
|
8942
8900
|
</span>
|
|
8943
8901
|
</a>
|
|
8944
8902
|
|
|
8945
8903
|
</li>
|
|
8946
8904
|
|
|
8947
8905
|
<li class="md-nav__item">
|
|
8948
|
-
<a href="#
|
|
8906
|
+
<a href="#added_2" class="md-nav__link">
|
|
8949
8907
|
<span class="md-ellipsis">
|
|
8950
|
-
Added
|
|
8908
|
+
Added
|
|
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="#changed_3" class="md-nav__link">
|
|
8958
8916
|
<span class="md-ellipsis">
|
|
8959
|
-
Changed
|
|
8917
|
+
Changed
|
|
8960
8918
|
</span>
|
|
8961
8919
|
</a>
|
|
8962
8920
|
|
|
8963
8921
|
</li>
|
|
8964
8922
|
|
|
8965
8923
|
<li class="md-nav__item">
|
|
8966
|
-
<a href="#
|
|
8924
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8967
8925
|
<span class="md-ellipsis">
|
|
8968
|
-
Fixed
|
|
8926
|
+
Fixed
|
|
8969
8927
|
</span>
|
|
8970
8928
|
</a>
|
|
8971
8929
|
|
|
8972
8930
|
</li>
|
|
8973
8931
|
|
|
8974
8932
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#dependencies
|
|
8933
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8976
8934
|
<span class="md-ellipsis">
|
|
8977
|
-
Dependencies
|
|
8935
|
+
Dependencies
|
|
8978
8936
|
</span>
|
|
8979
8937
|
</a>
|
|
8980
8938
|
|
|
8981
8939
|
</li>
|
|
8982
8940
|
|
|
8983
8941
|
<li class="md-nav__item">
|
|
8984
|
-
<a href="#
|
|
8942
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8985
8943
|
<span class="md-ellipsis">
|
|
8986
|
-
Documentation
|
|
8944
|
+
Documentation
|
|
8987
8945
|
</span>
|
|
8988
8946
|
</a>
|
|
8989
8947
|
|
|
8990
8948
|
</li>
|
|
8991
8949
|
|
|
8992
8950
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
8951
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8994
8952
|
<span class="md-ellipsis">
|
|
8995
|
-
Housekeeping
|
|
8953
|
+
Housekeeping
|
|
8996
8954
|
</span>
|
|
8997
8955
|
</a>
|
|
8998
8956
|
|
|
@@ -9014,9 +8972,9 @@
|
|
|
9014
8972
|
<ul class="md-nav__list">
|
|
9015
8973
|
|
|
9016
8974
|
<li class="md-nav__item">
|
|
9017
|
-
<a href="#
|
|
8975
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9018
8976
|
<span class="md-ellipsis">
|
|
9019
|
-
Fixed
|
|
8977
|
+
Fixed
|
|
9020
8978
|
</span>
|
|
9021
8979
|
</a>
|
|
9022
8980
|
|
|
@@ -9038,54 +8996,54 @@
|
|
|
9038
8996
|
<ul class="md-nav__list">
|
|
9039
8997
|
|
|
9040
8998
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
8999
|
+
<a href="#security_1" class="md-nav__link">
|
|
9042
9000
|
<span class="md-ellipsis">
|
|
9043
|
-
Security
|
|
9001
|
+
Security
|
|
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="#added_3" class="md-nav__link">
|
|
9051
9009
|
<span class="md-ellipsis">
|
|
9052
|
-
Added
|
|
9010
|
+
Added
|
|
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="#changed_4" class="md-nav__link">
|
|
9060
9018
|
<span class="md-ellipsis">
|
|
9061
|
-
Changed
|
|
9019
|
+
Changed
|
|
9062
9020
|
</span>
|
|
9063
9021
|
</a>
|
|
9064
9022
|
|
|
9065
9023
|
</li>
|
|
9066
9024
|
|
|
9067
9025
|
<li class="md-nav__item">
|
|
9068
|
-
<a href="#
|
|
9026
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9069
9027
|
<span class="md-ellipsis">
|
|
9070
|
-
Fixed
|
|
9028
|
+
Fixed
|
|
9071
9029
|
</span>
|
|
9072
9030
|
</a>
|
|
9073
9031
|
|
|
9074
9032
|
</li>
|
|
9075
9033
|
|
|
9076
9034
|
<li class="md-nav__item">
|
|
9077
|
-
<a href="#
|
|
9035
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9078
9036
|
<span class="md-ellipsis">
|
|
9079
|
-
Documentation
|
|
9037
|
+
Documentation
|
|
9080
9038
|
</span>
|
|
9081
9039
|
</a>
|
|
9082
9040
|
|
|
9083
9041
|
</li>
|
|
9084
9042
|
|
|
9085
9043
|
<li class="md-nav__item">
|
|
9086
|
-
<a href="#
|
|
9044
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9087
9045
|
<span class="md-ellipsis">
|
|
9088
|
-
Housekeeping
|
|
9046
|
+
Housekeeping
|
|
9089
9047
|
</span>
|
|
9090
9048
|
</a>
|
|
9091
9049
|
|
|
@@ -9107,54 +9065,54 @@
|
|
|
9107
9065
|
<ul class="md-nav__list">
|
|
9108
9066
|
|
|
9109
9067
|
<li class="md-nav__item">
|
|
9110
|
-
<a href="#
|
|
9068
|
+
<a href="#added_4" class="md-nav__link">
|
|
9111
9069
|
<span class="md-ellipsis">
|
|
9112
|
-
Added
|
|
9070
|
+
Added
|
|
9113
9071
|
</span>
|
|
9114
9072
|
</a>
|
|
9115
9073
|
|
|
9116
9074
|
</li>
|
|
9117
9075
|
|
|
9118
9076
|
<li class="md-nav__item">
|
|
9119
|
-
<a href="#
|
|
9077
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9120
9078
|
<span class="md-ellipsis">
|
|
9121
|
-
Changed
|
|
9079
|
+
Changed
|
|
9122
9080
|
</span>
|
|
9123
9081
|
</a>
|
|
9124
9082
|
|
|
9125
9083
|
</li>
|
|
9126
9084
|
|
|
9127
9085
|
<li class="md-nav__item">
|
|
9128
|
-
<a href="#
|
|
9086
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9129
9087
|
<span class="md-ellipsis">
|
|
9130
|
-
Fixed
|
|
9088
|
+
Fixed
|
|
9131
9089
|
</span>
|
|
9132
9090
|
</a>
|
|
9133
9091
|
|
|
9134
9092
|
</li>
|
|
9135
9093
|
|
|
9136
9094
|
<li class="md-nav__item">
|
|
9137
|
-
<a href="#
|
|
9095
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9138
9096
|
<span class="md-ellipsis">
|
|
9139
|
-
Dependencies
|
|
9097
|
+
Dependencies
|
|
9140
9098
|
</span>
|
|
9141
9099
|
</a>
|
|
9142
9100
|
|
|
9143
9101
|
</li>
|
|
9144
9102
|
|
|
9145
9103
|
<li class="md-nav__item">
|
|
9146
|
-
<a href="#
|
|
9104
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9147
9105
|
<span class="md-ellipsis">
|
|
9148
|
-
Documentation
|
|
9106
|
+
Documentation
|
|
9149
9107
|
</span>
|
|
9150
9108
|
</a>
|
|
9151
9109
|
|
|
9152
9110
|
</li>
|
|
9153
9111
|
|
|
9154
9112
|
<li class="md-nav__item">
|
|
9155
|
-
<a href="#
|
|
9113
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9156
9114
|
<span class="md-ellipsis">
|
|
9157
|
-
Housekeeping
|
|
9115
|
+
Housekeeping
|
|
9158
9116
|
</span>
|
|
9159
9117
|
</a>
|
|
9160
9118
|
|
|
@@ -9176,45 +9134,45 @@
|
|
|
9176
9134
|
<ul class="md-nav__list">
|
|
9177
9135
|
|
|
9178
9136
|
<li class="md-nav__item">
|
|
9179
|
-
<a href="#
|
|
9137
|
+
<a href="#added_5" class="md-nav__link">
|
|
9180
9138
|
<span class="md-ellipsis">
|
|
9181
|
-
Added
|
|
9139
|
+
Added
|
|
9182
9140
|
</span>
|
|
9183
9141
|
</a>
|
|
9184
9142
|
|
|
9185
9143
|
</li>
|
|
9186
9144
|
|
|
9187
9145
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9146
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9189
9147
|
<span class="md-ellipsis">
|
|
9190
|
-
Changed
|
|
9148
|
+
Changed
|
|
9191
9149
|
</span>
|
|
9192
9150
|
</a>
|
|
9193
9151
|
|
|
9194
9152
|
</li>
|
|
9195
9153
|
|
|
9196
9154
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9155
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9198
9156
|
<span class="md-ellipsis">
|
|
9199
|
-
Fixed
|
|
9157
|
+
Fixed
|
|
9200
9158
|
</span>
|
|
9201
9159
|
</a>
|
|
9202
9160
|
|
|
9203
9161
|
</li>
|
|
9204
9162
|
|
|
9205
9163
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9164
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9207
9165
|
<span class="md-ellipsis">
|
|
9208
|
-
Documentation
|
|
9166
|
+
Documentation
|
|
9209
9167
|
</span>
|
|
9210
9168
|
</a>
|
|
9211
9169
|
|
|
9212
9170
|
</li>
|
|
9213
9171
|
|
|
9214
9172
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9173
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9216
9174
|
<span class="md-ellipsis">
|
|
9217
|
-
Housekeeping
|
|
9175
|
+
Housekeeping
|
|
9218
9176
|
</span>
|
|
9219
9177
|
</a>
|
|
9220
9178
|
|
|
@@ -9236,54 +9194,54 @@
|
|
|
9236
9194
|
<ul class="md-nav__list">
|
|
9237
9195
|
|
|
9238
9196
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9197
|
+
<a href="#added_6" class="md-nav__link">
|
|
9240
9198
|
<span class="md-ellipsis">
|
|
9241
|
-
Added
|
|
9199
|
+
Added
|
|
9242
9200
|
</span>
|
|
9243
9201
|
</a>
|
|
9244
9202
|
|
|
9245
9203
|
</li>
|
|
9246
9204
|
|
|
9247
9205
|
<li class="md-nav__item">
|
|
9248
|
-
<a href="#
|
|
9206
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9249
9207
|
<span class="md-ellipsis">
|
|
9250
|
-
Changed
|
|
9208
|
+
Changed
|
|
9251
9209
|
</span>
|
|
9252
9210
|
</a>
|
|
9253
9211
|
|
|
9254
9212
|
</li>
|
|
9255
9213
|
|
|
9256
9214
|
<li class="md-nav__item">
|
|
9257
|
-
<a href="#
|
|
9215
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9258
9216
|
<span class="md-ellipsis">
|
|
9259
|
-
Fixed
|
|
9217
|
+
Fixed
|
|
9260
9218
|
</span>
|
|
9261
9219
|
</a>
|
|
9262
9220
|
|
|
9263
9221
|
</li>
|
|
9264
9222
|
|
|
9265
9223
|
<li class="md-nav__item">
|
|
9266
|
-
<a href="#
|
|
9224
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9267
9225
|
<span class="md-ellipsis">
|
|
9268
|
-
Dependencies
|
|
9226
|
+
Dependencies
|
|
9269
9227
|
</span>
|
|
9270
9228
|
</a>
|
|
9271
9229
|
|
|
9272
9230
|
</li>
|
|
9273
9231
|
|
|
9274
9232
|
<li class="md-nav__item">
|
|
9275
|
-
<a href="#
|
|
9233
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9276
9234
|
<span class="md-ellipsis">
|
|
9277
|
-
Documentation
|
|
9235
|
+
Documentation
|
|
9278
9236
|
</span>
|
|
9279
9237
|
</a>
|
|
9280
9238
|
|
|
9281
9239
|
</li>
|
|
9282
9240
|
|
|
9283
9241
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9242
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9285
9243
|
<span class="md-ellipsis">
|
|
9286
|
-
Housekeeping
|
|
9244
|
+
Housekeeping
|
|
9287
9245
|
</span>
|
|
9288
9246
|
</a>
|
|
9289
9247
|
|
|
@@ -9305,54 +9263,54 @@
|
|
|
9305
9263
|
<ul class="md-nav__list">
|
|
9306
9264
|
|
|
9307
9265
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9266
|
+
<a href="#added_7" class="md-nav__link">
|
|
9309
9267
|
<span class="md-ellipsis">
|
|
9310
|
-
Added
|
|
9268
|
+
Added
|
|
9311
9269
|
</span>
|
|
9312
9270
|
</a>
|
|
9313
9271
|
|
|
9314
9272
|
</li>
|
|
9315
9273
|
|
|
9316
9274
|
<li class="md-nav__item">
|
|
9317
|
-
<a href="#
|
|
9275
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9318
9276
|
<span class="md-ellipsis">
|
|
9319
|
-
Changed
|
|
9277
|
+
Changed
|
|
9320
9278
|
</span>
|
|
9321
9279
|
</a>
|
|
9322
9280
|
|
|
9323
9281
|
</li>
|
|
9324
9282
|
|
|
9325
9283
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9284
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9327
9285
|
<span class="md-ellipsis">
|
|
9328
|
-
Fixed
|
|
9286
|
+
Fixed
|
|
9329
9287
|
</span>
|
|
9330
9288
|
</a>
|
|
9331
9289
|
|
|
9332
9290
|
</li>
|
|
9333
9291
|
|
|
9334
9292
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9293
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9336
9294
|
<span class="md-ellipsis">
|
|
9337
|
-
Dependencies
|
|
9295
|
+
Dependencies
|
|
9338
9296
|
</span>
|
|
9339
9297
|
</a>
|
|
9340
9298
|
|
|
9341
9299
|
</li>
|
|
9342
9300
|
|
|
9343
9301
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9302
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9345
9303
|
<span class="md-ellipsis">
|
|
9346
|
-
Documentation
|
|
9304
|
+
Documentation
|
|
9347
9305
|
</span>
|
|
9348
9306
|
</a>
|
|
9349
9307
|
|
|
9350
9308
|
</li>
|
|
9351
9309
|
|
|
9352
9310
|
<li class="md-nav__item">
|
|
9353
|
-
<a href="#
|
|
9311
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9354
9312
|
<span class="md-ellipsis">
|
|
9355
|
-
Housekeeping
|
|
9313
|
+
Housekeeping
|
|
9356
9314
|
</span>
|
|
9357
9315
|
</a>
|
|
9358
9316
|
|
|
@@ -9374,45 +9332,45 @@
|
|
|
9374
9332
|
<ul class="md-nav__list">
|
|
9375
9333
|
|
|
9376
9334
|
<li class="md-nav__item">
|
|
9377
|
-
<a href="#
|
|
9335
|
+
<a href="#added_8" class="md-nav__link">
|
|
9378
9336
|
<span class="md-ellipsis">
|
|
9379
|
-
Added
|
|
9337
|
+
Added
|
|
9380
9338
|
</span>
|
|
9381
9339
|
</a>
|
|
9382
9340
|
|
|
9383
9341
|
</li>
|
|
9384
9342
|
|
|
9385
9343
|
<li class="md-nav__item">
|
|
9386
|
-
<a href="#
|
|
9344
|
+
<a href="#changed_9" class="md-nav__link">
|
|
9387
9345
|
<span class="md-ellipsis">
|
|
9388
|
-
Changed
|
|
9346
|
+
Changed
|
|
9389
9347
|
</span>
|
|
9390
9348
|
</a>
|
|
9391
9349
|
|
|
9392
9350
|
</li>
|
|
9393
9351
|
|
|
9394
9352
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9353
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9396
9354
|
<span class="md-ellipsis">
|
|
9397
|
-
Fixed
|
|
9355
|
+
Fixed
|
|
9398
9356
|
</span>
|
|
9399
9357
|
</a>
|
|
9400
9358
|
|
|
9401
9359
|
</li>
|
|
9402
9360
|
|
|
9403
9361
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9362
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
9405
9363
|
<span class="md-ellipsis">
|
|
9406
|
-
Documentation
|
|
9364
|
+
Documentation
|
|
9407
9365
|
</span>
|
|
9408
9366
|
</a>
|
|
9409
9367
|
|
|
9410
9368
|
</li>
|
|
9411
9369
|
|
|
9412
9370
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9371
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9414
9372
|
<span class="md-ellipsis">
|
|
9415
|
-
Housekeeping
|
|
9373
|
+
Housekeeping
|
|
9416
9374
|
</span>
|
|
9417
9375
|
</a>
|
|
9418
9376
|
|
|
@@ -9434,54 +9392,54 @@
|
|
|
9434
9392
|
<ul class="md-nav__list">
|
|
9435
9393
|
|
|
9436
9394
|
<li class="md-nav__item">
|
|
9437
|
-
<a href="#
|
|
9395
|
+
<a href="#added_9" class="md-nav__link">
|
|
9438
9396
|
<span class="md-ellipsis">
|
|
9439
|
-
Added
|
|
9397
|
+
Added
|
|
9440
9398
|
</span>
|
|
9441
9399
|
</a>
|
|
9442
9400
|
|
|
9443
9401
|
</li>
|
|
9444
9402
|
|
|
9445
9403
|
<li class="md-nav__item">
|
|
9446
|
-
<a href="#
|
|
9404
|
+
<a href="#changed_10" class="md-nav__link">
|
|
9447
9405
|
<span class="md-ellipsis">
|
|
9448
|
-
Changed
|
|
9406
|
+
Changed
|
|
9449
9407
|
</span>
|
|
9450
9408
|
</a>
|
|
9451
9409
|
|
|
9452
9410
|
</li>
|
|
9453
9411
|
|
|
9454
9412
|
<li class="md-nav__item">
|
|
9455
|
-
<a href="#
|
|
9413
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9456
9414
|
<span class="md-ellipsis">
|
|
9457
|
-
Fixed
|
|
9415
|
+
Fixed
|
|
9458
9416
|
</span>
|
|
9459
9417
|
</a>
|
|
9460
9418
|
|
|
9461
9419
|
</li>
|
|
9462
9420
|
|
|
9463
9421
|
<li class="md-nav__item">
|
|
9464
|
-
<a href="#
|
|
9422
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9465
9423
|
<span class="md-ellipsis">
|
|
9466
|
-
Dependencies
|
|
9424
|
+
Dependencies
|
|
9467
9425
|
</span>
|
|
9468
9426
|
</a>
|
|
9469
9427
|
|
|
9470
9428
|
</li>
|
|
9471
9429
|
|
|
9472
9430
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9431
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
9474
9432
|
<span class="md-ellipsis">
|
|
9475
|
-
Documentation
|
|
9433
|
+
Documentation
|
|
9476
9434
|
</span>
|
|
9477
9435
|
</a>
|
|
9478
9436
|
|
|
9479
9437
|
</li>
|
|
9480
9438
|
|
|
9481
9439
|
<li class="md-nav__item">
|
|
9482
|
-
<a href="#
|
|
9440
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9483
9441
|
<span class="md-ellipsis">
|
|
9484
|
-
Housekeeping
|
|
9442
|
+
Housekeeping
|
|
9485
9443
|
</span>
|
|
9486
9444
|
</a>
|
|
9487
9445
|
|
|
@@ -9503,45 +9461,45 @@
|
|
|
9503
9461
|
<ul class="md-nav__list">
|
|
9504
9462
|
|
|
9505
9463
|
<li class="md-nav__item">
|
|
9506
|
-
<a href="#
|
|
9464
|
+
<a href="#added_10" class="md-nav__link">
|
|
9507
9465
|
<span class="md-ellipsis">
|
|
9508
|
-
Added
|
|
9466
|
+
Added
|
|
9509
9467
|
</span>
|
|
9510
9468
|
</a>
|
|
9511
9469
|
|
|
9512
9470
|
</li>
|
|
9513
9471
|
|
|
9514
9472
|
<li class="md-nav__item">
|
|
9515
|
-
<a href="#
|
|
9473
|
+
<a href="#changed_11" class="md-nav__link">
|
|
9516
9474
|
<span class="md-ellipsis">
|
|
9517
|
-
Changed
|
|
9475
|
+
Changed
|
|
9518
9476
|
</span>
|
|
9519
9477
|
</a>
|
|
9520
9478
|
|
|
9521
9479
|
</li>
|
|
9522
9480
|
|
|
9523
9481
|
<li class="md-nav__item">
|
|
9524
|
-
<a href="#
|
|
9482
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
9525
9483
|
<span class="md-ellipsis">
|
|
9526
|
-
Fixed
|
|
9484
|
+
Fixed
|
|
9527
9485
|
</span>
|
|
9528
9486
|
</a>
|
|
9529
9487
|
|
|
9530
9488
|
</li>
|
|
9531
9489
|
|
|
9532
9490
|
<li class="md-nav__item">
|
|
9533
|
-
<a href="#
|
|
9491
|
+
<a href="#documentation_9" class="md-nav__link">
|
|
9534
9492
|
<span class="md-ellipsis">
|
|
9535
|
-
Documentation
|
|
9493
|
+
Documentation
|
|
9536
9494
|
</span>
|
|
9537
9495
|
</a>
|
|
9538
9496
|
|
|
9539
9497
|
</li>
|
|
9540
9498
|
|
|
9541
9499
|
<li class="md-nav__item">
|
|
9542
|
-
<a href="#
|
|
9500
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
9543
9501
|
<span class="md-ellipsis">
|
|
9544
|
-
Housekeeping
|
|
9502
|
+
Housekeeping
|
|
9545
9503
|
</span>
|
|
9546
9504
|
</a>
|
|
9547
9505
|
|
|
@@ -9563,45 +9521,45 @@
|
|
|
9563
9521
|
<ul class="md-nav__list">
|
|
9564
9522
|
|
|
9565
9523
|
<li class="md-nav__item">
|
|
9566
|
-
<a href="#
|
|
9524
|
+
<a href="#added_11" class="md-nav__link">
|
|
9567
9525
|
<span class="md-ellipsis">
|
|
9568
|
-
Added
|
|
9526
|
+
Added
|
|
9569
9527
|
</span>
|
|
9570
9528
|
</a>
|
|
9571
9529
|
|
|
9572
9530
|
</li>
|
|
9573
9531
|
|
|
9574
9532
|
<li class="md-nav__item">
|
|
9575
|
-
<a href="#
|
|
9533
|
+
<a href="#changed_12" class="md-nav__link">
|
|
9576
9534
|
<span class="md-ellipsis">
|
|
9577
|
-
Changed
|
|
9535
|
+
Changed
|
|
9578
9536
|
</span>
|
|
9579
9537
|
</a>
|
|
9580
9538
|
|
|
9581
9539
|
</li>
|
|
9582
9540
|
|
|
9583
9541
|
<li class="md-nav__item">
|
|
9584
|
-
<a href="#
|
|
9542
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
9585
9543
|
<span class="md-ellipsis">
|
|
9586
|
-
Fixed
|
|
9544
|
+
Fixed
|
|
9587
9545
|
</span>
|
|
9588
9546
|
</a>
|
|
9589
9547
|
|
|
9590
9548
|
</li>
|
|
9591
9549
|
|
|
9592
9550
|
<li class="md-nav__item">
|
|
9593
|
-
<a href="#
|
|
9551
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
9594
9552
|
<span class="md-ellipsis">
|
|
9595
|
-
Dependencies
|
|
9553
|
+
Dependencies
|
|
9596
9554
|
</span>
|
|
9597
9555
|
</a>
|
|
9598
9556
|
|
|
9599
9557
|
</li>
|
|
9600
9558
|
|
|
9601
9559
|
<li class="md-nav__item">
|
|
9602
|
-
<a href="#
|
|
9560
|
+
<a href="#documentation_10" class="md-nav__link">
|
|
9603
9561
|
<span class="md-ellipsis">
|
|
9604
|
-
Documentation
|
|
9562
|
+
Documentation
|
|
9605
9563
|
</span>
|
|
9606
9564
|
</a>
|
|
9607
9565
|
|
|
@@ -9623,54 +9581,54 @@
|
|
|
9623
9581
|
<ul class="md-nav__list">
|
|
9624
9582
|
|
|
9625
9583
|
<li class="md-nav__item">
|
|
9626
|
-
<a href="#
|
|
9584
|
+
<a href="#added_12" class="md-nav__link">
|
|
9627
9585
|
<span class="md-ellipsis">
|
|
9628
|
-
Added
|
|
9586
|
+
Added
|
|
9629
9587
|
</span>
|
|
9630
9588
|
</a>
|
|
9631
9589
|
|
|
9632
9590
|
</li>
|
|
9633
9591
|
|
|
9634
9592
|
<li class="md-nav__item">
|
|
9635
|
-
<a href="#
|
|
9593
|
+
<a href="#changed_13" class="md-nav__link">
|
|
9636
9594
|
<span class="md-ellipsis">
|
|
9637
|
-
Changed
|
|
9595
|
+
Changed
|
|
9638
9596
|
</span>
|
|
9639
9597
|
</a>
|
|
9640
9598
|
|
|
9641
9599
|
</li>
|
|
9642
9600
|
|
|
9643
9601
|
<li class="md-nav__item">
|
|
9644
|
-
<a href="#removed
|
|
9602
|
+
<a href="#removed" class="md-nav__link">
|
|
9645
9603
|
<span class="md-ellipsis">
|
|
9646
|
-
Removed
|
|
9604
|
+
Removed
|
|
9647
9605
|
</span>
|
|
9648
9606
|
</a>
|
|
9649
9607
|
|
|
9650
9608
|
</li>
|
|
9651
9609
|
|
|
9652
9610
|
<li class="md-nav__item">
|
|
9653
|
-
<a href="#
|
|
9611
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
9654
9612
|
<span class="md-ellipsis">
|
|
9655
|
-
Fixed
|
|
9613
|
+
Fixed
|
|
9656
9614
|
</span>
|
|
9657
9615
|
</a>
|
|
9658
9616
|
|
|
9659
9617
|
</li>
|
|
9660
9618
|
|
|
9661
9619
|
<li class="md-nav__item">
|
|
9662
|
-
<a href="#
|
|
9620
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
9663
9621
|
<span class="md-ellipsis">
|
|
9664
|
-
Dependencies
|
|
9622
|
+
Dependencies
|
|
9665
9623
|
</span>
|
|
9666
9624
|
</a>
|
|
9667
9625
|
|
|
9668
9626
|
</li>
|
|
9669
9627
|
|
|
9670
9628
|
<li class="md-nav__item">
|
|
9671
|
-
<a href="#
|
|
9629
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
9672
9630
|
<span class="md-ellipsis">
|
|
9673
|
-
Housekeeping
|
|
9631
|
+
Housekeeping
|
|
9674
9632
|
</span>
|
|
9675
9633
|
</a>
|
|
9676
9634
|
|
|
@@ -9692,27 +9650,27 @@
|
|
|
9692
9650
|
<ul class="md-nav__list">
|
|
9693
9651
|
|
|
9694
9652
|
<li class="md-nav__item">
|
|
9695
|
-
<a href="#
|
|
9653
|
+
<a href="#added_13" class="md-nav__link">
|
|
9696
9654
|
<span class="md-ellipsis">
|
|
9697
|
-
Added
|
|
9655
|
+
Added
|
|
9698
9656
|
</span>
|
|
9699
9657
|
</a>
|
|
9700
9658
|
|
|
9701
9659
|
</li>
|
|
9702
9660
|
|
|
9703
9661
|
<li class="md-nav__item">
|
|
9704
|
-
<a href="#
|
|
9662
|
+
<a href="#changed_14" class="md-nav__link">
|
|
9705
9663
|
<span class="md-ellipsis">
|
|
9706
|
-
Changed
|
|
9664
|
+
Changed
|
|
9707
9665
|
</span>
|
|
9708
9666
|
</a>
|
|
9709
9667
|
|
|
9710
9668
|
</li>
|
|
9711
9669
|
|
|
9712
9670
|
<li class="md-nav__item">
|
|
9713
|
-
<a href="#
|
|
9671
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
9714
9672
|
<span class="md-ellipsis">
|
|
9715
|
-
Fixed
|
|
9673
|
+
Fixed
|
|
9716
9674
|
</span>
|
|
9717
9675
|
</a>
|
|
9718
9676
|
|
|
@@ -10414,18 +10372,18 @@
|
|
|
10414
10372
|
<ul class="md-nav__list">
|
|
10415
10373
|
|
|
10416
10374
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10375
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10418
10376
|
<span class="md-ellipsis">
|
|
10419
|
-
Changed
|
|
10377
|
+
Changed
|
|
10420
10378
|
</span>
|
|
10421
10379
|
</a>
|
|
10422
10380
|
|
|
10423
10381
|
</li>
|
|
10424
10382
|
|
|
10425
10383
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#fixed
|
|
10384
|
+
<a href="#fixed" class="md-nav__link">
|
|
10427
10385
|
<span class="md-ellipsis">
|
|
10428
|
-
Fixed
|
|
10386
|
+
Fixed
|
|
10429
10387
|
</span>
|
|
10430
10388
|
</a>
|
|
10431
10389
|
|
|
@@ -10447,45 +10405,45 @@
|
|
|
10447
10405
|
<ul class="md-nav__list">
|
|
10448
10406
|
|
|
10449
10407
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10408
|
+
<a href="#added_1" class="md-nav__link">
|
|
10451
10409
|
<span class="md-ellipsis">
|
|
10452
|
-
Added
|
|
10410
|
+
Added
|
|
10453
10411
|
</span>
|
|
10454
10412
|
</a>
|
|
10455
10413
|
|
|
10456
10414
|
</li>
|
|
10457
10415
|
|
|
10458
10416
|
<li class="md-nav__item">
|
|
10459
|
-
<a href="#
|
|
10417
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10460
10418
|
<span class="md-ellipsis">
|
|
10461
|
-
Changed
|
|
10419
|
+
Changed
|
|
10462
10420
|
</span>
|
|
10463
10421
|
</a>
|
|
10464
10422
|
|
|
10465
10423
|
</li>
|
|
10466
10424
|
|
|
10467
10425
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10426
|
+
<a href="#fixed_1" 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="#documentation
|
|
10435
|
+
<a href="#documentation" 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="#housekeeping
|
|
10444
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10487
10445
|
<span class="md-ellipsis">
|
|
10488
|
-
Housekeeping
|
|
10446
|
+
Housekeeping
|
|
10489
10447
|
</span>
|
|
10490
10448
|
</a>
|
|
10491
10449
|
|
|
@@ -10507,63 +10465,63 @@
|
|
|
10507
10465
|
<ul class="md-nav__list">
|
|
10508
10466
|
|
|
10509
10467
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#security
|
|
10468
|
+
<a href="#security" 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="#added_2" class="md-nav__link">
|
|
10520
10478
|
<span class="md-ellipsis">
|
|
10521
|
-
Added
|
|
10479
|
+
Added
|
|
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="#changed_3" class="md-nav__link">
|
|
10529
10487
|
<span class="md-ellipsis">
|
|
10530
|
-
Changed
|
|
10488
|
+
Changed
|
|
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="#fixed_2" class="md-nav__link">
|
|
10538
10496
|
<span class="md-ellipsis">
|
|
10539
|
-
Fixed
|
|
10497
|
+
Fixed
|
|
10540
10498
|
</span>
|
|
10541
10499
|
</a>
|
|
10542
10500
|
|
|
10543
10501
|
</li>
|
|
10544
10502
|
|
|
10545
10503
|
<li class="md-nav__item">
|
|
10546
|
-
<a href="#dependencies
|
|
10504
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10547
10505
|
<span class="md-ellipsis">
|
|
10548
|
-
Dependencies
|
|
10506
|
+
Dependencies
|
|
10549
10507
|
</span>
|
|
10550
10508
|
</a>
|
|
10551
10509
|
|
|
10552
10510
|
</li>
|
|
10553
10511
|
|
|
10554
10512
|
<li class="md-nav__item">
|
|
10555
|
-
<a href="#
|
|
10513
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10556
10514
|
<span class="md-ellipsis">
|
|
10557
|
-
Documentation
|
|
10515
|
+
Documentation
|
|
10558
10516
|
</span>
|
|
10559
10517
|
</a>
|
|
10560
10518
|
|
|
10561
10519
|
</li>
|
|
10562
10520
|
|
|
10563
10521
|
<li class="md-nav__item">
|
|
10564
|
-
<a href="#
|
|
10522
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10565
10523
|
<span class="md-ellipsis">
|
|
10566
|
-
Housekeeping
|
|
10524
|
+
Housekeeping
|
|
10567
10525
|
</span>
|
|
10568
10526
|
</a>
|
|
10569
10527
|
|
|
@@ -10585,9 +10543,9 @@
|
|
|
10585
10543
|
<ul class="md-nav__list">
|
|
10586
10544
|
|
|
10587
10545
|
<li class="md-nav__item">
|
|
10588
|
-
<a href="#
|
|
10546
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10589
10547
|
<span class="md-ellipsis">
|
|
10590
|
-
Fixed
|
|
10548
|
+
Fixed
|
|
10591
10549
|
</span>
|
|
10592
10550
|
</a>
|
|
10593
10551
|
|
|
@@ -10609,54 +10567,54 @@
|
|
|
10609
10567
|
<ul class="md-nav__list">
|
|
10610
10568
|
|
|
10611
10569
|
<li class="md-nav__item">
|
|
10612
|
-
<a href="#
|
|
10570
|
+
<a href="#security_1" class="md-nav__link">
|
|
10613
10571
|
<span class="md-ellipsis">
|
|
10614
|
-
Security
|
|
10572
|
+
Security
|
|
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="#added_3" class="md-nav__link">
|
|
10622
10580
|
<span class="md-ellipsis">
|
|
10623
|
-
Added
|
|
10581
|
+
Added
|
|
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="#changed_4" class="md-nav__link">
|
|
10631
10589
|
<span class="md-ellipsis">
|
|
10632
|
-
Changed
|
|
10590
|
+
Changed
|
|
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="#fixed_4" class="md-nav__link">
|
|
10640
10598
|
<span class="md-ellipsis">
|
|
10641
|
-
Fixed
|
|
10599
|
+
Fixed
|
|
10642
10600
|
</span>
|
|
10643
10601
|
</a>
|
|
10644
10602
|
|
|
10645
10603
|
</li>
|
|
10646
10604
|
|
|
10647
10605
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#
|
|
10606
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10649
10607
|
<span class="md-ellipsis">
|
|
10650
|
-
Documentation
|
|
10608
|
+
Documentation
|
|
10651
10609
|
</span>
|
|
10652
10610
|
</a>
|
|
10653
10611
|
|
|
10654
10612
|
</li>
|
|
10655
10613
|
|
|
10656
10614
|
<li class="md-nav__item">
|
|
10657
|
-
<a href="#
|
|
10615
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10658
10616
|
<span class="md-ellipsis">
|
|
10659
|
-
Housekeeping
|
|
10617
|
+
Housekeeping
|
|
10660
10618
|
</span>
|
|
10661
10619
|
</a>
|
|
10662
10620
|
|
|
@@ -10678,54 +10636,54 @@
|
|
|
10678
10636
|
<ul class="md-nav__list">
|
|
10679
10637
|
|
|
10680
10638
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10639
|
+
<a href="#added_4" class="md-nav__link">
|
|
10682
10640
|
<span class="md-ellipsis">
|
|
10683
|
-
Added
|
|
10641
|
+
Added
|
|
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="#changed_5" class="md-nav__link">
|
|
10691
10649
|
<span class="md-ellipsis">
|
|
10692
|
-
Changed
|
|
10650
|
+
Changed
|
|
10693
10651
|
</span>
|
|
10694
10652
|
</a>
|
|
10695
10653
|
|
|
10696
10654
|
</li>
|
|
10697
10655
|
|
|
10698
10656
|
<li class="md-nav__item">
|
|
10699
|
-
<a href="#
|
|
10657
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10700
10658
|
<span class="md-ellipsis">
|
|
10701
|
-
Fixed
|
|
10659
|
+
Fixed
|
|
10702
10660
|
</span>
|
|
10703
10661
|
</a>
|
|
10704
10662
|
|
|
10705
10663
|
</li>
|
|
10706
10664
|
|
|
10707
10665
|
<li class="md-nav__item">
|
|
10708
|
-
<a href="#
|
|
10666
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10709
10667
|
<span class="md-ellipsis">
|
|
10710
|
-
Dependencies
|
|
10668
|
+
Dependencies
|
|
10711
10669
|
</span>
|
|
10712
10670
|
</a>
|
|
10713
10671
|
|
|
10714
10672
|
</li>
|
|
10715
10673
|
|
|
10716
10674
|
<li class="md-nav__item">
|
|
10717
|
-
<a href="#
|
|
10675
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10718
10676
|
<span class="md-ellipsis">
|
|
10719
|
-
Documentation
|
|
10677
|
+
Documentation
|
|
10720
10678
|
</span>
|
|
10721
10679
|
</a>
|
|
10722
10680
|
|
|
10723
10681
|
</li>
|
|
10724
10682
|
|
|
10725
10683
|
<li class="md-nav__item">
|
|
10726
|
-
<a href="#
|
|
10684
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10727
10685
|
<span class="md-ellipsis">
|
|
10728
|
-
Housekeeping
|
|
10686
|
+
Housekeeping
|
|
10729
10687
|
</span>
|
|
10730
10688
|
</a>
|
|
10731
10689
|
|
|
@@ -10747,45 +10705,45 @@
|
|
|
10747
10705
|
<ul class="md-nav__list">
|
|
10748
10706
|
|
|
10749
10707
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10708
|
+
<a href="#added_5" class="md-nav__link">
|
|
10751
10709
|
<span class="md-ellipsis">
|
|
10752
|
-
Added
|
|
10710
|
+
Added
|
|
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="#changed_6" class="md-nav__link">
|
|
10760
10718
|
<span class="md-ellipsis">
|
|
10761
|
-
Changed
|
|
10719
|
+
Changed
|
|
10762
10720
|
</span>
|
|
10763
10721
|
</a>
|
|
10764
10722
|
|
|
10765
10723
|
</li>
|
|
10766
10724
|
|
|
10767
10725
|
<li class="md-nav__item">
|
|
10768
|
-
<a href="#
|
|
10726
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10769
10727
|
<span class="md-ellipsis">
|
|
10770
|
-
Fixed
|
|
10728
|
+
Fixed
|
|
10771
10729
|
</span>
|
|
10772
10730
|
</a>
|
|
10773
10731
|
|
|
10774
10732
|
</li>
|
|
10775
10733
|
|
|
10776
10734
|
<li class="md-nav__item">
|
|
10777
|
-
<a href="#
|
|
10735
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10778
10736
|
<span class="md-ellipsis">
|
|
10779
|
-
Documentation
|
|
10737
|
+
Documentation
|
|
10780
10738
|
</span>
|
|
10781
10739
|
</a>
|
|
10782
10740
|
|
|
10783
10741
|
</li>
|
|
10784
10742
|
|
|
10785
10743
|
<li class="md-nav__item">
|
|
10786
|
-
<a href="#
|
|
10744
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10787
10745
|
<span class="md-ellipsis">
|
|
10788
|
-
Housekeeping
|
|
10746
|
+
Housekeeping
|
|
10789
10747
|
</span>
|
|
10790
10748
|
</a>
|
|
10791
10749
|
|
|
@@ -10807,54 +10765,54 @@
|
|
|
10807
10765
|
<ul class="md-nav__list">
|
|
10808
10766
|
|
|
10809
10767
|
<li class="md-nav__item">
|
|
10810
|
-
<a href="#
|
|
10768
|
+
<a href="#added_6" class="md-nav__link">
|
|
10811
10769
|
<span class="md-ellipsis">
|
|
10812
|
-
Added
|
|
10770
|
+
Added
|
|
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="#changed_7" class="md-nav__link">
|
|
10820
10778
|
<span class="md-ellipsis">
|
|
10821
|
-
Changed
|
|
10779
|
+
Changed
|
|
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="#fixed_7" class="md-nav__link">
|
|
10829
10787
|
<span class="md-ellipsis">
|
|
10830
|
-
Fixed
|
|
10788
|
+
Fixed
|
|
10831
10789
|
</span>
|
|
10832
10790
|
</a>
|
|
10833
10791
|
|
|
10834
10792
|
</li>
|
|
10835
10793
|
|
|
10836
10794
|
<li class="md-nav__item">
|
|
10837
|
-
<a href="#
|
|
10795
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10838
10796
|
<span class="md-ellipsis">
|
|
10839
|
-
Dependencies
|
|
10797
|
+
Dependencies
|
|
10840
10798
|
</span>
|
|
10841
10799
|
</a>
|
|
10842
10800
|
|
|
10843
10801
|
</li>
|
|
10844
10802
|
|
|
10845
10803
|
<li class="md-nav__item">
|
|
10846
|
-
<a href="#
|
|
10804
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
10847
10805
|
<span class="md-ellipsis">
|
|
10848
|
-
Documentation
|
|
10806
|
+
Documentation
|
|
10849
10807
|
</span>
|
|
10850
10808
|
</a>
|
|
10851
10809
|
|
|
10852
10810
|
</li>
|
|
10853
10811
|
|
|
10854
10812
|
<li class="md-nav__item">
|
|
10855
|
-
<a href="#
|
|
10813
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10856
10814
|
<span class="md-ellipsis">
|
|
10857
|
-
Housekeeping
|
|
10815
|
+
Housekeeping
|
|
10858
10816
|
</span>
|
|
10859
10817
|
</a>
|
|
10860
10818
|
|
|
@@ -10876,54 +10834,54 @@
|
|
|
10876
10834
|
<ul class="md-nav__list">
|
|
10877
10835
|
|
|
10878
10836
|
<li class="md-nav__item">
|
|
10879
|
-
<a href="#
|
|
10837
|
+
<a href="#added_7" class="md-nav__link">
|
|
10880
10838
|
<span class="md-ellipsis">
|
|
10881
|
-
Added
|
|
10839
|
+
Added
|
|
10882
10840
|
</span>
|
|
10883
10841
|
</a>
|
|
10884
10842
|
|
|
10885
10843
|
</li>
|
|
10886
10844
|
|
|
10887
10845
|
<li class="md-nav__item">
|
|
10888
|
-
<a href="#
|
|
10846
|
+
<a href="#changed_8" class="md-nav__link">
|
|
10889
10847
|
<span class="md-ellipsis">
|
|
10890
|
-
Changed
|
|
10848
|
+
Changed
|
|
10891
10849
|
</span>
|
|
10892
10850
|
</a>
|
|
10893
10851
|
|
|
10894
10852
|
</li>
|
|
10895
10853
|
|
|
10896
10854
|
<li class="md-nav__item">
|
|
10897
|
-
<a href="#
|
|
10855
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10898
10856
|
<span class="md-ellipsis">
|
|
10899
|
-
Fixed
|
|
10857
|
+
Fixed
|
|
10900
10858
|
</span>
|
|
10901
10859
|
</a>
|
|
10902
10860
|
|
|
10903
10861
|
</li>
|
|
10904
10862
|
|
|
10905
10863
|
<li class="md-nav__item">
|
|
10906
|
-
<a href="#
|
|
10864
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
10907
10865
|
<span class="md-ellipsis">
|
|
10908
|
-
Dependencies
|
|
10866
|
+
Dependencies
|
|
10909
10867
|
</span>
|
|
10910
10868
|
</a>
|
|
10911
10869
|
|
|
10912
10870
|
</li>
|
|
10913
10871
|
|
|
10914
10872
|
<li class="md-nav__item">
|
|
10915
|
-
<a href="#
|
|
10873
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10916
10874
|
<span class="md-ellipsis">
|
|
10917
|
-
Documentation
|
|
10875
|
+
Documentation
|
|
10918
10876
|
</span>
|
|
10919
10877
|
</a>
|
|
10920
10878
|
|
|
10921
10879
|
</li>
|
|
10922
10880
|
|
|
10923
10881
|
<li class="md-nav__item">
|
|
10924
|
-
<a href="#
|
|
10882
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10925
10883
|
<span class="md-ellipsis">
|
|
10926
|
-
Housekeeping
|
|
10884
|
+
Housekeeping
|
|
10927
10885
|
</span>
|
|
10928
10886
|
</a>
|
|
10929
10887
|
|
|
@@ -10945,45 +10903,45 @@
|
|
|
10945
10903
|
<ul class="md-nav__list">
|
|
10946
10904
|
|
|
10947
10905
|
<li class="md-nav__item">
|
|
10948
|
-
<a href="#
|
|
10906
|
+
<a href="#added_8" class="md-nav__link">
|
|
10949
10907
|
<span class="md-ellipsis">
|
|
10950
|
-
Added
|
|
10908
|
+
Added
|
|
10951
10909
|
</span>
|
|
10952
10910
|
</a>
|
|
10953
10911
|
|
|
10954
10912
|
</li>
|
|
10955
10913
|
|
|
10956
10914
|
<li class="md-nav__item">
|
|
10957
|
-
<a href="#
|
|
10915
|
+
<a href="#changed_9" class="md-nav__link">
|
|
10958
10916
|
<span class="md-ellipsis">
|
|
10959
|
-
Changed
|
|
10917
|
+
Changed
|
|
10960
10918
|
</span>
|
|
10961
10919
|
</a>
|
|
10962
10920
|
|
|
10963
10921
|
</li>
|
|
10964
10922
|
|
|
10965
10923
|
<li class="md-nav__item">
|
|
10966
|
-
<a href="#
|
|
10924
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10967
10925
|
<span class="md-ellipsis">
|
|
10968
|
-
Fixed
|
|
10926
|
+
Fixed
|
|
10969
10927
|
</span>
|
|
10970
10928
|
</a>
|
|
10971
10929
|
|
|
10972
10930
|
</li>
|
|
10973
10931
|
|
|
10974
10932
|
<li class="md-nav__item">
|
|
10975
|
-
<a href="#
|
|
10933
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10976
10934
|
<span class="md-ellipsis">
|
|
10977
|
-
Documentation
|
|
10935
|
+
Documentation
|
|
10978
10936
|
</span>
|
|
10979
10937
|
</a>
|
|
10980
10938
|
|
|
10981
10939
|
</li>
|
|
10982
10940
|
|
|
10983
10941
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
10942
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10985
10943
|
<span class="md-ellipsis">
|
|
10986
|
-
Housekeeping
|
|
10944
|
+
Housekeeping
|
|
10987
10945
|
</span>
|
|
10988
10946
|
</a>
|
|
10989
10947
|
|
|
@@ -11005,54 +10963,54 @@
|
|
|
11005
10963
|
<ul class="md-nav__list">
|
|
11006
10964
|
|
|
11007
10965
|
<li class="md-nav__item">
|
|
11008
|
-
<a href="#
|
|
10966
|
+
<a href="#added_9" class="md-nav__link">
|
|
11009
10967
|
<span class="md-ellipsis">
|
|
11010
|
-
Added
|
|
10968
|
+
Added
|
|
11011
10969
|
</span>
|
|
11012
10970
|
</a>
|
|
11013
10971
|
|
|
11014
10972
|
</li>
|
|
11015
10973
|
|
|
11016
10974
|
<li class="md-nav__item">
|
|
11017
|
-
<a href="#
|
|
10975
|
+
<a href="#changed_10" class="md-nav__link">
|
|
11018
10976
|
<span class="md-ellipsis">
|
|
11019
|
-
Changed
|
|
10977
|
+
Changed
|
|
11020
10978
|
</span>
|
|
11021
10979
|
</a>
|
|
11022
10980
|
|
|
11023
10981
|
</li>
|
|
11024
10982
|
|
|
11025
10983
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
10984
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
11027
10985
|
<span class="md-ellipsis">
|
|
11028
|
-
Fixed
|
|
10986
|
+
Fixed
|
|
11029
10987
|
</span>
|
|
11030
10988
|
</a>
|
|
11031
10989
|
|
|
11032
10990
|
</li>
|
|
11033
10991
|
|
|
11034
10992
|
<li class="md-nav__item">
|
|
11035
|
-
<a href="#
|
|
10993
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
11036
10994
|
<span class="md-ellipsis">
|
|
11037
|
-
Dependencies
|
|
10995
|
+
Dependencies
|
|
11038
10996
|
</span>
|
|
11039
10997
|
</a>
|
|
11040
10998
|
|
|
11041
10999
|
</li>
|
|
11042
11000
|
|
|
11043
11001
|
<li class="md-nav__item">
|
|
11044
|
-
<a href="#
|
|
11002
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
11045
11003
|
<span class="md-ellipsis">
|
|
11046
|
-
Documentation
|
|
11004
|
+
Documentation
|
|
11047
11005
|
</span>
|
|
11048
11006
|
</a>
|
|
11049
11007
|
|
|
11050
11008
|
</li>
|
|
11051
11009
|
|
|
11052
11010
|
<li class="md-nav__item">
|
|
11053
|
-
<a href="#
|
|
11011
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
11054
11012
|
<span class="md-ellipsis">
|
|
11055
|
-
Housekeeping
|
|
11013
|
+
Housekeeping
|
|
11056
11014
|
</span>
|
|
11057
11015
|
</a>
|
|
11058
11016
|
|
|
@@ -11074,45 +11032,45 @@
|
|
|
11074
11032
|
<ul class="md-nav__list">
|
|
11075
11033
|
|
|
11076
11034
|
<li class="md-nav__item">
|
|
11077
|
-
<a href="#
|
|
11035
|
+
<a href="#added_10" class="md-nav__link">
|
|
11078
11036
|
<span class="md-ellipsis">
|
|
11079
|
-
Added
|
|
11037
|
+
Added
|
|
11080
11038
|
</span>
|
|
11081
11039
|
</a>
|
|
11082
11040
|
|
|
11083
11041
|
</li>
|
|
11084
11042
|
|
|
11085
11043
|
<li class="md-nav__item">
|
|
11086
|
-
<a href="#
|
|
11044
|
+
<a href="#changed_11" class="md-nav__link">
|
|
11087
11045
|
<span class="md-ellipsis">
|
|
11088
|
-
Changed
|
|
11046
|
+
Changed
|
|
11089
11047
|
</span>
|
|
11090
11048
|
</a>
|
|
11091
11049
|
|
|
11092
11050
|
</li>
|
|
11093
11051
|
|
|
11094
11052
|
<li class="md-nav__item">
|
|
11095
|
-
<a href="#
|
|
11053
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
11096
11054
|
<span class="md-ellipsis">
|
|
11097
|
-
Fixed
|
|
11055
|
+
Fixed
|
|
11098
11056
|
</span>
|
|
11099
11057
|
</a>
|
|
11100
11058
|
|
|
11101
11059
|
</li>
|
|
11102
11060
|
|
|
11103
11061
|
<li class="md-nav__item">
|
|
11104
|
-
<a href="#
|
|
11062
|
+
<a href="#documentation_9" class="md-nav__link">
|
|
11105
11063
|
<span class="md-ellipsis">
|
|
11106
|
-
Documentation
|
|
11064
|
+
Documentation
|
|
11107
11065
|
</span>
|
|
11108
11066
|
</a>
|
|
11109
11067
|
|
|
11110
11068
|
</li>
|
|
11111
11069
|
|
|
11112
11070
|
<li class="md-nav__item">
|
|
11113
|
-
<a href="#
|
|
11071
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
11114
11072
|
<span class="md-ellipsis">
|
|
11115
|
-
Housekeeping
|
|
11073
|
+
Housekeeping
|
|
11116
11074
|
</span>
|
|
11117
11075
|
</a>
|
|
11118
11076
|
|
|
@@ -11134,45 +11092,45 @@
|
|
|
11134
11092
|
<ul class="md-nav__list">
|
|
11135
11093
|
|
|
11136
11094
|
<li class="md-nav__item">
|
|
11137
|
-
<a href="#
|
|
11095
|
+
<a href="#added_11" class="md-nav__link">
|
|
11138
11096
|
<span class="md-ellipsis">
|
|
11139
|
-
Added
|
|
11097
|
+
Added
|
|
11140
11098
|
</span>
|
|
11141
11099
|
</a>
|
|
11142
11100
|
|
|
11143
11101
|
</li>
|
|
11144
11102
|
|
|
11145
11103
|
<li class="md-nav__item">
|
|
11146
|
-
<a href="#
|
|
11104
|
+
<a href="#changed_12" class="md-nav__link">
|
|
11147
11105
|
<span class="md-ellipsis">
|
|
11148
|
-
Changed
|
|
11106
|
+
Changed
|
|
11149
11107
|
</span>
|
|
11150
11108
|
</a>
|
|
11151
11109
|
|
|
11152
11110
|
</li>
|
|
11153
11111
|
|
|
11154
11112
|
<li class="md-nav__item">
|
|
11155
|
-
<a href="#
|
|
11113
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
11156
11114
|
<span class="md-ellipsis">
|
|
11157
|
-
Fixed
|
|
11115
|
+
Fixed
|
|
11158
11116
|
</span>
|
|
11159
11117
|
</a>
|
|
11160
11118
|
|
|
11161
11119
|
</li>
|
|
11162
11120
|
|
|
11163
11121
|
<li class="md-nav__item">
|
|
11164
|
-
<a href="#
|
|
11122
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
11165
11123
|
<span class="md-ellipsis">
|
|
11166
|
-
Dependencies
|
|
11124
|
+
Dependencies
|
|
11167
11125
|
</span>
|
|
11168
11126
|
</a>
|
|
11169
11127
|
|
|
11170
11128
|
</li>
|
|
11171
11129
|
|
|
11172
11130
|
<li class="md-nav__item">
|
|
11173
|
-
<a href="#
|
|
11131
|
+
<a href="#documentation_10" class="md-nav__link">
|
|
11174
11132
|
<span class="md-ellipsis">
|
|
11175
|
-
Documentation
|
|
11133
|
+
Documentation
|
|
11176
11134
|
</span>
|
|
11177
11135
|
</a>
|
|
11178
11136
|
|
|
@@ -11194,54 +11152,54 @@
|
|
|
11194
11152
|
<ul class="md-nav__list">
|
|
11195
11153
|
|
|
11196
11154
|
<li class="md-nav__item">
|
|
11197
|
-
<a href="#
|
|
11155
|
+
<a href="#added_12" class="md-nav__link">
|
|
11198
11156
|
<span class="md-ellipsis">
|
|
11199
|
-
Added
|
|
11157
|
+
Added
|
|
11200
11158
|
</span>
|
|
11201
11159
|
</a>
|
|
11202
11160
|
|
|
11203
11161
|
</li>
|
|
11204
11162
|
|
|
11205
11163
|
<li class="md-nav__item">
|
|
11206
|
-
<a href="#
|
|
11164
|
+
<a href="#changed_13" class="md-nav__link">
|
|
11207
11165
|
<span class="md-ellipsis">
|
|
11208
|
-
Changed
|
|
11166
|
+
Changed
|
|
11209
11167
|
</span>
|
|
11210
11168
|
</a>
|
|
11211
11169
|
|
|
11212
11170
|
</li>
|
|
11213
11171
|
|
|
11214
11172
|
<li class="md-nav__item">
|
|
11215
|
-
<a href="#removed
|
|
11173
|
+
<a href="#removed" class="md-nav__link">
|
|
11216
11174
|
<span class="md-ellipsis">
|
|
11217
|
-
Removed
|
|
11175
|
+
Removed
|
|
11218
11176
|
</span>
|
|
11219
11177
|
</a>
|
|
11220
11178
|
|
|
11221
11179
|
</li>
|
|
11222
11180
|
|
|
11223
11181
|
<li class="md-nav__item">
|
|
11224
|
-
<a href="#
|
|
11182
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
11225
11183
|
<span class="md-ellipsis">
|
|
11226
|
-
Fixed
|
|
11184
|
+
Fixed
|
|
11227
11185
|
</span>
|
|
11228
11186
|
</a>
|
|
11229
11187
|
|
|
11230
11188
|
</li>
|
|
11231
11189
|
|
|
11232
11190
|
<li class="md-nav__item">
|
|
11233
|
-
<a href="#
|
|
11191
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
11234
11192
|
<span class="md-ellipsis">
|
|
11235
|
-
Dependencies
|
|
11193
|
+
Dependencies
|
|
11236
11194
|
</span>
|
|
11237
11195
|
</a>
|
|
11238
11196
|
|
|
11239
11197
|
</li>
|
|
11240
11198
|
|
|
11241
11199
|
<li class="md-nav__item">
|
|
11242
|
-
<a href="#
|
|
11200
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
11243
11201
|
<span class="md-ellipsis">
|
|
11244
|
-
Housekeeping
|
|
11202
|
+
Housekeeping
|
|
11245
11203
|
</span>
|
|
11246
11204
|
</a>
|
|
11247
11205
|
|
|
@@ -11263,27 +11221,27 @@
|
|
|
11263
11221
|
<ul class="md-nav__list">
|
|
11264
11222
|
|
|
11265
11223
|
<li class="md-nav__item">
|
|
11266
|
-
<a href="#
|
|
11224
|
+
<a href="#added_13" class="md-nav__link">
|
|
11267
11225
|
<span class="md-ellipsis">
|
|
11268
|
-
Added
|
|
11226
|
+
Added
|
|
11269
11227
|
</span>
|
|
11270
11228
|
</a>
|
|
11271
11229
|
|
|
11272
11230
|
</li>
|
|
11273
11231
|
|
|
11274
11232
|
<li class="md-nav__item">
|
|
11275
|
-
<a href="#
|
|
11233
|
+
<a href="#changed_14" class="md-nav__link">
|
|
11276
11234
|
<span class="md-ellipsis">
|
|
11277
|
-
Changed
|
|
11235
|
+
Changed
|
|
11278
11236
|
</span>
|
|
11279
11237
|
</a>
|
|
11280
11238
|
|
|
11281
11239
|
</li>
|
|
11282
11240
|
|
|
11283
11241
|
<li class="md-nav__item">
|
|
11284
|
-
<a href="#
|
|
11242
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
11285
11243
|
<span class="md-ellipsis">
|
|
11286
|
-
Fixed
|
|
11244
|
+
Fixed
|
|
11287
11245
|
</span>
|
|
11288
11246
|
</a>
|
|
11289
11247
|
|
|
@@ -11312,6 +11270,8 @@
|
|
|
11312
11270
|
|
|
11313
11271
|
|
|
11314
11272
|
|
|
11273
|
+
<!-- markdownlint-disable MD012 MD024 -->
|
|
11274
|
+
|
|
11315
11275
|
<h1 id="nautobot-v14">Nautobot v1.4<a class="headerlink" href="#nautobot-v14" title="Permanent link">¶</a></h1>
|
|
11316
11276
|
<p>This document describes all new features and changes in Nautobot 1.4.</p>
|
|
11317
11277
|
<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>
|
|
@@ -11448,28 +11408,28 @@
|
|
|
11448
11408
|
<h4 id="moved-registry-template-context-1945">Moved Registry Template Context (<a href="https://github.com/nautobot/nautobot/issues/1945">#1945</a>)<a class="headerlink" href="#moved-registry-template-context-1945" title="Permanent link">¶</a></h4>
|
|
11449
11409
|
<p>The <code>settings_and_registry</code> default context processor was changed to purely <code>settings</code> - the (large) Nautobot application registry dictionary is no longer provided as part of the render context for all templates by default. Added a new <code>registry</code> template tag that can be invoked by specific templates to provide this variable where needed.</p>
|
|
11450
11410
|
<h2 id="v1410-2022-11-07">v1.4.10 (2022-11-07)<a class="headerlink" href="#v1410-2022-11-07" title="Permanent link">¶</a></h2>
|
|
11451
|
-
<h3 id="
|
|
11411
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
11452
11412
|
<ul>
|
|
11453
11413
|
<li><a href="https://github.com/nautobot/nautobot/issues/2758">#2758</a> - Changed console logging back to disabled by default when running <code>nautobot-server test ...</code>.</li>
|
|
11454
11414
|
</ul>
|
|
11455
|
-
<h3 id="fixed
|
|
11415
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11456
11416
|
<ul>
|
|
11457
11417
|
<li><a href="https://github.com/nautobot/nautobot/issues/2755">#2755</a> - Fixed incorrect file permissions on <code>/opt/nautobot/nautobot_config.py</code> in <code>final</code> Docker images.</li>
|
|
11458
11418
|
</ul>
|
|
11459
11419
|
<h2 id="v149-2022-11-04">v1.4.9 (2022-11-04)<a class="headerlink" href="#v149-2022-11-04" title="Permanent link">¶</a></h2>
|
|
11460
|
-
<h3 id="
|
|
11420
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
11461
11421
|
<ul>
|
|
11462
11422
|
<li><a href="https://github.com/nautobot/nautobot/issues/1720">#1720</a> - Added NullableDateField to enable Date Type CustomField to filter on null value.</li>
|
|
11463
11423
|
</ul>
|
|
11464
|
-
<h3 id="
|
|
11424
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11465
11425
|
<ul>
|
|
11466
11426
|
<li><a href="https://github.com/nautobot/nautobot/issues/2669">#2669</a> - Blocked changing the parent of a LocationType when it already has Locations using it.</li>
|
|
11467
11427
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Changed the published <code>nautobot-dev</code> images to use the same default <code>nautobot_config.py</code> as the published <code>nautobot</code> images, instead of using the Nautobot core development <code>nautobot_config.py</code> file.</li>
|
|
11468
11428
|
</ul>
|
|
11469
|
-
<h3 id="
|
|
11429
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11470
11430
|
<ul>
|
|
11471
11431
|
<li><a href="https://github.com/nautobot/nautobot/issues/2406">#2406</a> - Fixed missing HTML element ID for hyperlinks.</li>
|
|
11472
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/2419">#2419</a> - Fixed the null device interface status when a device is created with a
|
|
11432
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2419">#2419</a> - Fixed the null device interface status when a device is created with a device_role associated to an InterfaceTemplate.</li>
|
|
11473
11433
|
<li><a href="https://github.com/nautobot/nautobot/issues/2552">#2552</a> - Updated CSS to better account for footer resizing.</li>
|
|
11474
11434
|
<li><a href="https://github.com/nautobot/nautobot/issues/2601">#2601</a> - Fixed an issue where a Git repository could provide Jobs even if not marked as a provider of Jobs.</li>
|
|
11475
11435
|
<li><a href="https://github.com/nautobot/nautobot/issues/2683">#2683</a> - Fixed so that unauthenticated users don't see the version number for Nautobot in the footer.</li>
|
|
@@ -11480,12 +11440,12 @@
|
|
|
11480
11440
|
<li><a href="https://github.com/nautobot/nautobot/issues/2717">#2717</a> - Fixed backwards-compatibility with changes made to <code>TreeNodeMultipleChoiceFilter</code>.</li>
|
|
11481
11441
|
<li><a href="https://github.com/nautobot/nautobot/issues/2733">#2733</a> - Fixed bug in <code>run_job_for_testing</code> when no request is provided.</li>
|
|
11482
11442
|
</ul>
|
|
11483
|
-
<h3 id="documentation
|
|
11443
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11484
11444
|
<ul>
|
|
11485
11445
|
<li><a href="https://github.com/nautobot/nautobot/issues/2658">#2658</a> - Updated plugin development documentation to introduce <code>NautobotUIViewSet</code> as the first approach for the <code>Adding Web UI Views</code> section.</li>
|
|
11486
11446
|
<li><a href="https://github.com/nautobot/nautobot/issues/2712">#2712</a> - Updated docs links to include the <code>/projects/core</code> in the url path to link correctly.</li>
|
|
11487
11447
|
</ul>
|
|
11488
|
-
<h3 id="housekeeping
|
|
11448
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11489
11449
|
<ul>
|
|
11490
11450
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Renamed <code>development/docker-compose.build.yml</code> to <code>development/docker-compose.final.yml</code> to better reflect its meaning.</li>
|
|
11491
11451
|
<li><a href="https://github.com/nautobot/nautobot/issues/2671">#2671</a> - Changed the image labels used in the docker-compose development workflow to reduce ambiguity.</li>
|
|
@@ -11495,24 +11455,24 @@
|
|
|
11495
11455
|
<li><a href="https://github.com/nautobot/nautobot/issues/2736">#2736</a> - Fixed incorrect <code>site_url</code> setting for MkDocs.</li>
|
|
11496
11456
|
</ul>
|
|
11497
11457
|
<h2 id="v148-2022-10-31">v1.4.8 (2022-10-31)<a class="headerlink" href="#v148-2022-10-31" title="Permanent link">¶</a></h2>
|
|
11498
|
-
<h3 id="security
|
|
11458
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11499
11459
|
<ul>
|
|
11500
11460
|
<li><a href="https://github.com/nautobot/nautobot/issues/2651">#2651</a> - Updated <code>Django</code> minimum version to 3.2.16 due to CVE-2022-41323.</li>
|
|
11501
11461
|
</ul>
|
|
11502
|
-
<h3 id="
|
|
11462
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
11503
11463
|
<ul>
|
|
11504
11464
|
<li><a href="https://github.com/nautobot/nautobot/issues/2086">#2086</a> - Added JobResult export feature.</li>
|
|
11505
11465
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added support for the documented environment variables in Nautobot's base <code>settings.py</code>, so that they will be recognized even when using a minimal <code>nautobot_config.py</code> or one that was not generated by <code>nautobot-server init</code>.</li>
|
|
11506
11466
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added documentation of more configuration options in the configuration that is generated by <code>nautobot-server init</code>.</li>
|
|
11507
11467
|
<li><a href="https://github.com/nautobot/nautobot/issues/2675">#2675</a> - Added the ability to configure Redis Unix socket connections.</li>
|
|
11508
11468
|
</ul>
|
|
11509
|
-
<h3 id="
|
|
11469
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11510
11470
|
<ul>
|
|
11511
11471
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Updated defaults in <code>settings.py</code> to more closely align to the documentation. If you're using a configuration file generated by <code>nautobot-server init</code>, these changes should have no impact, but if you have a manually crafted configuration file, please verify that the configuration of your system is still as expected after upgrading, with a particular focus on the database configuration, <code>SECRET_KEY</code>, and <code>LOGGING</code>.</li>
|
|
11512
11472
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Changed the default <code>LOGGING</code> configuration for virtualenv installs to be the same as it is for Nautobot's published Docker images.</li>
|
|
11513
11473
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Revised the template for new configurations generated by <code>nautobot-server init</code> to have less redundancy with Nautobot's built-in <code>settings.py</code>.</li>
|
|
11514
11474
|
</ul>
|
|
11515
|
-
<h3 id="
|
|
11475
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11516
11476
|
<ul>
|
|
11517
11477
|
<li><a href="https://github.com/nautobot/nautobot/issues/2099">#2099</a> - Fixed PowerFeed Utilization on Rack View not displaying correctly.</li>
|
|
11518
11478
|
<li><a href="https://github.com/nautobot/nautobot/issues/2099">#2099</a> - Fixed Total Power Utilization on Rack View not taking into account direct-connected devices.</li>
|
|
@@ -11528,19 +11488,19 @@
|
|
|
11528
11488
|
<li><a href="https://github.com/nautobot/nautobot/issues/2655">#2655</a> - Fixed error when selecting a "related path" from the Cable Trace view.</li>
|
|
11529
11489
|
<li><a href="https://github.com/nautobot/nautobot/issues/2693">#2693</a> - Fixed filtering by tree node objects in nested Dynamic Groups.</li>
|
|
11530
11490
|
</ul>
|
|
11531
|
-
<h3 id="dependencies
|
|
11491
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11532
11492
|
<ul>
|
|
11533
11493
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated dependency <code>django-health-check</code> from 3.16.5 to 3.16.7.</li>
|
|
11534
11494
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated dependency <code>psycopg2-binary</code> from 2.9.3 to 2.9.4.</li>
|
|
11535
11495
|
</ul>
|
|
11536
|
-
<h3 id="
|
|
11496
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
11537
11497
|
<ul>
|
|
11538
11498
|
<li><a href="https://github.com/nautobot/nautobot/issues/2578">#2578</a> - Added a warning in the documentation about django-cryptography and changing <code>SECRET_KEY</code>.</li>
|
|
11539
11499
|
<li><a href="https://github.com/nautobot/nautobot/issues/2591">#2591</a> - Updated README.md to include additional information about the Nautobot project.</li>
|
|
11540
11500
|
<li><a href="https://github.com/nautobot/nautobot/issues/2619">#2619</a> - Added notes about restarting the Nautobot server after creating relationships, custom fields, and computed fields to show them in GraphQL.</li>
|
|
11541
11501
|
<li><a href="https://github.com/nautobot/nautobot/issues/2677">#2677</a> - Fixed a documentation error by adding an import statement to a code example in <code>nautobot/docs/plugins/development.md</code>.</li>
|
|
11542
11502
|
</ul>
|
|
11543
|
-
<h3 id="
|
|
11503
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11544
11504
|
<ul>
|
|
11545
11505
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated development dependency <code>coverage</code> from 6.4.2 to 6.4.4.</li>
|
|
11546
11506
|
<li><a href="https://github.com/nautobot/nautobot/issues/2585">#2585</a> - Updated development dependency <code>invoke</code> from 1.7.1 to 1.7.3.</li>
|
|
@@ -11551,24 +11511,24 @@
|
|
|
11551
11511
|
<li><a href="https://github.com/nautobot/nautobot/issues/2690">#2690</a> - Fixed test settings to disable logging when running tests.</li>
|
|
11552
11512
|
</ul>
|
|
11553
11513
|
<h2 id="v147-2022-10-18">v1.4.7 (2022-10-18)<a class="headerlink" href="#v147-2022-10-18" title="Permanent link">¶</a></h2>
|
|
11554
|
-
<h3 id="
|
|
11514
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11555
11515
|
<ul>
|
|
11556
11516
|
<li><a href="https://github.com/nautobot/nautobot/issues/2636">#2636</a> - Fixed <code>pyproject.toml</code> to be a proper full release.</li>
|
|
11557
11517
|
</ul>
|
|
11558
11518
|
<h2 id="v146-2022-10-17">v1.4.6 (2022-10-17)<a class="headerlink" href="#v146-2022-10-17" title="Permanent link">¶</a></h2>
|
|
11559
|
-
<h3 id="
|
|
11519
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11560
11520
|
<ul>
|
|
11561
11521
|
<li><a href="https://github.com/nautobot/nautobot/issues/2434">#2434</a> - Updated <code>oauthlib</code> to <code>3.2.1</code> for <code>CVE-2022-36087</code>. This is a dependency of <code>social-auth-core</code> so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11562
11522
|
</ul>
|
|
11563
|
-
<h3 id="
|
|
11523
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11564
11524
|
<ul>
|
|
11565
11525
|
<li><a href="https://github.com/nautobot/nautobot/issues/2437">#2437</a> - Added Nautobot-themed error page for handling 403 CSRF errors.</li>
|
|
11566
11526
|
</ul>
|
|
11567
|
-
<h3 id="
|
|
11527
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11568
11528
|
<ul>
|
|
11569
11529
|
<li><a href="https://github.com/nautobot/nautobot/issues/2602">#2602</a> - Increased size of <code>ObjectChange.change_context_detail</code> field from 100 to 400 chars, and add truncation to it. Also adding truncation to <code>ObjectChange.object_repr</code>.</li>
|
|
11570
11530
|
</ul>
|
|
11571
|
-
<h3 id="
|
|
11531
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11572
11532
|
<ul>
|
|
11573
11533
|
<li><a href="https://github.com/nautobot/nautobot/issues/2075">#2075</a> - Fixed white screen flash in dark mode.</li>
|
|
11574
11534
|
<li><a href="https://github.com/nautobot/nautobot/issues/2546">#2546</a> - Applied a hotfix for multiple jobs executing from a single scheduled job.</li>
|
|
@@ -11577,42 +11537,42 @@
|
|
|
11577
11537
|
<li><a href="https://github.com/nautobot/nautobot/issues/2574">#2574</a> - Updated <code>nautobot.core.settings</code> to match expected behavior on <code>NAPALM_USERNAME</code>, <code>NAPALM_PASSWORD</code>, and <code>NAPALM_TIMEOUT</code> based on documentation.</li>
|
|
11578
11538
|
<li><a href="https://github.com/nautobot/nautobot/issues/2595">#2595</a> - Fixed NautobotUIViewSet handling of unauthenticated users.</li>
|
|
11579
11539
|
</ul>
|
|
11580
|
-
<h3 id="
|
|
11540
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
11581
11541
|
<ul>
|
|
11582
11542
|
<li><a href="https://github.com/nautobot/nautobot/issues/2512">#2512</a> - Added link to <code>nautobot-plugin-nornir</code> in the Apps section of the documentation.</li>
|
|
11583
11543
|
<li><a href="https://github.com/nautobot/nautobot/issues/2530">#2530</a> - Updated development documentation to include LTM, additional release schedule information.</li>
|
|
11584
11544
|
<li><a href="https://github.com/nautobot/nautobot/issues/2566">#2566</a> - Clarified documentation on superusers needing staff permission to access admin UI.</li>
|
|
11585
11545
|
<li><a href="https://github.com/nautobot/nautobot/issues/2588">#2588</a> - Added a danger admonition to developer docs about never using <code>pip</code> to install Poetry into Nautobot dev environment.</li>
|
|
11586
11546
|
</ul>
|
|
11587
|
-
<h3 id="
|
|
11547
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11588
11548
|
<ul>
|
|
11589
11549
|
<li><a href="https://github.com/nautobot/nautobot/issues/2614">#2614</a> - Fixed CONTRIBUTING.md link to actual Nautobot documentation.</li>
|
|
11590
11550
|
</ul>
|
|
11591
11551
|
<h2 id="v145-2022-10-03">v1.4.5 (2022-10-03)<a class="headerlink" href="#v145-2022-10-03" title="Permanent link">¶</a></h2>
|
|
11592
|
-
<h3 id="
|
|
11552
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11593
11553
|
<ul>
|
|
11594
11554
|
<li><a href="https://github.com/nautobot/nautobot/issues/2330">#2330</a> - Added <code>created</code> and <code>last_updated</code> fields to Device <code>Component</code> and <code>ComponentTemplate</code> models.</li>
|
|
11595
11555
|
</ul>
|
|
11596
|
-
<h3 id="
|
|
11556
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11597
11557
|
<ul>
|
|
11598
11558
|
<li><a href="https://github.com/nautobot/nautobot/issues/2508">#2508</a> - Updated dark mode theme to be less...dark.</li>
|
|
11599
11559
|
</ul>
|
|
11600
|
-
<h3 id="
|
|
11560
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11601
11561
|
<ul>
|
|
11602
11562
|
<li><a href="https://github.com/nautobot/nautobot/issues/2326">#2326</a> - Fixed 500 error in Circuit Termination swap.</li>
|
|
11603
11563
|
<li><a href="https://github.com/nautobot/nautobot/issues/2330">#2330</a> - Fixed missing Change Log tab on device component detail views.</li>
|
|
11604
11564
|
<li><a href="https://github.com/nautobot/nautobot/issues/2466">#2466</a> - Fixed Jobs misleading sensitive variables or requiring approval error message.</li>
|
|
11605
11565
|
<li><a href="https://github.com/nautobot/nautobot/issues/2509">#2509</a> - Fixed template lookup logic in ObjectNotesView, ObjectDynamicGroupsView and ObjectChangeLogView.</li>
|
|
11606
11566
|
</ul>
|
|
11607
|
-
<h3 id="
|
|
11567
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11608
11568
|
<ul>
|
|
11609
11569
|
<li><a href="https://github.com/nautobot/nautobot/issues/2537">#2537</a> - Updated <code>django-extensions</code> to <code>3.2.1</code>, <code>drf-spectacular</code> to <code>0.24.2</code>, <code>drf-yasg</code> to <code>1.21.4</code>.</li>
|
|
11610
11570
|
</ul>
|
|
11611
|
-
<h3 id="
|
|
11571
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
11612
11572
|
<ul>
|
|
11613
11573
|
<li><a href="https://github.com/nautobot/nautobot/issues/2539">#2539</a> - Updated links from nautobot.readthedocs.io to docs.nautobot.com.</li>
|
|
11614
11574
|
</ul>
|
|
11615
|
-
<h3 id="
|
|
11575
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11616
11576
|
<ul>
|
|
11617
11577
|
<li><a href="https://github.com/nautobot/nautobot/issues/2445">#2445</a> - Fixed invalid Renovate config.</li>
|
|
11618
11578
|
<li><a href="https://github.com/nautobot/nautobot/issues/2490">#2490</a> - Added change log fragment checkbox to Github pull request template.</li>
|
|
@@ -11621,42 +11581,42 @@
|
|
|
11621
11581
|
<li><a href="https://github.com/nautobot/nautobot/issues/2544">#2544</a> - Updated towncrier template to convert multi-line change fragments into multiple release notes entries.</li>
|
|
11622
11582
|
</ul>
|
|
11623
11583
|
<h2 id="v144-2022-09-26">v1.4.4 (2022-09-26)<a class="headerlink" href="#v144-2022-09-26" title="Permanent link">¶</a></h2>
|
|
11624
|
-
<h3 id="
|
|
11584
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11625
11585
|
<ul>
|
|
11626
11586
|
<li><a href="https://github.com/nautobot/nautobot/issues/2023">#2023</a> - Added reusable GitHub Action workflow for use by plugins to test against <code>next</code>, <code>develop</code> routinely.</li>
|
|
11627
11587
|
</ul>
|
|
11628
|
-
<h3 id="
|
|
11588
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11629
11589
|
<ul>
|
|
11630
11590
|
<li><a href="https://github.com/nautobot/nautobot/issues/2235">#2235</a> - Added ancestor information to Location and LocationType display names to provide additional context in the UI.</li>
|
|
11631
11591
|
</ul>
|
|
11632
|
-
<h3 id="
|
|
11592
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11633
11593
|
<ul>
|
|
11634
11594
|
<li><a href="https://github.com/nautobot/nautobot/issues/2353">#2353</a> - Fixed MultiSelect CustomField being emptied unintentionally after bulk update.</li>
|
|
11635
11595
|
<li><a href="https://github.com/nautobot/nautobot/issues/2375">#2375</a> - Fixed error in Cable list view filtering when <code>color</code> and <code>type</code> filters are not set.</li>
|
|
11636
11596
|
<li><a href="https://github.com/nautobot/nautobot/issues/2461">#2461</a> - Fixed an exception during OpenAPI schema generation when certain Nautobot apps (including <code>nautobot-firewall-models</code>) were installed.</li>
|
|
11637
11597
|
</ul>
|
|
11638
|
-
<h3 id="
|
|
11598
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11639
11599
|
<ul>
|
|
11640
11600
|
<li><a href="https://github.com/nautobot/nautobot/issues/2153">#2153</a> - Updated optional settings documentation to provide clarity on Nautobot vs Django settings.</li>
|
|
11641
11601
|
</ul>
|
|
11642
|
-
<h3 id="
|
|
11602
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11643
11603
|
<ul>
|
|
11644
11604
|
<li><a href="https://github.com/nautobot/nautobot/issues/2457">#2457</a> - Moved <code>towncrier_template.j2</code> from root to develop directory.</li>
|
|
11645
11605
|
<li><a href="https://github.com/nautobot/nautobot/issues/2468">#2468</a> - Upgraded CI gh-action-setup-poetry-environment action to v3</li>
|
|
11646
11606
|
<li><a href="https://github.com/nautobot/nautobot/pull/2496">#2496</a> - Fixed failing CI due to #2468</li>
|
|
11647
11607
|
</ul>
|
|
11648
11608
|
<h2 id="v143-2022-09-19">v1.4.3 (2022-09-19)<a class="headerlink" href="#v143-2022-09-19" title="Permanent link">¶</a></h2>
|
|
11649
|
-
<h3 id="
|
|
11609
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11650
11610
|
<ul>
|
|
11651
11611
|
<li><a href="https://github.com/nautobot/nautobot/issues/2327">#2327</a> - Added help text to the Job scheduling datetime picker to indicate the applicable time zone.</li>
|
|
11652
11612
|
</ul>
|
|
11653
|
-
<h3 id="
|
|
11613
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
11654
11614
|
<ul>
|
|
11655
11615
|
<li><a href="https://github.com/nautobot/nautobot/issues/2223">#2223</a> - Augment <code>get_route_for_model()</code> to support REST API routes.</li>
|
|
11656
11616
|
<li><a href="https://github.com/nautobot/nautobot/issues/2340">#2340</a> - Improved rendering of badges, labels, buttons, and color selection menus in dark mode.</li>
|
|
11657
11617
|
<li><a href="https://github.com/nautobot/nautobot/issues/2447">#2447</a> - Moved Dynamic Groups tab on object detail view to it's own view as a generic <code>ObjectDynamicGroupsView</code>.</li>
|
|
11658
11618
|
</ul>
|
|
11659
|
-
<h3 id="
|
|
11619
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11660
11620
|
<ul>
|
|
11661
11621
|
<li><a href="https://github.com/nautobot/nautobot/issues/138">#138</a> - Fixed lack of user-facing message when an exception occurs while discovering Jobs from a Git repository.</li>
|
|
11662
11622
|
<li><a href="https://github.com/nautobot/nautobot/issues/950">#950</a> - Fixed database concurrency issues with uWSGI pre-forking.</li>
|
|
@@ -11669,18 +11629,18 @@
|
|
|
11669
11629
|
<li><a href="https://github.com/nautobot/nautobot/issues/2382">#2382</a> - Removed extraneous cache and temporary files from the <code>dev</code> and <code>final-dev</code> Docker images to reduce image size.</li>
|
|
11670
11630
|
<li><a href="https://github.com/nautobot/nautobot/issues/2389">#2389</a> - Removed extraneous <code>inspect.getsource()</code> call from Job class.</li>
|
|
11671
11631
|
</ul>
|
|
11672
|
-
<h3 id="
|
|
11632
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11673
11633
|
<ul>
|
|
11674
11634
|
<li><a href="https://github.com/nautobot/nautobot/issues/1619">#1619</a> - Updated <code>drf-spectacular</code> dependency to version 0.24.</li>
|
|
11675
11635
|
</ul>
|
|
11676
|
-
<h3 id="
|
|
11636
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11677
11637
|
<ul>
|
|
11678
11638
|
<li><a href="https://github.com/nautobot/nautobot/issues/2383">#2383</a> - Updated documentation link for Nautobot ChatOps plugin.</li>
|
|
11679
11639
|
<li><a href="https://github.com/nautobot/nautobot/issues/2400">#2400</a> - Improved formatting of version changes in the documentation.</li>
|
|
11680
11640
|
<li><a href="https://github.com/nautobot/nautobot/issues/2407">#2407</a> - Corrected SSO Backend reference for Azure AD Tenant.</li>
|
|
11681
11641
|
<li><a href="https://github.com/nautobot/nautobot/issues/2431">#2431</a> - Add section to the custom field documentation on ORM filtering.</li>
|
|
11682
11642
|
</ul>
|
|
11683
|
-
<h3 id="
|
|
11643
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11684
11644
|
<ul>
|
|
11685
11645
|
<li><a href="https://github.com/nautobot/nautobot/issues/2362">#2362</a> - Added documentation and automation for Nautobot Github project to use <code>towncrier</code> for changelog fragments.</li>
|
|
11686
11646
|
<li><a href="https://github.com/nautobot/nautobot/issues/2364">#2364</a> - Allow <code>invoke</code> tasks to be run even if <code>rich</code> is not installed.</li>
|
|
@@ -11689,7 +11649,7 @@
|
|
|
11689
11649
|
<li><a href="https://github.com/nautobot/nautobot/issues/2449">#2449</a> - CI: Moved dependency build to be a job, not a step.</li>
|
|
11690
11650
|
</ul>
|
|
11691
11651
|
<h2 id="v142-2022-09-05">v1.4.2 (2022-09-05)<a class="headerlink" href="#v142-2022-09-05" title="Permanent link">¶</a></h2>
|
|
11692
|
-
<h3 id="
|
|
11652
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11693
11653
|
<ul>
|
|
11694
11654
|
<li><a href="https://github.com/nautobot/nautobot/issues/983">#983</a> - Added functionalities to specify <code>args</code> and <code>kwargs</code> to <code>NavMenuItem</code>.</li>
|
|
11695
11655
|
<li><a href="https://github.com/nautobot/nautobot/issues/2250">#2250</a> - Added "Stats" and "Rack Groups" to Location detail view, added "Locations" to Site detail view.</li>
|
|
@@ -11697,11 +11657,11 @@
|
|
|
11697
11657
|
<li><a href="https://github.com/nautobot/nautobot/issues/2307">#2307</a> - Added <code>dynamic_groups</code> field in GraphQL on objects that can belong to dynamic groups.</li>
|
|
11698
11658
|
<li><a href="https://github.com/nautobot/nautobot/pull/2360">#2360</a> - Added Django natural key to <code>extras.Tag</code>.</li>
|
|
11699
11659
|
</ul>
|
|
11700
|
-
<h3 id="
|
|
11660
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
11701
11661
|
<ul>
|
|
11702
11662
|
<li><a href="https://github.com/nautobot/nautobot/pull/2360">#2360</a> - Django natural key for Status is now <code>name</code> rather than <code>slug</code>.</li>
|
|
11703
11663
|
</ul>
|
|
11704
|
-
<h3 id="
|
|
11664
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11705
11665
|
<ul>
|
|
11706
11666
|
<li><a href="https://github.com/nautobot/nautobot/issues/449">#449</a> - Improved error checking and reporting when syncing Git repositories.</li>
|
|
11707
11667
|
<li><a href="https://github.com/nautobot/nautobot/issues/1227">#1227</a> - The <code>NAUTOBOT_DOCKER_SKIP_INIT</code> environment variable can now be set to "false" (case-insensitive),</li>
|
|
@@ -11715,11 +11675,11 @@
|
|
|
11715
11675
|
<li><a href="https://github.com/nautobot/nautobot/issues/2311">#2311</a> - Fixed autopopulation of "Parent" selection when editing an existing Location.</li>
|
|
11716
11676
|
<li><a href="https://github.com/nautobot/nautobot/issues/2350">#2350</a> - Fixed potential Redis deadlock if Nautobot server restarts at an unfortunate time.</li>
|
|
11717
11677
|
</ul>
|
|
11718
|
-
<h3 id="
|
|
11678
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11719
11679
|
<ul>
|
|
11720
11680
|
<li><a href="https://github.com/nautobot/nautobot/pull/2296">#2296</a> - Updated <code>netutils</code> dependency from 1.1.x to 1.2.x.</li>
|
|
11721
11681
|
</ul>
|
|
11722
|
-
<h3 id="
|
|
11682
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
11723
11683
|
<ul>
|
|
11724
11684
|
<li><a href="https://github.com/nautobot/nautobot/pull/2268">#2268</a> - Fixed broken links in documentation.</li>
|
|
11725
11685
|
<li><a href="https://github.com/nautobot/nautobot/issues/2341">#2341</a> - Fixed omission of docs from published Python packages.</li>
|
|
@@ -11728,7 +11688,7 @@
|
|
|
11728
11688
|
<li><a href="https://github.com/nautobot/nautobot/pull/2365">#2365</a> - Update Network to Code branding name</li>
|
|
11729
11689
|
<li><a href="https://github.com/nautobot/nautobot/pull/2367">#2367</a> - Remove coming soon from projects that exists</li>
|
|
11730
11690
|
</ul>
|
|
11731
|
-
<h3 id="
|
|
11691
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11732
11692
|
<ul>
|
|
11733
11693
|
<li><a href="https://github.com/nautobot/nautobot/issues/2011">#2011</a> - replaced all .format() strings and C format strings with fstrings.</li>
|
|
11734
11694
|
<li><a href="https://github.com/nautobot/nautobot/pull/2293">#2293</a> - Updated GitHub bug report template.</li>
|
|
@@ -11738,16 +11698,16 @@
|
|
|
11738
11698
|
<li><a href="https://github.com/nautobot/nautobot/pull/2349">#2349</a> - Docker images are now built with Poetry 1.2.0.</li>
|
|
11739
11699
|
</ul>
|
|
11740
11700
|
<h2 id="v141-2022-08-22">v1.4.1 (2022-08-22)<a class="headerlink" href="#v141-2022-08-22" title="Permanent link">¶</a></h2>
|
|
11741
|
-
<h3 id="
|
|
11701
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
11742
11702
|
<ul>
|
|
11743
11703
|
<li><a href="https://github.com/nautobot/nautobot/issues/1809">#1809</a> - Added Django natural key to <code>extras.Status</code> to simplify exporting and importing of database dumps for <code>Status</code> objects.</li>
|
|
11744
11704
|
<li><a href="https://github.com/nautobot/nautobot/pull/2202">#2202</a> - Added <code>validate_models</code> management command to validate each instance in the database.</li>
|
|
11745
11705
|
</ul>
|
|
11746
|
-
<h3 id="
|
|
11706
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
11747
11707
|
<ul>
|
|
11748
11708
|
<li><a href="https://github.com/nautobot/nautobot/issues/2206">#2206</a> - Changed Run button on Job Result to always be displayed, "Re-Run" if available.</li>
|
|
11749
11709
|
</ul>
|
|
11750
|
-
<h3 id="
|
|
11710
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11751
11711
|
<ul>
|
|
11752
11712
|
<li><a href="https://github.com/nautobot/nautobot/issues/2209">#2209</a> - Fixed lack of dark-mode support in GraphiQL page.</li>
|
|
11753
11713
|
<li><a href="https://github.com/nautobot/nautobot/issues/2215">#2215</a> - Fixed error seen in migration from 1.3.x if certain default Statuses had been modified.</li>
|
|
@@ -11758,29 +11718,29 @@
|
|
|
11758
11718
|
<li><a href="https://github.com/nautobot/nautobot/issues/2241">#2241</a> - Fixed <code>DynamicGroup.objects.get_for_model()</code> to support nested Dynamic Groups.</li>
|
|
11759
11719
|
<li><a href="https://github.com/nautobot/nautobot/issues/2259">#2259</a> - Fixed footer not bound to bottom of Device View.</li>
|
|
11760
11720
|
</ul>
|
|
11761
|
-
<h3 id="
|
|
11721
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
11762
11722
|
<ul>
|
|
11763
11723
|
<li><a href="https://github.com/nautobot/nautobot/pull/2218">#2218</a> - Fixed typos/links in release notes and Dynamic Groups docs.</li>
|
|
11764
11724
|
<li><a href="https://github.com/nautobot/nautobot/pull/2252">#2252</a> - Updated Poetry install command for Development Getting Started guide.</li>
|
|
11765
11725
|
</ul>
|
|
11766
|
-
<h3 id="
|
|
11726
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11767
11727
|
<ul>
|
|
11768
11728
|
<li><a href="https://github.com/nautobot/nautobot/issues/2213">#2213</a> - Added a new <code>--pull</code> parameter for <code>invoke build</code> to tell Docker to pull images when building containers.</li>
|
|
11769
11729
|
<li><a href="https://github.com/nautobot/nautobot/pull/2220">#2220</a> - Narrowed scope of auto-formatting in VSCode to only apply to Python files.</li>
|
|
11770
11730
|
</ul>
|
|
11771
11731
|
<h2 id="v140-2022-08-15">v1.4.0 (2022-08-15)<a class="headerlink" href="#v140-2022-08-15" title="Permanent link">¶</a></h2>
|
|
11772
|
-
<h3 id="
|
|
11732
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
11773
11733
|
<ul>
|
|
11774
11734
|
<li><a href="https://github.com/nautobot/nautobot/issues/1812">#1812</a> - Added <code>NautobotViewSet</code> and accompanying helper methods, documentation.</li>
|
|
11775
11735
|
<li><a href="https://github.com/nautobot/nautobot/issues/2105">#2105</a> - Added support for Notes in NautobotBulkEditForm and NautobotEditForm.</li>
|
|
11776
11736
|
<li><a href="https://github.com/nautobot/nautobot/pull/2200">#2200</a> - Added Dynamic Groups support for Cluster, IP Address, Prefix, and Rack.</li>
|
|
11777
11737
|
</ul>
|
|
11778
|
-
<h3 id="
|
|
11738
|
+
<h3 id="changed_10">Changed<a class="headerlink" href="#changed_10" title="Permanent link">¶</a></h3>
|
|
11779
11739
|
<ul>
|
|
11780
11740
|
<li><a href="https://github.com/nautobot/nautobot/issues/1812">#1812</a> - Changed Circuit app models to use <code>NautobotViewSet</code>s.</li>
|
|
11781
11741
|
<li><a href="https://github.com/nautobot/nautobot/pull/2200">#2200</a> - Group of dynamic group membership links now link to the group's membership table view.</li>
|
|
11782
11742
|
</ul>
|
|
11783
|
-
<h3 id="
|
|
11743
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11784
11744
|
<ul>
|
|
11785
11745
|
<li><a href="https://github.com/nautobot/nautobot/issues/1304">#1304</a> - Fixed incorrect display of connection counts on home page.</li>
|
|
11786
11746
|
<li><a href="https://github.com/nautobot/nautobot/issues/1845">#1845</a> - Fixed not being able to schedule job with 'immediate' schedule via API.</li>
|
|
@@ -11792,33 +11752,33 @@
|
|
|
11792
11752
|
<li><a href="https://github.com/nautobot/nautobot/issues/2178">#2192</a> - Fixed job.request removed from job instance in <code>v1.4.0b1</code>.</li>
|
|
11793
11753
|
<li><a href="https://github.com/nautobot/nautobot/pull/2197">#2197</a> - Fixed some display issues in the Dynamic Groups detail view.</li>
|
|
11794
11754
|
</ul>
|
|
11795
|
-
<h3 id="
|
|
11755
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
11796
11756
|
<ul>
|
|
11797
11757
|
<li><a href="https://github.com/nautobot/nautobot/pull/2183">#2183</a> - Update dependency django to ~3.2.15.</li>
|
|
11798
11758
|
</ul>
|
|
11799
|
-
<h3 id="
|
|
11759
|
+
<h3 id="documentation_8">Documentation<a class="headerlink" href="#documentation_8" title="Permanent link">¶</a></h3>
|
|
11800
11760
|
<ul>
|
|
11801
11761
|
<li><a href="https://github.com/nautobot/nautobot/pull/2029">#2029</a> - Updated optional settings docs to call out environment variable only settings.</li>
|
|
11802
11762
|
<li><a href="https://github.com/nautobot/nautobot/issues/2193">#2193</a> - Updated Postgres/MySQL <code>dumpdata</code> docs to exclude <code>django_rq</code> exports.</li>
|
|
11803
11763
|
</ul>
|
|
11804
|
-
<h3 id="
|
|
11764
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11805
11765
|
<ul>
|
|
11806
11766
|
<li><a href="https://github.com/nautobot/nautobot/pull/2173">#2173</a> - Added flake8 linting and black formatting settings to vscode workspace settings.</li>
|
|
11807
11767
|
<li><a href="https://github.com/nautobot/nautobot/pull/2176">#2176</a> - Update invoke task output to use rich formatting, print full Docker Compose commands.</li>
|
|
11808
11768
|
</ul>
|
|
11809
11769
|
<h2 id="v140rc1-2022-08-10">v1.4.0rc1 (2022-08-10)<a class="headerlink" href="#v140rc1-2022-08-10" title="Permanent link">¶</a></h2>
|
|
11810
|
-
<h3 id="
|
|
11770
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
11811
11771
|
<ul>
|
|
11812
11772
|
<li><a href="https://github.com/nautobot/nautobot/issues/767">#767</a> - Added notes field to Primary and Organizational models.</li>
|
|
11813
11773
|
<li><a href="https://github.com/nautobot/nautobot/issues/1498">#1498</a> - Added extended lookup expression filters to custom fields.</li>
|
|
11814
11774
|
<li><a href="https://github.com/nautobot/nautobot/issues/1962">#1962</a> - Added <code>slug</code> field to Custom Field model, added 1.4 REST API version of the <code>api/extras/custom-fields/</code> endpoints.</li>
|
|
11815
11775
|
<li><a href="https://github.com/nautobot/nautobot/issues/2106">#2106</a> - Added support for listing/creating Notes via REST API.</li>
|
|
11816
11776
|
</ul>
|
|
11817
|
-
<h3 id="
|
|
11777
|
+
<h3 id="changed_11">Changed<a class="headerlink" href="#changed_11" title="Permanent link">¶</a></h3>
|
|
11818
11778
|
<ul>
|
|
11819
11779
|
<li><a href="https://github.com/nautobot/nautobot/pull/2168">#2168</a> - Added model toggle to skip adding missing Dynamic Group filter fields for use in easing integration of new models into Dynamic Groups.</li>
|
|
11820
11780
|
</ul>
|
|
11821
|
-
<h3 id="
|
|
11781
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11822
11782
|
<ul>
|
|
11823
11783
|
<li><a href="https://github.com/nautobot/nautobot/issues/2090">#2090</a> - Fixed an issue where a REST API PATCH of a Tag could inadvertently reset its associated content-types.</li>
|
|
11824
11784
|
<li><a href="https://github.com/nautobot/nautobot/pull/2132">#2132</a> - Updated job hooks to use slugs in urls instead of pk.</li>
|
|
@@ -11827,17 +11787,17 @@
|
|
|
11827
11787
|
<li><a href="https://github.com/nautobot/nautobot/issues/2137">#2137</a> - Fixed incorrect parameter name in <code>NaturalKeyOrPKMultipleChoiceFilter</code> documentation.</li>
|
|
11828
11788
|
<li><a href="https://github.com/nautobot/nautobot/pull/2142">#2142</a> - Fixed incorrect URL field in REST API nested relationship representation.</li>
|
|
11829
11789
|
</ul>
|
|
11830
|
-
<h3 id="
|
|
11790
|
+
<h3 id="documentation_9">Documentation<a class="headerlink" href="#documentation_9" title="Permanent link">¶</a></h3>
|
|
11831
11791
|
<ul>
|
|
11832
11792
|
<li><a href="https://github.com/nautobot/nautobot/pull/2156">#2156</a> - Update network automation apps listed on overview of docs.</li>
|
|
11833
11793
|
</ul>
|
|
11834
|
-
<h3 id="
|
|
11794
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
11835
11795
|
<ul>
|
|
11836
11796
|
<li><a href="https://github.com/nautobot/nautobot/issues/2150">#2150</a> - Fixed unit tests performance degradation.</li>
|
|
11837
11797
|
<li><a href="https://github.com/nautobot/nautobot/pull/2165">#2165</a> - Fix up relationship-association API test issue.</li>
|
|
11838
11798
|
</ul>
|
|
11839
11799
|
<h2 id="v140b1-2022-07-30">v1.4.0b1 (2022-07-30)<a class="headerlink" href="#v140b1-2022-07-30" title="Permanent link">¶</a></h2>
|
|
11840
|
-
<h3 id="
|
|
11800
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
11841
11801
|
<ul>
|
|
11842
11802
|
<li><a href="https://github.com/nautobot/nautobot/issues/1463">#1463</a> - Added REST API support for opt-in <code>relationships</code> data on model endpoints; added <code>NautobotModelSerializer</code> base class.</li>
|
|
11843
11803
|
<li><a href="https://github.com/nautobot/nautobot/issues/1614">#1614</a> - Added support for nesting of Dynamic Groups, allowing inclusion/exclusion rules of sub-group members.</li>
|
|
@@ -11852,22 +11812,22 @@
|
|
|
11852
11812
|
<li><a href="https://github.com/nautobot/nautobot/issues/2051">#2051</a> - Add changelog url for Relationships.</li>
|
|
11853
11813
|
<li><a href="https://github.com/nautobot/nautobot/pull/2061">#2061</a> - Add draggable child groups to Dynamic Groups edit view in UI, recompute and hide weights.</li>
|
|
11854
11814
|
</ul>
|
|
11855
|
-
<h3 id="
|
|
11815
|
+
<h3 id="changed_12">Changed<a class="headerlink" href="#changed_12" title="Permanent link">¶</a></h3>
|
|
11856
11816
|
<ul>
|
|
11857
11817
|
<li><a href="https://github.com/nautobot/nautobot/pull/2049">#2049</a> - Moved <code>get_changelog_url</code> to a method on objects that support changelogs, updated template context.</li>
|
|
11858
11818
|
</ul>
|
|
11859
|
-
<h3 id="
|
|
11819
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
11860
11820
|
<ul>
|
|
11861
11821
|
<li><a href="https://github.com/nautobot/nautobot/issues/1710">#1710</a> - Fixed invalid CSS when clicking "Add another" row buttons for formsets on Secrets Groups, Dynamic Groups edit view in the UI.</li>
|
|
11862
11822
|
<li><a href="https://github.com/nautobot/nautobot/issues/2069">#2069</a> - Addressed numerous UX improvements for Dynamic Groups of Dynamic Groups feature to ease usability of this feature.</li>
|
|
11863
11823
|
<li><a href="https://github.com/nautobot/nautobot/issues/2109">#2109</a> - Fixed Relationship Filters are not Applied with "And" Operator.</li>
|
|
11864
11824
|
<li><a href="https://github.com/nautobot/nautobot/issues/2111">#2111</a> - Fixed Invalid filter error thrown for <code>__source</code> with message: "" is not a valid UUID.</li>
|
|
11865
11825
|
</ul>
|
|
11866
|
-
<h3 id="
|
|
11826
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
11867
11827
|
<ul>
|
|
11868
11828
|
<li><a href="https://github.com/nautobot/nautobot/pull/2116">#2116</a> - Updated package dependencies: Pillow <code>~9.1.1</code> -> <code>~9.2.0</code>, black <code>~22.3.0</code> -> <code>~22.6.0</code>, coverage <code>6.4.1</code> -> <code>6.4.2</code>, django-cacheops <code>6.0</code> -> <code>6.1</code>, django-cryptography <code>1.0</code> -> <code>1.1</code>, django-debug-toolbar <code>~3.4.0</code> -> <code>~3.5.0</code>, django-extensions <code>~3.1.5</code> -> <code>~3.2.0</code>, drf-yasg <code>~1.20.0</code> -> <code>^1.20.0</code>, importlib-metadata <code>~4.4</code> -> <code>^4.4.0</code>, jsonschema <code>~4.4.0</code> -> <code>~4.8.0</code>, mkdocs <code>1.3.0</code> -> <code>1.3.1</code>, mkdocs <code>==1.3.0</code> -> <code>==1.3.1</code>, mkdocs-include-markdown-plugin <code>~3.2.3</code> -> <code>~3.6.0</code>, mkdocs-include-markdown-plugin <code>==3.2.3</code> -> <code>==3.6.1</code>, social-auth-core <code>~4.2.0</code> -> <code>~4.3.0</code>, svgwrite <code>1.4.2</code> -> <code>1.4.3</code></li>
|
|
11869
11829
|
</ul>
|
|
11870
|
-
<h3 id="
|
|
11830
|
+
<h3 id="documentation_10">Documentation<a class="headerlink" href="#documentation_10" title="Permanent link">¶</a></h3>
|
|
11871
11831
|
<ul>
|
|
11872
11832
|
<li><a href="https://github.com/nautobot/nautobot/pull/2072">#2072</a> - Expand on <code>query_params</code> for <code>ObjectVar</code> in Jobs documentation.</li>
|
|
11873
11833
|
</ul>
|
|
@@ -11879,7 +11839,7 @@
|
|
|
11879
11839
|
<p>Perform the Nautobot upgrade as usual and proceed with post-installation migration.</p>
|
|
11880
11840
|
<p>No data loss is expected as the reordered migration only modified indexing on existing fields.</p>
|
|
11881
11841
|
</div>
|
|
11882
|
-
<h3 id="
|
|
11842
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
11883
11843
|
<ul>
|
|
11884
11844
|
<li><a href="https://github.com/nautobot/nautobot/issues/1000">#1000</a> - Object detail views can now have extra UI tabs which are defined by a plugin.</li>
|
|
11885
11845
|
<li><a href="https://github.com/nautobot/nautobot/issues/1052">#1052</a> - Initial prototype implementation of Location data model.</li>
|
|
@@ -11890,20 +11850,20 @@
|
|
|
11890
11850
|
<li><a href="https://github.com/nautobot/nautobot/issues/1729">#1729</a> - Add <code>cable_terminations</code> to the <code>model_features</code> registry.</li>
|
|
11891
11851
|
<li><a href="https://github.com/nautobot/nautobot/issues/1893">#1893</a> - Added an object detail view for Relationships.</li>
|
|
11892
11852
|
</ul>
|
|
11893
|
-
<h3 id="
|
|
11853
|
+
<h3 id="changed_13">Changed<a class="headerlink" href="#changed_13" title="Permanent link">¶</a></h3>
|
|
11894
11854
|
<ul>
|
|
11895
11855
|
<li><a href="https://github.com/nautobot/nautobot/issues/1945">#1945</a> - Change the <code>settings_and_registry</code> default context processor to purely <code>settings</code>, moving registry dictionary to be accessible via <code>registry</code> template tag.</li>
|
|
11896
11856
|
</ul>
|
|
11897
|
-
<h3 id="removed
|
|
11857
|
+
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11898
11858
|
<ul>
|
|
11899
11859
|
<li><a href="https://github.com/nautobot/nautobot/issues/1462">#1462</a> - Removed job source tab from Job and Job Result view.</li>
|
|
11900
11860
|
<li><a href="https://github.com/nautobot/nautobot/issues/2002">#2002</a> - Removed rqworker container from default Docker development environment.</li>
|
|
11901
11861
|
</ul>
|
|
11902
|
-
<h3 id="
|
|
11862
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
11903
11863
|
<ul>
|
|
11904
11864
|
<li><a href="https://github.com/nautobot/nautobot/issues/1898">#1898</a> - Browsable API is now properly styled as the rest of the app.</li>
|
|
11905
11865
|
</ul>
|
|
11906
|
-
<h3 id="
|
|
11866
|
+
<h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">¶</a></h3>
|
|
11907
11867
|
<ul>
|
|
11908
11868
|
<li><a href="https://github.com/nautobot/nautobot/pull/1908">#1908</a> - Update dependency Markdown to ~3.3.7</li>
|
|
11909
11869
|
<li><a href="https://github.com/nautobot/nautobot/pull/1909">#1909</a> - Update dependency MarkupSafe to ~2.1.1</li>
|
|
@@ -11919,12 +11879,12 @@
|
|
|
11919
11879
|
<li><a href="https://github.com/nautobot/nautobot/pull/1928">#1928</a> - Update dependency napalm to ~3.4.1</li>
|
|
11920
11880
|
<li><a href="https://github.com/nautobot/nautobot/pull/1929">#1929</a> - Update dependency selenium to ~4.2.0</li>
|
|
11921
11881
|
</ul>
|
|
11922
|
-
<h3 id="
|
|
11882
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
11923
11883
|
<ul>
|
|
11924
11884
|
<li><a href="https://github.com/nautobot/nautobot/issues/1949">#1949</a> - Added TestCaseMixin for Helper Functions across all test case bases.</li>
|
|
11925
11885
|
</ul>
|
|
11926
11886
|
<h2 id="v140a1-2022-06-13">v1.4.0a1 (2022-06-13)<a class="headerlink" href="#v140a1-2022-06-13" title="Permanent link">¶</a></h2>
|
|
11927
|
-
<h3 id="
|
|
11887
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
11928
11888
|
<ul>
|
|
11929
11889
|
<li><a href="https://github.com/nautobot/nautobot/issues/729">#729</a> - Added UI dark mode.</li>
|
|
11930
11890
|
<li><a href="https://github.com/nautobot/nautobot/issues/984">#984</a> - Added status field to Interface, VMInterface models.</li>
|
|
@@ -11932,12 +11892,12 @@
|
|
|
11932
11892
|
<li><a href="https://github.com/nautobot/nautobot/issues/1455">#1455</a> - Added <code>parent_interface</code> and <code>bridge</code> fields to Interface and VMInterface models.</li>
|
|
11933
11893
|
<li><a href="https://github.com/nautobot/nautobot/pull/1833">#1833</a> - Added <code>hyperlinked_object</code> template filter to consistently reference objects in templates.</li>
|
|
11934
11894
|
</ul>
|
|
11935
|
-
<h3 id="
|
|
11895
|
+
<h3 id="changed_14">Changed<a class="headerlink" href="#changed_14" title="Permanent link">¶</a></h3>
|
|
11936
11896
|
<ul>
|
|
11937
11897
|
<li><a href="https://github.com/nautobot/nautobot/issues/1736">#1736</a> - <code>STRICT_FILTERING</code> setting is added and enabled by default.</li>
|
|
11938
11898
|
<li><a href="https://github.com/nautobot/nautobot/pull/1793">#1793</a> - Added index notes to fields from analysis, relaxed ConfigContextSchema constraint (unique on <code>name</code>, <code>owner_content_type</code>, <code>owner_object_id</code> instead of just <code>name</code>).</li>
|
|
11939
11899
|
</ul>
|
|
11940
|
-
<h3 id="
|
|
11900
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
11941
11901
|
<ul>
|
|
11942
11902
|
<li><a href="https://github.com/nautobot/nautobot/issues/1815">#1815</a> - Fix theme link style in footer.</li>
|
|
11943
11903
|
<li><a href="https://github.com/nautobot/nautobot/issues/1831">#1831</a> - Fixed missing <code>parent_interface</code> and <code>bridge</code> from 1.4 serializer of Interfaces.</li>
|
|
@@ -12090,7 +12050,7 @@
|
|
|
12090
12050
|
<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>
|
|
12091
12051
|
|
|
12092
12052
|
|
|
12093
|
-
<script src="../assets/javascripts/bundle.
|
|
12053
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
12094
12054
|
|
|
12095
12055
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12096
12056
|
|