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
|
|
|
@@ -8822,9 +8780,9 @@
|
|
|
8822
8780
|
<ul class="md-nav__list">
|
|
8823
8781
|
|
|
8824
8782
|
<li class="md-nav__item">
|
|
8825
|
-
<a href="#
|
|
8783
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8826
8784
|
<span class="md-ellipsis">
|
|
8827
|
-
Fixed
|
|
8785
|
+
Fixed
|
|
8828
8786
|
</span>
|
|
8829
8787
|
</a>
|
|
8830
8788
|
|
|
@@ -8846,45 +8804,45 @@
|
|
|
8846
8804
|
<ul class="md-nav__list">
|
|
8847
8805
|
|
|
8848
8806
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#security
|
|
8807
|
+
<a href="#security" class="md-nav__link">
|
|
8850
8808
|
<span class="md-ellipsis">
|
|
8851
|
-
Security
|
|
8809
|
+
Security
|
|
8852
8810
|
</span>
|
|
8853
8811
|
</a>
|
|
8854
8812
|
|
|
8855
8813
|
</li>
|
|
8856
8814
|
|
|
8857
8815
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#
|
|
8816
|
+
<a href="#added_1" class="md-nav__link">
|
|
8859
8817
|
<span class="md-ellipsis">
|
|
8860
|
-
Added
|
|
8818
|
+
Added
|
|
8861
8819
|
</span>
|
|
8862
8820
|
</a>
|
|
8863
8821
|
|
|
8864
8822
|
</li>
|
|
8865
8823
|
|
|
8866
8824
|
<li class="md-nav__item">
|
|
8867
|
-
<a href="#
|
|
8825
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8868
8826
|
<span class="md-ellipsis">
|
|
8869
|
-
Fixed
|
|
8827
|
+
Fixed
|
|
8870
8828
|
</span>
|
|
8871
8829
|
</a>
|
|
8872
8830
|
|
|
8873
8831
|
</li>
|
|
8874
8832
|
|
|
8875
8833
|
<li class="md-nav__item">
|
|
8876
|
-
<a href="#documentation
|
|
8834
|
+
<a href="#documentation" class="md-nav__link">
|
|
8877
8835
|
<span class="md-ellipsis">
|
|
8878
|
-
Documentation
|
|
8836
|
+
Documentation
|
|
8879
8837
|
</span>
|
|
8880
8838
|
</a>
|
|
8881
8839
|
|
|
8882
8840
|
</li>
|
|
8883
8841
|
|
|
8884
8842
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#housekeeping
|
|
8843
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8886
8844
|
<span class="md-ellipsis">
|
|
8887
|
-
Housekeeping
|
|
8845
|
+
Housekeeping
|
|
8888
8846
|
</span>
|
|
8889
8847
|
</a>
|
|
8890
8848
|
|
|
@@ -8906,45 +8864,45 @@
|
|
|
8906
8864
|
<ul class="md-nav__list">
|
|
8907
8865
|
|
|
8908
8866
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
8867
|
+
<a href="#security_1" class="md-nav__link">
|
|
8910
8868
|
<span class="md-ellipsis">
|
|
8911
|
-
Security
|
|
8869
|
+
Security
|
|
8912
8870
|
</span>
|
|
8913
8871
|
</a>
|
|
8914
8872
|
|
|
8915
8873
|
</li>
|
|
8916
8874
|
|
|
8917
8875
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
8876
|
+
<a href="#added_2" class="md-nav__link">
|
|
8919
8877
|
<span class="md-ellipsis">
|
|
8920
|
-
Added
|
|
8878
|
+
Added
|
|
8921
8879
|
</span>
|
|
8922
8880
|
</a>
|
|
8923
8881
|
|
|
8924
8882
|
</li>
|
|
8925
8883
|
|
|
8926
8884
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
8885
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8928
8886
|
<span class="md-ellipsis">
|
|
8929
|
-
Fixed
|
|
8887
|
+
Fixed
|
|
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="#documentation_1" class="md-nav__link">
|
|
8937
8895
|
<span class="md-ellipsis">
|
|
8938
|
-
Documentation
|
|
8896
|
+
Documentation
|
|
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="#housekeeping_1" class="md-nav__link">
|
|
8946
8904
|
<span class="md-ellipsis">
|
|
8947
|
-
Housekeeping
|
|
8905
|
+
Housekeeping
|
|
8948
8906
|
</span>
|
|
8949
8907
|
</a>
|
|
8950
8908
|
|
|
@@ -8966,54 +8924,54 @@
|
|
|
8966
8924
|
<ul class="md-nav__list">
|
|
8967
8925
|
|
|
8968
8926
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
8927
|
+
<a href="#security_2" class="md-nav__link">
|
|
8970
8928
|
<span class="md-ellipsis">
|
|
8971
|
-
Security
|
|
8929
|
+
Security
|
|
8972
8930
|
</span>
|
|
8973
8931
|
</a>
|
|
8974
8932
|
|
|
8975
8933
|
</li>
|
|
8976
8934
|
|
|
8977
8935
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
8936
|
+
<a href="#added_3" class="md-nav__link">
|
|
8979
8937
|
<span class="md-ellipsis">
|
|
8980
|
-
Added
|
|
8938
|
+
Added
|
|
8981
8939
|
</span>
|
|
8982
8940
|
</a>
|
|
8983
8941
|
|
|
8984
8942
|
</li>
|
|
8985
8943
|
|
|
8986
8944
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
8945
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8988
8946
|
<span class="md-ellipsis">
|
|
8989
|
-
Changed
|
|
8947
|
+
Changed
|
|
8990
8948
|
</span>
|
|
8991
8949
|
</a>
|
|
8992
8950
|
|
|
8993
8951
|
</li>
|
|
8994
8952
|
|
|
8995
8953
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
8954
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8997
8955
|
<span class="md-ellipsis">
|
|
8998
|
-
Fixed
|
|
8956
|
+
Fixed
|
|
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="#documentation_2" class="md-nav__link">
|
|
9006
8964
|
<span class="md-ellipsis">
|
|
9007
|
-
Documentation
|
|
8965
|
+
Documentation
|
|
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="#housekeeping_2" class="md-nav__link">
|
|
9015
8973
|
<span class="md-ellipsis">
|
|
9016
|
-
Housekeeping
|
|
8974
|
+
Housekeeping
|
|
9017
8975
|
</span>
|
|
9018
8976
|
</a>
|
|
9019
8977
|
|
|
@@ -9035,27 +8993,27 @@
|
|
|
9035
8993
|
<ul class="md-nav__list">
|
|
9036
8994
|
|
|
9037
8995
|
<li class="md-nav__item">
|
|
9038
|
-
<a href="#
|
|
8996
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9039
8997
|
<span class="md-ellipsis">
|
|
9040
|
-
Fixed
|
|
8998
|
+
Fixed
|
|
9041
8999
|
</span>
|
|
9042
9000
|
</a>
|
|
9043
9001
|
|
|
9044
9002
|
</li>
|
|
9045
9003
|
|
|
9046
9004
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9005
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9048
9006
|
<span class="md-ellipsis">
|
|
9049
|
-
Documentation
|
|
9007
|
+
Documentation
|
|
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="#housekeeping_3" class="md-nav__link">
|
|
9057
9015
|
<span class="md-ellipsis">
|
|
9058
|
-
Housekeeping
|
|
9016
|
+
Housekeeping
|
|
9059
9017
|
</span>
|
|
9060
9018
|
</a>
|
|
9061
9019
|
|
|
@@ -9077,36 +9035,36 @@
|
|
|
9077
9035
|
<ul class="md-nav__list">
|
|
9078
9036
|
|
|
9079
9037
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9038
|
+
<a href="#added_4" class="md-nav__link">
|
|
9081
9039
|
<span class="md-ellipsis">
|
|
9082
|
-
Added
|
|
9040
|
+
Added
|
|
9083
9041
|
</span>
|
|
9084
9042
|
</a>
|
|
9085
9043
|
|
|
9086
9044
|
</li>
|
|
9087
9045
|
|
|
9088
9046
|
<li class="md-nav__item">
|
|
9089
|
-
<a href="#
|
|
9047
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9090
9048
|
<span class="md-ellipsis">
|
|
9091
|
-
Fixed
|
|
9049
|
+
Fixed
|
|
9092
9050
|
</span>
|
|
9093
9051
|
</a>
|
|
9094
9052
|
|
|
9095
9053
|
</li>
|
|
9096
9054
|
|
|
9097
9055
|
<li class="md-nav__item">
|
|
9098
|
-
<a href="#
|
|
9056
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9099
9057
|
<span class="md-ellipsis">
|
|
9100
|
-
Documentation
|
|
9058
|
+
Documentation
|
|
9101
9059
|
</span>
|
|
9102
9060
|
</a>
|
|
9103
9061
|
|
|
9104
9062
|
</li>
|
|
9105
9063
|
|
|
9106
9064
|
<li class="md-nav__item">
|
|
9107
|
-
<a href="#
|
|
9065
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9108
9066
|
<span class="md-ellipsis">
|
|
9109
|
-
Housekeeping
|
|
9067
|
+
Housekeeping
|
|
9110
9068
|
</span>
|
|
9111
9069
|
</a>
|
|
9112
9070
|
|
|
@@ -9128,45 +9086,45 @@
|
|
|
9128
9086
|
<ul class="md-nav__list">
|
|
9129
9087
|
|
|
9130
9088
|
<li class="md-nav__item">
|
|
9131
|
-
<a href="#
|
|
9089
|
+
<a href="#security_3" class="md-nav__link">
|
|
9132
9090
|
<span class="md-ellipsis">
|
|
9133
|
-
Security
|
|
9091
|
+
Security
|
|
9134
9092
|
</span>
|
|
9135
9093
|
</a>
|
|
9136
9094
|
|
|
9137
9095
|
</li>
|
|
9138
9096
|
|
|
9139
9097
|
<li class="md-nav__item">
|
|
9140
|
-
<a href="#
|
|
9098
|
+
<a href="#added_5" class="md-nav__link">
|
|
9141
9099
|
<span class="md-ellipsis">
|
|
9142
|
-
Added
|
|
9100
|
+
Added
|
|
9143
9101
|
</span>
|
|
9144
9102
|
</a>
|
|
9145
9103
|
|
|
9146
9104
|
</li>
|
|
9147
9105
|
|
|
9148
9106
|
<li class="md-nav__item">
|
|
9149
|
-
<a href="#
|
|
9107
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9150
9108
|
<span class="md-ellipsis">
|
|
9151
|
-
Changed
|
|
9109
|
+
Changed
|
|
9152
9110
|
</span>
|
|
9153
9111
|
</a>
|
|
9154
9112
|
|
|
9155
9113
|
</li>
|
|
9156
9114
|
|
|
9157
9115
|
<li class="md-nav__item">
|
|
9158
|
-
<a href="#
|
|
9116
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9159
9117
|
<span class="md-ellipsis">
|
|
9160
|
-
Fixed
|
|
9118
|
+
Fixed
|
|
9161
9119
|
</span>
|
|
9162
9120
|
</a>
|
|
9163
9121
|
|
|
9164
9122
|
</li>
|
|
9165
9123
|
|
|
9166
9124
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
9125
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9168
9126
|
<span class="md-ellipsis">
|
|
9169
|
-
Documentation
|
|
9127
|
+
Documentation
|
|
9170
9128
|
</span>
|
|
9171
9129
|
</a>
|
|
9172
9130
|
|
|
@@ -9188,27 +9146,27 @@
|
|
|
9188
9146
|
<ul class="md-nav__list">
|
|
9189
9147
|
|
|
9190
9148
|
<li class="md-nav__item">
|
|
9191
|
-
<a href="#
|
|
9149
|
+
<a href="#added_6" class="md-nav__link">
|
|
9192
9150
|
<span class="md-ellipsis">
|
|
9193
|
-
Added
|
|
9151
|
+
Added
|
|
9194
9152
|
</span>
|
|
9195
9153
|
</a>
|
|
9196
9154
|
|
|
9197
9155
|
</li>
|
|
9198
9156
|
|
|
9199
9157
|
<li class="md-nav__item">
|
|
9200
|
-
<a href="#
|
|
9158
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9201
9159
|
<span class="md-ellipsis">
|
|
9202
|
-
Fixed
|
|
9160
|
+
Fixed
|
|
9203
9161
|
</span>
|
|
9204
9162
|
</a>
|
|
9205
9163
|
|
|
9206
9164
|
</li>
|
|
9207
9165
|
|
|
9208
9166
|
<li class="md-nav__item">
|
|
9209
|
-
<a href="#
|
|
9167
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9210
9168
|
<span class="md-ellipsis">
|
|
9211
|
-
Documentation
|
|
9169
|
+
Documentation
|
|
9212
9170
|
</span>
|
|
9213
9171
|
</a>
|
|
9214
9172
|
|
|
@@ -9230,45 +9188,45 @@
|
|
|
9230
9188
|
<ul class="md-nav__list">
|
|
9231
9189
|
|
|
9232
9190
|
<li class="md-nav__item">
|
|
9233
|
-
<a href="#
|
|
9191
|
+
<a href="#added_7" class="md-nav__link">
|
|
9234
9192
|
<span class="md-ellipsis">
|
|
9235
|
-
Added
|
|
9193
|
+
Added
|
|
9236
9194
|
</span>
|
|
9237
9195
|
</a>
|
|
9238
9196
|
|
|
9239
9197
|
</li>
|
|
9240
9198
|
|
|
9241
9199
|
<li class="md-nav__item">
|
|
9242
|
-
<a href="#
|
|
9200
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9243
9201
|
<span class="md-ellipsis">
|
|
9244
|
-
Changed
|
|
9202
|
+
Changed
|
|
9245
9203
|
</span>
|
|
9246
9204
|
</a>
|
|
9247
9205
|
|
|
9248
9206
|
</li>
|
|
9249
9207
|
|
|
9250
9208
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9209
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9252
9210
|
<span class="md-ellipsis">
|
|
9253
|
-
Fixed
|
|
9211
|
+
Fixed
|
|
9254
9212
|
</span>
|
|
9255
9213
|
</a>
|
|
9256
9214
|
|
|
9257
9215
|
</li>
|
|
9258
9216
|
|
|
9259
9217
|
<li class="md-nav__item">
|
|
9260
|
-
<a href="#
|
|
9218
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
9261
9219
|
<span class="md-ellipsis">
|
|
9262
|
-
Documentation
|
|
9220
|
+
Documentation
|
|
9263
9221
|
</span>
|
|
9264
9222
|
</a>
|
|
9265
9223
|
|
|
9266
9224
|
</li>
|
|
9267
9225
|
|
|
9268
9226
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9227
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9270
9228
|
<span class="md-ellipsis">
|
|
9271
|
-
Housekeeping
|
|
9229
|
+
Housekeeping
|
|
9272
9230
|
</span>
|
|
9273
9231
|
</a>
|
|
9274
9232
|
|
|
@@ -9823,9 +9781,9 @@
|
|
|
9823
9781
|
<ul class="md-nav__list">
|
|
9824
9782
|
|
|
9825
9783
|
<li class="md-nav__item">
|
|
9826
|
-
<a href="#
|
|
9784
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9827
9785
|
<span class="md-ellipsis">
|
|
9828
|
-
Fixed
|
|
9786
|
+
Fixed
|
|
9829
9787
|
</span>
|
|
9830
9788
|
</a>
|
|
9831
9789
|
|
|
@@ -9847,45 +9805,45 @@
|
|
|
9847
9805
|
<ul class="md-nav__list">
|
|
9848
9806
|
|
|
9849
9807
|
<li class="md-nav__item">
|
|
9850
|
-
<a href="#security
|
|
9808
|
+
<a href="#security" class="md-nav__link">
|
|
9851
9809
|
<span class="md-ellipsis">
|
|
9852
|
-
Security
|
|
9810
|
+
Security
|
|
9853
9811
|
</span>
|
|
9854
9812
|
</a>
|
|
9855
9813
|
|
|
9856
9814
|
</li>
|
|
9857
9815
|
|
|
9858
9816
|
<li class="md-nav__item">
|
|
9859
|
-
<a href="#
|
|
9817
|
+
<a href="#added_1" class="md-nav__link">
|
|
9860
9818
|
<span class="md-ellipsis">
|
|
9861
|
-
Added
|
|
9819
|
+
Added
|
|
9862
9820
|
</span>
|
|
9863
9821
|
</a>
|
|
9864
9822
|
|
|
9865
9823
|
</li>
|
|
9866
9824
|
|
|
9867
9825
|
<li class="md-nav__item">
|
|
9868
|
-
<a href="#
|
|
9826
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9869
9827
|
<span class="md-ellipsis">
|
|
9870
|
-
Fixed
|
|
9828
|
+
Fixed
|
|
9871
9829
|
</span>
|
|
9872
9830
|
</a>
|
|
9873
9831
|
|
|
9874
9832
|
</li>
|
|
9875
9833
|
|
|
9876
9834
|
<li class="md-nav__item">
|
|
9877
|
-
<a href="#documentation
|
|
9835
|
+
<a href="#documentation" class="md-nav__link">
|
|
9878
9836
|
<span class="md-ellipsis">
|
|
9879
|
-
Documentation
|
|
9837
|
+
Documentation
|
|
9880
9838
|
</span>
|
|
9881
9839
|
</a>
|
|
9882
9840
|
|
|
9883
9841
|
</li>
|
|
9884
9842
|
|
|
9885
9843
|
<li class="md-nav__item">
|
|
9886
|
-
<a href="#housekeeping
|
|
9844
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
9887
9845
|
<span class="md-ellipsis">
|
|
9888
|
-
Housekeeping
|
|
9846
|
+
Housekeeping
|
|
9889
9847
|
</span>
|
|
9890
9848
|
</a>
|
|
9891
9849
|
|
|
@@ -9907,45 +9865,45 @@
|
|
|
9907
9865
|
<ul class="md-nav__list">
|
|
9908
9866
|
|
|
9909
9867
|
<li class="md-nav__item">
|
|
9910
|
-
<a href="#
|
|
9868
|
+
<a href="#security_1" class="md-nav__link">
|
|
9911
9869
|
<span class="md-ellipsis">
|
|
9912
|
-
Security
|
|
9870
|
+
Security
|
|
9913
9871
|
</span>
|
|
9914
9872
|
</a>
|
|
9915
9873
|
|
|
9916
9874
|
</li>
|
|
9917
9875
|
|
|
9918
9876
|
<li class="md-nav__item">
|
|
9919
|
-
<a href="#
|
|
9877
|
+
<a href="#added_2" class="md-nav__link">
|
|
9920
9878
|
<span class="md-ellipsis">
|
|
9921
|
-
Added
|
|
9879
|
+
Added
|
|
9922
9880
|
</span>
|
|
9923
9881
|
</a>
|
|
9924
9882
|
|
|
9925
9883
|
</li>
|
|
9926
9884
|
|
|
9927
9885
|
<li class="md-nav__item">
|
|
9928
|
-
<a href="#
|
|
9886
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9929
9887
|
<span class="md-ellipsis">
|
|
9930
|
-
Fixed
|
|
9888
|
+
Fixed
|
|
9931
9889
|
</span>
|
|
9932
9890
|
</a>
|
|
9933
9891
|
|
|
9934
9892
|
</li>
|
|
9935
9893
|
|
|
9936
9894
|
<li class="md-nav__item">
|
|
9937
|
-
<a href="#
|
|
9895
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9938
9896
|
<span class="md-ellipsis">
|
|
9939
|
-
Documentation
|
|
9897
|
+
Documentation
|
|
9940
9898
|
</span>
|
|
9941
9899
|
</a>
|
|
9942
9900
|
|
|
9943
9901
|
</li>
|
|
9944
9902
|
|
|
9945
9903
|
<li class="md-nav__item">
|
|
9946
|
-
<a href="#
|
|
9904
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9947
9905
|
<span class="md-ellipsis">
|
|
9948
|
-
Housekeeping
|
|
9906
|
+
Housekeeping
|
|
9949
9907
|
</span>
|
|
9950
9908
|
</a>
|
|
9951
9909
|
|
|
@@ -9967,54 +9925,54 @@
|
|
|
9967
9925
|
<ul class="md-nav__list">
|
|
9968
9926
|
|
|
9969
9927
|
<li class="md-nav__item">
|
|
9970
|
-
<a href="#
|
|
9928
|
+
<a href="#security_2" class="md-nav__link">
|
|
9971
9929
|
<span class="md-ellipsis">
|
|
9972
|
-
Security
|
|
9930
|
+
Security
|
|
9973
9931
|
</span>
|
|
9974
9932
|
</a>
|
|
9975
9933
|
|
|
9976
9934
|
</li>
|
|
9977
9935
|
|
|
9978
9936
|
<li class="md-nav__item">
|
|
9979
|
-
<a href="#
|
|
9937
|
+
<a href="#added_3" class="md-nav__link">
|
|
9980
9938
|
<span class="md-ellipsis">
|
|
9981
|
-
Added
|
|
9939
|
+
Added
|
|
9982
9940
|
</span>
|
|
9983
9941
|
</a>
|
|
9984
9942
|
|
|
9985
9943
|
</li>
|
|
9986
9944
|
|
|
9987
9945
|
<li class="md-nav__item">
|
|
9988
|
-
<a href="#
|
|
9946
|
+
<a href="#changed_1" class="md-nav__link">
|
|
9989
9947
|
<span class="md-ellipsis">
|
|
9990
|
-
Changed
|
|
9948
|
+
Changed
|
|
9991
9949
|
</span>
|
|
9992
9950
|
</a>
|
|
9993
9951
|
|
|
9994
9952
|
</li>
|
|
9995
9953
|
|
|
9996
9954
|
<li class="md-nav__item">
|
|
9997
|
-
<a href="#
|
|
9955
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9998
9956
|
<span class="md-ellipsis">
|
|
9999
|
-
Fixed
|
|
9957
|
+
Fixed
|
|
10000
9958
|
</span>
|
|
10001
9959
|
</a>
|
|
10002
9960
|
|
|
10003
9961
|
</li>
|
|
10004
9962
|
|
|
10005
9963
|
<li class="md-nav__item">
|
|
10006
|
-
<a href="#
|
|
9964
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10007
9965
|
<span class="md-ellipsis">
|
|
10008
|
-
Documentation
|
|
9966
|
+
Documentation
|
|
10009
9967
|
</span>
|
|
10010
9968
|
</a>
|
|
10011
9969
|
|
|
10012
9970
|
</li>
|
|
10013
9971
|
|
|
10014
9972
|
<li class="md-nav__item">
|
|
10015
|
-
<a href="#
|
|
9973
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10016
9974
|
<span class="md-ellipsis">
|
|
10017
|
-
Housekeeping
|
|
9975
|
+
Housekeeping
|
|
10018
9976
|
</span>
|
|
10019
9977
|
</a>
|
|
10020
9978
|
|
|
@@ -10036,27 +9994,27 @@
|
|
|
10036
9994
|
<ul class="md-nav__list">
|
|
10037
9995
|
|
|
10038
9996
|
<li class="md-nav__item">
|
|
10039
|
-
<a href="#
|
|
9997
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10040
9998
|
<span class="md-ellipsis">
|
|
10041
|
-
Fixed
|
|
9999
|
+
Fixed
|
|
10042
10000
|
</span>
|
|
10043
10001
|
</a>
|
|
10044
10002
|
|
|
10045
10003
|
</li>
|
|
10046
10004
|
|
|
10047
10005
|
<li class="md-nav__item">
|
|
10048
|
-
<a href="#
|
|
10006
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10049
10007
|
<span class="md-ellipsis">
|
|
10050
|
-
Documentation
|
|
10008
|
+
Documentation
|
|
10051
10009
|
</span>
|
|
10052
10010
|
</a>
|
|
10053
10011
|
|
|
10054
10012
|
</li>
|
|
10055
10013
|
|
|
10056
10014
|
<li class="md-nav__item">
|
|
10057
|
-
<a href="#
|
|
10015
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10058
10016
|
<span class="md-ellipsis">
|
|
10059
|
-
Housekeeping
|
|
10017
|
+
Housekeeping
|
|
10060
10018
|
</span>
|
|
10061
10019
|
</a>
|
|
10062
10020
|
|
|
@@ -10078,36 +10036,36 @@
|
|
|
10078
10036
|
<ul class="md-nav__list">
|
|
10079
10037
|
|
|
10080
10038
|
<li class="md-nav__item">
|
|
10081
|
-
<a href="#
|
|
10039
|
+
<a href="#added_4" class="md-nav__link">
|
|
10082
10040
|
<span class="md-ellipsis">
|
|
10083
|
-
Added
|
|
10041
|
+
Added
|
|
10084
10042
|
</span>
|
|
10085
10043
|
</a>
|
|
10086
10044
|
|
|
10087
10045
|
</li>
|
|
10088
10046
|
|
|
10089
10047
|
<li class="md-nav__item">
|
|
10090
|
-
<a href="#
|
|
10048
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10091
10049
|
<span class="md-ellipsis">
|
|
10092
|
-
Fixed
|
|
10050
|
+
Fixed
|
|
10093
10051
|
</span>
|
|
10094
10052
|
</a>
|
|
10095
10053
|
|
|
10096
10054
|
</li>
|
|
10097
10055
|
|
|
10098
10056
|
<li class="md-nav__item">
|
|
10099
|
-
<a href="#
|
|
10057
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10100
10058
|
<span class="md-ellipsis">
|
|
10101
|
-
Documentation
|
|
10059
|
+
Documentation
|
|
10102
10060
|
</span>
|
|
10103
10061
|
</a>
|
|
10104
10062
|
|
|
10105
10063
|
</li>
|
|
10106
10064
|
|
|
10107
10065
|
<li class="md-nav__item">
|
|
10108
|
-
<a href="#
|
|
10066
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10109
10067
|
<span class="md-ellipsis">
|
|
10110
|
-
Housekeeping
|
|
10068
|
+
Housekeeping
|
|
10111
10069
|
</span>
|
|
10112
10070
|
</a>
|
|
10113
10071
|
|
|
@@ -10129,45 +10087,45 @@
|
|
|
10129
10087
|
<ul class="md-nav__list">
|
|
10130
10088
|
|
|
10131
10089
|
<li class="md-nav__item">
|
|
10132
|
-
<a href="#
|
|
10090
|
+
<a href="#security_3" class="md-nav__link">
|
|
10133
10091
|
<span class="md-ellipsis">
|
|
10134
|
-
Security
|
|
10092
|
+
Security
|
|
10135
10093
|
</span>
|
|
10136
10094
|
</a>
|
|
10137
10095
|
|
|
10138
10096
|
</li>
|
|
10139
10097
|
|
|
10140
10098
|
<li class="md-nav__item">
|
|
10141
|
-
<a href="#
|
|
10099
|
+
<a href="#added_5" class="md-nav__link">
|
|
10142
10100
|
<span class="md-ellipsis">
|
|
10143
|
-
Added
|
|
10101
|
+
Added
|
|
10144
10102
|
</span>
|
|
10145
10103
|
</a>
|
|
10146
10104
|
|
|
10147
10105
|
</li>
|
|
10148
10106
|
|
|
10149
10107
|
<li class="md-nav__item">
|
|
10150
|
-
<a href="#
|
|
10108
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10151
10109
|
<span class="md-ellipsis">
|
|
10152
|
-
Changed
|
|
10110
|
+
Changed
|
|
10153
10111
|
</span>
|
|
10154
10112
|
</a>
|
|
10155
10113
|
|
|
10156
10114
|
</li>
|
|
10157
10115
|
|
|
10158
10116
|
<li class="md-nav__item">
|
|
10159
|
-
<a href="#
|
|
10117
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10160
10118
|
<span class="md-ellipsis">
|
|
10161
|
-
Fixed
|
|
10119
|
+
Fixed
|
|
10162
10120
|
</span>
|
|
10163
10121
|
</a>
|
|
10164
10122
|
|
|
10165
10123
|
</li>
|
|
10166
10124
|
|
|
10167
10125
|
<li class="md-nav__item">
|
|
10168
|
-
<a href="#
|
|
10126
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
10169
10127
|
<span class="md-ellipsis">
|
|
10170
|
-
Documentation
|
|
10128
|
+
Documentation
|
|
10171
10129
|
</span>
|
|
10172
10130
|
</a>
|
|
10173
10131
|
|
|
@@ -10189,27 +10147,27 @@
|
|
|
10189
10147
|
<ul class="md-nav__list">
|
|
10190
10148
|
|
|
10191
10149
|
<li class="md-nav__item">
|
|
10192
|
-
<a href="#
|
|
10150
|
+
<a href="#added_6" class="md-nav__link">
|
|
10193
10151
|
<span class="md-ellipsis">
|
|
10194
|
-
Added
|
|
10152
|
+
Added
|
|
10195
10153
|
</span>
|
|
10196
10154
|
</a>
|
|
10197
10155
|
|
|
10198
10156
|
</li>
|
|
10199
10157
|
|
|
10200
10158
|
<li class="md-nav__item">
|
|
10201
|
-
<a href="#
|
|
10159
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10202
10160
|
<span class="md-ellipsis">
|
|
10203
|
-
Fixed
|
|
10161
|
+
Fixed
|
|
10204
10162
|
</span>
|
|
10205
10163
|
</a>
|
|
10206
10164
|
|
|
10207
10165
|
</li>
|
|
10208
10166
|
|
|
10209
10167
|
<li class="md-nav__item">
|
|
10210
|
-
<a href="#
|
|
10168
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10211
10169
|
<span class="md-ellipsis">
|
|
10212
|
-
Documentation
|
|
10170
|
+
Documentation
|
|
10213
10171
|
</span>
|
|
10214
10172
|
</a>
|
|
10215
10173
|
|
|
@@ -10231,45 +10189,45 @@
|
|
|
10231
10189
|
<ul class="md-nav__list">
|
|
10232
10190
|
|
|
10233
10191
|
<li class="md-nav__item">
|
|
10234
|
-
<a href="#
|
|
10192
|
+
<a href="#added_7" class="md-nav__link">
|
|
10235
10193
|
<span class="md-ellipsis">
|
|
10236
|
-
Added
|
|
10194
|
+
Added
|
|
10237
10195
|
</span>
|
|
10238
10196
|
</a>
|
|
10239
10197
|
|
|
10240
10198
|
</li>
|
|
10241
10199
|
|
|
10242
10200
|
<li class="md-nav__item">
|
|
10243
|
-
<a href="#
|
|
10201
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10244
10202
|
<span class="md-ellipsis">
|
|
10245
|
-
Changed
|
|
10203
|
+
Changed
|
|
10246
10204
|
</span>
|
|
10247
10205
|
</a>
|
|
10248
10206
|
|
|
10249
10207
|
</li>
|
|
10250
10208
|
|
|
10251
10209
|
<li class="md-nav__item">
|
|
10252
|
-
<a href="#
|
|
10210
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10253
10211
|
<span class="md-ellipsis">
|
|
10254
|
-
Fixed
|
|
10212
|
+
Fixed
|
|
10255
10213
|
</span>
|
|
10256
10214
|
</a>
|
|
10257
10215
|
|
|
10258
10216
|
</li>
|
|
10259
10217
|
|
|
10260
10218
|
<li class="md-nav__item">
|
|
10261
|
-
<a href="#
|
|
10219
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10262
10220
|
<span class="md-ellipsis">
|
|
10263
|
-
Documentation
|
|
10221
|
+
Documentation
|
|
10264
10222
|
</span>
|
|
10265
10223
|
</a>
|
|
10266
10224
|
|
|
10267
10225
|
</li>
|
|
10268
10226
|
|
|
10269
10227
|
<li class="md-nav__item">
|
|
10270
|
-
<a href="#
|
|
10228
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10271
10229
|
<span class="md-ellipsis">
|
|
10272
|
-
Housekeeping
|
|
10230
|
+
Housekeeping
|
|
10273
10231
|
</span>
|
|
10274
10232
|
</a>
|
|
10275
10233
|
|
|
@@ -10298,6 +10256,7 @@
|
|
|
10298
10256
|
|
|
10299
10257
|
|
|
10300
10258
|
|
|
10259
|
+
<!-- markdownlint-disable MD024 -->
|
|
10301
10260
|
<h1 id="nautobot-v11">Nautobot v1.1<a class="headerlink" href="#nautobot-v11" title="Permanent link">¶</a></h1>
|
|
10302
10261
|
<p>This document describes all new features and changes in Nautobot 1.1.</p>
|
|
10303
10262
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -10350,21 +10309,21 @@
|
|
|
10350
10309
|
<p>If you are upgrading from an earlier version of Nautobot (including 1.1.0) you should check your <code>uwsgi.ini</code> and ensure that it contains this important configuration line.</p>
|
|
10351
10310
|
</div>
|
|
10352
10311
|
<h2 id="v116-2021-12-03">v1.1.6 (2021-12-03)<a class="headerlink" href="#v116-2021-12-03" title="Permanent link">¶</a></h2>
|
|
10353
|
-
<h3 id="
|
|
10312
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10354
10313
|
<ul>
|
|
10355
10314
|
<li><a href="https://github.com/nautobot/nautobot/pull/1093">#1093</a> - Improved REST API performance by adding caching of serializer "opt-in fields".</li>
|
|
10356
10315
|
</ul>
|
|
10357
10316
|
<h2 id="v115-2021-11-11">v1.1.5 (2021-11-11)<a class="headerlink" href="#v115-2021-11-11" title="Permanent link">¶</a></h2>
|
|
10358
|
-
<h3 id="security
|
|
10317
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10359
10318
|
<ul>
|
|
10360
10319
|
<li><a href="https://github.com/nautobot/nautobot/pull/998">#998</a> - Update <code>mkdocs</code> dependency to avoid a potential path-traversal vulnerability; note that mkdocs is only used in development and is not a production deployment dependency of Nautobot.</li>
|
|
10361
10320
|
</ul>
|
|
10362
|
-
<h3 id="
|
|
10321
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10363
10322
|
<ul>
|
|
10364
10323
|
<li><a href="https://github.com/nautobot/nautobot/issues/931">#931</a> - Added support for direct upload of CSV files as an alternative to copy-pasting CSV text into a form field. (Partially based on <a href="https://github.com/netbox-community/netbox/pull/6561">NetBox #6561</a>)</li>
|
|
10365
10324
|
<li><a href="https://github.com/nautobot/nautobot/issues/989">#989</a> - Added <code>id</code> and <code>name</code> fields to <code>NestedJobResultSerializer</code> for the REST API.</li>
|
|
10366
10325
|
</ul>
|
|
10367
|
-
<h3 id="
|
|
10326
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10368
10327
|
<ul>
|
|
10369
10328
|
<li><a href="https://github.com/nautobot/nautobot/issues/555">#555</a> - Fixed <code>Status.DoesNotExist</code> during <code>nautobot-server loaddata</code>.</li>
|
|
10370
10329
|
<li><a href="https://github.com/nautobot/nautobot/issues/567">#567</a> - Fixed incorrect GraphQL schema generation for <code>_custom_field_data</code> when certain plugins are installed.</li>
|
|
@@ -10375,7 +10334,7 @@
|
|
|
10375
10334
|
<li><a href="https://github.com/nautobot/nautobot/pull/991">#991</a> - Fixed incorrect logging when importing ConfigContextSchemas from Git.</li>
|
|
10376
10335
|
<li><a href="https://github.com/nautobot/nautobot/pull/993">#993</a> - Fixed incorrect <code>git</code> command when refreshing a previously checked out repository.</li>
|
|
10377
10336
|
</ul>
|
|
10378
|
-
<h3 id="documentation
|
|
10337
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10379
10338
|
<ul>
|
|
10380
10339
|
<li><a href="https://github.com/nautobot/nautobot/issues/263">#263</a> - Added a link in the Docker deployment guide to the Nautobot Docker Compose repository.</li>
|
|
10381
10340
|
<li><a href="https://github.com/nautobot/nautobot/issues/948">#948</a> - Fixed advanced logging example to use <code>EXTRA_MIDDLEWARE</code> instead of <code>MIDDLEWARE.append()</code>.</li>
|
|
@@ -10385,54 +10344,54 @@
|
|
|
10385
10344
|
<li><a href="https://github.com/nautobot/nautobot/issues/1025">#1025</a> - Added reference documentation for how to hide navigation menu items with no permissions.</li>
|
|
10386
10345
|
<li><a href="https://github.com/nautobot/nautobot/pull/1031">#1031</a> - Added a troubleshooting note around the combination of RedHat/CentOS, uWSGI, and static files.</li>
|
|
10387
10346
|
</ul>
|
|
10388
|
-
<h3 id="housekeeping
|
|
10347
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10389
10348
|
<ul>
|
|
10390
10349
|
<li><a href="https://github.com/nautobot/nautobot/pull/953">#953</a> - Added option to use MySQL in the docker-compose development environment</li>
|
|
10391
10350
|
<li><a href="https://github.com/nautobot/nautobot/pull/1019">#1019</a> - Added GitHub action to redeploy the Nautobot sandbox on pushes to <code>main</code>, <code>develop</code>, and <code>next</code>.</li>
|
|
10392
10351
|
<li><a href="https://github.com/nautobot/nautobot/pull/1057">#1057</a> - Added GitHub action to automatically push Docker images to <code>ghcr.io</code>.</li>
|
|
10393
10352
|
</ul>
|
|
10394
10353
|
<h2 id="v114-2021-10-04">v1.1.4 (2021-10-04)<a class="headerlink" href="#v114-2021-10-04" title="Permanent link">¶</a></h2>
|
|
10395
|
-
<h3 id="
|
|
10354
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
10396
10355
|
<ul>
|
|
10397
10356
|
<li><a href="https://github.com/nautobot/nautobot/issues/939">#939</a> - Nautobot views now default to <code>X-Frame-Options: DENY</code> rather than <code>X-Frame-Options: SAMEORIGIN</code>, with the exception of the rack-elevation API view (<code>/api/dcim/rack-elevation/</code>) which specifically requires <code>X-Frame-Options: SAMEORIGIN</code> for functional reasons.</li>
|
|
10398
10357
|
</ul>
|
|
10399
|
-
<h3 id="
|
|
10358
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10400
10359
|
<ul>
|
|
10401
10360
|
<li><a href="https://github.com/nautobot/nautobot/issues/623">#623</a> - Git repository sync logs now include the commit hash that was synchronized to.</li>
|
|
10402
10361
|
<li><a href="https://github.com/nautobot/nautobot/issues/728">#728</a> - Added <code>SOCIAL_AUTH_BACKEND_PREFIX</code> configuration setting to support custom authentication backends.</li>
|
|
10403
10362
|
<li><a href="https://github.com/nautobot/nautobot/issues/861">#861</a> - Bulk editing of devices can now update their site, rack, and rack-group assignments.</li>
|
|
10404
10363
|
</ul>
|
|
10405
|
-
<h3 id="
|
|
10364
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10406
10365
|
<ul>
|
|
10407
10366
|
<li><a href="https://github.com/nautobot/nautobot/issues/944">#944</a> - Jobs that commit changes to the database could not be invoked successfully from the <code>nautobot-server runjob</code> command.</li>
|
|
10408
10367
|
<li><a href="https://github.com/nautobot/nautobot/issues/955">#955</a> - REST API endpoint for syncing Git repositories was still checking for RQ workers instead of Celery workers.</li>
|
|
10409
10368
|
<li><a href="https://github.com/nautobot/nautobot/issues/969">#969</a> - IPv6 prefixes such as <code>::1/128</code> were not being treated correctly.</li>
|
|
10410
10369
|
</ul>
|
|
10411
|
-
<h3 id="
|
|
10370
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10412
10371
|
<ul>
|
|
10413
10372
|
<li><a href="https://github.com/nautobot/nautobot/pull/949/">#949</a> - Added documentation note about using <code>MAINTENANCE_MODE</code> in combination with LDAP.</li>
|
|
10414
10373
|
</ul>
|
|
10415
|
-
<h3 id="
|
|
10374
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10416
10375
|
<ul>
|
|
10417
10376
|
<li><a href="https://github.com/nautobot/nautobot/pull/956">#956</a> - Switched CI from Travis to GitHub Actions.</li>
|
|
10418
10377
|
<li><a href="https://github.com/nautobot/nautobot/pull/964">#964</a> - Updated README.md build status badge to show GitHub status.</li>
|
|
10419
10378
|
</ul>
|
|
10420
10379
|
<h2 id="v113-2021-09-13">v1.1.3 (2021-09-13)<a class="headerlink" href="#v113-2021-09-13" title="Permanent link">¶</a></h2>
|
|
10421
|
-
<h3 id="
|
|
10380
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
10422
10381
|
<ul>
|
|
10423
10382
|
<li><a href="https://github.com/nautobot/nautobot/pull/893">#893</a> - Bump Pillow dependency version from 8.2.0 to 8.2.3 to address numerous critical CVE advisories</li>
|
|
10424
10383
|
</ul>
|
|
10425
|
-
<h3 id="
|
|
10384
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10426
10385
|
<ul>
|
|
10427
10386
|
<li><a href="https://github.com/nautobot/nautobot/issues/652">#652</a> - Jobs REST API <code>run</code> endpoint now can look up ObjectVar references via a dictionary of parameters.</li>
|
|
10428
10387
|
<li><a href="https://github.com/nautobot/nautobot/issues/791">#791</a> - Added support for <code>NAUTOBOT_DOCKER_SKIP_INIT</code> variable to allow running the Docker container with a read-only database.</li>
|
|
10429
10388
|
</ul>
|
|
10430
|
-
<h3 id="
|
|
10389
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10431
10390
|
<ul>
|
|
10432
10391
|
<li><a href="https://github.com/nautobot/nautobot/issues/709">#709</a> - Computed fields can now have a blank <code>fallback_value</code>.</li>
|
|
10433
10392
|
<li><a href="https://github.com/nautobot/nautobot/pull/812">#812</a> - In the GraphiQL interface, the "Queries" dropdown now appears alongside the other GraphiQL interface buttons instead of appearing in the main Nautobot navigation bar.</li>
|
|
10434
10393
|
</ul>
|
|
10435
|
-
<h3 id="
|
|
10394
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10436
10395
|
<ul>
|
|
10437
10396
|
<li><a href="https://github.com/nautobot/nautobot/issues/464">#464</a> - Fixed GraphQL schema generation error when certain custom field names are used.</li>
|
|
10438
10397
|
<li><a href="https://github.com/nautobot/nautobot/issues/651">#651</a> - Fixed Jobs validation enforce schema consistently across UI and API.</li>
|
|
@@ -10443,7 +10402,7 @@
|
|
|
10443
10402
|
<li><a href="https://github.com/nautobot/nautobot/issues/818">#818</a> - Database health-check now reports as healthy even when in <code>MAINTENANCE_MODE</code>.</li>
|
|
10444
10403
|
<li><a href="https://github.com/nautobot/nautobot/issues/830">#830</a> - Fixed incorrect database migration introduced by #818.</li>
|
|
10445
10404
|
</ul>
|
|
10446
|
-
<h3 id="
|
|
10405
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
10447
10406
|
<ul>
|
|
10448
10407
|
<li><a href="https://github.com/nautobot/nautobot/issues/601">#601</a> - Developer documentation for advanced docker-compose use cases is now a separate file.</li>
|
|
10449
10408
|
<li><a href="https://github.com/nautobot/nautobot/pull/670">#670</a> - Clarified Jobs documentation regarding how to fail or abort a Job.</li>
|
|
@@ -10456,36 +10415,36 @@
|
|
|
10456
10415
|
<li><a href="https://github.com/nautobot/nautobot/pull/850">#850</a> - Added developer documentation around the installation and use of <code>mkdocs</code> to locally preview documentation changes.</li>
|
|
10457
10416
|
<li><a href="https://github.com/nautobot/nautobot/issues/856">#856</a> - Added more detailed user documentation on how to create an API token.</li>
|
|
10458
10417
|
</ul>
|
|
10459
|
-
<h3 id="
|
|
10418
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
10460
10419
|
<ul>
|
|
10461
10420
|
<li><a href="https://github.com/nautobot/nautobot/issues/11">#11</a> - Added tests to verify that plugin models can support webhooks if appropriately decorated with <code>@extras_features("webhooks")</code></li>
|
|
10462
10421
|
<li><a href="https://github.com/nautobot/nautobot/issues/809">#809</a> - Fixed docker-compose file <code>version</code> values to work correctly with older versions of docker-compose.</li>
|
|
10463
10422
|
</ul>
|
|
10464
10423
|
<h2 id="v112-2021-08-10">v1.1.2 (2021-08-10)<a class="headerlink" href="#v112-2021-08-10" title="Permanent link">¶</a></h2>
|
|
10465
|
-
<h3 id="
|
|
10424
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
10466
10425
|
<ul>
|
|
10467
10426
|
<li><a href="https://github.com/nautobot/nautobot/issues/723">#723</a> - Fixed power draw not providing a <code>UtilizationData</code> type for use in graphing power draw utilization</li>
|
|
10468
10427
|
<li><a href="https://github.com/nautobot/nautobot/issues/785">#785</a> - Fixed plugin loading error when using <code>final</code> Docker image.</li>
|
|
10469
10428
|
<li><a href="https://github.com/nautobot/nautobot/issues/786">#786</a> - Fixed <code>Unknown command: 'post_upgrade'</code> when using <code>final</code> Docker image.</li>
|
|
10470
10429
|
<li><a href="https://github.com/nautobot/nautobot/pull/789">#789</a> - Avoid a <code>NoReverseMatch</code> exception at startup time if an app or plugin defines a nav menu item with an invalid link reference.</li>
|
|
10471
10430
|
</ul>
|
|
10472
|
-
<h3 id="
|
|
10431
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
10473
10432
|
<ul>
|
|
10474
10433
|
<li><a href="https://github.com/nautobot/nautobot/pull/758">#758</a> - Added documentation about the Job <code>class_path</code> concept.</li>
|
|
10475
10434
|
<li><a href="https://github.com/nautobot/nautobot/pull/771">#771</a> - Added examples of various possible logging configurations.</li>
|
|
10476
10435
|
<li><a href="https://github.com/nautobot/nautobot/pull/773">#773</a> - Added documentation around enabling Prometheus metrics for database and caching backends.</li>
|
|
10477
10436
|
<li><a href="https://github.com/nautobot/nautobot/pull/782">#782</a> - Corrected documentation regarding the use of <code>docker-compose.override.yml</code></li>
|
|
10478
10437
|
</ul>
|
|
10479
|
-
<h3 id="
|
|
10438
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
10480
10439
|
<ul>
|
|
10481
10440
|
<li><a href="https://github.com/nautobot/nautobot/pull/742">#742</a> - The development environment now respects the setting of the <code>NAUTOBOT_DEBUG</code> environment variable if present.</li>
|
|
10482
10441
|
</ul>
|
|
10483
10442
|
<h2 id="v111-2021-08-05">v1.1.1 (2021-08-05)<a class="headerlink" href="#v111-2021-08-05" title="Permanent link">¶</a></h2>
|
|
10484
|
-
<h3 id="
|
|
10443
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
10485
10444
|
<ul>
|
|
10486
10445
|
<li><a href="https://github.com/nautobot/nautobot/issues/506">#506</a> - <code>nautobot-server</code> now detects and rejects the misconfiguration of setting <code>MAINTENANCE_MODE</code> while using database-backed session storage (<code>django.contrib.sessions.backends.db</code>)</li>
|
|
10487
10446
|
</ul>
|
|
10488
|
-
<h3 id="
|
|
10447
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
10489
10448
|
<ul>
|
|
10490
10449
|
<li><a href="https://github.com/nautobot/nautobot/issues/683">#683</a> - Fixed slug auto-construction when defining a new ComputedField.</li>
|
|
10491
10450
|
<li><a href="https://github.com/nautobot/nautobot/issues/727">#727</a> - Fixed broken REST API endpoint (<code>/api/extras/graphql-queries/<uuid>/run/</code>) for running saved GraphQL queries.</li>
|
|
@@ -10493,31 +10452,31 @@
|
|
|
10493
10452
|
<li><a href="https://github.com/nautobot/nautobot/issues/746">#746</a> - Fixed data serialization error when running Jobs that used <code>IPAddressVar</code>, <code>IPAddressWithMaskVar</code>, and/or <code>IPNetworkVar</code> variables.</li>
|
|
10494
10453
|
<li><a href="https://github.com/nautobot/nautobot/issues/759">#759</a> - Corrected backwards add/import links for Power Feed and Power Panel in navigation bar</li>
|
|
10495
10454
|
</ul>
|
|
10496
|
-
<h3 id="
|
|
10455
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
10497
10456
|
<ul>
|
|
10498
10457
|
<li><a href="https://github.com/nautobot/nautobot/pull/681">#681</a> - Added an example guide on how to use AWS S3 for hosting static files in production.</li>
|
|
10499
10458
|
<li><a href="https://github.com/nautobot/nautobot/issues/725">#725</a> - Added missing <code>http-keepalive = 1</code> to recommended <code>uswgi.ini</code> configuration.</li>
|
|
10500
10459
|
</ul>
|
|
10501
|
-
<h3 id="
|
|
10460
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
10502
10461
|
<ul>
|
|
10503
10462
|
<li><a href="https://github.com/nautobot/nautobot/issues/738">#738</a> - Added <code>*.env</code> (except <code>dev.env</code>) to <code>.gitignore</code> to prevent local environment variable files from accidentally being committed to Git</li>
|
|
10504
10463
|
</ul>
|
|
10505
10464
|
<h2 id="v110-2021-07-20">v1.1.0 (2021-07-20)<a class="headerlink" href="#v110-2021-07-20" title="Permanent link">¶</a></h2>
|
|
10506
|
-
<h3 id="
|
|
10465
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
10507
10466
|
<ul>
|
|
10508
10467
|
<li><a href="https://github.com/nautobot/nautobot/pull/717">#717</a> - Bump Pillow dependency version from 8.1.2 to 8.2.0 to address numerous critical CVE advisories</li>
|
|
10509
10468
|
</ul>
|
|
10510
|
-
<h3 id="
|
|
10469
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
10511
10470
|
<ul>
|
|
10512
10471
|
<li><a href="https://github.com/nautobot/nautobot/issues/372">#372</a> - Added support for displaying custom fields in tables used in object list views</li>
|
|
10513
10472
|
<li><a href="https://github.com/nautobot/nautobot/pull/620">#620</a> - Config context schemas can now be managed via Git repositories.</li>
|
|
10514
10473
|
</ul>
|
|
10515
|
-
<h3 id="
|
|
10474
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
10516
10475
|
<ul>
|
|
10517
10476
|
<li><a href="https://github.com/nautobot/nautobot/issues/684">#684</a> - Renamed <code>?opt_in_fields=</code> query param to <code>?include=</code></li>
|
|
10518
10477
|
<li><a href="https://github.com/nautobot/nautobot/issues/697">#697</a> - Added <code>CELERY_TASK_SOFT_TIME_LIMIT</code> to <code>settings.py</code> and lowered the default <code>CELERY_TASK_TIME_LIMIT</code> configuration.</li>
|
|
10519
10478
|
</ul>
|
|
10520
|
-
<h3 id="
|
|
10479
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
10521
10480
|
<ul>
|
|
10522
10481
|
<li><a href="https://github.com/nautobot/nautobot/issues/363">#363</a> - Fixed using S3 django-storages backend requires <code>USE_TZ=False</code></li>
|
|
10523
10482
|
<li><a href="https://github.com/nautobot/nautobot/issues/466">#466</a> - Fixed improper GraphQL schema generation on fields that can be blank but not null (such as <code>Interface.mode</code>)</li>
|
|
@@ -10533,7 +10492,7 @@
|
|
|
10533
10492
|
<li><a href="https://github.com/nautobot/nautobot/issues/703">#703</a> - Fixed direct execution of saved GraphQL queries containing double quotes</li>
|
|
10534
10493
|
<li><a href="https://github.com/nautobot/nautobot/issues/705">#705</a> - Fixed missing description field from detail view for computed fields</li>
|
|
10535
10494
|
</ul>
|
|
10536
|
-
<h3 id="
|
|
10495
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
10537
10496
|
<ul>
|
|
10538
10497
|
<li><a href="https://github.com/nautobot/nautobot/pull/675">#675</a> - Update MySQL unicode settings docs to be more visible</li>
|
|
10539
10498
|
<li><a href="https://github.com/nautobot/nautobot/issues/677">#677</a> - Revise LDAPS outdated documentation for ignoring TLS cert errors</li>
|
|
@@ -10541,12 +10500,12 @@
|
|
|
10541
10500
|
<li><a href="https://github.com/nautobot/nautobot/pull/692">#692</a> - Clarify plugin development docs on naming of file for custom Jinja2 filters</li>
|
|
10542
10501
|
</ul>
|
|
10543
10502
|
<h2 id="v110b2-2021-07-09">v1.1.0b2 (2021-07-09)<a class="headerlink" href="#v110b2-2021-07-09" title="Permanent link">¶</a></h2>
|
|
10544
|
-
<h3 id="
|
|
10503
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
10545
10504
|
<ul>
|
|
10546
10505
|
<li><a href="https://github.com/nautobot/nautobot/issues/599">#599</a> - Custom fields are now supported on <code>JobResult</code> objects</li>
|
|
10547
10506
|
<li><a href="https://github.com/nautobot/nautobot/pull/637">#637</a> - Implemented a <code>nautobot-server fix_custom_fields</code> command to manually purge stale custom field data</li>
|
|
10548
10507
|
</ul>
|
|
10549
|
-
<h3 id="
|
|
10508
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
10550
10509
|
<ul>
|
|
10551
10510
|
<li><a href="https://github.com/nautobot/nautobot/issues/495">#495</a> - Fixed search for partial IPv4 prefixes/aggregates not finding all matching objects</li>
|
|
10552
10511
|
<li><a href="https://github.com/nautobot/nautobot/issues/533">#533</a> - Custom field tasks are now run atomically to avoid stale field data from being saved on objects.</li>
|
|
@@ -10555,7 +10514,7 @@
|
|
|
10555
10514
|
<li><a href="https://github.com/nautobot/nautobot/pull/626">#626</a> - Added prefix <code>NAUTOBOT_</code> in <code>override.env</code> example inside of <code>docker-entrypoint.sh</code></li>
|
|
10556
10515
|
<li><a href="https://github.com/nautobot/nautobot/issues/661">#661</a> - Fixed <code>computed_fields</code> key not being included in API response for devices when using <code>include</code> (for opt-in fields)</li>
|
|
10557
10516
|
</ul>
|
|
10558
|
-
<h3 id="
|
|
10517
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
10559
10518
|
<ul>
|
|
10560
10519
|
<li><a href="https://github.com/nautobot/nautobot/issues/600">#600</a> - The <code>invoke migrate</code> step is now included in the development getting started guide for Docker workflows</li>
|
|
10561
10520
|
<li><a href="https://github.com/nautobot/nautobot/pull/617">#617</a> - Added extra comments to <code>uwsgi.ini</code> config to help with load balancer deployments in Nautobot services documentation</li>
|
|
@@ -10565,7 +10524,7 @@
|
|
|
10565
10524
|
<li><a href="https://github.com/nautobot/nautobot/pull/667">#667</a> - Fixed various outdated/incorrect places in the documentation for v1.1.0 release.</li>
|
|
10566
10525
|
</ul>
|
|
10567
10526
|
<h2 id="v110b1-2021-07-02">v1.1.0b1 (2021-07-02)<a class="headerlink" href="#v110b1-2021-07-02" title="Permanent link">¶</a></h2>
|
|
10568
|
-
<h3 id="
|
|
10527
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
10569
10528
|
<ul>
|
|
10570
10529
|
<li><a href="https://github.com/nautobot/nautobot/issues/3">#3</a> - GraphQL queries can now be saved for later execution</li>
|
|
10571
10530
|
<li><a href="https://github.com/nautobot/nautobot/issues/17">#17</a> - MySQL 8.x is now fully supported as a database backend</li>
|
|
@@ -10577,21 +10536,21 @@
|
|
|
10577
10536
|
<li><a href="https://github.com/nautobot/nautobot/pull/561">#561</a> - Added autodetection of <code>mime_type</code> on <code>export_templates</code> provided by Git datasources</li>
|
|
10578
10537
|
<li><a href="https://github.com/nautobot/nautobot/pull/636">#636</a> - Added custom fields to <code>JobResult</code> model, with minor changes to job result detail page</li>
|
|
10579
10538
|
</ul>
|
|
10580
|
-
<h3 id="
|
|
10539
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
10581
10540
|
<ul>
|
|
10582
10541
|
<li><a href="https://github.com/nautobot/nautobot/issues/431">#431</a> - <code>ConfigContext</code> and <code>ExportTemplate</code> records now must have unique <code>name</code> values. This was always the case in NetBox, but was inadvertently un-enforced in earlier versions of Nautobot.</li>
|
|
10583
10542
|
</ul>
|
|
10584
|
-
<h3 id="
|
|
10543
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
10585
10544
|
<ul>
|
|
10586
10545
|
<li><a href="https://github.com/nautobot/nautobot/issues/460">#460</a> - Deleting a record now deletes any associated <code>RelationshipAssociation</code> records</li>
|
|
10587
10546
|
<li><a href="https://github.com/nautobot/nautobot/issues/494">#494</a> - Objects with <code>status</code> fields now emit limited choices correctly when performing <code>OPTIONS</code> metadata API requests</li>
|
|
10588
10547
|
</ul>
|
|
10589
|
-
<h3 id="
|
|
10548
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
10590
10549
|
<ul>
|
|
10591
10550
|
<li><a href="https://github.com/nautobot/nautobot/issues/10">#10</a> - Added a new "Getting Started in the Web UI" section to the documentation to help new users begin learning how to use Nautobot.</li>
|
|
10592
10551
|
<li><a href="https://github.com/nautobot/nautobot/pull/618">#618</a> - Fixed typo in release-notes</li>
|
|
10593
10552
|
</ul>
|
|
10594
|
-
<h3 id="
|
|
10553
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
10595
10554
|
<ul>
|
|
10596
10555
|
<li><a href="https://github.com/nautobot/nautobot/issues/602">#602</a> - Fixed incorrect requirement to install <code>toml</code> Python library before running <code>invoke</code> tasks</li>
|
|
10597
10556
|
</ul>
|
|
@@ -10741,7 +10700,7 @@
|
|
|
10741
10700
|
<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>
|
|
10742
10701
|
|
|
10743
10702
|
|
|
10744
|
-
<script src="../assets/javascripts/bundle.
|
|
10703
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
10745
10704
|
|
|
10746
10705
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10747
10706
|
|