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
|
|
|
@@ -9032,54 +8990,54 @@
|
|
|
9032
8990
|
<ul class="md-nav__list">
|
|
9033
8991
|
|
|
9034
8992
|
<li class="md-nav__item">
|
|
9035
|
-
<a href="#security
|
|
8993
|
+
<a href="#security" class="md-nav__link">
|
|
9036
8994
|
<span class="md-ellipsis">
|
|
9037
|
-
Security
|
|
8995
|
+
Security
|
|
9038
8996
|
</span>
|
|
9039
8997
|
</a>
|
|
9040
8998
|
|
|
9041
8999
|
</li>
|
|
9042
9000
|
|
|
9043
9001
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9002
|
+
<a href="#added_1" class="md-nav__link">
|
|
9045
9003
|
<span class="md-ellipsis">
|
|
9046
|
-
Added
|
|
9004
|
+
Added
|
|
9047
9005
|
</span>
|
|
9048
9006
|
</a>
|
|
9049
9007
|
|
|
9050
9008
|
</li>
|
|
9051
9009
|
|
|
9052
9010
|
<li class="md-nav__item">
|
|
9053
|
-
<a href="#
|
|
9011
|
+
<a href="#changed_1" class="md-nav__link">
|
|
9054
9012
|
<span class="md-ellipsis">
|
|
9055
|
-
Changed
|
|
9013
|
+
Changed
|
|
9056
9014
|
</span>
|
|
9057
9015
|
</a>
|
|
9058
9016
|
|
|
9059
9017
|
</li>
|
|
9060
9018
|
|
|
9061
9019
|
<li class="md-nav__item">
|
|
9062
|
-
<a href="#fixed
|
|
9020
|
+
<a href="#fixed" class="md-nav__link">
|
|
9063
9021
|
<span class="md-ellipsis">
|
|
9064
|
-
Fixed
|
|
9022
|
+
Fixed
|
|
9065
9023
|
</span>
|
|
9066
9024
|
</a>
|
|
9067
9025
|
|
|
9068
9026
|
</li>
|
|
9069
9027
|
|
|
9070
9028
|
<li class="md-nav__item">
|
|
9071
|
-
<a href="#documentation
|
|
9029
|
+
<a href="#documentation" class="md-nav__link">
|
|
9072
9030
|
<span class="md-ellipsis">
|
|
9073
|
-
Documentation
|
|
9031
|
+
Documentation
|
|
9074
9032
|
</span>
|
|
9075
9033
|
</a>
|
|
9076
9034
|
|
|
9077
9035
|
</li>
|
|
9078
9036
|
|
|
9079
9037
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#housekeeping
|
|
9038
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
9081
9039
|
<span class="md-ellipsis">
|
|
9082
|
-
Housekeeping
|
|
9040
|
+
Housekeeping
|
|
9083
9041
|
</span>
|
|
9084
9042
|
</a>
|
|
9085
9043
|
|
|
@@ -9101,54 +9059,54 @@
|
|
|
9101
9059
|
<ul class="md-nav__list">
|
|
9102
9060
|
|
|
9103
9061
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9062
|
+
<a href="#added_2" class="md-nav__link">
|
|
9105
9063
|
<span class="md-ellipsis">
|
|
9106
|
-
Added
|
|
9064
|
+
Added
|
|
9107
9065
|
</span>
|
|
9108
9066
|
</a>
|
|
9109
9067
|
|
|
9110
9068
|
</li>
|
|
9111
9069
|
|
|
9112
9070
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9071
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9114
9072
|
<span class="md-ellipsis">
|
|
9115
|
-
Changed
|
|
9073
|
+
Changed
|
|
9116
9074
|
</span>
|
|
9117
9075
|
</a>
|
|
9118
9076
|
|
|
9119
9077
|
</li>
|
|
9120
9078
|
|
|
9121
9079
|
<li class="md-nav__item">
|
|
9122
|
-
<a href="#
|
|
9080
|
+
<a href="#removed_1" class="md-nav__link">
|
|
9123
9081
|
<span class="md-ellipsis">
|
|
9124
|
-
Removed
|
|
9082
|
+
Removed
|
|
9125
9083
|
</span>
|
|
9126
9084
|
</a>
|
|
9127
9085
|
|
|
9128
9086
|
</li>
|
|
9129
9087
|
|
|
9130
9088
|
<li class="md-nav__item">
|
|
9131
|
-
<a href="#
|
|
9089
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9132
9090
|
<span class="md-ellipsis">
|
|
9133
|
-
Fixed
|
|
9091
|
+
Fixed
|
|
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="#documentation_1" class="md-nav__link">
|
|
9141
9099
|
<span class="md-ellipsis">
|
|
9142
|
-
Documentation
|
|
9100
|
+
Documentation
|
|
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="#housekeeping_1" class="md-nav__link">
|
|
9150
9108
|
<span class="md-ellipsis">
|
|
9151
|
-
Housekeeping
|
|
9109
|
+
Housekeeping
|
|
9152
9110
|
</span>
|
|
9153
9111
|
</a>
|
|
9154
9112
|
|
|
@@ -9170,36 +9128,36 @@
|
|
|
9170
9128
|
<ul class="md-nav__list">
|
|
9171
9129
|
|
|
9172
9130
|
<li class="md-nav__item">
|
|
9173
|
-
<a href="#
|
|
9131
|
+
<a href="#added_3" class="md-nav__link">
|
|
9174
9132
|
<span class="md-ellipsis">
|
|
9175
|
-
Added
|
|
9133
|
+
Added
|
|
9176
9134
|
</span>
|
|
9177
9135
|
</a>
|
|
9178
9136
|
|
|
9179
9137
|
</li>
|
|
9180
9138
|
|
|
9181
9139
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9140
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9183
9141
|
<span class="md-ellipsis">
|
|
9184
|
-
Fixed
|
|
9142
|
+
Fixed
|
|
9185
9143
|
</span>
|
|
9186
9144
|
</a>
|
|
9187
9145
|
|
|
9188
9146
|
</li>
|
|
9189
9147
|
|
|
9190
9148
|
<li class="md-nav__item">
|
|
9191
|
-
<a href="#
|
|
9149
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9192
9150
|
<span class="md-ellipsis">
|
|
9193
|
-
Documentation
|
|
9151
|
+
Documentation
|
|
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="#housekeeping_2" class="md-nav__link">
|
|
9201
9159
|
<span class="md-ellipsis">
|
|
9202
|
-
Housekeeping
|
|
9160
|
+
Housekeeping
|
|
9203
9161
|
</span>
|
|
9204
9162
|
</a>
|
|
9205
9163
|
|
|
@@ -9221,25 +9179,25 @@
|
|
|
9221
9179
|
<ul class="md-nav__list">
|
|
9222
9180
|
|
|
9223
9181
|
<li class="md-nav__item">
|
|
9224
|
-
<a href="#
|
|
9182
|
+
<a href="#added_4" class="md-nav__link">
|
|
9225
9183
|
<span class="md-ellipsis">
|
|
9226
|
-
Added
|
|
9184
|
+
Added
|
|
9227
9185
|
</span>
|
|
9228
9186
|
</a>
|
|
9229
9187
|
|
|
9230
9188
|
</li>
|
|
9231
9189
|
|
|
9232
9190
|
<li class="md-nav__item">
|
|
9233
|
-
<a href="#
|
|
9191
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9234
9192
|
<span class="md-ellipsis">
|
|
9235
|
-
Changed
|
|
9193
|
+
Changed
|
|
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="#fixed_3" class="md-nav__link">
|
|
9243
9201
|
<span class="md-ellipsis">
|
|
9244
9202
|
Fixed
|
|
9245
9203
|
</span>
|
|
@@ -9248,9 +9206,9 @@
|
|
|
9248
9206
|
</li>
|
|
9249
9207
|
|
|
9250
9208
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#dependencies
|
|
9209
|
+
<a href="#dependencies" class="md-nav__link">
|
|
9252
9210
|
<span class="md-ellipsis">
|
|
9253
|
-
Dependencies
|
|
9211
|
+
Dependencies
|
|
9254
9212
|
</span>
|
|
9255
9213
|
</a>
|
|
9256
9214
|
|
|
@@ -9272,45 +9230,45 @@
|
|
|
9272
9230
|
<ul class="md-nav__list">
|
|
9273
9231
|
|
|
9274
9232
|
<li class="md-nav__item">
|
|
9275
|
-
<a href="#
|
|
9233
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9276
9234
|
<span class="md-ellipsis">
|
|
9277
|
-
Changed
|
|
9235
|
+
Changed
|
|
9278
9236
|
</span>
|
|
9279
9237
|
</a>
|
|
9280
9238
|
|
|
9281
9239
|
</li>
|
|
9282
9240
|
|
|
9283
9241
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9242
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9285
9243
|
<span class="md-ellipsis">
|
|
9286
|
-
Fixed
|
|
9244
|
+
Fixed
|
|
9287
9245
|
</span>
|
|
9288
9246
|
</a>
|
|
9289
9247
|
|
|
9290
9248
|
</li>
|
|
9291
9249
|
|
|
9292
9250
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9251
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9294
9252
|
<span class="md-ellipsis">
|
|
9295
|
-
Dependencies
|
|
9253
|
+
Dependencies
|
|
9296
9254
|
</span>
|
|
9297
9255
|
</a>
|
|
9298
9256
|
|
|
9299
9257
|
</li>
|
|
9300
9258
|
|
|
9301
9259
|
<li class="md-nav__item">
|
|
9302
|
-
<a href="#
|
|
9260
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9303
9261
|
<span class="md-ellipsis">
|
|
9304
|
-
Documentation
|
|
9262
|
+
Documentation
|
|
9305
9263
|
</span>
|
|
9306
9264
|
</a>
|
|
9307
9265
|
|
|
9308
9266
|
</li>
|
|
9309
9267
|
|
|
9310
9268
|
<li class="md-nav__item">
|
|
9311
|
-
<a href="#
|
|
9269
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9312
9270
|
<span class="md-ellipsis">
|
|
9313
|
-
Housekeeping
|
|
9271
|
+
Housekeeping
|
|
9314
9272
|
</span>
|
|
9315
9273
|
</a>
|
|
9316
9274
|
|
|
@@ -9332,54 +9290,54 @@
|
|
|
9332
9290
|
<ul class="md-nav__list">
|
|
9333
9291
|
|
|
9334
9292
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9293
|
+
<a href="#added_5" class="md-nav__link">
|
|
9336
9294
|
<span class="md-ellipsis">
|
|
9337
|
-
Added
|
|
9295
|
+
Added
|
|
9338
9296
|
</span>
|
|
9339
9297
|
</a>
|
|
9340
9298
|
|
|
9341
9299
|
</li>
|
|
9342
9300
|
|
|
9343
9301
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9302
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9345
9303
|
<span class="md-ellipsis">
|
|
9346
|
-
Changed
|
|
9304
|
+
Changed
|
|
9347
9305
|
</span>
|
|
9348
9306
|
</a>
|
|
9349
9307
|
|
|
9350
9308
|
</li>
|
|
9351
9309
|
|
|
9352
9310
|
<li class="md-nav__item">
|
|
9353
|
-
<a href="#
|
|
9311
|
+
<a href="#removed_2" class="md-nav__link">
|
|
9354
9312
|
<span class="md-ellipsis">
|
|
9355
|
-
Removed
|
|
9313
|
+
Removed
|
|
9356
9314
|
</span>
|
|
9357
9315
|
</a>
|
|
9358
9316
|
|
|
9359
9317
|
</li>
|
|
9360
9318
|
|
|
9361
9319
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9320
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9363
9321
|
<span class="md-ellipsis">
|
|
9364
|
-
Fixed
|
|
9322
|
+
Fixed
|
|
9365
9323
|
</span>
|
|
9366
9324
|
</a>
|
|
9367
9325
|
|
|
9368
9326
|
</li>
|
|
9369
9327
|
|
|
9370
9328
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9329
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9372
9330
|
<span class="md-ellipsis">
|
|
9373
|
-
Documentation
|
|
9331
|
+
Documentation
|
|
9374
9332
|
</span>
|
|
9375
9333
|
</a>
|
|
9376
9334
|
|
|
9377
9335
|
</li>
|
|
9378
9336
|
|
|
9379
9337
|
<li class="md-nav__item">
|
|
9380
|
-
<a href="#
|
|
9338
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9381
9339
|
<span class="md-ellipsis">
|
|
9382
|
-
Housekeeping
|
|
9340
|
+
Housekeeping
|
|
9383
9341
|
</span>
|
|
9384
9342
|
</a>
|
|
9385
9343
|
|
|
@@ -9401,54 +9359,54 @@
|
|
|
9401
9359
|
<ul class="md-nav__list">
|
|
9402
9360
|
|
|
9403
9361
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9362
|
+
<a href="#added_6" class="md-nav__link">
|
|
9405
9363
|
<span class="md-ellipsis">
|
|
9406
|
-
Added
|
|
9364
|
+
Added
|
|
9407
9365
|
</span>
|
|
9408
9366
|
</a>
|
|
9409
9367
|
|
|
9410
9368
|
</li>
|
|
9411
9369
|
|
|
9412
9370
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9371
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9414
9372
|
<span class="md-ellipsis">
|
|
9415
|
-
Changed
|
|
9373
|
+
Changed
|
|
9416
9374
|
</span>
|
|
9417
9375
|
</a>
|
|
9418
9376
|
|
|
9419
9377
|
</li>
|
|
9420
9378
|
|
|
9421
9379
|
<li class="md-nav__item">
|
|
9422
|
-
<a href="#
|
|
9380
|
+
<a href="#removed_3" class="md-nav__link">
|
|
9423
9381
|
<span class="md-ellipsis">
|
|
9424
|
-
Removed
|
|
9382
|
+
Removed
|
|
9425
9383
|
</span>
|
|
9426
9384
|
</a>
|
|
9427
9385
|
|
|
9428
9386
|
</li>
|
|
9429
9387
|
|
|
9430
9388
|
<li class="md-nav__item">
|
|
9431
|
-
<a href="#
|
|
9389
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9432
9390
|
<span class="md-ellipsis">
|
|
9433
|
-
Fixed
|
|
9391
|
+
Fixed
|
|
9434
9392
|
</span>
|
|
9435
9393
|
</a>
|
|
9436
9394
|
|
|
9437
9395
|
</li>
|
|
9438
9396
|
|
|
9439
9397
|
<li class="md-nav__item">
|
|
9440
|
-
<a href="#
|
|
9398
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9441
9399
|
<span class="md-ellipsis">
|
|
9442
|
-
Documentation
|
|
9400
|
+
Documentation
|
|
9443
9401
|
</span>
|
|
9444
9402
|
</a>
|
|
9445
9403
|
|
|
9446
9404
|
</li>
|
|
9447
9405
|
|
|
9448
9406
|
<li class="md-nav__item">
|
|
9449
|
-
<a href="#housekeeeping
|
|
9407
|
+
<a href="#housekeeeping" class="md-nav__link">
|
|
9450
9408
|
<span class="md-ellipsis">
|
|
9451
|
-
Housekeeeping
|
|
9409
|
+
Housekeeeping
|
|
9452
9410
|
</span>
|
|
9453
9411
|
</a>
|
|
9454
9412
|
|
|
@@ -9470,9 +9428,9 @@
|
|
|
9470
9428
|
<ul class="md-nav__list">
|
|
9471
9429
|
|
|
9472
9430
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9431
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9474
9432
|
<span class="md-ellipsis">
|
|
9475
|
-
Fixed
|
|
9433
|
+
Fixed
|
|
9476
9434
|
</span>
|
|
9477
9435
|
</a>
|
|
9478
9436
|
|
|
@@ -10195,54 +10153,54 @@
|
|
|
10195
10153
|
<ul class="md-nav__list">
|
|
10196
10154
|
|
|
10197
10155
|
<li class="md-nav__item">
|
|
10198
|
-
<a href="#security
|
|
10156
|
+
<a href="#security" class="md-nav__link">
|
|
10199
10157
|
<span class="md-ellipsis">
|
|
10200
|
-
Security
|
|
10158
|
+
Security
|
|
10201
10159
|
</span>
|
|
10202
10160
|
</a>
|
|
10203
10161
|
|
|
10204
10162
|
</li>
|
|
10205
10163
|
|
|
10206
10164
|
<li class="md-nav__item">
|
|
10207
|
-
<a href="#
|
|
10165
|
+
<a href="#added_1" class="md-nav__link">
|
|
10208
10166
|
<span class="md-ellipsis">
|
|
10209
|
-
Added
|
|
10167
|
+
Added
|
|
10210
10168
|
</span>
|
|
10211
10169
|
</a>
|
|
10212
10170
|
|
|
10213
10171
|
</li>
|
|
10214
10172
|
|
|
10215
10173
|
<li class="md-nav__item">
|
|
10216
|
-
<a href="#
|
|
10174
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10217
10175
|
<span class="md-ellipsis">
|
|
10218
|
-
Changed
|
|
10176
|
+
Changed
|
|
10219
10177
|
</span>
|
|
10220
10178
|
</a>
|
|
10221
10179
|
|
|
10222
10180
|
</li>
|
|
10223
10181
|
|
|
10224
10182
|
<li class="md-nav__item">
|
|
10225
|
-
<a href="#fixed
|
|
10183
|
+
<a href="#fixed" class="md-nav__link">
|
|
10226
10184
|
<span class="md-ellipsis">
|
|
10227
|
-
Fixed
|
|
10185
|
+
Fixed
|
|
10228
10186
|
</span>
|
|
10229
10187
|
</a>
|
|
10230
10188
|
|
|
10231
10189
|
</li>
|
|
10232
10190
|
|
|
10233
10191
|
<li class="md-nav__item">
|
|
10234
|
-
<a href="#documentation
|
|
10192
|
+
<a href="#documentation" class="md-nav__link">
|
|
10235
10193
|
<span class="md-ellipsis">
|
|
10236
|
-
Documentation
|
|
10194
|
+
Documentation
|
|
10237
10195
|
</span>
|
|
10238
10196
|
</a>
|
|
10239
10197
|
|
|
10240
10198
|
</li>
|
|
10241
10199
|
|
|
10242
10200
|
<li class="md-nav__item">
|
|
10243
|
-
<a href="#housekeeping
|
|
10201
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10244
10202
|
<span class="md-ellipsis">
|
|
10245
|
-
Housekeeping
|
|
10203
|
+
Housekeeping
|
|
10246
10204
|
</span>
|
|
10247
10205
|
</a>
|
|
10248
10206
|
|
|
@@ -10264,54 +10222,54 @@
|
|
|
10264
10222
|
<ul class="md-nav__list">
|
|
10265
10223
|
|
|
10266
10224
|
<li class="md-nav__item">
|
|
10267
|
-
<a href="#
|
|
10225
|
+
<a href="#added_2" class="md-nav__link">
|
|
10268
10226
|
<span class="md-ellipsis">
|
|
10269
|
-
Added
|
|
10227
|
+
Added
|
|
10270
10228
|
</span>
|
|
10271
10229
|
</a>
|
|
10272
10230
|
|
|
10273
10231
|
</li>
|
|
10274
10232
|
|
|
10275
10233
|
<li class="md-nav__item">
|
|
10276
|
-
<a href="#
|
|
10234
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10277
10235
|
<span class="md-ellipsis">
|
|
10278
|
-
Changed
|
|
10236
|
+
Changed
|
|
10279
10237
|
</span>
|
|
10280
10238
|
</a>
|
|
10281
10239
|
|
|
10282
10240
|
</li>
|
|
10283
10241
|
|
|
10284
10242
|
<li class="md-nav__item">
|
|
10285
|
-
<a href="#
|
|
10243
|
+
<a href="#removed_1" class="md-nav__link">
|
|
10286
10244
|
<span class="md-ellipsis">
|
|
10287
|
-
Removed
|
|
10245
|
+
Removed
|
|
10288
10246
|
</span>
|
|
10289
10247
|
</a>
|
|
10290
10248
|
|
|
10291
10249
|
</li>
|
|
10292
10250
|
|
|
10293
10251
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#
|
|
10252
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10295
10253
|
<span class="md-ellipsis">
|
|
10296
|
-
Fixed
|
|
10254
|
+
Fixed
|
|
10297
10255
|
</span>
|
|
10298
10256
|
</a>
|
|
10299
10257
|
|
|
10300
10258
|
</li>
|
|
10301
10259
|
|
|
10302
10260
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10261
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10304
10262
|
<span class="md-ellipsis">
|
|
10305
|
-
Documentation
|
|
10263
|
+
Documentation
|
|
10306
10264
|
</span>
|
|
10307
10265
|
</a>
|
|
10308
10266
|
|
|
10309
10267
|
</li>
|
|
10310
10268
|
|
|
10311
10269
|
<li class="md-nav__item">
|
|
10312
|
-
<a href="#
|
|
10270
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10313
10271
|
<span class="md-ellipsis">
|
|
10314
|
-
Housekeeping
|
|
10272
|
+
Housekeeping
|
|
10315
10273
|
</span>
|
|
10316
10274
|
</a>
|
|
10317
10275
|
|
|
@@ -10333,36 +10291,36 @@
|
|
|
10333
10291
|
<ul class="md-nav__list">
|
|
10334
10292
|
|
|
10335
10293
|
<li class="md-nav__item">
|
|
10336
|
-
<a href="#
|
|
10294
|
+
<a href="#added_3" class="md-nav__link">
|
|
10337
10295
|
<span class="md-ellipsis">
|
|
10338
|
-
Added
|
|
10296
|
+
Added
|
|
10339
10297
|
</span>
|
|
10340
10298
|
</a>
|
|
10341
10299
|
|
|
10342
10300
|
</li>
|
|
10343
10301
|
|
|
10344
10302
|
<li class="md-nav__item">
|
|
10345
|
-
<a href="#
|
|
10303
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10346
10304
|
<span class="md-ellipsis">
|
|
10347
|
-
Fixed
|
|
10305
|
+
Fixed
|
|
10348
10306
|
</span>
|
|
10349
10307
|
</a>
|
|
10350
10308
|
|
|
10351
10309
|
</li>
|
|
10352
10310
|
|
|
10353
10311
|
<li class="md-nav__item">
|
|
10354
|
-
<a href="#
|
|
10312
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10355
10313
|
<span class="md-ellipsis">
|
|
10356
|
-
Documentation
|
|
10314
|
+
Documentation
|
|
10357
10315
|
</span>
|
|
10358
10316
|
</a>
|
|
10359
10317
|
|
|
10360
10318
|
</li>
|
|
10361
10319
|
|
|
10362
10320
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#
|
|
10321
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10364
10322
|
<span class="md-ellipsis">
|
|
10365
|
-
Housekeeping
|
|
10323
|
+
Housekeeping
|
|
10366
10324
|
</span>
|
|
10367
10325
|
</a>
|
|
10368
10326
|
|
|
@@ -10384,25 +10342,25 @@
|
|
|
10384
10342
|
<ul class="md-nav__list">
|
|
10385
10343
|
|
|
10386
10344
|
<li class="md-nav__item">
|
|
10387
|
-
<a href="#
|
|
10345
|
+
<a href="#added_4" class="md-nav__link">
|
|
10388
10346
|
<span class="md-ellipsis">
|
|
10389
|
-
Added
|
|
10347
|
+
Added
|
|
10390
10348
|
</span>
|
|
10391
10349
|
</a>
|
|
10392
10350
|
|
|
10393
10351
|
</li>
|
|
10394
10352
|
|
|
10395
10353
|
<li class="md-nav__item">
|
|
10396
|
-
<a href="#
|
|
10354
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10397
10355
|
<span class="md-ellipsis">
|
|
10398
|
-
Changed
|
|
10356
|
+
Changed
|
|
10399
10357
|
</span>
|
|
10400
10358
|
</a>
|
|
10401
10359
|
|
|
10402
10360
|
</li>
|
|
10403
10361
|
|
|
10404
10362
|
<li class="md-nav__item">
|
|
10405
|
-
<a href="#
|
|
10363
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10406
10364
|
<span class="md-ellipsis">
|
|
10407
10365
|
Fixed
|
|
10408
10366
|
</span>
|
|
@@ -10411,9 +10369,9 @@
|
|
|
10411
10369
|
</li>
|
|
10412
10370
|
|
|
10413
10371
|
<li class="md-nav__item">
|
|
10414
|
-
<a href="#dependencies
|
|
10372
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10415
10373
|
<span class="md-ellipsis">
|
|
10416
|
-
Dependencies
|
|
10374
|
+
Dependencies
|
|
10417
10375
|
</span>
|
|
10418
10376
|
</a>
|
|
10419
10377
|
|
|
@@ -10435,45 +10393,45 @@
|
|
|
10435
10393
|
<ul class="md-nav__list">
|
|
10436
10394
|
|
|
10437
10395
|
<li class="md-nav__item">
|
|
10438
|
-
<a href="#
|
|
10396
|
+
<a href="#changed_4" class="md-nav__link">
|
|
10439
10397
|
<span class="md-ellipsis">
|
|
10440
|
-
Changed
|
|
10398
|
+
Changed
|
|
10441
10399
|
</span>
|
|
10442
10400
|
</a>
|
|
10443
10401
|
|
|
10444
10402
|
</li>
|
|
10445
10403
|
|
|
10446
10404
|
<li class="md-nav__item">
|
|
10447
|
-
<a href="#
|
|
10405
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10448
10406
|
<span class="md-ellipsis">
|
|
10449
|
-
Fixed
|
|
10407
|
+
Fixed
|
|
10450
10408
|
</span>
|
|
10451
10409
|
</a>
|
|
10452
10410
|
|
|
10453
10411
|
</li>
|
|
10454
10412
|
|
|
10455
10413
|
<li class="md-nav__item">
|
|
10456
|
-
<a href="#
|
|
10414
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10457
10415
|
<span class="md-ellipsis">
|
|
10458
|
-
Dependencies
|
|
10416
|
+
Dependencies
|
|
10459
10417
|
</span>
|
|
10460
10418
|
</a>
|
|
10461
10419
|
|
|
10462
10420
|
</li>
|
|
10463
10421
|
|
|
10464
10422
|
<li class="md-nav__item">
|
|
10465
|
-
<a href="#
|
|
10423
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10466
10424
|
<span class="md-ellipsis">
|
|
10467
|
-
Documentation
|
|
10425
|
+
Documentation
|
|
10468
10426
|
</span>
|
|
10469
10427
|
</a>
|
|
10470
10428
|
|
|
10471
10429
|
</li>
|
|
10472
10430
|
|
|
10473
10431
|
<li class="md-nav__item">
|
|
10474
|
-
<a href="#
|
|
10432
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10475
10433
|
<span class="md-ellipsis">
|
|
10476
|
-
Housekeeping
|
|
10434
|
+
Housekeeping
|
|
10477
10435
|
</span>
|
|
10478
10436
|
</a>
|
|
10479
10437
|
|
|
@@ -10495,54 +10453,54 @@
|
|
|
10495
10453
|
<ul class="md-nav__list">
|
|
10496
10454
|
|
|
10497
10455
|
<li class="md-nav__item">
|
|
10498
|
-
<a href="#
|
|
10456
|
+
<a href="#added_5" class="md-nav__link">
|
|
10499
10457
|
<span class="md-ellipsis">
|
|
10500
|
-
Added
|
|
10458
|
+
Added
|
|
10501
10459
|
</span>
|
|
10502
10460
|
</a>
|
|
10503
10461
|
|
|
10504
10462
|
</li>
|
|
10505
10463
|
|
|
10506
10464
|
<li class="md-nav__item">
|
|
10507
|
-
<a href="#
|
|
10465
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10508
10466
|
<span class="md-ellipsis">
|
|
10509
|
-
Changed
|
|
10467
|
+
Changed
|
|
10510
10468
|
</span>
|
|
10511
10469
|
</a>
|
|
10512
10470
|
|
|
10513
10471
|
</li>
|
|
10514
10472
|
|
|
10515
10473
|
<li class="md-nav__item">
|
|
10516
|
-
<a href="#
|
|
10474
|
+
<a href="#removed_2" class="md-nav__link">
|
|
10517
10475
|
<span class="md-ellipsis">
|
|
10518
|
-
Removed
|
|
10476
|
+
Removed
|
|
10519
10477
|
</span>
|
|
10520
10478
|
</a>
|
|
10521
10479
|
|
|
10522
10480
|
</li>
|
|
10523
10481
|
|
|
10524
10482
|
<li class="md-nav__item">
|
|
10525
|
-
<a href="#
|
|
10483
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10526
10484
|
<span class="md-ellipsis">
|
|
10527
|
-
Fixed
|
|
10485
|
+
Fixed
|
|
10528
10486
|
</span>
|
|
10529
10487
|
</a>
|
|
10530
10488
|
|
|
10531
10489
|
</li>
|
|
10532
10490
|
|
|
10533
10491
|
<li class="md-nav__item">
|
|
10534
|
-
<a href="#
|
|
10492
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
10535
10493
|
<span class="md-ellipsis">
|
|
10536
|
-
Documentation
|
|
10494
|
+
Documentation
|
|
10537
10495
|
</span>
|
|
10538
10496
|
</a>
|
|
10539
10497
|
|
|
10540
10498
|
</li>
|
|
10541
10499
|
|
|
10542
10500
|
<li class="md-nav__item">
|
|
10543
|
-
<a href="#
|
|
10501
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
10544
10502
|
<span class="md-ellipsis">
|
|
10545
|
-
Housekeeping
|
|
10503
|
+
Housekeeping
|
|
10546
10504
|
</span>
|
|
10547
10505
|
</a>
|
|
10548
10506
|
|
|
@@ -10564,54 +10522,54 @@
|
|
|
10564
10522
|
<ul class="md-nav__list">
|
|
10565
10523
|
|
|
10566
10524
|
<li class="md-nav__item">
|
|
10567
|
-
<a href="#
|
|
10525
|
+
<a href="#added_6" class="md-nav__link">
|
|
10568
10526
|
<span class="md-ellipsis">
|
|
10569
|
-
Added
|
|
10527
|
+
Added
|
|
10570
10528
|
</span>
|
|
10571
10529
|
</a>
|
|
10572
10530
|
|
|
10573
10531
|
</li>
|
|
10574
10532
|
|
|
10575
10533
|
<li class="md-nav__item">
|
|
10576
|
-
<a href="#
|
|
10534
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10577
10535
|
<span class="md-ellipsis">
|
|
10578
|
-
Changed
|
|
10536
|
+
Changed
|
|
10579
10537
|
</span>
|
|
10580
10538
|
</a>
|
|
10581
10539
|
|
|
10582
10540
|
</li>
|
|
10583
10541
|
|
|
10584
10542
|
<li class="md-nav__item">
|
|
10585
|
-
<a href="#
|
|
10543
|
+
<a href="#removed_3" class="md-nav__link">
|
|
10586
10544
|
<span class="md-ellipsis">
|
|
10587
|
-
Removed
|
|
10545
|
+
Removed
|
|
10588
10546
|
</span>
|
|
10589
10547
|
</a>
|
|
10590
10548
|
|
|
10591
10549
|
</li>
|
|
10592
10550
|
|
|
10593
10551
|
<li class="md-nav__item">
|
|
10594
|
-
<a href="#
|
|
10552
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10595
10553
|
<span class="md-ellipsis">
|
|
10596
|
-
Fixed
|
|
10554
|
+
Fixed
|
|
10597
10555
|
</span>
|
|
10598
10556
|
</a>
|
|
10599
10557
|
|
|
10600
10558
|
</li>
|
|
10601
10559
|
|
|
10602
10560
|
<li class="md-nav__item">
|
|
10603
|
-
<a href="#
|
|
10561
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
10604
10562
|
<span class="md-ellipsis">
|
|
10605
|
-
Documentation
|
|
10563
|
+
Documentation
|
|
10606
10564
|
</span>
|
|
10607
10565
|
</a>
|
|
10608
10566
|
|
|
10609
10567
|
</li>
|
|
10610
10568
|
|
|
10611
10569
|
<li class="md-nav__item">
|
|
10612
|
-
<a href="#housekeeeping
|
|
10570
|
+
<a href="#housekeeeping" class="md-nav__link">
|
|
10613
10571
|
<span class="md-ellipsis">
|
|
10614
|
-
Housekeeeping
|
|
10572
|
+
Housekeeeping
|
|
10615
10573
|
</span>
|
|
10616
10574
|
</a>
|
|
10617
10575
|
|
|
@@ -10633,9 +10591,9 @@
|
|
|
10633
10591
|
<ul class="md-nav__list">
|
|
10634
10592
|
|
|
10635
10593
|
<li class="md-nav__item">
|
|
10636
|
-
<a href="#
|
|
10594
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10637
10595
|
<span class="md-ellipsis">
|
|
10638
|
-
Fixed
|
|
10596
|
+
Fixed
|
|
10639
10597
|
</span>
|
|
10640
10598
|
</a>
|
|
10641
10599
|
|
|
@@ -10664,6 +10622,7 @@
|
|
|
10664
10622
|
|
|
10665
10623
|
|
|
10666
10624
|
|
|
10625
|
+
<!-- markdownlint-disable MD024 -->
|
|
10667
10626
|
<h1 id="nautobot-v10">Nautobot v1.0<a class="headerlink" href="#nautobot-v10" title="Permanent link">¶</a></h1>
|
|
10668
10627
|
<p>This document describes all new features and changes in Nautobot 1.0, a divergent fork of NetBox 2.10. For the launch of Nautobot 1.0 and for the purpose of this document, all “new” features or “changes” are referring to the features and changes comparing Nautobot 1.0 coming from NetBox 2.10. All future release notes will only refer to features and changes relative to prior releases of Nautobot.</p>
|
|
10669
10628
|
<p>Users migrating from NetBox to Nautobot should also refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation as well.</p>
|
|
@@ -10758,20 +10717,20 @@
|
|
|
10758
10717
|
<h4 id="related-devices">Related Devices<a class="headerlink" href="#related-devices" title="Permanent link">¶</a></h4>
|
|
10759
10718
|
<p>The "Related Devices" table has been removed from the detailed Device view.</p>
|
|
10760
10719
|
<h2 id="v103-2021-06-21">v1.0.3 (2021-06-21)<a class="headerlink" href="#v103-2021-06-21" title="Permanent link">¶</a></h2>
|
|
10761
|
-
<h3 id="security
|
|
10720
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10762
10721
|
<ul>
|
|
10763
10722
|
<li><a href="https://github.com/nautobot/nautobot/issues/418">#418</a> - Removed unused JQuery-UI component flagged by vulnerability scanner (CVE-2020-7729)</li>
|
|
10764
10723
|
</ul>
|
|
10765
|
-
<h3 id="
|
|
10724
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10766
10725
|
<ul>
|
|
10767
10726
|
<li><a href="https://github.com/nautobot/nautobot/issues/143">#143</a> - Added "copy" button on hover to <code>Device</code> detail view for name, primary IP addresses, and serial number.</li>
|
|
10768
10727
|
<li><a href="https://github.com/nautobot/nautobot/pull/576">#576</a> - <code>JobResult</code> detail views now support custom links and plugin template extensions</li>
|
|
10769
10728
|
</ul>
|
|
10770
|
-
<h3 id="
|
|
10729
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10771
10730
|
<ul>
|
|
10772
10731
|
<li><a href="https://github.com/nautobot/nautobot/issues/537">#537</a> - To mitigate CVE-2021-31542, the minimum supported Django version is now 3.1.12.</li>
|
|
10773
10732
|
</ul>
|
|
10774
|
-
<h3 id="fixed
|
|
10733
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10775
10734
|
<ul>
|
|
10776
10735
|
<li><a href="https://github.com/nautobot/nautobot/issues/342">#342</a> - Fixed inconsistent behavior in <code>Site.time_zone</code> to emit and accept input as a null field if not set when using API</li>
|
|
10777
10736
|
<li><a href="https://github.com/nautobot/nautobot/issues/389">#389</a> - Fixed incorrect TaggedItem base class that caused tag issues on MySQL.</li>
|
|
@@ -10790,7 +10749,7 @@
|
|
|
10790
10749
|
<li><a href="https://github.com/nautobot/nautobot/issues/570">#570</a> - Fixed inability to import <code>ExportTemplates</code> for the <code>VLAN</code> model via Git.</li>
|
|
10791
10750
|
<li><a href="https://github.com/nautobot/nautobot/pull/583">#583</a> - Fixed incorrect rejection of various forms when explicitly selecting a <code>null</code> option. (Port of <a href="https://github.com/netbox-community/netbox/pull/5704">NetBox #5704</a>)</li>
|
|
10792
10751
|
</ul>
|
|
10793
|
-
<h3 id="documentation
|
|
10752
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10794
10753
|
<ul>
|
|
10795
10754
|
<li><a href="https://github.com/nautobot/nautobot/issues/220">#220</a> - Added a troubleshooting section to the development guide for issues encountered when using the multi-threaded development server</li>
|
|
10796
10755
|
<li><a href="https://github.com/nautobot/nautobot/pull/505">#505</a> - Added example of Okta OAuth2 integration to the docs.</li>
|
|
@@ -10798,13 +10757,13 @@
|
|
|
10798
10757
|
<li><a href="https://github.com/nautobot/nautobot/issues/523">#523</a> - Added instructions for using LDAP TLS Options to SSO documentation</li>
|
|
10799
10758
|
<li><a href="https://github.com/nautobot/nautobot/pull/542">#542</a> - Fixed incorrect documentation for running <code>nautobot-server test</code> commands.</li>
|
|
10800
10759
|
</ul>
|
|
10801
|
-
<h3 id="housekeeping
|
|
10760
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10802
10761
|
<ul>
|
|
10803
10762
|
<li><a href="https://github.com/nautobot/nautobot/issues/183">#183</a> - Implemented a baseline integration test suite using Selenium</li>
|
|
10804
10763
|
<li><a href="https://github.com/nautobot/nautobot/pull/540">#540</a> - Fixed intermittent CI failures due to DockerHub rate limits.</li>
|
|
10805
10764
|
</ul>
|
|
10806
10765
|
<h2 id="v102-2021-05-27">v1.0.2 (2021-05-27)<a class="headerlink" href="#v102-2021-05-27" title="Permanent link">¶</a></h2>
|
|
10807
|
-
<h3 id="
|
|
10766
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10808
10767
|
<ul>
|
|
10809
10768
|
<li><a href="https://github.com/nautobot/nautobot/issues/14">#14</a> - Plugins are now officially permitted to use the generic view classes defined in <code>nautobot.core.views.generic</code> and corresponding base templates defined in <code>nautobot/core/templates/generic/</code>.</li>
|
|
10810
10769
|
<li><a href="https://github.com/nautobot/nautobot/pull/430">#430</a> - GraphQL <code>ip_addresses</code> now includes an <code>assigned_object</code> field</li>
|
|
@@ -10814,15 +10773,15 @@
|
|
|
10814
10773
|
<li><a href="https://github.com/nautobot/nautobot/issues/451">#451</a> - Added static GraphQL type for VirtualMachine model</li>
|
|
10815
10774
|
<li><a href="https://github.com/nautobot/nautobot/pull/465">#465</a> - Added Virtual Chassis to the Home Page</li>
|
|
10816
10775
|
</ul>
|
|
10817
|
-
<h3 id="
|
|
10776
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
10818
10777
|
<ul>
|
|
10819
10778
|
<li><a href="https://github.com/nautobot/nautobot/issues/448">#448</a> - <code>nautobot-server init</code> no longer provides an option to overwrite the existing configuration files.</li>
|
|
10820
10779
|
</ul>
|
|
10821
|
-
<h3 id="
|
|
10780
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
10822
10781
|
<ul>
|
|
10823
10782
|
<li><a href="https://github.com/nautobot/nautobot/issues/456">#456</a> - Removed markdown-include</li>
|
|
10824
10783
|
</ul>
|
|
10825
|
-
<h3 id="
|
|
10784
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10826
10785
|
<ul>
|
|
10827
10786
|
<li><a href="https://github.com/nautobot/nautobot/issues/309">#309</a> - Fixed erroneous termination display when cables are connected to power feeds.</li>
|
|
10828
10787
|
<li><a href="https://github.com/nautobot/nautobot/issues/396">#396</a> - Fixed <code>ValidationError</code> not being raised when Relationship filters are invalid</li>
|
|
@@ -10837,12 +10796,12 @@
|
|
|
10837
10796
|
<li><a href="https://github.com/nautobot/nautobot/issues/482">#482</a> - Fixed <code>FieldError</code> from being raised when a <code>JobResult</code> references a model with no <code>name</code> field</li>
|
|
10838
10797
|
<li><a href="https://github.com/nautobot/nautobot/issues/488">#488</a> - Fix migrations in MySQL by hard-coding the <code>VarbinaryIPField</code> to use <code>varbinary(16)</code></li>
|
|
10839
10798
|
</ul>
|
|
10840
|
-
<h3 id="
|
|
10799
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10841
10800
|
<ul>
|
|
10842
10801
|
<li><a href="https://github.com/nautobot/nautobot/pull/417">#417</a> - Fixed incorrect link to Docker docs from installation docs</li>
|
|
10843
10802
|
<li><a href="https://github.com/nautobot/nautobot/pull/423">#423</a> - Clarified reference to <code>/config_contexts/</code> folder in Git user guide</li>
|
|
10844
10803
|
</ul>
|
|
10845
|
-
<h3 id="
|
|
10804
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10846
10805
|
<ul>
|
|
10847
10806
|
<li><a href="https://github.com/nautobot/nautobot/issues/162">#162</a> - Added Invoke tasks <code>dumpdata</code> and <code>loaddata</code> for database backup/restoration in the development environment.</li>
|
|
10848
10807
|
<li><a href="https://github.com/nautobot/nautobot/issues/456">#456</a> - Added mkdocs-include-markdown-plugin as a development dependency.</li>
|
|
@@ -10850,12 +10809,12 @@
|
|
|
10850
10809
|
<li><a href="https://github.com/nautobot/nautobot/issues/486">#486</a> - Fixed failing Docker builds due to do missing <code>examples</code> development dependency</li>
|
|
10851
10810
|
</ul>
|
|
10852
10811
|
<h2 id="v101-2021-05-06">v1.0.1 (2021-05-06)<a class="headerlink" href="#v101-2021-05-06" title="Permanent link">¶</a></h2>
|
|
10853
|
-
<h3 id="
|
|
10812
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10854
10813
|
<ul>
|
|
10855
10814
|
<li><a href="https://github.com/nautobot/nautobot/issues/242">#242</a> - Added a production-ready <code>Dockerfile</code> for clustered deployment</li>
|
|
10856
10815
|
<li><a href="https://github.com/nautobot/nautobot/issues/356">#356</a> - Added a new <code>nautobot-server startplugin</code> management command to ease plugin development</li>
|
|
10857
10816
|
</ul>
|
|
10858
|
-
<h3 id="
|
|
10817
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10859
10818
|
<ul>
|
|
10860
10819
|
<li><a href="https://github.com/nautobot/nautobot/issues/336">#336</a> - Fixed <code>nautobot.utilities.api.get_serializer_for_model</code> to now support the plugins namespace</li>
|
|
10861
10820
|
<li><a href="https://github.com/nautobot/nautobot/issues/337">#337</a> - Fixed <code>nautobot.extras.plugins.api.views.PluginsAPIRootView</code> no longer creates null entries when <code>PluginConfig</code> does not define a <code>base_url</code></li>
|
|
@@ -10865,28 +10824,28 @@
|
|
|
10865
10824
|
<li><a href="https://github.com/nautobot/nautobot/issues/398">#398</a> - Fixed <code>VirtualChassis</code> edit view to now show "Update" button vs. "Create"</li>
|
|
10866
10825
|
<li><a href="https://github.com/nautobot/nautobot/issues/399">#399</a> - Fixed <code>nautobot.utilities.utils.get_filterset_for_model</code> to now support the plugins namespace</li>
|
|
10867
10826
|
</ul>
|
|
10868
|
-
<h3 id="
|
|
10827
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
10869
10828
|
<ul>
|
|
10870
10829
|
<li><a href="https://github.com/nautobot/nautobot/issues/15">#15</a> - Added documentation for plugins using generic models to get change logging using <code>ChangeLoggedModel</code></li>
|
|
10871
10830
|
<li><a href="https://github.com/nautobot/nautobot/pull/362">#362</a> - Updated sample code in plugin development guide to inherit from <code>BaseModel</code></li>
|
|
10872
10831
|
<li><a href="https://github.com/nautobot/nautobot/issues/400">#400</a> - Fixed the <code>class_path</code> format for Jobs API usage documentation not being clear enough</li>
|
|
10873
10832
|
</ul>
|
|
10874
|
-
<h3 id="
|
|
10833
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
10875
10834
|
<ul>
|
|
10876
10835
|
<li><a href="https://github.com/nautobot/nautobot/pull/366">#366</a> - Added GraphQL filter tests for <code>interfaces</code> queries and added missing unit tests for <code>Interface</code> filtersets</li>
|
|
10877
10836
|
<li><a href="https://github.com/nautobot/nautobot/issues/402">#402</a> - Docs build requirements will now install <code>markdown-include</code> version from PyPI instead of GitHub</li>
|
|
10878
10837
|
<li><a href="https://github.com/nautobot/nautobot/pull/409">#409</a> - Fixed misspelling: "Datbase" --> "Database" in <code>nautobot_config.py.j2</code></li>
|
|
10879
10838
|
</ul>
|
|
10880
10839
|
<h2 id="v100-2021-04-26">v1.0.0 (2021-04-26)<a class="headerlink" href="#v100-2021-04-26" title="Permanent link">¶</a></h2>
|
|
10881
|
-
<h3 id="
|
|
10840
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
10882
10841
|
<ul>
|
|
10883
10842
|
<li><a href="https://github.com/nautobot/nautobot/pull/290">#290</a> - Added REST API endpoint for triggering a Git repository sync</li>
|
|
10884
10843
|
</ul>
|
|
10885
|
-
<h3 id="
|
|
10844
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
10886
10845
|
<ul>
|
|
10887
10846
|
<li><a href="https://github.com/nautobot/nautobot/issues/333">#333</a> - Relationships now display the name of the related object type as well as the count</li>
|
|
10888
10847
|
</ul>
|
|
10889
|
-
<h3 id="
|
|
10848
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10890
10849
|
<ul>
|
|
10891
10850
|
<li><a href="https://github.com/nautobot/nautobot/issues/276">#276</a> - Fixed 500 error when creating Rack Reservation with invalid units</li>
|
|
10892
10851
|
<li><a href="https://github.com/nautobot/nautobot/issues/277">#277</a> - Fixed 500 error when editing/updating IPAM Services with invalid ports</li>
|
|
@@ -10896,18 +10855,18 @@
|
|
|
10896
10855
|
<li><a href="https://github.com/nautobot/nautobot/issues/359">#359</a> - Fixed incorrect GraphQL filtering of cables by <code>site</code></li>
|
|
10897
10856
|
<li><a href="https://github.com/nautobot/nautobot/issues/361">#361</a> - Fixed duplicate "tags" field when creating a cable connection</li>
|
|
10898
10857
|
</ul>
|
|
10899
|
-
<h3 id="dependencies
|
|
10858
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10900
10859
|
<ul>
|
|
10901
10860
|
<li><a href="https://github.com/nautobot/nautobot/pull/358">#358</a> - Updated Python dependencies to their latest patch versions</li>
|
|
10902
10861
|
</ul>
|
|
10903
10862
|
<h2 id="v100b4-2021-04-19">v1.0.0b4 (2021-04-19)<a class="headerlink" href="#v100b4-2021-04-19" title="Permanent link">¶</a></h2>
|
|
10904
|
-
<h3 id="
|
|
10863
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
10905
10864
|
<ul>
|
|
10906
10865
|
<li><a href="https://github.com/nautobot/nautobot/pull/217">#217</a> - Replaced JSONB aggregation with custom cross-database implementation that supports PG and MySQL</li>
|
|
10907
10866
|
<li><a href="https://github.com/nautobot/nautobot/pull/245">#245</a> - Replaced PG-specific "advisory locks" with cross-database distributed Redis lock</li>
|
|
10908
10867
|
<li><a href="https://github.com/nautobot/nautobot/pull/289">#289</a> - Updated natural unicode-aware sorting for interface/device names to support MySQL</li>
|
|
10909
10868
|
</ul>
|
|
10910
|
-
<h3 id="
|
|
10869
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10911
10870
|
<ul>
|
|
10912
10871
|
<li><a href="https://github.com/nautobot/nautobot/issues/167">#167</a> - Fix to enable to query <code>ip_addresses</code> by parent in GraphQL</li>
|
|
10913
10872
|
<li><a href="https://github.com/nautobot/nautobot/issues/212">#212</a> - Allow plugins to use built-in buttons</li>
|
|
@@ -10936,11 +10895,11 @@
|
|
|
10936
10895
|
<li><a href="https://github.com/nautobot/nautobot/issues/326">#326</a> - Fix 404 error when attempting to delete a RelationshipAssociation from the list view</li>
|
|
10937
10896
|
<li><a href="https://github.com/nautobot/nautobot/pull/373">#373</a> - Fix missing "Bulk Add IP Addresses" tab</li>
|
|
10938
10897
|
</ul>
|
|
10939
|
-
<h3 id="
|
|
10898
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10940
10899
|
<ul>
|
|
10941
10900
|
<li><a href="https://github.com/nautobot/nautobot/pull/273">#273</a> - Update to jQuery 3.6.0</li>
|
|
10942
10901
|
</ul>
|
|
10943
|
-
<h3 id="
|
|
10902
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
10944
10903
|
<ul>
|
|
10945
10904
|
<li><a href="https://github.com/nautobot/nautobot/issues/96">#96</a> - Implemented user guide documentation for GraphQL</li>
|
|
10946
10905
|
<li><a href="https://github.com/nautobot/nautobot/issues/97">#97</a> - Implemented user guide documentation for Git as a Data Source</li>
|
|
@@ -10950,7 +10909,7 @@
|
|
|
10950
10909
|
<li><a href="https://github.com/nautobot/nautobot/issues/262">#262</a> - Revised Nautobot upgrade and NetBox migration guides</li>
|
|
10951
10910
|
<li><a href="https://github.com/nautobot/nautobot/issues/264">#264</a> - Fix missing parenthesis in datasources example</li>
|
|
10952
10911
|
</ul>
|
|
10953
|
-
<h3 id="
|
|
10912
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
10954
10913
|
<ul>
|
|
10955
10914
|
<li><a href="https://github.com/nautobot/nautobot/pull/211">#211</a> - Travis CI build improvements to simplify entry points and make tests fail faster</li>
|
|
10956
10915
|
<li><a href="https://github.com/nautobot/nautobot/pull/324">#324</a> - Fix unit test execution on MySQL by changing subquery limiting to list slicing</li>
|
|
@@ -10960,14 +10919,14 @@
|
|
|
10960
10919
|
<p class="admonition-title">Warning</p>
|
|
10961
10920
|
<p>v1.0.0b3 introduces several database changes that are <strong>not</strong> backwards-compatible with v1.0.0b2 and earlier. There is no direct upgrade path from v1.0.0b2 to v1.0.0b3 - you <strong>must</strong> create a new database when installing v1.0.0b3!</p>
|
|
10962
10921
|
</div>
|
|
10963
|
-
<h3 id="
|
|
10922
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
10964
10923
|
<ul>
|
|
10965
10924
|
<li><a href="https://github.com/nautobot/nautobot/issues/105">#105</a> - Added tooltip with detailed information to utilization graph bars.</li>
|
|
10966
10925
|
<li><a href="https://github.com/nautobot/nautobot/pull/141">#141</a> - Custom Link UI now includes example usage hints</li>
|
|
10967
10926
|
<li><a href="https://github.com/nautobot/nautobot/pull/227">#227</a> - Add QFSP+ (64GFC) FiberChannel interface type</li>
|
|
10968
10927
|
<li><a href="https://github.com/nautobot/nautobot/pull/236">#236</a> - Add <code>post_upgrade</code> to developer docs and add <code>invoke post-upgrade</code></li>
|
|
10969
10928
|
</ul>
|
|
10970
|
-
<h3 id="
|
|
10929
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
10971
10930
|
<p>Major backwards-incompatible database changes were included in this beta release that are intended are to pave the way for us to support MySQL as a database backend in a future update. Of those changes, these are the most notable:</p>
|
|
10972
10931
|
<ul>
|
|
10973
10932
|
<li>All IPAM objects with network field types (<code>ipam.Aggregate</code>, <code>ipam.IPAddress</code>, and <code>ipam.Prefix</code>) are no longer hard-coded to use PostgreSQL-only <code>inet</code> or <code>cidr</code> field types and are now using a custom implementation leveraging SQL-standard <code>varbinary</code> field types</li>
|
|
@@ -10991,12 +10950,12 @@
|
|
|
10991
10950
|
<li><a href="https://github.com/nautobot/nautobot/pull/208">#208</a> - Custom fields model refactor</li>
|
|
10992
10951
|
<li><a href="https://github.com/nautobot/nautobot/pull/241">#241</a> - Swap <code>contrib.postgres.fields.JSONField</code> for <code>db.models.JSONField</code></li>
|
|
10993
10952
|
</ul>
|
|
10994
|
-
<h3 id="
|
|
10953
|
+
<h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">¶</a></h3>
|
|
10995
10954
|
<ul>
|
|
10996
10955
|
<li><a href="https://github.com/nautobot/nautobot/pull/189">#188</a> - Remove <code>CSRF_TRUSTED_ORIGINS</code> from core settings</li>
|
|
10997
10956
|
<li><a href="https://github.com/nautobot/nautobot/pull/189">#189</a> - Remove all references to <code>settings.BASE_PATH</code></li>
|
|
10998
10957
|
</ul>
|
|
10999
|
-
<h3 id="
|
|
10958
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11000
10959
|
<ul>
|
|
11001
10960
|
<li><a href="https://github.com/nautobot/nautobot/issues/26">#26</a> - <code>nautobot-server runserver</code> does not work using <code>poetry run</code></li>
|
|
11002
10961
|
<li><a href="https://github.com/nautobot/nautobot/issues/58">#58</a> - GraphQL Device Query - Role filter issue</li>
|
|
@@ -11017,7 +10976,7 @@
|
|
|
11017
10976
|
<li><a href="https://github.com/nautobot/nautobot/issues/213">#213</a> - Programming Error Exception Value: relation <code>"social_auth_usersocialauth"</code> does not exist</li>
|
|
11018
10977
|
<li><a href="https://github.com/nautobot/nautobot/issues/224">#224</a> - Edit view for IPAM network objects does not emit the current network address value</li>
|
|
11019
10978
|
</ul>
|
|
11020
|
-
<h3 id="
|
|
10979
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11021
10980
|
<ul>
|
|
11022
10981
|
<li><a href="https://github.com/nautobot/nautobot/issues/84">#84</a> - Revised developer documentation for clarity and current workflows</li>
|
|
11023
10982
|
<li><a href="https://github.com/nautobot/nautobot/issues/100">#100</a> - Added detailed documentation of the <code>nautobot-server</code> command</li>
|
|
@@ -11034,7 +10993,7 @@
|
|
|
11034
10993
|
<li><a href="https://github.com/nautobot/nautobot/issues/205">#205</a> - API Documentation shows numeric id instead of UUID</li>
|
|
11035
10994
|
<li><a href="https://github.com/nautobot/nautobot/pull/235">#235</a> - Update restart docs to include worker</li>
|
|
11036
10995
|
</ul>
|
|
11037
|
-
<h3 id="
|
|
10996
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11038
10997
|
<ul>
|
|
11039
10998
|
<li><a href="https://github.com/nautobot/nautobot/pull/109">#109</a> - Docker development environment build now automatically installs from any present <code>local_requirements.txt</code> file</li>
|
|
11040
10999
|
<li><a href="https://github.com/nautobot/nautobot/pull/124">#124</a> - Removed incorrect statement from feature request template</li>
|
|
@@ -11043,21 +11002,21 @@
|
|
|
11043
11002
|
<li><a href="https://github.com/nautobot/nautobot/issues/255">#255</a> - Update docs <code>edit_uri</code> to point to correct path</li>
|
|
11044
11003
|
</ul>
|
|
11045
11004
|
<h2 id="v100b2-2021-03-08">v1.0.0b2 (2021-03-08)<a class="headerlink" href="#v100b2-2021-03-08" title="Permanent link">¶</a></h2>
|
|
11046
|
-
<h3 id="
|
|
11005
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11047
11006
|
<ul>
|
|
11048
11007
|
<li><a href="https://github.com/nautobot/nautobot/issues/48">#48</a> - Additional unit testing and bug fixes for Relationships feature.</li>
|
|
11049
11008
|
<li><a href="https://github.com/nautobot/nautobot/pull/99">#99</a> - Add <code>BASE_PATH</code> to <code>development/nautobot_config.py</code>.</li>
|
|
11050
11009
|
<li><a href="https://github.com/nautobot/nautobot/pull/107">#107</a> - Add <code>nautobot-server post_upgrade</code> command</li>
|
|
11051
11010
|
</ul>
|
|
11052
|
-
<h3 id="
|
|
11011
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11053
11012
|
<ul>
|
|
11054
11013
|
<li><a href="https://github.com/nautobot/nautobot/issues/88">#88</a> - Replace Gunicorn w/ uWSGI</li>
|
|
11055
11014
|
</ul>
|
|
11056
|
-
<h3 id="
|
|
11015
|
+
<h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">¶</a></h3>
|
|
11057
11016
|
<ul>
|
|
11058
11017
|
<li><a href="https://github.com/nautobot/nautobot/pull/72">#72</a> - Removed issue template for "Documentation Change"; use "Bug" or "Feature Request" issue templates instead.</li>
|
|
11059
11018
|
</ul>
|
|
11060
|
-
<h3 id="
|
|
11019
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11061
11020
|
<ul>
|
|
11062
11021
|
<li><a href="https://github.com/nautobot/nautobot/pull/41">#41</a> - Incorrect field name in CustomLink Admin page.</li>
|
|
11063
11022
|
<li><a href="https://github.com/nautobot/nautobot/issues/45">#45</a> - Incorrect button labels when creating/editing an Interface record.</li>
|
|
@@ -11065,7 +11024,7 @@
|
|
|
11065
11024
|
<li><a href="https://github.com/nautobot/nautobot/issues/81">#81</a> - Unable to change Device rack position after creation.</li>
|
|
11066
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/93">#93</a> - Bug when setting <code>CACHEOPS_DEFAULTS</code> timeout value to <code>0</code>.</li>
|
|
11067
11026
|
</ul>
|
|
11068
|
-
<h3 id="
|
|
11027
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11069
11028
|
<ul>
|
|
11070
11029
|
<li><a href="https://github.com/nautobot/nautobot/issues/35">#35</a> - Documentation for troubleshooting Nautobot's interaction with SELinux.</li>
|
|
11071
11030
|
<li><a href="https://github.com/nautobot/nautobot/pull/36">#36</a> - Broken links to ReadTheDocs pages.</li>
|
|
@@ -11084,7 +11043,7 @@
|
|
|
11084
11043
|
<li><a href="https://github.com/nautobot/nautobot/issues/101">#101</a> - Complete documentation of <code>NAUTOBOT_ROOT</code></li>
|
|
11085
11044
|
<li><a href="https://github.com/nautobot/nautobot/pull/106">#106</a> - Revise deployment docs to use <code>$PATH</code> instead of venv activate</li>
|
|
11086
11045
|
</ul>
|
|
11087
|
-
<h3 id="housekeeeping
|
|
11046
|
+
<h3 id="housekeeeping">Housekeeeping<a class="headerlink" href="#housekeeeping" title="Permanent link">¶</a></h3>
|
|
11088
11047
|
<ul>
|
|
11089
11048
|
<li><a href="https://github.com/nautobot/nautobot/issues/51">#51</a> - Incorrect functioning of "development container" in VSCode integration.</li>
|
|
11090
11049
|
<li><a href="https://github.com/nautobot/nautobot/pull/52">#52</a> - Disabled Poetry's "parallel installation" feature for CI and development builds.</li>
|
|
@@ -11100,7 +11059,7 @@
|
|
|
11100
11059
|
</ul>
|
|
11101
11060
|
<h2 id="v100b1-2021-02-24">v1.0.0b1 (2021-02-24)<a class="headerlink" href="#v100b1-2021-02-24" title="Permanent link">¶</a></h2>
|
|
11102
11061
|
<p>Initial public beta release.</p>
|
|
11103
|
-
<h3 id="
|
|
11062
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11104
11063
|
<ul>
|
|
11105
11064
|
<li>Fixed a bug, inherited from NetBox 2.10, in which object permissions were not filtered correctly in the admin interface.</li>
|
|
11106
11065
|
<li>Fixed a bug, inherited from NetBox 2.10, in which the UI would report an exception if the database contains ChangeLog entries that reference a nonexistent ContentType.</li>
|
|
@@ -11251,7 +11210,7 @@
|
|
|
11251
11210
|
<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>
|
|
11252
11211
|
|
|
11253
11212
|
|
|
11254
|
-
<script src="../assets/javascripts/bundle.
|
|
11213
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
11255
11214
|
|
|
11256
11215
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11257
11216
|
|