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
|
|
|
@@ -8684,72 +8642,72 @@
|
|
|
8684
8642
|
<ul class="md-nav__list">
|
|
8685
8643
|
|
|
8686
8644
|
<li class="md-nav__item">
|
|
8687
|
-
<a href="#security
|
|
8645
|
+
<a href="#security" class="md-nav__link">
|
|
8688
8646
|
<span class="md-ellipsis">
|
|
8689
|
-
Security
|
|
8647
|
+
Security
|
|
8690
8648
|
</span>
|
|
8691
8649
|
</a>
|
|
8692
8650
|
|
|
8693
8651
|
</li>
|
|
8694
8652
|
|
|
8695
8653
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#
|
|
8654
|
+
<a href="#added_1" class="md-nav__link">
|
|
8697
8655
|
<span class="md-ellipsis">
|
|
8698
|
-
Added
|
|
8656
|
+
Added
|
|
8699
8657
|
</span>
|
|
8700
8658
|
</a>
|
|
8701
8659
|
|
|
8702
8660
|
</li>
|
|
8703
8661
|
|
|
8704
8662
|
<li class="md-nav__item">
|
|
8705
|
-
<a href="#
|
|
8663
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8706
8664
|
<span class="md-ellipsis">
|
|
8707
|
-
Changed
|
|
8665
|
+
Changed
|
|
8708
8666
|
</span>
|
|
8709
8667
|
</a>
|
|
8710
8668
|
|
|
8711
8669
|
</li>
|
|
8712
8670
|
|
|
8713
8671
|
<li class="md-nav__item">
|
|
8714
|
-
<a href="#
|
|
8672
|
+
<a href="#removed_1" class="md-nav__link">
|
|
8715
8673
|
<span class="md-ellipsis">
|
|
8716
|
-
Removed
|
|
8674
|
+
Removed
|
|
8717
8675
|
</span>
|
|
8718
8676
|
</a>
|
|
8719
8677
|
|
|
8720
8678
|
</li>
|
|
8721
8679
|
|
|
8722
8680
|
<li class="md-nav__item">
|
|
8723
|
-
<a href="#fixed
|
|
8681
|
+
<a href="#fixed" class="md-nav__link">
|
|
8724
8682
|
<span class="md-ellipsis">
|
|
8725
|
-
Fixed
|
|
8683
|
+
Fixed
|
|
8726
8684
|
</span>
|
|
8727
8685
|
</a>
|
|
8728
8686
|
|
|
8729
8687
|
</li>
|
|
8730
8688
|
|
|
8731
8689
|
<li class="md-nav__item">
|
|
8732
|
-
<a href="#dependencies
|
|
8690
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8733
8691
|
<span class="md-ellipsis">
|
|
8734
|
-
Dependencies
|
|
8692
|
+
Dependencies
|
|
8735
8693
|
</span>
|
|
8736
8694
|
</a>
|
|
8737
8695
|
|
|
8738
8696
|
</li>
|
|
8739
8697
|
|
|
8740
8698
|
<li class="md-nav__item">
|
|
8741
|
-
<a href="#documentation
|
|
8699
|
+
<a href="#documentation" class="md-nav__link">
|
|
8742
8700
|
<span class="md-ellipsis">
|
|
8743
|
-
Documentation
|
|
8701
|
+
Documentation
|
|
8744
8702
|
</span>
|
|
8745
8703
|
</a>
|
|
8746
8704
|
|
|
8747
8705
|
</li>
|
|
8748
8706
|
|
|
8749
8707
|
<li class="md-nav__item">
|
|
8750
|
-
<a href="#housekeeping
|
|
8708
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8751
8709
|
<span class="md-ellipsis">
|
|
8752
|
-
Housekeeping
|
|
8710
|
+
Housekeeping
|
|
8753
8711
|
</span>
|
|
8754
8712
|
</a>
|
|
8755
8713
|
|
|
@@ -8771,54 +8729,54 @@
|
|
|
8771
8729
|
<ul class="md-nav__list">
|
|
8772
8730
|
|
|
8773
8731
|
<li class="md-nav__item">
|
|
8774
|
-
<a href="#
|
|
8732
|
+
<a href="#added_2" class="md-nav__link">
|
|
8775
8733
|
<span class="md-ellipsis">
|
|
8776
|
-
Added
|
|
8734
|
+
Added
|
|
8777
8735
|
</span>
|
|
8778
8736
|
</a>
|
|
8779
8737
|
|
|
8780
8738
|
</li>
|
|
8781
8739
|
|
|
8782
8740
|
<li class="md-nav__item">
|
|
8783
|
-
<a href="#
|
|
8741
|
+
<a href="#changed_2" class="md-nav__link">
|
|
8784
8742
|
<span class="md-ellipsis">
|
|
8785
|
-
Changed
|
|
8743
|
+
Changed
|
|
8786
8744
|
</span>
|
|
8787
8745
|
</a>
|
|
8788
8746
|
|
|
8789
8747
|
</li>
|
|
8790
8748
|
|
|
8791
8749
|
<li class="md-nav__item">
|
|
8792
|
-
<a href="#
|
|
8750
|
+
<a href="#removed_2" class="md-nav__link">
|
|
8793
8751
|
<span class="md-ellipsis">
|
|
8794
|
-
Removed
|
|
8752
|
+
Removed
|
|
8795
8753
|
</span>
|
|
8796
8754
|
</a>
|
|
8797
8755
|
|
|
8798
8756
|
</li>
|
|
8799
8757
|
|
|
8800
8758
|
<li class="md-nav__item">
|
|
8801
|
-
<a href="#
|
|
8759
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8802
8760
|
<span class="md-ellipsis">
|
|
8803
|
-
Fixed
|
|
8761
|
+
Fixed
|
|
8804
8762
|
</span>
|
|
8805
8763
|
</a>
|
|
8806
8764
|
|
|
8807
8765
|
</li>
|
|
8808
8766
|
|
|
8809
8767
|
<li class="md-nav__item">
|
|
8810
|
-
<a href="#
|
|
8768
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8811
8769
|
<span class="md-ellipsis">
|
|
8812
|
-
Documentation
|
|
8770
|
+
Documentation
|
|
8813
8771
|
</span>
|
|
8814
8772
|
</a>
|
|
8815
8773
|
|
|
8816
8774
|
</li>
|
|
8817
8775
|
|
|
8818
8776
|
<li class="md-nav__item">
|
|
8819
|
-
<a href="#
|
|
8777
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8820
8778
|
<span class="md-ellipsis">
|
|
8821
|
-
Housekeeping
|
|
8779
|
+
Housekeeping
|
|
8822
8780
|
</span>
|
|
8823
8781
|
</a>
|
|
8824
8782
|
|
|
@@ -8840,9 +8798,9 @@
|
|
|
8840
8798
|
<ul class="md-nav__list">
|
|
8841
8799
|
|
|
8842
8800
|
<li class="md-nav__item">
|
|
8843
|
-
<a href="#
|
|
8801
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8844
8802
|
<span class="md-ellipsis">
|
|
8845
|
-
Fixed
|
|
8803
|
+
Fixed
|
|
8846
8804
|
</span>
|
|
8847
8805
|
</a>
|
|
8848
8806
|
|
|
@@ -8864,45 +8822,45 @@
|
|
|
8864
8822
|
<ul class="md-nav__list">
|
|
8865
8823
|
|
|
8866
8824
|
<li class="md-nav__item">
|
|
8867
|
-
<a href="#
|
|
8825
|
+
<a href="#security_1" class="md-nav__link">
|
|
8868
8826
|
<span class="md-ellipsis">
|
|
8869
|
-
Security
|
|
8827
|
+
Security
|
|
8870
8828
|
</span>
|
|
8871
8829
|
</a>
|
|
8872
8830
|
|
|
8873
8831
|
</li>
|
|
8874
8832
|
|
|
8875
8833
|
<li class="md-nav__item">
|
|
8876
|
-
<a href="#
|
|
8834
|
+
<a href="#added_3" class="md-nav__link">
|
|
8877
8835
|
<span class="md-ellipsis">
|
|
8878
|
-
Added
|
|
8836
|
+
Added
|
|
8879
8837
|
</span>
|
|
8880
8838
|
</a>
|
|
8881
8839
|
|
|
8882
8840
|
</li>
|
|
8883
8841
|
|
|
8884
8842
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
8843
|
+
<a href="#changed_3" class="md-nav__link">
|
|
8886
8844
|
<span class="md-ellipsis">
|
|
8887
|
-
Changed
|
|
8845
|
+
Changed
|
|
8888
8846
|
</span>
|
|
8889
8847
|
</a>
|
|
8890
8848
|
|
|
8891
8849
|
</li>
|
|
8892
8850
|
|
|
8893
8851
|
<li class="md-nav__item">
|
|
8894
|
-
<a href="#
|
|
8852
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8895
8853
|
<span class="md-ellipsis">
|
|
8896
|
-
Fixed
|
|
8854
|
+
Fixed
|
|
8897
8855
|
</span>
|
|
8898
8856
|
</a>
|
|
8899
8857
|
|
|
8900
8858
|
</li>
|
|
8901
8859
|
|
|
8902
8860
|
<li class="md-nav__item">
|
|
8903
|
-
<a href="#
|
|
8861
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8904
8862
|
<span class="md-ellipsis">
|
|
8905
|
-
Documentation
|
|
8863
|
+
Documentation
|
|
8906
8864
|
</span>
|
|
8907
8865
|
</a>
|
|
8908
8866
|
|
|
@@ -8924,54 +8882,54 @@
|
|
|
8924
8882
|
<ul class="md-nav__list">
|
|
8925
8883
|
|
|
8926
8884
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
8885
|
+
<a href="#security_2" class="md-nav__link">
|
|
8928
8886
|
<span class="md-ellipsis">
|
|
8929
|
-
Security
|
|
8887
|
+
Security
|
|
8930
8888
|
</span>
|
|
8931
8889
|
</a>
|
|
8932
8890
|
|
|
8933
8891
|
</li>
|
|
8934
8892
|
|
|
8935
8893
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
8894
|
+
<a href="#added_4" class="md-nav__link">
|
|
8937
8895
|
<span class="md-ellipsis">
|
|
8938
|
-
Added
|
|
8896
|
+
Added
|
|
8939
8897
|
</span>
|
|
8940
8898
|
</a>
|
|
8941
8899
|
|
|
8942
8900
|
</li>
|
|
8943
8901
|
|
|
8944
8902
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#
|
|
8903
|
+
<a href="#changed_4" class="md-nav__link">
|
|
8946
8904
|
<span class="md-ellipsis">
|
|
8947
|
-
Changed
|
|
8905
|
+
Changed
|
|
8948
8906
|
</span>
|
|
8949
8907
|
</a>
|
|
8950
8908
|
|
|
8951
8909
|
</li>
|
|
8952
8910
|
|
|
8953
8911
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
8912
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8955
8913
|
<span class="md-ellipsis">
|
|
8956
|
-
Fixed
|
|
8914
|
+
Fixed
|
|
8957
8915
|
</span>
|
|
8958
8916
|
</a>
|
|
8959
8917
|
|
|
8960
8918
|
</li>
|
|
8961
8919
|
|
|
8962
8920
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#
|
|
8921
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8964
8922
|
<span class="md-ellipsis">
|
|
8965
|
-
Documentation
|
|
8923
|
+
Documentation
|
|
8966
8924
|
</span>
|
|
8967
8925
|
</a>
|
|
8968
8926
|
|
|
8969
8927
|
</li>
|
|
8970
8928
|
|
|
8971
8929
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
8930
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8973
8931
|
<span class="md-ellipsis">
|
|
8974
|
-
Housekeeping
|
|
8932
|
+
Housekeeping
|
|
8975
8933
|
</span>
|
|
8976
8934
|
</a>
|
|
8977
8935
|
|
|
@@ -8993,36 +8951,36 @@
|
|
|
8993
8951
|
<ul class="md-nav__list">
|
|
8994
8952
|
|
|
8995
8953
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
8954
|
+
<a href="#security_3" class="md-nav__link">
|
|
8997
8955
|
<span class="md-ellipsis">
|
|
8998
|
-
Security
|
|
8956
|
+
Security
|
|
8999
8957
|
</span>
|
|
9000
8958
|
</a>
|
|
9001
8959
|
|
|
9002
8960
|
</li>
|
|
9003
8961
|
|
|
9004
8962
|
<li class="md-nav__item">
|
|
9005
|
-
<a href="#
|
|
8963
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9006
8964
|
<span class="md-ellipsis">
|
|
9007
|
-
Fixed
|
|
8965
|
+
Fixed
|
|
9008
8966
|
</span>
|
|
9009
8967
|
</a>
|
|
9010
8968
|
|
|
9011
8969
|
</li>
|
|
9012
8970
|
|
|
9013
8971
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
8972
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9015
8973
|
<span class="md-ellipsis">
|
|
9016
|
-
Documentation
|
|
8974
|
+
Documentation
|
|
9017
8975
|
</span>
|
|
9018
8976
|
</a>
|
|
9019
8977
|
|
|
9020
8978
|
</li>
|
|
9021
8979
|
|
|
9022
8980
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
8981
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9024
8982
|
<span class="md-ellipsis">
|
|
9025
|
-
Housekeeping
|
|
8983
|
+
Housekeeping
|
|
9026
8984
|
</span>
|
|
9027
8985
|
</a>
|
|
9028
8986
|
|
|
@@ -9044,63 +9002,63 @@
|
|
|
9044
9002
|
<ul class="md-nav__list">
|
|
9045
9003
|
|
|
9046
9004
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9005
|
+
<a href="#security_4" class="md-nav__link">
|
|
9048
9006
|
<span class="md-ellipsis">
|
|
9049
|
-
Security
|
|
9007
|
+
Security
|
|
9050
9008
|
</span>
|
|
9051
9009
|
</a>
|
|
9052
9010
|
|
|
9053
9011
|
</li>
|
|
9054
9012
|
|
|
9055
9013
|
<li class="md-nav__item">
|
|
9056
|
-
<a href="#
|
|
9014
|
+
<a href="#added_5" class="md-nav__link">
|
|
9057
9015
|
<span class="md-ellipsis">
|
|
9058
|
-
Added
|
|
9016
|
+
Added
|
|
9059
9017
|
</span>
|
|
9060
9018
|
</a>
|
|
9061
9019
|
|
|
9062
9020
|
</li>
|
|
9063
9021
|
|
|
9064
9022
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9023
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9066
9024
|
<span class="md-ellipsis">
|
|
9067
|
-
Changed
|
|
9025
|
+
Changed
|
|
9068
9026
|
</span>
|
|
9069
9027
|
</a>
|
|
9070
9028
|
|
|
9071
9029
|
</li>
|
|
9072
9030
|
|
|
9073
9031
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
9032
|
+
<a href="#removed_3" class="md-nav__link">
|
|
9075
9033
|
<span class="md-ellipsis">
|
|
9076
|
-
Removed
|
|
9034
|
+
Removed
|
|
9077
9035
|
</span>
|
|
9078
9036
|
</a>
|
|
9079
9037
|
|
|
9080
9038
|
</li>
|
|
9081
9039
|
|
|
9082
9040
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
9041
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9084
9042
|
<span class="md-ellipsis">
|
|
9085
|
-
Fixed
|
|
9043
|
+
Fixed
|
|
9086
9044
|
</span>
|
|
9087
9045
|
</a>
|
|
9088
9046
|
|
|
9089
9047
|
</li>
|
|
9090
9048
|
|
|
9091
9049
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
9050
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9093
9051
|
<span class="md-ellipsis">
|
|
9094
|
-
Dependencies
|
|
9052
|
+
Dependencies
|
|
9095
9053
|
</span>
|
|
9096
9054
|
</a>
|
|
9097
9055
|
|
|
9098
9056
|
</li>
|
|
9099
9057
|
|
|
9100
9058
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
9059
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9102
9060
|
<span class="md-ellipsis">
|
|
9103
|
-
Housekeeping
|
|
9061
|
+
Housekeeping
|
|
9104
9062
|
</span>
|
|
9105
9063
|
</a>
|
|
9106
9064
|
|
|
@@ -9122,72 +9080,72 @@
|
|
|
9122
9080
|
<ul class="md-nav__list">
|
|
9123
9081
|
|
|
9124
9082
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9083
|
+
<a href="#security_5" class="md-nav__link">
|
|
9126
9084
|
<span class="md-ellipsis">
|
|
9127
|
-
Security
|
|
9085
|
+
Security
|
|
9128
9086
|
</span>
|
|
9129
9087
|
</a>
|
|
9130
9088
|
|
|
9131
9089
|
</li>
|
|
9132
9090
|
|
|
9133
9091
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
9092
|
+
<a href="#added_6" class="md-nav__link">
|
|
9135
9093
|
<span class="md-ellipsis">
|
|
9136
|
-
Added
|
|
9094
|
+
Added
|
|
9137
9095
|
</span>
|
|
9138
9096
|
</a>
|
|
9139
9097
|
|
|
9140
9098
|
</li>
|
|
9141
9099
|
|
|
9142
9100
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
9101
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9144
9102
|
<span class="md-ellipsis">
|
|
9145
|
-
Changed
|
|
9103
|
+
Changed
|
|
9146
9104
|
</span>
|
|
9147
9105
|
</a>
|
|
9148
9106
|
|
|
9149
9107
|
</li>
|
|
9150
9108
|
|
|
9151
9109
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
9110
|
+
<a href="#removed_4" class="md-nav__link">
|
|
9153
9111
|
<span class="md-ellipsis">
|
|
9154
|
-
Removed
|
|
9112
|
+
Removed
|
|
9155
9113
|
</span>
|
|
9156
9114
|
</a>
|
|
9157
9115
|
|
|
9158
9116
|
</li>
|
|
9159
9117
|
|
|
9160
9118
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
9119
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9162
9120
|
<span class="md-ellipsis">
|
|
9163
|
-
Fixed
|
|
9121
|
+
Fixed
|
|
9164
9122
|
</span>
|
|
9165
9123
|
</a>
|
|
9166
9124
|
|
|
9167
9125
|
</li>
|
|
9168
9126
|
|
|
9169
9127
|
<li class="md-nav__item">
|
|
9170
|
-
<a href="#
|
|
9128
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9171
9129
|
<span class="md-ellipsis">
|
|
9172
|
-
Dependencies
|
|
9130
|
+
Dependencies
|
|
9173
9131
|
</span>
|
|
9174
9132
|
</a>
|
|
9175
9133
|
|
|
9176
9134
|
</li>
|
|
9177
9135
|
|
|
9178
9136
|
<li class="md-nav__item">
|
|
9179
|
-
<a href="#
|
|
9137
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9180
9138
|
<span class="md-ellipsis">
|
|
9181
|
-
Documentation
|
|
9139
|
+
Documentation
|
|
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="#housekeeping_5" class="md-nav__link">
|
|
9189
9147
|
<span class="md-ellipsis">
|
|
9190
|
-
Housekeeping
|
|
9148
|
+
Housekeeping
|
|
9191
9149
|
</span>
|
|
9192
9150
|
</a>
|
|
9193
9151
|
|
|
@@ -9209,54 +9167,54 @@
|
|
|
9209
9167
|
<ul class="md-nav__list">
|
|
9210
9168
|
|
|
9211
9169
|
<li class="md-nav__item">
|
|
9212
|
-
<a href="#
|
|
9170
|
+
<a href="#added_7" class="md-nav__link">
|
|
9213
9171
|
<span class="md-ellipsis">
|
|
9214
|
-
Added
|
|
9172
|
+
Added
|
|
9215
9173
|
</span>
|
|
9216
9174
|
</a>
|
|
9217
9175
|
|
|
9218
9176
|
</li>
|
|
9219
9177
|
|
|
9220
9178
|
<li class="md-nav__item">
|
|
9221
|
-
<a href="#
|
|
9179
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9222
9180
|
<span class="md-ellipsis">
|
|
9223
|
-
Changed
|
|
9181
|
+
Changed
|
|
9224
9182
|
</span>
|
|
9225
9183
|
</a>
|
|
9226
9184
|
|
|
9227
9185
|
</li>
|
|
9228
9186
|
|
|
9229
9187
|
<li class="md-nav__item">
|
|
9230
|
-
<a href="#
|
|
9188
|
+
<a href="#removed_5" class="md-nav__link">
|
|
9231
9189
|
<span class="md-ellipsis">
|
|
9232
|
-
Removed
|
|
9190
|
+
Removed
|
|
9233
9191
|
</span>
|
|
9234
9192
|
</a>
|
|
9235
9193
|
|
|
9236
9194
|
</li>
|
|
9237
9195
|
|
|
9238
9196
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9197
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9240
9198
|
<span class="md-ellipsis">
|
|
9241
|
-
Fixed
|
|
9199
|
+
Fixed
|
|
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="#documentation_6" class="md-nav__link">
|
|
9249
9207
|
<span class="md-ellipsis">
|
|
9250
|
-
Documentation
|
|
9208
|
+
Documentation
|
|
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="#housekeeping_6" class="md-nav__link">
|
|
9258
9216
|
<span class="md-ellipsis">
|
|
9259
|
-
Housekeeping
|
|
9217
|
+
Housekeeping
|
|
9260
9218
|
</span>
|
|
9261
9219
|
</a>
|
|
9262
9220
|
|
|
@@ -9278,63 +9236,63 @@
|
|
|
9278
9236
|
<ul class="md-nav__list">
|
|
9279
9237
|
|
|
9280
9238
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9239
|
+
<a href="#security_6" class="md-nav__link">
|
|
9282
9240
|
<span class="md-ellipsis">
|
|
9283
|
-
Security
|
|
9241
|
+
Security
|
|
9284
9242
|
</span>
|
|
9285
9243
|
</a>
|
|
9286
9244
|
|
|
9287
9245
|
</li>
|
|
9288
9246
|
|
|
9289
9247
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9248
|
+
<a href="#added_8" class="md-nav__link">
|
|
9291
9249
|
<span class="md-ellipsis">
|
|
9292
|
-
Added
|
|
9250
|
+
Added
|
|
9293
9251
|
</span>
|
|
9294
9252
|
</a>
|
|
9295
9253
|
|
|
9296
9254
|
</li>
|
|
9297
9255
|
|
|
9298
9256
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9257
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9300
9258
|
<span class="md-ellipsis">
|
|
9301
|
-
Changed
|
|
9259
|
+
Changed
|
|
9302
9260
|
</span>
|
|
9303
9261
|
</a>
|
|
9304
9262
|
|
|
9305
9263
|
</li>
|
|
9306
9264
|
|
|
9307
9265
|
<li class="md-nav__item">
|
|
9308
|
-
<a href="#
|
|
9266
|
+
<a href="#removed_6" class="md-nav__link">
|
|
9309
9267
|
<span class="md-ellipsis">
|
|
9310
|
-
Removed
|
|
9268
|
+
Removed
|
|
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="#fixed_9" class="md-nav__link">
|
|
9318
9276
|
<span class="md-ellipsis">
|
|
9319
|
-
Fixed
|
|
9277
|
+
Fixed
|
|
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="#documentation_7" class="md-nav__link">
|
|
9327
9285
|
<span class="md-ellipsis">
|
|
9328
|
-
Documentation
|
|
9286
|
+
Documentation
|
|
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="#housekeeping_7" class="md-nav__link">
|
|
9336
9294
|
<span class="md-ellipsis">
|
|
9337
|
-
Housekeeping
|
|
9295
|
+
Housekeeping
|
|
9338
9296
|
</span>
|
|
9339
9297
|
</a>
|
|
9340
9298
|
|
|
@@ -9356,45 +9314,45 @@
|
|
|
9356
9314
|
<ul class="md-nav__list">
|
|
9357
9315
|
|
|
9358
9316
|
<li class="md-nav__item">
|
|
9359
|
-
<a href="#
|
|
9317
|
+
<a href="#added_9" class="md-nav__link">
|
|
9360
9318
|
<span class="md-ellipsis">
|
|
9361
|
-
Added
|
|
9319
|
+
Added
|
|
9362
9320
|
</span>
|
|
9363
9321
|
</a>
|
|
9364
9322
|
|
|
9365
9323
|
</li>
|
|
9366
9324
|
|
|
9367
9325
|
<li class="md-nav__item">
|
|
9368
|
-
<a href="#
|
|
9326
|
+
<a href="#changed_9" class="md-nav__link">
|
|
9369
9327
|
<span class="md-ellipsis">
|
|
9370
|
-
Changed
|
|
9328
|
+
Changed
|
|
9371
9329
|
</span>
|
|
9372
9330
|
</a>
|
|
9373
9331
|
|
|
9374
9332
|
</li>
|
|
9375
9333
|
|
|
9376
9334
|
<li class="md-nav__item">
|
|
9377
|
-
<a href="#
|
|
9335
|
+
<a href="#removed_7" class="md-nav__link">
|
|
9378
9336
|
<span class="md-ellipsis">
|
|
9379
|
-
Removed
|
|
9337
|
+
Removed
|
|
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="#fixed_10" class="md-nav__link">
|
|
9387
9345
|
<span class="md-ellipsis">
|
|
9388
|
-
Fixed
|
|
9346
|
+
Fixed
|
|
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="#housekeeping_8" class="md-nav__link">
|
|
9396
9354
|
<span class="md-ellipsis">
|
|
9397
|
-
Housekeeping
|
|
9355
|
+
Housekeeping
|
|
9398
9356
|
</span>
|
|
9399
9357
|
</a>
|
|
9400
9358
|
|
|
@@ -10105,72 +10063,72 @@
|
|
|
10105
10063
|
<ul class="md-nav__list">
|
|
10106
10064
|
|
|
10107
10065
|
<li class="md-nav__item">
|
|
10108
|
-
<a href="#security
|
|
10066
|
+
<a href="#security" class="md-nav__link">
|
|
10109
10067
|
<span class="md-ellipsis">
|
|
10110
|
-
Security
|
|
10068
|
+
Security
|
|
10111
10069
|
</span>
|
|
10112
10070
|
</a>
|
|
10113
10071
|
|
|
10114
10072
|
</li>
|
|
10115
10073
|
|
|
10116
10074
|
<li class="md-nav__item">
|
|
10117
|
-
<a href="#
|
|
10075
|
+
<a href="#added_1" class="md-nav__link">
|
|
10118
10076
|
<span class="md-ellipsis">
|
|
10119
|
-
Added
|
|
10077
|
+
Added
|
|
10120
10078
|
</span>
|
|
10121
10079
|
</a>
|
|
10122
10080
|
|
|
10123
10081
|
</li>
|
|
10124
10082
|
|
|
10125
10083
|
<li class="md-nav__item">
|
|
10126
|
-
<a href="#
|
|
10084
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10127
10085
|
<span class="md-ellipsis">
|
|
10128
|
-
Changed
|
|
10086
|
+
Changed
|
|
10129
10087
|
</span>
|
|
10130
10088
|
</a>
|
|
10131
10089
|
|
|
10132
10090
|
</li>
|
|
10133
10091
|
|
|
10134
10092
|
<li class="md-nav__item">
|
|
10135
|
-
<a href="#
|
|
10093
|
+
<a href="#removed_1" class="md-nav__link">
|
|
10136
10094
|
<span class="md-ellipsis">
|
|
10137
|
-
Removed
|
|
10095
|
+
Removed
|
|
10138
10096
|
</span>
|
|
10139
10097
|
</a>
|
|
10140
10098
|
|
|
10141
10099
|
</li>
|
|
10142
10100
|
|
|
10143
10101
|
<li class="md-nav__item">
|
|
10144
|
-
<a href="#fixed
|
|
10102
|
+
<a href="#fixed" class="md-nav__link">
|
|
10145
10103
|
<span class="md-ellipsis">
|
|
10146
|
-
Fixed
|
|
10104
|
+
Fixed
|
|
10147
10105
|
</span>
|
|
10148
10106
|
</a>
|
|
10149
10107
|
|
|
10150
10108
|
</li>
|
|
10151
10109
|
|
|
10152
10110
|
<li class="md-nav__item">
|
|
10153
|
-
<a href="#dependencies
|
|
10111
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10154
10112
|
<span class="md-ellipsis">
|
|
10155
|
-
Dependencies
|
|
10113
|
+
Dependencies
|
|
10156
10114
|
</span>
|
|
10157
10115
|
</a>
|
|
10158
10116
|
|
|
10159
10117
|
</li>
|
|
10160
10118
|
|
|
10161
10119
|
<li class="md-nav__item">
|
|
10162
|
-
<a href="#documentation
|
|
10120
|
+
<a href="#documentation" class="md-nav__link">
|
|
10163
10121
|
<span class="md-ellipsis">
|
|
10164
|
-
Documentation
|
|
10122
|
+
Documentation
|
|
10165
10123
|
</span>
|
|
10166
10124
|
</a>
|
|
10167
10125
|
|
|
10168
10126
|
</li>
|
|
10169
10127
|
|
|
10170
10128
|
<li class="md-nav__item">
|
|
10171
|
-
<a href="#housekeeping
|
|
10129
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10172
10130
|
<span class="md-ellipsis">
|
|
10173
|
-
Housekeeping
|
|
10131
|
+
Housekeeping
|
|
10174
10132
|
</span>
|
|
10175
10133
|
</a>
|
|
10176
10134
|
|
|
@@ -10192,54 +10150,54 @@
|
|
|
10192
10150
|
<ul class="md-nav__list">
|
|
10193
10151
|
|
|
10194
10152
|
<li class="md-nav__item">
|
|
10195
|
-
<a href="#
|
|
10153
|
+
<a href="#added_2" class="md-nav__link">
|
|
10196
10154
|
<span class="md-ellipsis">
|
|
10197
|
-
Added
|
|
10155
|
+
Added
|
|
10198
10156
|
</span>
|
|
10199
10157
|
</a>
|
|
10200
10158
|
|
|
10201
10159
|
</li>
|
|
10202
10160
|
|
|
10203
10161
|
<li class="md-nav__item">
|
|
10204
|
-
<a href="#
|
|
10162
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10205
10163
|
<span class="md-ellipsis">
|
|
10206
|
-
Changed
|
|
10164
|
+
Changed
|
|
10207
10165
|
</span>
|
|
10208
10166
|
</a>
|
|
10209
10167
|
|
|
10210
10168
|
</li>
|
|
10211
10169
|
|
|
10212
10170
|
<li class="md-nav__item">
|
|
10213
|
-
<a href="#
|
|
10171
|
+
<a href="#removed_2" class="md-nav__link">
|
|
10214
10172
|
<span class="md-ellipsis">
|
|
10215
|
-
Removed
|
|
10173
|
+
Removed
|
|
10216
10174
|
</span>
|
|
10217
10175
|
</a>
|
|
10218
10176
|
|
|
10219
10177
|
</li>
|
|
10220
10178
|
|
|
10221
10179
|
<li class="md-nav__item">
|
|
10222
|
-
<a href="#
|
|
10180
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10223
10181
|
<span class="md-ellipsis">
|
|
10224
|
-
Fixed
|
|
10182
|
+
Fixed
|
|
10225
10183
|
</span>
|
|
10226
10184
|
</a>
|
|
10227
10185
|
|
|
10228
10186
|
</li>
|
|
10229
10187
|
|
|
10230
10188
|
<li class="md-nav__item">
|
|
10231
|
-
<a href="#
|
|
10189
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10232
10190
|
<span class="md-ellipsis">
|
|
10233
|
-
Documentation
|
|
10191
|
+
Documentation
|
|
10234
10192
|
</span>
|
|
10235
10193
|
</a>
|
|
10236
10194
|
|
|
10237
10195
|
</li>
|
|
10238
10196
|
|
|
10239
10197
|
<li class="md-nav__item">
|
|
10240
|
-
<a href="#
|
|
10198
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10241
10199
|
<span class="md-ellipsis">
|
|
10242
|
-
Housekeeping
|
|
10200
|
+
Housekeeping
|
|
10243
10201
|
</span>
|
|
10244
10202
|
</a>
|
|
10245
10203
|
|
|
@@ -10261,9 +10219,9 @@
|
|
|
10261
10219
|
<ul class="md-nav__list">
|
|
10262
10220
|
|
|
10263
10221
|
<li class="md-nav__item">
|
|
10264
|
-
<a href="#
|
|
10222
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10265
10223
|
<span class="md-ellipsis">
|
|
10266
|
-
Fixed
|
|
10224
|
+
Fixed
|
|
10267
10225
|
</span>
|
|
10268
10226
|
</a>
|
|
10269
10227
|
|
|
@@ -10285,45 +10243,45 @@
|
|
|
10285
10243
|
<ul class="md-nav__list">
|
|
10286
10244
|
|
|
10287
10245
|
<li class="md-nav__item">
|
|
10288
|
-
<a href="#
|
|
10246
|
+
<a href="#security_1" class="md-nav__link">
|
|
10289
10247
|
<span class="md-ellipsis">
|
|
10290
|
-
Security
|
|
10248
|
+
Security
|
|
10291
10249
|
</span>
|
|
10292
10250
|
</a>
|
|
10293
10251
|
|
|
10294
10252
|
</li>
|
|
10295
10253
|
|
|
10296
10254
|
<li class="md-nav__item">
|
|
10297
|
-
<a href="#
|
|
10255
|
+
<a href="#added_3" class="md-nav__link">
|
|
10298
10256
|
<span class="md-ellipsis">
|
|
10299
|
-
Added
|
|
10257
|
+
Added
|
|
10300
10258
|
</span>
|
|
10301
10259
|
</a>
|
|
10302
10260
|
|
|
10303
10261
|
</li>
|
|
10304
10262
|
|
|
10305
10263
|
<li class="md-nav__item">
|
|
10306
|
-
<a href="#
|
|
10264
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10307
10265
|
<span class="md-ellipsis">
|
|
10308
|
-
Changed
|
|
10266
|
+
Changed
|
|
10309
10267
|
</span>
|
|
10310
10268
|
</a>
|
|
10311
10269
|
|
|
10312
10270
|
</li>
|
|
10313
10271
|
|
|
10314
10272
|
<li class="md-nav__item">
|
|
10315
|
-
<a href="#
|
|
10273
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10316
10274
|
<span class="md-ellipsis">
|
|
10317
|
-
Fixed
|
|
10275
|
+
Fixed
|
|
10318
10276
|
</span>
|
|
10319
10277
|
</a>
|
|
10320
10278
|
|
|
10321
10279
|
</li>
|
|
10322
10280
|
|
|
10323
10281
|
<li class="md-nav__item">
|
|
10324
|
-
<a href="#
|
|
10282
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10325
10283
|
<span class="md-ellipsis">
|
|
10326
|
-
Documentation
|
|
10284
|
+
Documentation
|
|
10327
10285
|
</span>
|
|
10328
10286
|
</a>
|
|
10329
10287
|
|
|
@@ -10345,54 +10303,54 @@
|
|
|
10345
10303
|
<ul class="md-nav__list">
|
|
10346
10304
|
|
|
10347
10305
|
<li class="md-nav__item">
|
|
10348
|
-
<a href="#
|
|
10306
|
+
<a href="#security_2" class="md-nav__link">
|
|
10349
10307
|
<span class="md-ellipsis">
|
|
10350
|
-
Security
|
|
10308
|
+
Security
|
|
10351
10309
|
</span>
|
|
10352
10310
|
</a>
|
|
10353
10311
|
|
|
10354
10312
|
</li>
|
|
10355
10313
|
|
|
10356
10314
|
<li class="md-nav__item">
|
|
10357
|
-
<a href="#
|
|
10315
|
+
<a href="#added_4" class="md-nav__link">
|
|
10358
10316
|
<span class="md-ellipsis">
|
|
10359
|
-
Added
|
|
10317
|
+
Added
|
|
10360
10318
|
</span>
|
|
10361
10319
|
</a>
|
|
10362
10320
|
|
|
10363
10321
|
</li>
|
|
10364
10322
|
|
|
10365
10323
|
<li class="md-nav__item">
|
|
10366
|
-
<a href="#
|
|
10324
|
+
<a href="#changed_4" class="md-nav__link">
|
|
10367
10325
|
<span class="md-ellipsis">
|
|
10368
|
-
Changed
|
|
10326
|
+
Changed
|
|
10369
10327
|
</span>
|
|
10370
10328
|
</a>
|
|
10371
10329
|
|
|
10372
10330
|
</li>
|
|
10373
10331
|
|
|
10374
10332
|
<li class="md-nav__item">
|
|
10375
|
-
<a href="#
|
|
10333
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10376
10334
|
<span class="md-ellipsis">
|
|
10377
|
-
Fixed
|
|
10335
|
+
Fixed
|
|
10378
10336
|
</span>
|
|
10379
10337
|
</a>
|
|
10380
10338
|
|
|
10381
10339
|
</li>
|
|
10382
10340
|
|
|
10383
10341
|
<li class="md-nav__item">
|
|
10384
|
-
<a href="#
|
|
10342
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10385
10343
|
<span class="md-ellipsis">
|
|
10386
|
-
Documentation
|
|
10344
|
+
Documentation
|
|
10387
10345
|
</span>
|
|
10388
10346
|
</a>
|
|
10389
10347
|
|
|
10390
10348
|
</li>
|
|
10391
10349
|
|
|
10392
10350
|
<li class="md-nav__item">
|
|
10393
|
-
<a href="#
|
|
10351
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10394
10352
|
<span class="md-ellipsis">
|
|
10395
|
-
Housekeeping
|
|
10353
|
+
Housekeeping
|
|
10396
10354
|
</span>
|
|
10397
10355
|
</a>
|
|
10398
10356
|
|
|
@@ -10414,36 +10372,36 @@
|
|
|
10414
10372
|
<ul class="md-nav__list">
|
|
10415
10373
|
|
|
10416
10374
|
<li class="md-nav__item">
|
|
10417
|
-
<a href="#
|
|
10375
|
+
<a href="#security_3" class="md-nav__link">
|
|
10418
10376
|
<span class="md-ellipsis">
|
|
10419
|
-
Security
|
|
10377
|
+
Security
|
|
10420
10378
|
</span>
|
|
10421
10379
|
</a>
|
|
10422
10380
|
|
|
10423
10381
|
</li>
|
|
10424
10382
|
|
|
10425
10383
|
<li class="md-nav__item">
|
|
10426
|
-
<a href="#
|
|
10384
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10427
10385
|
<span class="md-ellipsis">
|
|
10428
|
-
Fixed
|
|
10386
|
+
Fixed
|
|
10429
10387
|
</span>
|
|
10430
10388
|
</a>
|
|
10431
10389
|
|
|
10432
10390
|
</li>
|
|
10433
10391
|
|
|
10434
10392
|
<li class="md-nav__item">
|
|
10435
|
-
<a href="#
|
|
10393
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10436
10394
|
<span class="md-ellipsis">
|
|
10437
|
-
Documentation
|
|
10395
|
+
Documentation
|
|
10438
10396
|
</span>
|
|
10439
10397
|
</a>
|
|
10440
10398
|
|
|
10441
10399
|
</li>
|
|
10442
10400
|
|
|
10443
10401
|
<li class="md-nav__item">
|
|
10444
|
-
<a href="#
|
|
10402
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10445
10403
|
<span class="md-ellipsis">
|
|
10446
|
-
Housekeeping
|
|
10404
|
+
Housekeeping
|
|
10447
10405
|
</span>
|
|
10448
10406
|
</a>
|
|
10449
10407
|
|
|
@@ -10465,63 +10423,63 @@
|
|
|
10465
10423
|
<ul class="md-nav__list">
|
|
10466
10424
|
|
|
10467
10425
|
<li class="md-nav__item">
|
|
10468
|
-
<a href="#
|
|
10426
|
+
<a href="#security_4" class="md-nav__link">
|
|
10469
10427
|
<span class="md-ellipsis">
|
|
10470
|
-
Security
|
|
10428
|
+
Security
|
|
10471
10429
|
</span>
|
|
10472
10430
|
</a>
|
|
10473
10431
|
|
|
10474
10432
|
</li>
|
|
10475
10433
|
|
|
10476
10434
|
<li class="md-nav__item">
|
|
10477
|
-
<a href="#
|
|
10435
|
+
<a href="#added_5" class="md-nav__link">
|
|
10478
10436
|
<span class="md-ellipsis">
|
|
10479
|
-
Added
|
|
10437
|
+
Added
|
|
10480
10438
|
</span>
|
|
10481
10439
|
</a>
|
|
10482
10440
|
|
|
10483
10441
|
</li>
|
|
10484
10442
|
|
|
10485
10443
|
<li class="md-nav__item">
|
|
10486
|
-
<a href="#
|
|
10444
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10487
10445
|
<span class="md-ellipsis">
|
|
10488
|
-
Changed
|
|
10446
|
+
Changed
|
|
10489
10447
|
</span>
|
|
10490
10448
|
</a>
|
|
10491
10449
|
|
|
10492
10450
|
</li>
|
|
10493
10451
|
|
|
10494
10452
|
<li class="md-nav__item">
|
|
10495
|
-
<a href="#
|
|
10453
|
+
<a href="#removed_3" class="md-nav__link">
|
|
10496
10454
|
<span class="md-ellipsis">
|
|
10497
|
-
Removed
|
|
10455
|
+
Removed
|
|
10498
10456
|
</span>
|
|
10499
10457
|
</a>
|
|
10500
10458
|
|
|
10501
10459
|
</li>
|
|
10502
10460
|
|
|
10503
10461
|
<li class="md-nav__item">
|
|
10504
|
-
<a href="#
|
|
10462
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10505
10463
|
<span class="md-ellipsis">
|
|
10506
|
-
Fixed
|
|
10464
|
+
Fixed
|
|
10507
10465
|
</span>
|
|
10508
10466
|
</a>
|
|
10509
10467
|
|
|
10510
10468
|
</li>
|
|
10511
10469
|
|
|
10512
10470
|
<li class="md-nav__item">
|
|
10513
|
-
<a href="#
|
|
10471
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10514
10472
|
<span class="md-ellipsis">
|
|
10515
|
-
Dependencies
|
|
10473
|
+
Dependencies
|
|
10516
10474
|
</span>
|
|
10517
10475
|
</a>
|
|
10518
10476
|
|
|
10519
10477
|
</li>
|
|
10520
10478
|
|
|
10521
10479
|
<li class="md-nav__item">
|
|
10522
|
-
<a href="#
|
|
10480
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10523
10481
|
<span class="md-ellipsis">
|
|
10524
|
-
Housekeeping
|
|
10482
|
+
Housekeeping
|
|
10525
10483
|
</span>
|
|
10526
10484
|
</a>
|
|
10527
10485
|
|
|
@@ -10543,72 +10501,72 @@
|
|
|
10543
10501
|
<ul class="md-nav__list">
|
|
10544
10502
|
|
|
10545
10503
|
<li class="md-nav__item">
|
|
10546
|
-
<a href="#
|
|
10504
|
+
<a href="#security_5" class="md-nav__link">
|
|
10547
10505
|
<span class="md-ellipsis">
|
|
10548
|
-
Security
|
|
10506
|
+
Security
|
|
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="#added_6" class="md-nav__link">
|
|
10556
10514
|
<span class="md-ellipsis">
|
|
10557
|
-
Added
|
|
10515
|
+
Added
|
|
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="#changed_6" class="md-nav__link">
|
|
10565
10523
|
<span class="md-ellipsis">
|
|
10566
|
-
Changed
|
|
10524
|
+
Changed
|
|
10567
10525
|
</span>
|
|
10568
10526
|
</a>
|
|
10569
10527
|
|
|
10570
10528
|
</li>
|
|
10571
10529
|
|
|
10572
10530
|
<li class="md-nav__item">
|
|
10573
|
-
<a href="#
|
|
10531
|
+
<a href="#removed_4" class="md-nav__link">
|
|
10574
10532
|
<span class="md-ellipsis">
|
|
10575
|
-
Removed
|
|
10533
|
+
Removed
|
|
10576
10534
|
</span>
|
|
10577
10535
|
</a>
|
|
10578
10536
|
|
|
10579
10537
|
</li>
|
|
10580
10538
|
|
|
10581
10539
|
<li class="md-nav__item">
|
|
10582
|
-
<a href="#
|
|
10540
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10583
10541
|
<span class="md-ellipsis">
|
|
10584
|
-
Fixed
|
|
10542
|
+
Fixed
|
|
10585
10543
|
</span>
|
|
10586
10544
|
</a>
|
|
10587
10545
|
|
|
10588
10546
|
</li>
|
|
10589
10547
|
|
|
10590
10548
|
<li class="md-nav__item">
|
|
10591
|
-
<a href="#
|
|
10549
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10592
10550
|
<span class="md-ellipsis">
|
|
10593
|
-
Dependencies
|
|
10551
|
+
Dependencies
|
|
10594
10552
|
</span>
|
|
10595
10553
|
</a>
|
|
10596
10554
|
|
|
10597
10555
|
</li>
|
|
10598
10556
|
|
|
10599
10557
|
<li class="md-nav__item">
|
|
10600
|
-
<a href="#
|
|
10558
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
10601
10559
|
<span class="md-ellipsis">
|
|
10602
|
-
Documentation
|
|
10560
|
+
Documentation
|
|
10603
10561
|
</span>
|
|
10604
10562
|
</a>
|
|
10605
10563
|
|
|
10606
10564
|
</li>
|
|
10607
10565
|
|
|
10608
10566
|
<li class="md-nav__item">
|
|
10609
|
-
<a href="#
|
|
10567
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10610
10568
|
<span class="md-ellipsis">
|
|
10611
|
-
Housekeeping
|
|
10569
|
+
Housekeeping
|
|
10612
10570
|
</span>
|
|
10613
10571
|
</a>
|
|
10614
10572
|
|
|
@@ -10630,54 +10588,54 @@
|
|
|
10630
10588
|
<ul class="md-nav__list">
|
|
10631
10589
|
|
|
10632
10590
|
<li class="md-nav__item">
|
|
10633
|
-
<a href="#
|
|
10591
|
+
<a href="#added_7" class="md-nav__link">
|
|
10634
10592
|
<span class="md-ellipsis">
|
|
10635
|
-
Added
|
|
10593
|
+
Added
|
|
10636
10594
|
</span>
|
|
10637
10595
|
</a>
|
|
10638
10596
|
|
|
10639
10597
|
</li>
|
|
10640
10598
|
|
|
10641
10599
|
<li class="md-nav__item">
|
|
10642
|
-
<a href="#
|
|
10600
|
+
<a href="#changed_7" class="md-nav__link">
|
|
10643
10601
|
<span class="md-ellipsis">
|
|
10644
|
-
Changed
|
|
10602
|
+
Changed
|
|
10645
10603
|
</span>
|
|
10646
10604
|
</a>
|
|
10647
10605
|
|
|
10648
10606
|
</li>
|
|
10649
10607
|
|
|
10650
10608
|
<li class="md-nav__item">
|
|
10651
|
-
<a href="#
|
|
10609
|
+
<a href="#removed_5" class="md-nav__link">
|
|
10652
10610
|
<span class="md-ellipsis">
|
|
10653
|
-
Removed
|
|
10611
|
+
Removed
|
|
10654
10612
|
</span>
|
|
10655
10613
|
</a>
|
|
10656
10614
|
|
|
10657
10615
|
</li>
|
|
10658
10616
|
|
|
10659
10617
|
<li class="md-nav__item">
|
|
10660
|
-
<a href="#
|
|
10618
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10661
10619
|
<span class="md-ellipsis">
|
|
10662
|
-
Fixed
|
|
10620
|
+
Fixed
|
|
10663
10621
|
</span>
|
|
10664
10622
|
</a>
|
|
10665
10623
|
|
|
10666
10624
|
</li>
|
|
10667
10625
|
|
|
10668
10626
|
<li class="md-nav__item">
|
|
10669
|
-
<a href="#
|
|
10627
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10670
10628
|
<span class="md-ellipsis">
|
|
10671
|
-
Documentation
|
|
10629
|
+
Documentation
|
|
10672
10630
|
</span>
|
|
10673
10631
|
</a>
|
|
10674
10632
|
|
|
10675
10633
|
</li>
|
|
10676
10634
|
|
|
10677
10635
|
<li class="md-nav__item">
|
|
10678
|
-
<a href="#
|
|
10636
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10679
10637
|
<span class="md-ellipsis">
|
|
10680
|
-
Housekeeping
|
|
10638
|
+
Housekeeping
|
|
10681
10639
|
</span>
|
|
10682
10640
|
</a>
|
|
10683
10641
|
|
|
@@ -10699,63 +10657,63 @@
|
|
|
10699
10657
|
<ul class="md-nav__list">
|
|
10700
10658
|
|
|
10701
10659
|
<li class="md-nav__item">
|
|
10702
|
-
<a href="#
|
|
10660
|
+
<a href="#security_6" class="md-nav__link">
|
|
10703
10661
|
<span class="md-ellipsis">
|
|
10704
|
-
Security
|
|
10662
|
+
Security
|
|
10705
10663
|
</span>
|
|
10706
10664
|
</a>
|
|
10707
10665
|
|
|
10708
10666
|
</li>
|
|
10709
10667
|
|
|
10710
10668
|
<li class="md-nav__item">
|
|
10711
|
-
<a href="#
|
|
10669
|
+
<a href="#added_8" class="md-nav__link">
|
|
10712
10670
|
<span class="md-ellipsis">
|
|
10713
|
-
Added
|
|
10671
|
+
Added
|
|
10714
10672
|
</span>
|
|
10715
10673
|
</a>
|
|
10716
10674
|
|
|
10717
10675
|
</li>
|
|
10718
10676
|
|
|
10719
10677
|
<li class="md-nav__item">
|
|
10720
|
-
<a href="#
|
|
10678
|
+
<a href="#changed_8" class="md-nav__link">
|
|
10721
10679
|
<span class="md-ellipsis">
|
|
10722
|
-
Changed
|
|
10680
|
+
Changed
|
|
10723
10681
|
</span>
|
|
10724
10682
|
</a>
|
|
10725
10683
|
|
|
10726
10684
|
</li>
|
|
10727
10685
|
|
|
10728
10686
|
<li class="md-nav__item">
|
|
10729
|
-
<a href="#
|
|
10687
|
+
<a href="#removed_6" class="md-nav__link">
|
|
10730
10688
|
<span class="md-ellipsis">
|
|
10731
|
-
Removed
|
|
10689
|
+
Removed
|
|
10732
10690
|
</span>
|
|
10733
10691
|
</a>
|
|
10734
10692
|
|
|
10735
10693
|
</li>
|
|
10736
10694
|
|
|
10737
10695
|
<li class="md-nav__item">
|
|
10738
|
-
<a href="#
|
|
10696
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10739
10697
|
<span class="md-ellipsis">
|
|
10740
|
-
Fixed
|
|
10698
|
+
Fixed
|
|
10741
10699
|
</span>
|
|
10742
10700
|
</a>
|
|
10743
10701
|
|
|
10744
10702
|
</li>
|
|
10745
10703
|
|
|
10746
10704
|
<li class="md-nav__item">
|
|
10747
|
-
<a href="#
|
|
10705
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10748
10706
|
<span class="md-ellipsis">
|
|
10749
|
-
Documentation
|
|
10707
|
+
Documentation
|
|
10750
10708
|
</span>
|
|
10751
10709
|
</a>
|
|
10752
10710
|
|
|
10753
10711
|
</li>
|
|
10754
10712
|
|
|
10755
10713
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
10714
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10757
10715
|
<span class="md-ellipsis">
|
|
10758
|
-
Housekeeping
|
|
10716
|
+
Housekeeping
|
|
10759
10717
|
</span>
|
|
10760
10718
|
</a>
|
|
10761
10719
|
|
|
@@ -10777,45 +10735,45 @@
|
|
|
10777
10735
|
<ul class="md-nav__list">
|
|
10778
10736
|
|
|
10779
10737
|
<li class="md-nav__item">
|
|
10780
|
-
<a href="#
|
|
10738
|
+
<a href="#added_9" class="md-nav__link">
|
|
10781
10739
|
<span class="md-ellipsis">
|
|
10782
|
-
Added
|
|
10740
|
+
Added
|
|
10783
10741
|
</span>
|
|
10784
10742
|
</a>
|
|
10785
10743
|
|
|
10786
10744
|
</li>
|
|
10787
10745
|
|
|
10788
10746
|
<li class="md-nav__item">
|
|
10789
|
-
<a href="#
|
|
10747
|
+
<a href="#changed_9" class="md-nav__link">
|
|
10790
10748
|
<span class="md-ellipsis">
|
|
10791
|
-
Changed
|
|
10749
|
+
Changed
|
|
10792
10750
|
</span>
|
|
10793
10751
|
</a>
|
|
10794
10752
|
|
|
10795
10753
|
</li>
|
|
10796
10754
|
|
|
10797
10755
|
<li class="md-nav__item">
|
|
10798
|
-
<a href="#
|
|
10756
|
+
<a href="#removed_7" class="md-nav__link">
|
|
10799
10757
|
<span class="md-ellipsis">
|
|
10800
|
-
Removed
|
|
10758
|
+
Removed
|
|
10801
10759
|
</span>
|
|
10802
10760
|
</a>
|
|
10803
10761
|
|
|
10804
10762
|
</li>
|
|
10805
10763
|
|
|
10806
10764
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#
|
|
10765
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10808
10766
|
<span class="md-ellipsis">
|
|
10809
|
-
Fixed
|
|
10767
|
+
Fixed
|
|
10810
10768
|
</span>
|
|
10811
10769
|
</a>
|
|
10812
10770
|
|
|
10813
10771
|
</li>
|
|
10814
10772
|
|
|
10815
10773
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#
|
|
10774
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10817
10775
|
<span class="md-ellipsis">
|
|
10818
|
-
Housekeeping
|
|
10776
|
+
Housekeeping
|
|
10819
10777
|
</span>
|
|
10820
10778
|
</a>
|
|
10821
10779
|
|
|
@@ -10844,6 +10802,8 @@
|
|
|
10844
10802
|
|
|
10845
10803
|
|
|
10846
10804
|
|
|
10805
|
+
<!-- markdownlint-disable MD024 -->
|
|
10806
|
+
|
|
10847
10807
|
<h1 id="nautobot-v21">Nautobot v2.1<a class="headerlink" href="#nautobot-v21" title="Permanent link">¶</a></h1>
|
|
10848
10808
|
<p>This document describes all new features and changes in Nautobot 2.1.</p>
|
|
10849
10809
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -10892,8 +10852,9 @@
|
|
|
10892
10852
|
<p>Support for versions of PostgreSQL prior to 12.0 has been removed as these versions are no longer maintained and contain bugs that prevent migrations from running in certain scenarios. The <code>nautobot-server migrate</code> or <code>nautobot-server post_upgrade</code> commands will now abort when detecting an unsupported PostgreSQL version.</p>
|
|
10893
10853
|
<h4 id="remove-hide_restricted_ui-toggle-4787">Remove <code>HIDE_RESTRICTED_UI</code> Toggle (<a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a>)<a class="headerlink" href="#remove-hide_restricted_ui-toggle-4787" title="Permanent link">¶</a></h4>
|
|
10894
10854
|
<p>Support for <code>HIDE_RESTRICTED_UI</code> has been removed. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</p>
|
|
10855
|
+
<!-- towncrier release notes start -->
|
|
10895
10856
|
<h2 id="v219-2024-03-25">v2.1.9 (2024-03-25)<a class="headerlink" href="#v219-2024-03-25" title="Permanent link">¶</a></h2>
|
|
10896
|
-
<h3 id="security
|
|
10857
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10897
10858
|
<ul>
|
|
10898
10859
|
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
10899
10860
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -10905,21 +10866,21 @@
|
|
|
10905
10866
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/<uuid>/dynamic-groups/</code>, <code>/dcim/devices/<uuid>/dynamic-groups/</code>, <code>/ipam/prefixes/<uuid>/dynamic-groups/</code>, <code>/ipam/ip-addresses/<uuid>/dynamic-groups/</code>, <code>/virtualization/clusters/<uuid>/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/<uuid>/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10906
10867
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/<str:provider_slug>/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
10907
10868
|
</ul>
|
|
10908
|
-
<h3 id="
|
|
10869
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10909
10870
|
<ul>
|
|
10910
10871
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
10911
10872
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
10912
10873
|
</ul>
|
|
10913
|
-
<h3 id="
|
|
10874
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10914
10875
|
<ul>
|
|
10915
10876
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
|
|
10916
10877
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Added requirement for user authentication by default on the <code>nautobot.apps.api.APIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
10917
10878
|
</ul>
|
|
10918
|
-
<h3 id="
|
|
10879
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
10919
10880
|
<ul>
|
|
10920
10881
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Removed the URL endpoints <code>/api/users/users/my-profile/</code>, <code>/api/users/users/session/</code>, <code>/api/users/tokens/authenticate/</code>, and <code>/api/users/tokens/logout/</code> as they are unused at this time.</li>
|
|
10921
10882
|
</ul>
|
|
10922
|
-
<h3 id="fixed
|
|
10883
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10923
10884
|
<ul>
|
|
10924
10885
|
<li><a href="https://github.com/nautobot/nautobot/issues/5413">#5413</a> - Updated Device "LLDP Neighbors" detail panel to handle LLDP neighbors with MAC address as port-id.</li>
|
|
10925
10886
|
<li><a href="https://github.com/nautobot/nautobot/issues/5423">#5423</a> - Fixed collapsable navbar for GraphiQL page <code>/graphql</code>.</li>
|
|
@@ -10929,16 +10890,16 @@
|
|
|
10929
10890
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
10930
10891
|
<li><a href="https://github.com/nautobot/nautobot/issues/5466">#5466</a> - Remove duplicated location param in vlan table.</li>
|
|
10931
10892
|
</ul>
|
|
10932
|
-
<h3 id="dependencies
|
|
10893
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10933
10894
|
<ul>
|
|
10934
10895
|
<li><a href="https://github.com/nautobot/nautobot/issues/5296">#5296</a> - Fixed bug in pyproject.toml that added <code>coverage</code> as a nautobot dependency instead of a development dependency.</li>
|
|
10935
10896
|
</ul>
|
|
10936
|
-
<h3 id="documentation
|
|
10897
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10937
10898
|
<ul>
|
|
10938
10899
|
<li><a href="https://github.com/nautobot/nautobot/issues/5340">#5340</a> - Added installation documentation about recommended health-checks for Docker Compose and Kubernetes.</li>
|
|
10939
10900
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
10940
10901
|
</ul>
|
|
10941
|
-
<h3 id="housekeeping
|
|
10902
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10942
10903
|
<ul>
|
|
10943
10904
|
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/core/api/routers.py#21</code> with with a plain <code>dict</code> instance.</li>
|
|
10944
10905
|
<li><a href="https://github.com/nautobot/nautobot/issues/1746">#1746</a> - Replaced <code>OrderedDict</code> instance in <code>nautobot/dcim/models/racks.py#275</code> with a plain <code>dict</code> instance.</li>
|
|
@@ -10947,7 +10908,7 @@
|
|
|
10947
10908
|
<li><a href="https://github.com/nautobot/nautobot/issues/5464">#5464</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
10948
10909
|
</ul>
|
|
10949
10910
|
<h2 id="v218-2024-03-18">v2.1.8 (2024-03-18)<a class="headerlink" href="#v218-2024-03-18" title="Permanent link">¶</a></h2>
|
|
10950
|
-
<h3 id="
|
|
10911
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10951
10912
|
<ul>
|
|
10952
10913
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
10953
10914
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Added the option to configure and enforce <code>validation_minimum</code> and <code>validation_maximum</code> as length constraints on a Custom Field of type <code>Text</code>, <code>URL</code>, <code>JSON</code>, <code>Markdown</code>, <code>Selection</code>, or <code>Multiple Selection</code>.</li>
|
|
@@ -10957,16 +10918,16 @@
|
|
|
10957
10918
|
<li><a href="https://github.com/nautobot/nautobot/issues/5402">#5402</a> - Added interface types <code>CXP (100GE)</code>, <code>DSFP (100GE)</code>, <code>SFP-DD (100GE)</code>, <code>QSFP-DD (100GE)</code>, <code>QSFP-DD (200GE)</code>, <code>CFP2 (400GE)</code>, <code>OSFP-RHS (400GE)</code>, <code>CDFP (400GE)</code>, <code>CPF8 (400GE)</code>, <code>SFP+ (32GFC)</code>, <code>SFP-DD (64GFC)</code>, and <code>SFP+ (64GFC)</code>.</li>
|
|
10958
10919
|
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
10959
10920
|
</ul>
|
|
10960
|
-
<h3 id="
|
|
10921
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
10961
10922
|
<ul>
|
|
10962
10923
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Changed uses of <code>functools.lru_cache</code> to use django-redis cache instead.</li>
|
|
10963
10924
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Standardized cache key strings used with the django-redis cache.</li>
|
|
10964
10925
|
</ul>
|
|
10965
|
-
<h3 id="
|
|
10926
|
+
<h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">¶</a></h3>
|
|
10966
10927
|
<ul>
|
|
10967
10928
|
<li><a href="https://github.com/nautobot/nautobot/issues/5228">#5228</a> - Removed the hard-coded 255-character limit on custom fields of type <code>Text</code>.</li>
|
|
10968
10929
|
</ul>
|
|
10969
|
-
<h3 id="
|
|
10930
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10970
10931
|
<ul>
|
|
10971
10932
|
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
10972
10933
|
<li><a href="https://github.com/nautobot/nautobot/issues/5380">#5380</a> - Fixed incorrect permission for "Add Tenant" button in the navigation menu.</li>
|
|
@@ -10974,28 +10935,28 @@
|
|
|
10974
10935
|
<li><a href="https://github.com/nautobot/nautobot/issues/5395">#5395</a> - Fixed incorrect permission for "Roles" link in the navigation menu.</li>
|
|
10975
10936
|
<li><a href="https://github.com/nautobot/nautobot/issues/5403">#5403</a> - Fixed an issue with stale CustomField, ComputedField, Relationship, and TreeModel caches that caused incorrect data at times.</li>
|
|
10976
10937
|
</ul>
|
|
10977
|
-
<h3 id="
|
|
10938
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10978
10939
|
<ul>
|
|
10979
10940
|
<li><a href="https://github.com/nautobot/nautobot/issues/5437">#5437</a> - Added release-note for version 1.6.15.</li>
|
|
10980
10941
|
<li><a href="https://github.com/nautobot/nautobot/issues/5421">#5421</a> - Added release-notes for versions 1.6.11 through 1.6.14.</li>
|
|
10981
10942
|
</ul>
|
|
10982
|
-
<h3 id="
|
|
10943
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10983
10944
|
<ul>
|
|
10984
10945
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
10985
10946
|
<li><a href="https://github.com/nautobot/nautobot/issues/3213">#3213</a> - Removed redundant filter tests for related boolean filters.</li>
|
|
10986
10947
|
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
10987
10948
|
</ul>
|
|
10988
10949
|
<h2 id="v217-2024-03-05">v2.1.7 (2024-03-05)<a class="headerlink" href="#v217-2024-03-05" title="Permanent link">¶</a></h2>
|
|
10989
|
-
<h3 id="
|
|
10950
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10990
10951
|
<ul>
|
|
10991
10952
|
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
10992
10953
|
</ul>
|
|
10993
10954
|
<h2 id="v216-2024-03-04">v2.1.6 (2024-03-04)<a class="headerlink" href="#v216-2024-03-04" title="Permanent link">¶</a></h2>
|
|
10994
|
-
<h3 id="
|
|
10955
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
10995
10956
|
<ul>
|
|
10996
10957
|
<li><a href="https://github.com/nautobot/nautobot/issues/5319">#5319</a> - Updated <code>cryptography</code> to 42.0.4 due to CVE-2024-26130. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10997
10958
|
</ul>
|
|
10998
|
-
<h3 id="
|
|
10959
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10999
10960
|
<ul>
|
|
11000
10961
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Collapse Capable Side Navbar: Side Navbar is now able to be expanded and collapsed</li>
|
|
11001
10962
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Added Expandable Main Content: The Main Content part of the UI grows as the Side Navbar collapses and shrinks as the Side Navbar expands.</li>
|
|
@@ -11004,11 +10965,11 @@
|
|
|
11004
10965
|
<li><a href="https://github.com/nautobot/nautobot/issues/5329">#5329</a> - Added caching of <code>ChangeLoggedModelsQuery().as_queryset()</code> to improve performance when saving many objects in a change-logged context.</li>
|
|
11005
10966
|
<li><a href="https://github.com/nautobot/nautobot/issues/5361">#5361</a> - Added <code>nautobot.core.testing.forms.FormTestCases</code> base class and added it to <code>nautobot.apps.testing</code> as well.</li>
|
|
11006
10967
|
</ul>
|
|
11007
|
-
<h3 id="
|
|
10968
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11008
10969
|
<ul>
|
|
11009
10970
|
<li><a href="https://github.com/nautobot/nautobot/issues/5082">#5082</a> - Adjusted Edit / Create panels to occupy more page width on medium and large screens.</li>
|
|
11010
10971
|
</ul>
|
|
11011
|
-
<h3 id="
|
|
10972
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11012
10973
|
<ul>
|
|
11013
10974
|
<li><a href="https://github.com/nautobot/nautobot/issues/4106">#4106</a> - Fixed inefficient query in VirtualMachine create form.</li>
|
|
11014
10975
|
<li><a href="https://github.com/nautobot/nautobot/issues/5172">#5172</a> - Fixed Brand Icon mouseover Background: Fix for mouseover effect on the Brand / Icon (was flashing white background vs being transparent) when in dark mode.</li>
|
|
@@ -11025,7 +10986,7 @@
|
|
|
11025
10986
|
<li><a href="https://github.com/nautobot/nautobot/issues/5346">#5346</a> - Fixed device LLDP view to work when interface names include a space.</li>
|
|
11026
10987
|
<li><a href="https://github.com/nautobot/nautobot/issues/5365">#5365</a> - Fixed <code>invalidate_max_depth_cache</code> itself calculating <code>max_depth</code> on querysets without tree fields.</li>
|
|
11027
10988
|
</ul>
|
|
11028
|
-
<h3 id="
|
|
10989
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
11029
10990
|
<ul>
|
|
11030
10991
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation on <code>nautobot.apps</code> import locations.</li>
|
|
11031
10992
|
<li><a href="https://github.com/nautobot/nautobot/issues/4419">#4419</a> - Added documentation about the supported public interfaces.</li>
|
|
@@ -11039,24 +11000,24 @@
|
|
|
11039
11000
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
|
|
11040
11001
|
</ul>
|
|
11041
11002
|
<h2 id="v215-2024-02-21">v2.1.5 (2024-02-21)<a class="headerlink" href="#v215-2024-02-21" title="Permanent link">¶</a></h2>
|
|
11042
|
-
<h3 id="
|
|
11003
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11043
11004
|
<ul>
|
|
11044
11005
|
<li><a href="https://github.com/nautobot/nautobot/pull/5303">#5303</a> - Updated <code>cryptography</code> to 42.0.2 due to CVE-2024-0727. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11045
11006
|
</ul>
|
|
11046
|
-
<h3 id="
|
|
11007
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11047
11008
|
<ul>
|
|
11048
11009
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Added <code>latest</code> and <code>latest-py<version></code> tags to the <code>nautobot</code> Docker images published for the latest stable release of Nautobot.</li>
|
|
11049
11010
|
<li><a href="https://github.com/nautobot/nautobot/issues/5210">#5210</a> - Added <code>METRICS_AUTHENTICATED</code> setting to control authentication for the HTTP endpoint <code>/metrics</code>.</li>
|
|
11050
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting
|
|
11011
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5243">#5243</a> - Added support for setting display_field on DynamicModelChoiceField to nested values in suggested choices list.</li>
|
|
11051
11012
|
</ul>
|
|
11052
|
-
<h3 id="
|
|
11013
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11053
11014
|
<ul>
|
|
11054
11015
|
<li><a href="https://github.com/nautobot/nautobot/issues/5171">#5171</a> - Changed the tagging of <code>nautobot-dev</code> Docker images to reserve the <code>latest</code> and <code>latest-py<version></code> tags for the latest stable release of Nautobot, rather than the latest build from the <code>develop</code> branch.</li>
|
|
11055
11016
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
11056
11017
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
11057
11018
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Updated navbar user dropdown with chevron.</li>
|
|
11058
11019
|
</ul>
|
|
11059
|
-
<h3 id="
|
|
11020
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11060
11021
|
<ul>
|
|
11061
11022
|
<li><a href="https://github.com/nautobot/nautobot/issues/5058">#5058</a> - Changed more filter parameters from <code>location_id</code> to <code>location</code> in <code>virtualization/forms.py</code>.</li>
|
|
11062
11023
|
<li><a href="https://github.com/nautobot/nautobot/issues/5121">#5121</a> - Fixed an issue where deleting a git repository resulted in a job result stuck in running state.</li>
|
|
@@ -11065,38 +11026,38 @@
|
|
|
11065
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Fixed button spacing when there are multiple buttons in navbar.</li>
|
|
11066
11027
|
<li><a href="https://github.com/nautobot/nautobot/issues/5283">#5283</a> - Fixed inconsistent ordering of IP addresses in various tables.</li>
|
|
11067
11028
|
</ul>
|
|
11068
|
-
<h3 id="
|
|
11029
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
11069
11030
|
<ul>
|
|
11070
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the
|
|
11031
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3349">#3349</a> - Added annotations to document the importance of keeping the TIME_ZONE setting consistent on Nautobot web servers and Celery Beat servers.</li>
|
|
11071
11032
|
<li><a href="https://github.com/nautobot/nautobot/issues/5297">#5297</a> - Updated the low level application stack diagram to orient user traffic coming from the top.</li>
|
|
11072
11033
|
</ul>
|
|
11073
|
-
<h3 id="
|
|
11034
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11074
11035
|
<ul>
|
|
11075
11036
|
<li><a href="https://github.com/nautobot/nautobot/issues/5267">#5267</a> - Reorganized navbar css rules in <code>base.css</code>.</li>
|
|
11076
11037
|
</ul>
|
|
11077
11038
|
<h2 id="v214-2024-02-08">v2.1.4 (2024-02-08)<a class="headerlink" href="#v214-2024-02-08" title="Permanent link">¶</a></h2>
|
|
11078
|
-
<h3 id="
|
|
11039
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11079
11040
|
<ul>
|
|
11080
11041
|
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
11081
11042
|
</ul>
|
|
11082
|
-
<h3 id="
|
|
11043
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11083
11044
|
<ul>
|
|
11084
11045
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Fixed <code>TypeError</code> and similar exceptions thrown when rendering certain App data tables in v2.1.3.</li>
|
|
11085
11046
|
</ul>
|
|
11086
|
-
<h3 id="
|
|
11047
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11087
11048
|
<ul>
|
|
11088
11049
|
<li><a href="https://github.com/nautobot/nautobot/issues/4778">#4778</a> - Added troubleshooting documentation for PostgreSQL databases with unsupported encoding settings.</li>
|
|
11089
11050
|
</ul>
|
|
11090
|
-
<h3 id="
|
|
11051
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11091
11052
|
<ul>
|
|
11092
11053
|
<li><a href="https://github.com/nautobot/nautobot/issues/5240">#5240</a> - Changed test config to use <code>constance.backends.memory.MemoryBackend</code> to avoid intermittent failures in parallel tests.</li>
|
|
11093
11054
|
</ul>
|
|
11094
11055
|
<h2 id="v213-2024-02-05">v2.1.3 (2024-02-05)<a class="headerlink" href="#v213-2024-02-05" title="Permanent link">¶</a></h2>
|
|
11095
|
-
<h3 id="
|
|
11056
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
11096
11057
|
<ul>
|
|
11097
11058
|
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
11098
11059
|
</ul>
|
|
11099
|
-
<h3 id="
|
|
11060
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11100
11061
|
<ul>
|
|
11101
11062
|
<li><a href="https://github.com/nautobot/nautobot/issues/4981">#4981</a> - Add serial types to InterfaceTypeChoices.</li>
|
|
11102
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/5012">#5012</a> - Added database indexes to the ObjectChange model to improve performance when filtering by <code>user_name</code>, <code>changed_object</code>, or <code>related_object</code>, and also by <code>changed_object</code> in combination with <code>user</code> or <code>user_name</code>.</li>
|
|
@@ -11104,7 +11065,7 @@
|
|
|
11104
11065
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added Navbar dropdown arrow rotation on open/close.</li>
|
|
11105
11066
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Added behavior of resetting navbar state when the "home" link is clicked.</li>
|
|
11106
11067
|
</ul>
|
|
11107
|
-
<h3 id="
|
|
11068
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11108
11069
|
<ul>
|
|
11109
11070
|
<li><a href="https://github.com/nautobot/nautobot/issues/5149">#5149</a> - Updated the Job List to show Job Hook Receiver and Job Button Receiver Jobs, which were previously being hidden from view.</li>
|
|
11110
11071
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown link behavior to turn orange when active/clicked; state is saved.</li>
|
|
@@ -11113,12 +11074,12 @@
|
|
|
11113
11074
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Changed navbar dropdown to use chevron icon instead of carets.</li>
|
|
11114
11075
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Aligned navbar dropdown icons to the right.</li>
|
|
11115
11076
|
</ul>
|
|
11116
|
-
<h3 id="
|
|
11077
|
+
<h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">¶</a></h3>
|
|
11117
11078
|
<ul>
|
|
11118
11079
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed unneeded tooltip of dropdown title.</li>
|
|
11119
11080
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Removed navbar dropdown links underlining.</li>
|
|
11120
11081
|
</ul>
|
|
11121
|
-
<h3 id="
|
|
11082
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11122
11083
|
<ul>
|
|
11123
11084
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
11124
11085
|
<li><a href="https://github.com/nautobot/nautobot/issues/4898">#4898</a> - Improved automatic query optimization when rendering object list views.</li>
|
|
@@ -11132,14 +11093,14 @@
|
|
|
11132
11093
|
<li><a href="https://github.com/nautobot/nautobot/issues/5178">#5178</a> - Fixed navbar dropdown links alignment and spacing.</li>
|
|
11133
11094
|
<li><a href="https://github.com/nautobot/nautobot/issues/5198">#5198</a> - Fixed error in device and rack dropdowns when attempting to add an Interface to an InterfaceRedundancyGroup.</li>
|
|
11134
11095
|
</ul>
|
|
11135
|
-
<h3 id="
|
|
11096
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11136
11097
|
<ul>
|
|
11137
11098
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>MarkupSafe</code> dependency to 2.1.5.</li>
|
|
11138
11099
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mysqlclient</code> dependency to 2.2.3.</li>
|
|
11139
11100
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>python-slugify</code> dependency to 8.0.3.</li>
|
|
11140
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>pyuwsgi</code> dependency to 2.0.23.</li>
|
|
11141
11102
|
</ul>
|
|
11142
|
-
<h3 id="
|
|
11103
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11143
11104
|
<ul>
|
|
11144
11105
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>mkdocs-section-index</code> documentation dependency to 0.3.8.</li>
|
|
11145
11106
|
<li><a href="https://github.com/nautobot/nautobot/issues/4821">#4821</a> - Updated <code>ruff</code> development dependency to 0.1.15.</li>
|
|
@@ -11151,30 +11112,30 @@
|
|
|
11151
11112
|
<li><a href="https://github.com/nautobot/nautobot/issues/5206">#5206</a> - Added q filter test for ExternalIntegration.</li>
|
|
11152
11113
|
</ul>
|
|
11153
11114
|
<h2 id="v212-2024-01-22">v2.1.2 (2024-01-22)<a class="headerlink" href="#v212-2024-01-22" title="Permanent link">¶</a></h2>
|
|
11154
|
-
<h3 id="
|
|
11115
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
11155
11116
|
<ul>
|
|
11156
11117
|
<li><a href="https://github.com/nautobot/nautobot/issues/5054">#5054</a> - Added validation of redirect URLs to the "Add a new IP Address" and "Assign an IP Address" views.</li>
|
|
11157
11118
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
11158
11119
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
11159
11120
|
</ul>
|
|
11160
|
-
<h3 id="
|
|
11121
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11161
11122
|
<ul>
|
|
11162
11123
|
<li><a href="https://github.com/nautobot/nautobot/issues/3877">#3877</a> - Added global filtering to Job Result log table, enabling search across all pages.</li>
|
|
11163
11124
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Enhanced the <code>sanitize</code> function to also handle sanitization of lists and tuples of strings.</li>
|
|
11164
11125
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
|
|
11165
11126
|
</ul>
|
|
11166
|
-
<h3 id="
|
|
11127
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11167
11128
|
<ul>
|
|
11168
11129
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested user has permission to run the requested job.</li>
|
|
11169
11130
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether the requested job is installed and enabled.</li>
|
|
11170
11131
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Changed the <code>nautobot-server runjob</code> management command to check whether a Celery worker is running when invoked without the <code>--local</code> flag.</li>
|
|
11171
11132
|
<li><a href="https://github.com/nautobot/nautobot/issues/5131">#5131</a> - Improved the performance of the <code>/api/dcim/locations/</code> REST API.</li>
|
|
11172
11133
|
</ul>
|
|
11173
|
-
<h3 id="
|
|
11134
|
+
<h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">¶</a></h3>
|
|
11174
11135
|
<ul>
|
|
11175
11136
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Removed <code>nautobot-server startplugin</code> management command.</li>
|
|
11176
11137
|
</ul>
|
|
11177
|
-
<h3 id="
|
|
11138
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11178
11139
|
<ul>
|
|
11179
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/4075">#4075</a> - Fixed sorting of Device Bays list view by installed device status.</li>
|
|
11180
11141
|
<li><a href="https://github.com/nautobot/nautobot/issues/4444">#4444</a> - Fixed Sync Git Repository requires non-matching permissions for UI vs API.</li>
|
|
@@ -11200,17 +11161,17 @@
|
|
|
11200
11161
|
<li><a href="https://github.com/nautobot/nautobot/issues/5102">#5102</a> - Fixed incorrect JobResult data when using <code>nautobot-server runjob --local</code> or <code>JobResult.execute_job()</code>.</li>
|
|
11201
11162
|
<li><a href="https://github.com/nautobot/nautobot/issues/5111">#5111</a> - Fixed rack group and rack filtering by the location selected in the device bulk edit form.</li>
|
|
11202
11163
|
</ul>
|
|
11203
|
-
<h3 id="
|
|
11164
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11204
11165
|
<ul>
|
|
11205
11166
|
<li><a href="https://github.com/nautobot/nautobot/issues/5083">#5083</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
11206
11167
|
<li><a href="https://github.com/nautobot/nautobot/issues/5086">#5086</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
11207
11168
|
<li><a href="https://github.com/nautobot/nautobot/issues/5133">#5133</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
11208
11169
|
</ul>
|
|
11209
|
-
<h3 id="
|
|
11170
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11210
11171
|
<ul>
|
|
11211
11172
|
<li><a href="https://github.com/nautobot/nautobot/issues/5078">#5078</a> - Added a link to the <code>cookiecutter-nautobot-app</code> project in the App developer documentation.</li>
|
|
11212
11173
|
</ul>
|
|
11213
|
-
<h3 id="
|
|
11174
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11214
11175
|
<ul>
|
|
11215
11176
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Added automatic superuser creation environment variables to docker development environment.</li>
|
|
11216
11177
|
<li><a href="https://github.com/nautobot/nautobot/issues/4906">#4906</a> - Updated VS Code Dev Containers configuration and documentation.</li>
|
|
@@ -11220,20 +11181,20 @@
|
|
|
11220
11181
|
<li><a href="https://github.com/nautobot/nautobot/issues/5118">#5118</a> - Updated PR template to encourage inclusion of screenshots.</li>
|
|
11221
11182
|
</ul>
|
|
11222
11183
|
<h2 id="v211-2024-01-08">v2.1.1 (2024-01-08)<a class="headerlink" href="#v211-2024-01-08" title="Permanent link">¶</a></h2>
|
|
11223
|
-
<h3 id="
|
|
11184
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11224
11185
|
<ul>
|
|
11225
11186
|
<li><a href="https://github.com/nautobot/nautobot/issues/5046">#5046</a> - Updated the LocationType clone process to pre-populate the original object's parent, nestable and content type fields.</li>
|
|
11226
11187
|
</ul>
|
|
11227
|
-
<h3 id="
|
|
11188
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
11228
11189
|
<ul>
|
|
11229
11190
|
<li><a href="https://github.com/nautobot/nautobot/issues/4992">#4992</a> - Added change-logging (ObjectChange support) for the ObjectPermission model.</li>
|
|
11230
11191
|
</ul>
|
|
11231
|
-
<h3 id="
|
|
11192
|
+
<h3 id="removed_5">Removed<a class="headerlink" href="#removed_5" title="Permanent link">¶</a></h3>
|
|
11232
11193
|
<ul>
|
|
11233
11194
|
<li><a href="https://github.com/nautobot/nautobot/issues/5033">#5033</a> - Removed alpha UI from the main code base for now (it still exists in a prototype branch) to reduce the burden of maintaining its dependencies in the meantime.</li>
|
|
11234
11195
|
<li><a href="https://github.com/nautobot/nautobot/issues/5035">#5035</a> - Removed nodesource apt repository from Dockerfile.</li>
|
|
11235
11196
|
</ul>
|
|
11236
|
-
<h3 id="
|
|
11197
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11237
11198
|
<ul>
|
|
11238
11199
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed an error when attempting to "Save Changes" to an existing GraphQL saved query via the GraphiQL UI.</li>
|
|
11239
11200
|
<li><a href="https://github.com/nautobot/nautobot/issues/4606">#4606</a> - Fixed incorrect positioning of the "Save Changes" button in the "Queries" menu in the GraphiQL UI.</li>
|
|
@@ -11242,14 +11203,14 @@
|
|
|
11242
11203
|
<li><a href="https://github.com/nautobot/nautobot/issues/5005">#5005</a> - Fixed missing schema field in config context create/edit forms.</li>
|
|
11243
11204
|
<li><a href="https://github.com/nautobot/nautobot/issues/5020">#5020</a> - Fixed display of secrets when editing a SecretsGroup.</li>
|
|
11244
11205
|
</ul>
|
|
11245
|
-
<h3 id="
|
|
11206
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
11246
11207
|
<ul>
|
|
11247
11208
|
<li><a href="https://github.com/nautobot/nautobot/issues/5019">#5019</a> - Updated the documentation on the usage of the <code>nautobot-server runjob</code> management command.</li>
|
|
11248
11209
|
<li><a href="https://github.com/nautobot/nautobot/issues/5023">#5023</a> - Fixed some typos in the 2.1.0 release notes.</li>
|
|
11249
11210
|
<li><a href="https://github.com/nautobot/nautobot/issues/5027">#5027</a> - Fixed typo in Device Redundancy Group docs.</li>
|
|
11250
11211
|
<li><a href="https://github.com/nautobot/nautobot/issues/5044">#5044</a> - Updated the documentation on <code>nautobot_database_ready</code> signal handlers with a warning.</li>
|
|
11251
11212
|
</ul>
|
|
11252
|
-
<h3 id="
|
|
11213
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11253
11214
|
<ul>
|
|
11254
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Updated <code>ruff</code> development dependency to <code>~0.1.10</code>.</li>
|
|
11255
11216
|
<li><a href="https://github.com/nautobot/nautobot/issues/5039">#5039</a> - Removed <code>black</code> and <code>flake8</code> as development dependencies as they're fully replaced by <code>ruff</code> now.</li>
|
|
@@ -11264,13 +11225,13 @@
|
|
|
11264
11225
|
<li><a href="https://github.com/nautobot/nautobot/issues/5055">#5055</a> - Removed <code>isort</code> as a development dependency as it's fully replaced by <code>ruff</code> now.</li>
|
|
11265
11226
|
</ul>
|
|
11266
11227
|
<h2 id="v210-2023-12-22">v2.1.0 (2023-12-22)<a class="headerlink" href="#v210-2023-12-22" title="Permanent link">¶</a></h2>
|
|
11267
|
-
<h3 id="
|
|
11228
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
11268
11229
|
<ul>
|
|
11269
11230
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
11270
11231
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
|
|
11271
11232
|
<li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11272
11233
|
</ul>
|
|
11273
|
-
<h3 id="
|
|
11234
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
11274
11235
|
<ul>
|
|
11275
11236
|
<li><a href="https://github.com/nautobot/nautobot/issues/2149">#2149</a> - Added customizable panels on the homepage.</li>
|
|
11276
11237
|
<li><a href="https://github.com/nautobot/nautobot/issues/4708">#4708</a> - Added VRF to interface bulk edit form.</li>
|
|
@@ -11284,7 +11245,7 @@
|
|
|
11284
11245
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Added <code>JOB_CREATE_FILE_MAX_SIZE</code> setting.</li>
|
|
11285
11246
|
<li><a href="https://github.com/nautobot/nautobot/issues/4989">#4989</a> - Added a link to the Advanced tab on detail views to easily open the object in the API browser.</li>
|
|
11286
11247
|
</ul>
|
|
11287
|
-
<h3 id="
|
|
11248
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
11288
11249
|
<ul>
|
|
11289
11250
|
<li><a href="https://github.com/nautobot/nautobot/issues/4884">#4884</a> - Added Bootstrap tooltips for all HTML elements with a <code>title</code> attribute.</li>
|
|
11290
11251
|
<li><a href="https://github.com/nautobot/nautobot/issues/4888">#4888</a> - Moved username and user actions menu from the top of the nav bar to the bottom.</li>
|
|
@@ -11295,12 +11256,12 @@
|
|
|
11295
11256
|
<li><a href="https://github.com/nautobot/nautobot/issues/4996">#4996</a> - Changed the order and help text of fields in the External Integration create and edit forms.</li>
|
|
11296
11257
|
<li><a href="https://github.com/nautobot/nautobot/issues/5003">#5003</a> - Updated gifs to showcase new Nautobot 2.1 interface.</li>
|
|
11297
11258
|
</ul>
|
|
11298
|
-
<h3 id="
|
|
11259
|
+
<h3 id="removed_6">Removed<a class="headerlink" href="#removed_6" title="Permanent link">¶</a></h3>
|
|
11299
11260
|
<ul>
|
|
11300
11261
|
<li><a href="https://github.com/nautobot/nautobot/issues/4757">#4757</a> - Dropped support for PostgreSQL versions before 12.0.</li>
|
|
11301
11262
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
11302
11263
|
</ul>
|
|
11303
|
-
<h3 id="
|
|
11264
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11304
11265
|
<ul>
|
|
11305
11266
|
<li><a href="https://github.com/nautobot/nautobot/issues/4620">#4620</a> - Ensure UI build directory is created on init of nautobot-server.</li>
|
|
11306
11267
|
<li><a href="https://github.com/nautobot/nautobot/issues/4627">#4627</a> - Fixed JSON custom field being returned as a <code>repr()</code> string when using GraphQL.</li>
|
|
@@ -11313,14 +11274,14 @@
|
|
|
11313
11274
|
<li><a href="https://github.com/nautobot/nautobot/issues/4968">#4968</a> - Fixed some cases in which the <code>ipam.0025</code> data migration might throw an exception due to invalid data.</li>
|
|
11314
11275
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11315
11276
|
</ul>
|
|
11316
|
-
<h3 id="
|
|
11277
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
11317
11278
|
<ul>
|
|
11318
11279
|
<li><a href="https://github.com/nautobot/nautobot/issues/4735">#4735</a> - Documented Django Admin Log Entries in v2.1 Release Overview.</li>
|
|
11319
11280
|
<li><a href="https://github.com/nautobot/nautobot/issues/4736">#4736</a> - Documented <code>isnull</code> filter expression in v2.1 Release Overview.</li>
|
|
11320
11281
|
<li><a href="https://github.com/nautobot/nautobot/issues/4766">#4766</a> - Updated documentation for registering tab views.</li>
|
|
11321
11282
|
<li><a href="https://github.com/nautobot/nautobot/issues/4984">#4984</a> - Fixed up docstrings for a number of Job-related classes and methods.</li>
|
|
11322
11283
|
</ul>
|
|
11323
|
-
<h3 id="
|
|
11284
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11324
11285
|
<ul>
|
|
11325
11286
|
<li><a href="https://github.com/nautobot/nautobot/issues/4647">#4647</a> - Added DeviceFactory.</li>
|
|
11326
11287
|
<li><a href="https://github.com/nautobot/nautobot/issues/4896">#4896</a> - Added <code>/theme-preview/</code> view (only when <code>settings.DEBUG</code> is enabled) to preview various UI elements and layouts.</li>
|
|
@@ -11328,7 +11289,7 @@
|
|
|
11328
11289
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
11329
11290
|
</ul>
|
|
11330
11291
|
<h2 id="v210-beta1-2023-11-30">v2.1.0-beta.1 (2023-11-30)<a class="headerlink" href="#v210-beta1-2023-11-30" title="Permanent link">¶</a></h2>
|
|
11331
|
-
<h3 id="
|
|
11292
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
11332
11293
|
<ul>
|
|
11333
11294
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Added the ability to automatically apply <code>isnull</code> filters when model field is nullable.</li>
|
|
11334
11295
|
<li><a href="https://github.com/nautobot/nautobot/issues/1905">#1905</a> - Enhanced <code>status</code> filters to support filtering by ID (UUID) as an alternative to filtering by <code>name</code>.</li>
|
|
@@ -11348,7 +11309,7 @@
|
|
|
11348
11309
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added listing of related <code>files</code> to the <code>/api/extras/job-results/</code> REST API.</li>
|
|
11349
11310
|
<li><a href="https://github.com/nautobot/nautobot/issues/4820">#4820</a> - Added read-only REST API for the FileProxy model (files generated by a Job run), including a <code>/download/</code> endpoint for downloading the file content.</li>
|
|
11350
11311
|
</ul>
|
|
11351
|
-
<h3 id="
|
|
11312
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
11352
11313
|
<ul>
|
|
11353
11314
|
<li><a href="https://github.com/nautobot/nautobot/issues/4677">#4677</a> - Updated and customized nautobot UI bootstrap theme with LESS variables.</li>
|
|
11354
11315
|
<li><a href="https://github.com/nautobot/nautobot/issues/4745">#4745</a> - Changed object export (CSV, YAML, export-template) to run as a background task, avoiding HTTP timeouts when exporting thousands of objects in a single operation.</li>
|
|
@@ -11357,12 +11318,12 @@
|
|
|
11357
11318
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Lightened table row background color in dark mode.</li>
|
|
11358
11319
|
<li><a href="https://github.com/nautobot/nautobot/issues/4808">#4808</a> - Make NavItem link text margin-right slightly larger.</li>
|
|
11359
11320
|
</ul>
|
|
11360
|
-
<h3 id="
|
|
11321
|
+
<h3 id="removed_7">Removed<a class="headerlink" href="#removed_7" title="Permanent link">¶</a></h3>
|
|
11361
11322
|
<ul>
|
|
11362
11323
|
<li><a href="https://github.com/nautobot/nautobot/issues/4765">#4765</a> - Removed "Import" buttons from navbar dropdown menus.</li>
|
|
11363
11324
|
<li><a href="https://github.com/nautobot/nautobot/issues/4787">#4787</a> - Removed support for <code>HIDE_RESTRICTED_UI</code>. UI elements requiring specific permissions will now always be hidden from users lacking those permissions. Additionally, users not logged in will now be automatically redirected to the login page.</li>
|
|
11364
11325
|
</ul>
|
|
11365
|
-
<h3 id="
|
|
11326
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11366
11327
|
<ul>
|
|
11367
11328
|
<li><a href="https://github.com/nautobot/nautobot/issues/4646">#4646</a> - Fixed a bug in <code>ObjectPermission</code> where <code>users.user</code> permissions could not be created.</li>
|
|
11368
11329
|
<li><a href="https://github.com/nautobot/nautobot/issues/4786">#4786</a> - Fixed default button background color in dark mode.</li>
|
|
@@ -11370,7 +11331,7 @@
|
|
|
11370
11331
|
<li><a href="https://github.com/nautobot/nautobot/issues/4862">#4862</a> - Fixes issues with uninstalled apps & lingering contenttypes referenced in changelog.</li>
|
|
11371
11332
|
<li><a href="https://github.com/nautobot/nautobot/issues/4882">#4882</a> - Fixed a regression in the rendering of the Jobs table view.</li>
|
|
11372
11333
|
</ul>
|
|
11373
|
-
<h3 id="
|
|
11334
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11374
11335
|
<ul>
|
|
11375
11336
|
<li><a href="https://github.com/nautobot/nautobot/issues/3352">#3352</a> - Added a shared <code>media_root</code> volume to developer Docker Compose environment.</li>
|
|
11376
11337
|
<li><a href="https://github.com/nautobot/nautobot/issues/4781">#4781</a> - Added Gherkin writeups for "Locations" and "Prefixes" feature workflows.</li>
|
|
@@ -11521,7 +11482,7 @@
|
|
|
11521
11482
|
<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>
|
|
11522
11483
|
|
|
11523
11484
|
|
|
11524
|
-
<script src="../assets/javascripts/bundle.
|
|
11485
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
11525
11486
|
|
|
11526
11487
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11527
11488
|
|