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
|
|
|
@@ -8648,36 +8606,36 @@
|
|
|
8648
8606
|
<ul class="md-nav__list">
|
|
8649
8607
|
|
|
8650
8608
|
<li class="md-nav__item">
|
|
8651
|
-
<a href="#
|
|
8609
|
+
<a href="#added_1" class="md-nav__link">
|
|
8652
8610
|
<span class="md-ellipsis">
|
|
8653
|
-
Added
|
|
8611
|
+
Added
|
|
8654
8612
|
</span>
|
|
8655
8613
|
</a>
|
|
8656
8614
|
|
|
8657
8615
|
</li>
|
|
8658
8616
|
|
|
8659
8617
|
<li class="md-nav__item">
|
|
8660
|
-
<a href="#fixed
|
|
8618
|
+
<a href="#fixed" class="md-nav__link">
|
|
8661
8619
|
<span class="md-ellipsis">
|
|
8662
|
-
Fixed
|
|
8620
|
+
Fixed
|
|
8663
8621
|
</span>
|
|
8664
8622
|
</a>
|
|
8665
8623
|
|
|
8666
8624
|
</li>
|
|
8667
8625
|
|
|
8668
8626
|
<li class="md-nav__item">
|
|
8669
|
-
<a href="#dependencies
|
|
8627
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8670
8628
|
<span class="md-ellipsis">
|
|
8671
|
-
Dependencies
|
|
8629
|
+
Dependencies
|
|
8672
8630
|
</span>
|
|
8673
8631
|
</a>
|
|
8674
8632
|
|
|
8675
8633
|
</li>
|
|
8676
8634
|
|
|
8677
8635
|
<li class="md-nav__item">
|
|
8678
|
-
<a href="#documentation
|
|
8636
|
+
<a href="#documentation" class="md-nav__link">
|
|
8679
8637
|
<span class="md-ellipsis">
|
|
8680
|
-
Documentation
|
|
8638
|
+
Documentation
|
|
8681
8639
|
</span>
|
|
8682
8640
|
</a>
|
|
8683
8641
|
|
|
@@ -8699,45 +8657,45 @@
|
|
|
8699
8657
|
<ul class="md-nav__list">
|
|
8700
8658
|
|
|
8701
8659
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#security
|
|
8660
|
+
<a href="#security" class="md-nav__link">
|
|
8703
8661
|
<span class="md-ellipsis">
|
|
8704
|
-
Security
|
|
8662
|
+
Security
|
|
8705
8663
|
</span>
|
|
8706
8664
|
</a>
|
|
8707
8665
|
|
|
8708
8666
|
</li>
|
|
8709
8667
|
|
|
8710
8668
|
<li class="md-nav__item">
|
|
8711
|
-
<a href="#
|
|
8669
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
8712
8670
|
<span class="md-ellipsis">
|
|
8713
|
-
Fixed
|
|
8671
|
+
Fixed
|
|
8714
8672
|
</span>
|
|
8715
8673
|
</a>
|
|
8716
8674
|
|
|
8717
8675
|
</li>
|
|
8718
8676
|
|
|
8719
8677
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
8678
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8721
8679
|
<span class="md-ellipsis">
|
|
8722
|
-
Dependencies
|
|
8680
|
+
Dependencies
|
|
8723
8681
|
</span>
|
|
8724
8682
|
</a>
|
|
8725
8683
|
|
|
8726
8684
|
</li>
|
|
8727
8685
|
|
|
8728
8686
|
<li class="md-nav__item">
|
|
8729
|
-
<a href="#
|
|
8687
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
8730
8688
|
<span class="md-ellipsis">
|
|
8731
|
-
Documentation
|
|
8689
|
+
Documentation
|
|
8732
8690
|
</span>
|
|
8733
8691
|
</a>
|
|
8734
8692
|
|
|
8735
8693
|
</li>
|
|
8736
8694
|
|
|
8737
8695
|
<li class="md-nav__item">
|
|
8738
|
-
<a href="#housekeeping
|
|
8696
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8739
8697
|
<span class="md-ellipsis">
|
|
8740
|
-
Housekeeping
|
|
8698
|
+
Housekeeping
|
|
8741
8699
|
</span>
|
|
8742
8700
|
</a>
|
|
8743
8701
|
|
|
@@ -8759,36 +8717,36 @@
|
|
|
8759
8717
|
<ul class="md-nav__list">
|
|
8760
8718
|
|
|
8761
8719
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
8720
|
+
<a href="#security_1" class="md-nav__link">
|
|
8763
8721
|
<span class="md-ellipsis">
|
|
8764
|
-
Security
|
|
8722
|
+
Security
|
|
8765
8723
|
</span>
|
|
8766
8724
|
</a>
|
|
8767
8725
|
|
|
8768
8726
|
</li>
|
|
8769
8727
|
|
|
8770
8728
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#
|
|
8729
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
8772
8730
|
<span class="md-ellipsis">
|
|
8773
|
-
Fixed
|
|
8731
|
+
Fixed
|
|
8774
8732
|
</span>
|
|
8775
8733
|
</a>
|
|
8776
8734
|
|
|
8777
8735
|
</li>
|
|
8778
8736
|
|
|
8779
8737
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#
|
|
8738
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
8781
8739
|
<span class="md-ellipsis">
|
|
8782
|
-
Dependencies
|
|
8740
|
+
Dependencies
|
|
8783
8741
|
</span>
|
|
8784
8742
|
</a>
|
|
8785
8743
|
|
|
8786
8744
|
</li>
|
|
8787
8745
|
|
|
8788
8746
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#
|
|
8747
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
8790
8748
|
<span class="md-ellipsis">
|
|
8791
|
-
Housekeeping
|
|
8749
|
+
Housekeeping
|
|
8792
8750
|
</span>
|
|
8793
8751
|
</a>
|
|
8794
8752
|
|
|
@@ -8810,54 +8768,54 @@
|
|
|
8810
8768
|
<ul class="md-nav__list">
|
|
8811
8769
|
|
|
8812
8770
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#
|
|
8771
|
+
<a href="#security_2" class="md-nav__link">
|
|
8814
8772
|
<span class="md-ellipsis">
|
|
8815
|
-
Security
|
|
8773
|
+
Security
|
|
8816
8774
|
</span>
|
|
8817
8775
|
</a>
|
|
8818
8776
|
|
|
8819
8777
|
</li>
|
|
8820
8778
|
|
|
8821
8779
|
<li class="md-nav__item">
|
|
8822
|
-
<a href="#
|
|
8780
|
+
<a href="#added_2" class="md-nav__link">
|
|
8823
8781
|
<span class="md-ellipsis">
|
|
8824
|
-
Added
|
|
8782
|
+
Added
|
|
8825
8783
|
</span>
|
|
8826
8784
|
</a>
|
|
8827
8785
|
|
|
8828
8786
|
</li>
|
|
8829
8787
|
|
|
8830
8788
|
<li class="md-nav__item">
|
|
8831
|
-
<a href="#
|
|
8789
|
+
<a href="#changed_1" class="md-nav__link">
|
|
8832
8790
|
<span class="md-ellipsis">
|
|
8833
|
-
Changed
|
|
8791
|
+
Changed
|
|
8834
8792
|
</span>
|
|
8835
8793
|
</a>
|
|
8836
8794
|
|
|
8837
8795
|
</li>
|
|
8838
8796
|
|
|
8839
8797
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
8798
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
8841
8799
|
<span class="md-ellipsis">
|
|
8842
|
-
Fixed
|
|
8800
|
+
Fixed
|
|
8843
8801
|
</span>
|
|
8844
8802
|
</a>
|
|
8845
8803
|
|
|
8846
8804
|
</li>
|
|
8847
8805
|
|
|
8848
8806
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
8807
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
8850
8808
|
<span class="md-ellipsis">
|
|
8851
|
-
Documentation
|
|
8809
|
+
Documentation
|
|
8852
8810
|
</span>
|
|
8853
8811
|
</a>
|
|
8854
8812
|
|
|
8855
8813
|
</li>
|
|
8856
8814
|
|
|
8857
8815
|
<li class="md-nav__item">
|
|
8858
|
-
<a href="#
|
|
8816
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
8859
8817
|
<span class="md-ellipsis">
|
|
8860
|
-
Housekeeping
|
|
8818
|
+
Housekeeping
|
|
8861
8819
|
</span>
|
|
8862
8820
|
</a>
|
|
8863
8821
|
|
|
@@ -8879,54 +8837,54 @@
|
|
|
8879
8837
|
<ul class="md-nav__list">
|
|
8880
8838
|
|
|
8881
8839
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
8840
|
+
<a href="#security_3" class="md-nav__link">
|
|
8883
8841
|
<span class="md-ellipsis">
|
|
8884
|
-
Security
|
|
8842
|
+
Security
|
|
8885
8843
|
</span>
|
|
8886
8844
|
</a>
|
|
8887
8845
|
|
|
8888
8846
|
</li>
|
|
8889
8847
|
|
|
8890
8848
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
8849
|
+
<a href="#added_3" class="md-nav__link">
|
|
8892
8850
|
<span class="md-ellipsis">
|
|
8893
|
-
Added
|
|
8851
|
+
Added
|
|
8894
8852
|
</span>
|
|
8895
8853
|
</a>
|
|
8896
8854
|
|
|
8897
8855
|
</li>
|
|
8898
8856
|
|
|
8899
8857
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#removed
|
|
8858
|
+
<a href="#removed" class="md-nav__link">
|
|
8901
8859
|
<span class="md-ellipsis">
|
|
8902
|
-
Removed
|
|
8860
|
+
Removed
|
|
8903
8861
|
</span>
|
|
8904
8862
|
</a>
|
|
8905
8863
|
|
|
8906
8864
|
</li>
|
|
8907
8865
|
|
|
8908
8866
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
8867
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
8910
8868
|
<span class="md-ellipsis">
|
|
8911
|
-
Fixed
|
|
8869
|
+
Fixed
|
|
8912
8870
|
</span>
|
|
8913
8871
|
</a>
|
|
8914
8872
|
|
|
8915
8873
|
</li>
|
|
8916
8874
|
|
|
8917
8875
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
8876
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
8919
8877
|
<span class="md-ellipsis">
|
|
8920
|
-
Documentation
|
|
8878
|
+
Documentation
|
|
8921
8879
|
</span>
|
|
8922
8880
|
</a>
|
|
8923
8881
|
|
|
8924
8882
|
</li>
|
|
8925
8883
|
|
|
8926
8884
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
8885
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
8928
8886
|
<span class="md-ellipsis">
|
|
8929
|
-
Housekeeping
|
|
8887
|
+
Housekeeping
|
|
8930
8888
|
</span>
|
|
8931
8889
|
</a>
|
|
8932
8890
|
|
|
@@ -8948,45 +8906,45 @@
|
|
|
8948
8906
|
<ul class="md-nav__list">
|
|
8949
8907
|
|
|
8950
8908
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
8909
|
+
<a href="#security_4" class="md-nav__link">
|
|
8952
8910
|
<span class="md-ellipsis">
|
|
8953
|
-
Security
|
|
8911
|
+
Security
|
|
8954
8912
|
</span>
|
|
8955
8913
|
</a>
|
|
8956
8914
|
|
|
8957
8915
|
</li>
|
|
8958
8916
|
|
|
8959
8917
|
<li class="md-nav__item">
|
|
8960
|
-
<a href="#
|
|
8918
|
+
<a href="#added_4" class="md-nav__link">
|
|
8961
8919
|
<span class="md-ellipsis">
|
|
8962
|
-
Added
|
|
8920
|
+
Added
|
|
8963
8921
|
</span>
|
|
8964
8922
|
</a>
|
|
8965
8923
|
|
|
8966
8924
|
</li>
|
|
8967
8925
|
|
|
8968
8926
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
8927
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
8970
8928
|
<span class="md-ellipsis">
|
|
8971
|
-
Fixed
|
|
8929
|
+
Fixed
|
|
8972
8930
|
</span>
|
|
8973
8931
|
</a>
|
|
8974
8932
|
|
|
8975
8933
|
</li>
|
|
8976
8934
|
|
|
8977
8935
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
8936
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
8979
8937
|
<span class="md-ellipsis">
|
|
8980
|
-
Documentation
|
|
8938
|
+
Documentation
|
|
8981
8939
|
</span>
|
|
8982
8940
|
</a>
|
|
8983
8941
|
|
|
8984
8942
|
</li>
|
|
8985
8943
|
|
|
8986
8944
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
8945
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
8988
8946
|
<span class="md-ellipsis">
|
|
8989
|
-
Housekeeping
|
|
8947
|
+
Housekeeping
|
|
8990
8948
|
</span>
|
|
8991
8949
|
</a>
|
|
8992
8950
|
|
|
@@ -9008,54 +8966,54 @@
|
|
|
9008
8966
|
<ul class="md-nav__list">
|
|
9009
8967
|
|
|
9010
8968
|
<li class="md-nav__item">
|
|
9011
|
-
<a href="#
|
|
8969
|
+
<a href="#security_5" class="md-nav__link">
|
|
9012
8970
|
<span class="md-ellipsis">
|
|
9013
|
-
Security
|
|
8971
|
+
Security
|
|
9014
8972
|
</span>
|
|
9015
8973
|
</a>
|
|
9016
8974
|
|
|
9017
8975
|
</li>
|
|
9018
8976
|
|
|
9019
8977
|
<li class="md-nav__item">
|
|
9020
|
-
<a href="#
|
|
8978
|
+
<a href="#added_5" class="md-nav__link">
|
|
9021
8979
|
<span class="md-ellipsis">
|
|
9022
|
-
Added
|
|
8980
|
+
Added
|
|
9023
8981
|
</span>
|
|
9024
8982
|
</a>
|
|
9025
8983
|
|
|
9026
8984
|
</li>
|
|
9027
8985
|
|
|
9028
8986
|
<li class="md-nav__item">
|
|
9029
|
-
<a href="#
|
|
8987
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9030
8988
|
<span class="md-ellipsis">
|
|
9031
|
-
Changed
|
|
8989
|
+
Changed
|
|
9032
8990
|
</span>
|
|
9033
8991
|
</a>
|
|
9034
8992
|
|
|
9035
8993
|
</li>
|
|
9036
8994
|
|
|
9037
8995
|
<li class="md-nav__item">
|
|
9038
|
-
<a href="#
|
|
8996
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9039
8997
|
<span class="md-ellipsis">
|
|
9040
|
-
Fixed
|
|
8998
|
+
Fixed
|
|
9041
8999
|
</span>
|
|
9042
9000
|
</a>
|
|
9043
9001
|
|
|
9044
9002
|
</li>
|
|
9045
9003
|
|
|
9046
9004
|
<li class="md-nav__item">
|
|
9047
|
-
<a href="#
|
|
9005
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9048
9006
|
<span class="md-ellipsis">
|
|
9049
|
-
Documentation
|
|
9007
|
+
Documentation
|
|
9050
9008
|
</span>
|
|
9051
9009
|
</a>
|
|
9052
9010
|
|
|
9053
9011
|
</li>
|
|
9054
9012
|
|
|
9055
9013
|
<li class="md-nav__item">
|
|
9056
|
-
<a href="#
|
|
9014
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9057
9015
|
<span class="md-ellipsis">
|
|
9058
|
-
Housekeeping
|
|
9016
|
+
Housekeeping
|
|
9059
9017
|
</span>
|
|
9060
9018
|
</a>
|
|
9061
9019
|
|
|
@@ -9077,54 +9035,54 @@
|
|
|
9077
9035
|
<ul class="md-nav__list">
|
|
9078
9036
|
|
|
9079
9037
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9038
|
+
<a href="#security_6" class="md-nav__link">
|
|
9081
9039
|
<span class="md-ellipsis">
|
|
9082
|
-
Security
|
|
9040
|
+
Security
|
|
9083
9041
|
</span>
|
|
9084
9042
|
</a>
|
|
9085
9043
|
|
|
9086
9044
|
</li>
|
|
9087
9045
|
|
|
9088
9046
|
<li class="md-nav__item">
|
|
9089
|
-
<a href="#
|
|
9047
|
+
<a href="#added_6" class="md-nav__link">
|
|
9090
9048
|
<span class="md-ellipsis">
|
|
9091
|
-
Added
|
|
9049
|
+
Added
|
|
9092
9050
|
</span>
|
|
9093
9051
|
</a>
|
|
9094
9052
|
|
|
9095
9053
|
</li>
|
|
9096
9054
|
|
|
9097
9055
|
<li class="md-nav__item">
|
|
9098
|
-
<a href="#
|
|
9056
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9099
9057
|
<span class="md-ellipsis">
|
|
9100
|
-
Changed
|
|
9058
|
+
Changed
|
|
9101
9059
|
</span>
|
|
9102
9060
|
</a>
|
|
9103
9061
|
|
|
9104
9062
|
</li>
|
|
9105
9063
|
|
|
9106
9064
|
<li class="md-nav__item">
|
|
9107
|
-
<a href="#
|
|
9065
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9108
9066
|
<span class="md-ellipsis">
|
|
9109
|
-
Fixed
|
|
9067
|
+
Fixed
|
|
9110
9068
|
</span>
|
|
9111
9069
|
</a>
|
|
9112
9070
|
|
|
9113
9071
|
</li>
|
|
9114
9072
|
|
|
9115
9073
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
9074
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9117
9075
|
<span class="md-ellipsis">
|
|
9118
|
-
Documentation
|
|
9076
|
+
Documentation
|
|
9119
9077
|
</span>
|
|
9120
9078
|
</a>
|
|
9121
9079
|
|
|
9122
9080
|
</li>
|
|
9123
9081
|
|
|
9124
9082
|
<li class="md-nav__item">
|
|
9125
|
-
<a href="#
|
|
9083
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9126
9084
|
<span class="md-ellipsis">
|
|
9127
|
-
Housekeeping
|
|
9085
|
+
Housekeeping
|
|
9128
9086
|
</span>
|
|
9129
9087
|
</a>
|
|
9130
9088
|
|
|
@@ -9146,63 +9104,63 @@
|
|
|
9146
9104
|
<ul class="md-nav__list">
|
|
9147
9105
|
|
|
9148
9106
|
<li class="md-nav__item">
|
|
9149
|
-
<a href="#
|
|
9107
|
+
<a href="#security_7" class="md-nav__link">
|
|
9150
9108
|
<span class="md-ellipsis">
|
|
9151
|
-
Security
|
|
9109
|
+
Security
|
|
9152
9110
|
</span>
|
|
9153
9111
|
</a>
|
|
9154
9112
|
|
|
9155
9113
|
</li>
|
|
9156
9114
|
|
|
9157
9115
|
<li class="md-nav__item">
|
|
9158
|
-
<a href="#
|
|
9116
|
+
<a href="#added_7" class="md-nav__link">
|
|
9159
9117
|
<span class="md-ellipsis">
|
|
9160
|
-
Added
|
|
9118
|
+
Added
|
|
9161
9119
|
</span>
|
|
9162
9120
|
</a>
|
|
9163
9121
|
|
|
9164
9122
|
</li>
|
|
9165
9123
|
|
|
9166
9124
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
9125
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9168
9126
|
<span class="md-ellipsis">
|
|
9169
|
-
Changed
|
|
9127
|
+
Changed
|
|
9170
9128
|
</span>
|
|
9171
9129
|
</a>
|
|
9172
9130
|
|
|
9173
9131
|
</li>
|
|
9174
9132
|
|
|
9175
9133
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#
|
|
9134
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9177
9135
|
<span class="md-ellipsis">
|
|
9178
|
-
Fixed
|
|
9136
|
+
Fixed
|
|
9179
9137
|
</span>
|
|
9180
9138
|
</a>
|
|
9181
9139
|
|
|
9182
9140
|
</li>
|
|
9183
9141
|
|
|
9184
9142
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
9143
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9186
9144
|
<span class="md-ellipsis">
|
|
9187
|
-
Dependencies
|
|
9145
|
+
Dependencies
|
|
9188
9146
|
</span>
|
|
9189
9147
|
</a>
|
|
9190
9148
|
|
|
9191
9149
|
</li>
|
|
9192
9150
|
|
|
9193
9151
|
<li class="md-nav__item">
|
|
9194
|
-
<a href="#
|
|
9152
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
9195
9153
|
<span class="md-ellipsis">
|
|
9196
|
-
Documentation
|
|
9154
|
+
Documentation
|
|
9197
9155
|
</span>
|
|
9198
9156
|
</a>
|
|
9199
9157
|
|
|
9200
9158
|
</li>
|
|
9201
9159
|
|
|
9202
9160
|
<li class="md-nav__item">
|
|
9203
|
-
<a href="#
|
|
9161
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9204
9162
|
<span class="md-ellipsis">
|
|
9205
|
-
Housekeeping
|
|
9163
|
+
Housekeeping
|
|
9206
9164
|
</span>
|
|
9207
9165
|
</a>
|
|
9208
9166
|
|
|
@@ -9224,45 +9182,45 @@
|
|
|
9224
9182
|
<ul class="md-nav__list">
|
|
9225
9183
|
|
|
9226
9184
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
9185
|
+
<a href="#added_8" class="md-nav__link">
|
|
9228
9186
|
<span class="md-ellipsis">
|
|
9229
|
-
Added
|
|
9187
|
+
Added
|
|
9230
9188
|
</span>
|
|
9231
9189
|
</a>
|
|
9232
9190
|
|
|
9233
9191
|
</li>
|
|
9234
9192
|
|
|
9235
9193
|
<li class="md-nav__item">
|
|
9236
|
-
<a href="#
|
|
9194
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9237
9195
|
<span class="md-ellipsis">
|
|
9238
|
-
Changed
|
|
9196
|
+
Changed
|
|
9239
9197
|
</span>
|
|
9240
9198
|
</a>
|
|
9241
9199
|
|
|
9242
9200
|
</li>
|
|
9243
9201
|
|
|
9244
9202
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
9203
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9246
9204
|
<span class="md-ellipsis">
|
|
9247
|
-
Fixed
|
|
9205
|
+
Fixed
|
|
9248
9206
|
</span>
|
|
9249
9207
|
</a>
|
|
9250
9208
|
|
|
9251
9209
|
</li>
|
|
9252
9210
|
|
|
9253
9211
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
9212
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9255
9213
|
<span class="md-ellipsis">
|
|
9256
|
-
Dependencies
|
|
9214
|
+
Dependencies
|
|
9257
9215
|
</span>
|
|
9258
9216
|
</a>
|
|
9259
9217
|
|
|
9260
9218
|
</li>
|
|
9261
9219
|
|
|
9262
9220
|
<li class="md-nav__item">
|
|
9263
|
-
<a href="#
|
|
9221
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9264
9222
|
<span class="md-ellipsis">
|
|
9265
|
-
Housekeeping
|
|
9223
|
+
Housekeeping
|
|
9266
9224
|
</span>
|
|
9267
9225
|
</a>
|
|
9268
9226
|
|
|
@@ -9284,72 +9242,72 @@
|
|
|
9284
9242
|
<ul class="md-nav__list">
|
|
9285
9243
|
|
|
9286
9244
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9245
|
+
<a href="#added_9" class="md-nav__link">
|
|
9288
9246
|
<span class="md-ellipsis">
|
|
9289
|
-
Added
|
|
9247
|
+
Added
|
|
9290
9248
|
</span>
|
|
9291
9249
|
</a>
|
|
9292
9250
|
|
|
9293
9251
|
</li>
|
|
9294
9252
|
|
|
9295
9253
|
<li class="md-nav__item">
|
|
9296
|
-
<a href="#
|
|
9254
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9297
9255
|
<span class="md-ellipsis">
|
|
9298
|
-
Changed
|
|
9256
|
+
Changed
|
|
9299
9257
|
</span>
|
|
9300
9258
|
</a>
|
|
9301
9259
|
|
|
9302
9260
|
</li>
|
|
9303
9261
|
|
|
9304
9262
|
<li class="md-nav__item">
|
|
9305
|
-
<a href="#deprecated
|
|
9263
|
+
<a href="#deprecated" class="md-nav__link">
|
|
9306
9264
|
<span class="md-ellipsis">
|
|
9307
|
-
Deprecated
|
|
9265
|
+
Deprecated
|
|
9308
9266
|
</span>
|
|
9309
9267
|
</a>
|
|
9310
9268
|
|
|
9311
9269
|
</li>
|
|
9312
9270
|
|
|
9313
9271
|
<li class="md-nav__item">
|
|
9314
|
-
<a href="#
|
|
9272
|
+
<a href="#removed_1" class="md-nav__link">
|
|
9315
9273
|
<span class="md-ellipsis">
|
|
9316
|
-
Removed
|
|
9274
|
+
Removed
|
|
9317
9275
|
</span>
|
|
9318
9276
|
</a>
|
|
9319
9277
|
|
|
9320
9278
|
</li>
|
|
9321
9279
|
|
|
9322
9280
|
<li class="md-nav__item">
|
|
9323
|
-
<a href="#
|
|
9281
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9324
9282
|
<span class="md-ellipsis">
|
|
9325
|
-
Fixed
|
|
9283
|
+
Fixed
|
|
9326
9284
|
</span>
|
|
9327
9285
|
</a>
|
|
9328
9286
|
|
|
9329
9287
|
</li>
|
|
9330
9288
|
|
|
9331
9289
|
<li class="md-nav__item">
|
|
9332
|
-
<a href="#
|
|
9290
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
9333
9291
|
<span class="md-ellipsis">
|
|
9334
|
-
Dependencies
|
|
9292
|
+
Dependencies
|
|
9335
9293
|
</span>
|
|
9336
9294
|
</a>
|
|
9337
9295
|
|
|
9338
9296
|
</li>
|
|
9339
9297
|
|
|
9340
9298
|
<li class="md-nav__item">
|
|
9341
|
-
<a href="#
|
|
9299
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
9342
9300
|
<span class="md-ellipsis">
|
|
9343
|
-
Documentation
|
|
9301
|
+
Documentation
|
|
9344
9302
|
</span>
|
|
9345
9303
|
</a>
|
|
9346
9304
|
|
|
9347
9305
|
</li>
|
|
9348
9306
|
|
|
9349
9307
|
<li class="md-nav__item">
|
|
9350
|
-
<a href="#
|
|
9308
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
9351
9309
|
<span class="md-ellipsis">
|
|
9352
|
-
Housekeeping
|
|
9310
|
+
Housekeeping
|
|
9353
9311
|
</span>
|
|
9354
9312
|
</a>
|
|
9355
9313
|
|
|
@@ -10066,36 +10024,36 @@
|
|
|
10066
10024
|
<ul class="md-nav__list">
|
|
10067
10025
|
|
|
10068
10026
|
<li class="md-nav__item">
|
|
10069
|
-
<a href="#
|
|
10027
|
+
<a href="#added_1" class="md-nav__link">
|
|
10070
10028
|
<span class="md-ellipsis">
|
|
10071
|
-
Added
|
|
10029
|
+
Added
|
|
10072
10030
|
</span>
|
|
10073
10031
|
</a>
|
|
10074
10032
|
|
|
10075
10033
|
</li>
|
|
10076
10034
|
|
|
10077
10035
|
<li class="md-nav__item">
|
|
10078
|
-
<a href="#fixed
|
|
10036
|
+
<a href="#fixed" class="md-nav__link">
|
|
10079
10037
|
<span class="md-ellipsis">
|
|
10080
|
-
Fixed
|
|
10038
|
+
Fixed
|
|
10081
10039
|
</span>
|
|
10082
10040
|
</a>
|
|
10083
10041
|
|
|
10084
10042
|
</li>
|
|
10085
10043
|
|
|
10086
10044
|
<li class="md-nav__item">
|
|
10087
|
-
<a href="#dependencies
|
|
10045
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10088
10046
|
<span class="md-ellipsis">
|
|
10089
|
-
Dependencies
|
|
10047
|
+
Dependencies
|
|
10090
10048
|
</span>
|
|
10091
10049
|
</a>
|
|
10092
10050
|
|
|
10093
10051
|
</li>
|
|
10094
10052
|
|
|
10095
10053
|
<li class="md-nav__item">
|
|
10096
|
-
<a href="#documentation
|
|
10054
|
+
<a href="#documentation" class="md-nav__link">
|
|
10097
10055
|
<span class="md-ellipsis">
|
|
10098
|
-
Documentation
|
|
10056
|
+
Documentation
|
|
10099
10057
|
</span>
|
|
10100
10058
|
</a>
|
|
10101
10059
|
|
|
@@ -10117,45 +10075,45 @@
|
|
|
10117
10075
|
<ul class="md-nav__list">
|
|
10118
10076
|
|
|
10119
10077
|
<li class="md-nav__item">
|
|
10120
|
-
<a href="#security
|
|
10078
|
+
<a href="#security" class="md-nav__link">
|
|
10121
10079
|
<span class="md-ellipsis">
|
|
10122
|
-
Security
|
|
10080
|
+
Security
|
|
10123
10081
|
</span>
|
|
10124
10082
|
</a>
|
|
10125
10083
|
|
|
10126
10084
|
</li>
|
|
10127
10085
|
|
|
10128
10086
|
<li class="md-nav__item">
|
|
10129
|
-
<a href="#
|
|
10087
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10130
10088
|
<span class="md-ellipsis">
|
|
10131
|
-
Fixed
|
|
10089
|
+
Fixed
|
|
10132
10090
|
</span>
|
|
10133
10091
|
</a>
|
|
10134
10092
|
|
|
10135
10093
|
</li>
|
|
10136
10094
|
|
|
10137
10095
|
<li class="md-nav__item">
|
|
10138
|
-
<a href="#
|
|
10096
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10139
10097
|
<span class="md-ellipsis">
|
|
10140
|
-
Dependencies
|
|
10098
|
+
Dependencies
|
|
10141
10099
|
</span>
|
|
10142
10100
|
</a>
|
|
10143
10101
|
|
|
10144
10102
|
</li>
|
|
10145
10103
|
|
|
10146
10104
|
<li class="md-nav__item">
|
|
10147
|
-
<a href="#
|
|
10105
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10148
10106
|
<span class="md-ellipsis">
|
|
10149
|
-
Documentation
|
|
10107
|
+
Documentation
|
|
10150
10108
|
</span>
|
|
10151
10109
|
</a>
|
|
10152
10110
|
|
|
10153
10111
|
</li>
|
|
10154
10112
|
|
|
10155
10113
|
<li class="md-nav__item">
|
|
10156
|
-
<a href="#housekeeping
|
|
10114
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10157
10115
|
<span class="md-ellipsis">
|
|
10158
|
-
Housekeeping
|
|
10116
|
+
Housekeeping
|
|
10159
10117
|
</span>
|
|
10160
10118
|
</a>
|
|
10161
10119
|
|
|
@@ -10177,36 +10135,36 @@
|
|
|
10177
10135
|
<ul class="md-nav__list">
|
|
10178
10136
|
|
|
10179
10137
|
<li class="md-nav__item">
|
|
10180
|
-
<a href="#
|
|
10138
|
+
<a href="#security_1" class="md-nav__link">
|
|
10181
10139
|
<span class="md-ellipsis">
|
|
10182
|
-
Security
|
|
10140
|
+
Security
|
|
10183
10141
|
</span>
|
|
10184
10142
|
</a>
|
|
10185
10143
|
|
|
10186
10144
|
</li>
|
|
10187
10145
|
|
|
10188
10146
|
<li class="md-nav__item">
|
|
10189
|
-
<a href="#
|
|
10147
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10190
10148
|
<span class="md-ellipsis">
|
|
10191
|
-
Fixed
|
|
10149
|
+
Fixed
|
|
10192
10150
|
</span>
|
|
10193
10151
|
</a>
|
|
10194
10152
|
|
|
10195
10153
|
</li>
|
|
10196
10154
|
|
|
10197
10155
|
<li class="md-nav__item">
|
|
10198
|
-
<a href="#
|
|
10156
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10199
10157
|
<span class="md-ellipsis">
|
|
10200
|
-
Dependencies
|
|
10158
|
+
Dependencies
|
|
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="#housekeeping_1" class="md-nav__link">
|
|
10208
10166
|
<span class="md-ellipsis">
|
|
10209
|
-
Housekeeping
|
|
10167
|
+
Housekeeping
|
|
10210
10168
|
</span>
|
|
10211
10169
|
</a>
|
|
10212
10170
|
|
|
@@ -10228,54 +10186,54 @@
|
|
|
10228
10186
|
<ul class="md-nav__list">
|
|
10229
10187
|
|
|
10230
10188
|
<li class="md-nav__item">
|
|
10231
|
-
<a href="#
|
|
10189
|
+
<a href="#security_2" class="md-nav__link">
|
|
10232
10190
|
<span class="md-ellipsis">
|
|
10233
|
-
Security
|
|
10191
|
+
Security
|
|
10234
10192
|
</span>
|
|
10235
10193
|
</a>
|
|
10236
10194
|
|
|
10237
10195
|
</li>
|
|
10238
10196
|
|
|
10239
10197
|
<li class="md-nav__item">
|
|
10240
|
-
<a href="#
|
|
10198
|
+
<a href="#added_2" class="md-nav__link">
|
|
10241
10199
|
<span class="md-ellipsis">
|
|
10242
|
-
Added
|
|
10200
|
+
Added
|
|
10243
10201
|
</span>
|
|
10244
10202
|
</a>
|
|
10245
10203
|
|
|
10246
10204
|
</li>
|
|
10247
10205
|
|
|
10248
10206
|
<li class="md-nav__item">
|
|
10249
|
-
<a href="#
|
|
10207
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10250
10208
|
<span class="md-ellipsis">
|
|
10251
|
-
Changed
|
|
10209
|
+
Changed
|
|
10252
10210
|
</span>
|
|
10253
10211
|
</a>
|
|
10254
10212
|
|
|
10255
10213
|
</li>
|
|
10256
10214
|
|
|
10257
10215
|
<li class="md-nav__item">
|
|
10258
|
-
<a href="#
|
|
10216
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10259
10217
|
<span class="md-ellipsis">
|
|
10260
|
-
Fixed
|
|
10218
|
+
Fixed
|
|
10261
10219
|
</span>
|
|
10262
10220
|
</a>
|
|
10263
10221
|
|
|
10264
10222
|
</li>
|
|
10265
10223
|
|
|
10266
10224
|
<li class="md-nav__item">
|
|
10267
|
-
<a href="#
|
|
10225
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
10268
10226
|
<span class="md-ellipsis">
|
|
10269
|
-
Documentation
|
|
10227
|
+
Documentation
|
|
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="#housekeeping_2" class="md-nav__link">
|
|
10277
10235
|
<span class="md-ellipsis">
|
|
10278
|
-
Housekeeping
|
|
10236
|
+
Housekeeping
|
|
10279
10237
|
</span>
|
|
10280
10238
|
</a>
|
|
10281
10239
|
|
|
@@ -10297,54 +10255,54 @@
|
|
|
10297
10255
|
<ul class="md-nav__list">
|
|
10298
10256
|
|
|
10299
10257
|
<li class="md-nav__item">
|
|
10300
|
-
<a href="#
|
|
10258
|
+
<a href="#security_3" class="md-nav__link">
|
|
10301
10259
|
<span class="md-ellipsis">
|
|
10302
|
-
Security
|
|
10260
|
+
Security
|
|
10303
10261
|
</span>
|
|
10304
10262
|
</a>
|
|
10305
10263
|
|
|
10306
10264
|
</li>
|
|
10307
10265
|
|
|
10308
10266
|
<li class="md-nav__item">
|
|
10309
|
-
<a href="#
|
|
10267
|
+
<a href="#added_3" class="md-nav__link">
|
|
10310
10268
|
<span class="md-ellipsis">
|
|
10311
|
-
Added
|
|
10269
|
+
Added
|
|
10312
10270
|
</span>
|
|
10313
10271
|
</a>
|
|
10314
10272
|
|
|
10315
10273
|
</li>
|
|
10316
10274
|
|
|
10317
10275
|
<li class="md-nav__item">
|
|
10318
|
-
<a href="#removed
|
|
10276
|
+
<a href="#removed" class="md-nav__link">
|
|
10319
10277
|
<span class="md-ellipsis">
|
|
10320
|
-
Removed
|
|
10278
|
+
Removed
|
|
10321
10279
|
</span>
|
|
10322
10280
|
</a>
|
|
10323
10281
|
|
|
10324
10282
|
</li>
|
|
10325
10283
|
|
|
10326
10284
|
<li class="md-nav__item">
|
|
10327
|
-
<a href="#
|
|
10285
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10328
10286
|
<span class="md-ellipsis">
|
|
10329
|
-
Fixed
|
|
10287
|
+
Fixed
|
|
10330
10288
|
</span>
|
|
10331
10289
|
</a>
|
|
10332
10290
|
|
|
10333
10291
|
</li>
|
|
10334
10292
|
|
|
10335
10293
|
<li class="md-nav__item">
|
|
10336
|
-
<a href="#
|
|
10294
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
10337
10295
|
<span class="md-ellipsis">
|
|
10338
|
-
Documentation
|
|
10296
|
+
Documentation
|
|
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="#housekeeping_3" class="md-nav__link">
|
|
10346
10304
|
<span class="md-ellipsis">
|
|
10347
|
-
Housekeeping
|
|
10305
|
+
Housekeeping
|
|
10348
10306
|
</span>
|
|
10349
10307
|
</a>
|
|
10350
10308
|
|
|
@@ -10366,45 +10324,45 @@
|
|
|
10366
10324
|
<ul class="md-nav__list">
|
|
10367
10325
|
|
|
10368
10326
|
<li class="md-nav__item">
|
|
10369
|
-
<a href="#
|
|
10327
|
+
<a href="#security_4" class="md-nav__link">
|
|
10370
10328
|
<span class="md-ellipsis">
|
|
10371
|
-
Security
|
|
10329
|
+
Security
|
|
10372
10330
|
</span>
|
|
10373
10331
|
</a>
|
|
10374
10332
|
|
|
10375
10333
|
</li>
|
|
10376
10334
|
|
|
10377
10335
|
<li class="md-nav__item">
|
|
10378
|
-
<a href="#
|
|
10336
|
+
<a href="#added_4" class="md-nav__link">
|
|
10379
10337
|
<span class="md-ellipsis">
|
|
10380
|
-
Added
|
|
10338
|
+
Added
|
|
10381
10339
|
</span>
|
|
10382
10340
|
</a>
|
|
10383
10341
|
|
|
10384
10342
|
</li>
|
|
10385
10343
|
|
|
10386
10344
|
<li class="md-nav__item">
|
|
10387
|
-
<a href="#
|
|
10345
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
10388
10346
|
<span class="md-ellipsis">
|
|
10389
|
-
Fixed
|
|
10347
|
+
Fixed
|
|
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="#documentation_4" class="md-nav__link">
|
|
10397
10355
|
<span class="md-ellipsis">
|
|
10398
|
-
Documentation
|
|
10356
|
+
Documentation
|
|
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="#housekeeping_4" class="md-nav__link">
|
|
10406
10364
|
<span class="md-ellipsis">
|
|
10407
|
-
Housekeeping
|
|
10365
|
+
Housekeeping
|
|
10408
10366
|
</span>
|
|
10409
10367
|
</a>
|
|
10410
10368
|
|
|
@@ -10426,54 +10384,54 @@
|
|
|
10426
10384
|
<ul class="md-nav__list">
|
|
10427
10385
|
|
|
10428
10386
|
<li class="md-nav__item">
|
|
10429
|
-
<a href="#
|
|
10387
|
+
<a href="#security_5" class="md-nav__link">
|
|
10430
10388
|
<span class="md-ellipsis">
|
|
10431
|
-
Security
|
|
10389
|
+
Security
|
|
10432
10390
|
</span>
|
|
10433
10391
|
</a>
|
|
10434
10392
|
|
|
10435
10393
|
</li>
|
|
10436
10394
|
|
|
10437
10395
|
<li class="md-nav__item">
|
|
10438
|
-
<a href="#
|
|
10396
|
+
<a href="#added_5" class="md-nav__link">
|
|
10439
10397
|
<span class="md-ellipsis">
|
|
10440
|
-
Added
|
|
10398
|
+
Added
|
|
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="#changed_2" class="md-nav__link">
|
|
10448
10406
|
<span class="md-ellipsis">
|
|
10449
|
-
Changed
|
|
10407
|
+
Changed
|
|
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="#fixed_6" class="md-nav__link">
|
|
10457
10415
|
<span class="md-ellipsis">
|
|
10458
|
-
Fixed
|
|
10416
|
+
Fixed
|
|
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_5" 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_5" 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="#security_6" class="md-nav__link">
|
|
10499
10457
|
<span class="md-ellipsis">
|
|
10500
|
-
Security
|
|
10458
|
+
Security
|
|
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="#added_6" class="md-nav__link">
|
|
10508
10466
|
<span class="md-ellipsis">
|
|
10509
|
-
Added
|
|
10467
|
+
Added
|
|
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="#changed_3" class="md-nav__link">
|
|
10517
10475
|
<span class="md-ellipsis">
|
|
10518
|
-
Changed
|
|
10476
|
+
Changed
|
|
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_7" 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_6" 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_6" class="md-nav__link">
|
|
10544
10502
|
<span class="md-ellipsis">
|
|
10545
|
-
Housekeeping
|
|
10503
|
+
Housekeeping
|
|
10546
10504
|
</span>
|
|
10547
10505
|
</a>
|
|
10548
10506
|
|
|
@@ -10564,63 +10522,63 @@
|
|
|
10564
10522
|
<ul class="md-nav__list">
|
|
10565
10523
|
|
|
10566
10524
|
<li class="md-nav__item">
|
|
10567
|
-
<a href="#
|
|
10525
|
+
<a href="#security_7" class="md-nav__link">
|
|
10568
10526
|
<span class="md-ellipsis">
|
|
10569
|
-
Security
|
|
10527
|
+
Security
|
|
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="#added_7" class="md-nav__link">
|
|
10577
10535
|
<span class="md-ellipsis">
|
|
10578
|
-
Added
|
|
10536
|
+
Added
|
|
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="#changed_4" class="md-nav__link">
|
|
10586
10544
|
<span class="md-ellipsis">
|
|
10587
|
-
Changed
|
|
10545
|
+
Changed
|
|
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_8" 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="#dependencies_3" class="md-nav__link">
|
|
10604
10562
|
<span class="md-ellipsis">
|
|
10605
|
-
Dependencies
|
|
10563
|
+
Dependencies
|
|
10606
10564
|
</span>
|
|
10607
10565
|
</a>
|
|
10608
10566
|
|
|
10609
10567
|
</li>
|
|
10610
10568
|
|
|
10611
10569
|
<li class="md-nav__item">
|
|
10612
|
-
<a href="#
|
|
10570
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10613
10571
|
<span class="md-ellipsis">
|
|
10614
|
-
Documentation
|
|
10572
|
+
Documentation
|
|
10615
10573
|
</span>
|
|
10616
10574
|
</a>
|
|
10617
10575
|
|
|
10618
10576
|
</li>
|
|
10619
10577
|
|
|
10620
10578
|
<li class="md-nav__item">
|
|
10621
|
-
<a href="#
|
|
10579
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10622
10580
|
<span class="md-ellipsis">
|
|
10623
|
-
Housekeeping
|
|
10581
|
+
Housekeeping
|
|
10624
10582
|
</span>
|
|
10625
10583
|
</a>
|
|
10626
10584
|
|
|
@@ -10642,45 +10600,45 @@
|
|
|
10642
10600
|
<ul class="md-nav__list">
|
|
10643
10601
|
|
|
10644
10602
|
<li class="md-nav__item">
|
|
10645
|
-
<a href="#
|
|
10603
|
+
<a href="#added_8" class="md-nav__link">
|
|
10646
10604
|
<span class="md-ellipsis">
|
|
10647
|
-
Added
|
|
10605
|
+
Added
|
|
10648
10606
|
</span>
|
|
10649
10607
|
</a>
|
|
10650
10608
|
|
|
10651
10609
|
</li>
|
|
10652
10610
|
|
|
10653
10611
|
<li class="md-nav__item">
|
|
10654
|
-
<a href="#
|
|
10612
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10655
10613
|
<span class="md-ellipsis">
|
|
10656
|
-
Changed
|
|
10614
|
+
Changed
|
|
10657
10615
|
</span>
|
|
10658
10616
|
</a>
|
|
10659
10617
|
|
|
10660
10618
|
</li>
|
|
10661
10619
|
|
|
10662
10620
|
<li class="md-nav__item">
|
|
10663
|
-
<a href="#
|
|
10621
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10664
10622
|
<span class="md-ellipsis">
|
|
10665
|
-
Fixed
|
|
10623
|
+
Fixed
|
|
10666
10624
|
</span>
|
|
10667
10625
|
</a>
|
|
10668
10626
|
|
|
10669
10627
|
</li>
|
|
10670
10628
|
|
|
10671
10629
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
10630
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
10673
10631
|
<span class="md-ellipsis">
|
|
10674
|
-
Dependencies
|
|
10632
|
+
Dependencies
|
|
10675
10633
|
</span>
|
|
10676
10634
|
</a>
|
|
10677
10635
|
|
|
10678
10636
|
</li>
|
|
10679
10637
|
|
|
10680
10638
|
<li class="md-nav__item">
|
|
10681
|
-
<a href="#
|
|
10639
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10682
10640
|
<span class="md-ellipsis">
|
|
10683
|
-
Housekeeping
|
|
10641
|
+
Housekeeping
|
|
10684
10642
|
</span>
|
|
10685
10643
|
</a>
|
|
10686
10644
|
|
|
@@ -10702,72 +10660,72 @@
|
|
|
10702
10660
|
<ul class="md-nav__list">
|
|
10703
10661
|
|
|
10704
10662
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
10663
|
+
<a href="#added_9" class="md-nav__link">
|
|
10706
10664
|
<span class="md-ellipsis">
|
|
10707
|
-
Added
|
|
10665
|
+
Added
|
|
10708
10666
|
</span>
|
|
10709
10667
|
</a>
|
|
10710
10668
|
|
|
10711
10669
|
</li>
|
|
10712
10670
|
|
|
10713
10671
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
10672
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10715
10673
|
<span class="md-ellipsis">
|
|
10716
|
-
Changed
|
|
10674
|
+
Changed
|
|
10717
10675
|
</span>
|
|
10718
10676
|
</a>
|
|
10719
10677
|
|
|
10720
10678
|
</li>
|
|
10721
10679
|
|
|
10722
10680
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#deprecated
|
|
10681
|
+
<a href="#deprecated" class="md-nav__link">
|
|
10724
10682
|
<span class="md-ellipsis">
|
|
10725
|
-
Deprecated
|
|
10683
|
+
Deprecated
|
|
10726
10684
|
</span>
|
|
10727
10685
|
</a>
|
|
10728
10686
|
|
|
10729
10687
|
</li>
|
|
10730
10688
|
|
|
10731
10689
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#
|
|
10690
|
+
<a href="#removed_1" class="md-nav__link">
|
|
10733
10691
|
<span class="md-ellipsis">
|
|
10734
|
-
Removed
|
|
10692
|
+
Removed
|
|
10735
10693
|
</span>
|
|
10736
10694
|
</a>
|
|
10737
10695
|
|
|
10738
10696
|
</li>
|
|
10739
10697
|
|
|
10740
10698
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
10699
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10742
10700
|
<span class="md-ellipsis">
|
|
10743
|
-
Fixed
|
|
10701
|
+
Fixed
|
|
10744
10702
|
</span>
|
|
10745
10703
|
</a>
|
|
10746
10704
|
|
|
10747
10705
|
</li>
|
|
10748
10706
|
|
|
10749
10707
|
<li class="md-nav__item">
|
|
10750
|
-
<a href="#
|
|
10708
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
10751
10709
|
<span class="md-ellipsis">
|
|
10752
|
-
Dependencies
|
|
10710
|
+
Dependencies
|
|
10753
10711
|
</span>
|
|
10754
10712
|
</a>
|
|
10755
10713
|
|
|
10756
10714
|
</li>
|
|
10757
10715
|
|
|
10758
10716
|
<li class="md-nav__item">
|
|
10759
|
-
<a href="#
|
|
10717
|
+
<a href="#documentation_8" class="md-nav__link">
|
|
10760
10718
|
<span class="md-ellipsis">
|
|
10761
|
-
Documentation
|
|
10719
|
+
Documentation
|
|
10762
10720
|
</span>
|
|
10763
10721
|
</a>
|
|
10764
10722
|
|
|
10765
10723
|
</li>
|
|
10766
10724
|
|
|
10767
10725
|
<li class="md-nav__item">
|
|
10768
|
-
<a href="#
|
|
10726
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
10769
10727
|
<span class="md-ellipsis">
|
|
10770
|
-
Housekeeping
|
|
10728
|
+
Housekeeping
|
|
10771
10729
|
</span>
|
|
10772
10730
|
</a>
|
|
10773
10731
|
|
|
@@ -10796,6 +10754,8 @@
|
|
|
10796
10754
|
|
|
10797
10755
|
|
|
10798
10756
|
|
|
10757
|
+
<!-- markdownlint-disable MD024 -->
|
|
10758
|
+
|
|
10799
10759
|
<h1 id="nautobot-v22">Nautobot v2.2<a class="headerlink" href="#nautobot-v22" title="Permanent link">¶</a></h1>
|
|
10800
10760
|
<p>This document describes all new features and changes in Nautobot 2.2.</p>
|
|
10801
10761
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -10831,15 +10791,16 @@
|
|
|
10831
10791
|
<p><code>Installed Plugins</code> view has been renamed to <code>Installed Apps</code>. <code>Plugin</code> terminologies in <code>Installed Plugins</code> (now <code>Installed Apps</code>) view and dependent views have been changed to <code>App</code> throughout. <code>Plugin</code> references in documentation (excluding old release-notes) have been replaced by <code>App</code>. <code>Plugins</code> navigation menu has been renamed to <code>Apps</code>.</p>
|
|
10832
10792
|
<h4 id="standardization-of-max_length-on-all-charfields-2906">Standardization of <code>max_length</code> on all Charfields (<a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a>)<a class="headerlink" href="#standardization-of-max_length-on-all-charfields-2906" title="Permanent link">¶</a></h4>
|
|
10833
10793
|
<p>Model CharFields' <code>max_length</code> attributes have been standardized globally to have at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</p>
|
|
10794
|
+
<!-- towncrier release notes start -->
|
|
10834
10795
|
<h2 id="v229-2024-08-05">v2.2.9 (2024-08-05)<a class="headerlink" href="#v229-2024-08-05" title="Permanent link">¶</a></h2>
|
|
10835
|
-
<h3 id="
|
|
10796
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
10836
10797
|
<ul>
|
|
10837
10798
|
<li><a href="https://github.com/nautobot/nautobot/issues/5965">#5965</a> - Added missing controller references for DeviceRedundancyGroup in the UI.</li>
|
|
10838
10799
|
<li><a href="https://github.com/nautobot/nautobot/issues/5980">#5980</a> - Added caching to <code>FeatureQuery().get_choices()</code> and <code>FeatureQuery().list_subclasses()</code>.</li>
|
|
10839
10800
|
<li><a href="https://github.com/nautobot/nautobot/issues/6029">#6029</a> - Added environment variable support for setting <code>CELERY_WORKER_PREFETCH_MULTIPLIER</code>.</li>
|
|
10840
10801
|
<li><a href="https://github.com/nautobot/nautobot/issues/6030">#6030</a> - Added links from the Job list and detail views to quickly filter the list of Job Results to the corresponding Job.</li>
|
|
10841
10802
|
</ul>
|
|
10842
|
-
<h3 id="fixed
|
|
10803
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
10843
10804
|
<ul>
|
|
10844
10805
|
<li><a href="https://github.com/nautobot/nautobot/issues/5775">#5775</a> - Reintroduced <code>Add IP Address</code> button to VirtualMachine Interface table.</li>
|
|
10845
10806
|
<li><a href="https://github.com/nautobot/nautobot/issues/5785">#5785</a> - Fixed Scheduled Jobs not respecting Job Soft / Hard Time Limit.</li>
|
|
@@ -10854,11 +10815,11 @@
|
|
|
10854
10815
|
<li><a href="https://github.com/nautobot/nautobot/issues/5992">#5992</a> - Added signal to clear relevant content-type caches after running migrations.</li>
|
|
10855
10816
|
<li><a href="https://github.com/nautobot/nautobot/issues/6022">#6022</a> - Fixed incorrect labels for derived filters (<code>tenant__n</code>, <code>tenant__isw</code>, etc.) when the base filter (<code>tenant</code>, etc.) has a custom label.</li>
|
|
10856
10817
|
</ul>
|
|
10857
|
-
<h3 id="dependencies
|
|
10818
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
10858
10819
|
<ul>
|
|
10859
10820
|
<li><a href="https://github.com/nautobot/nautobot/issues/6010">#6010</a> - Pinned <code>django-storages</code> temporarily to 1.14.3 due to an <a href="https://github.com/revsys/django-health-check/issues/434">incompatibility</a> between <code>django-health-check</code> and version 1.14.4 of <code>django-storages</code>.</li>
|
|
10860
10821
|
</ul>
|
|
10861
|
-
<h3 id="documentation
|
|
10822
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
10862
10823
|
<ul>
|
|
10863
10824
|
<li><a href="https://github.com/nautobot/nautobot/issues/5949">#5949</a> - Fixed NewBranch job code in documentation.</li>
|
|
10864
10825
|
<li><a href="https://github.com/nautobot/nautobot/issues/5958">#5958</a> - Added an example job that uses a custom template to render the job form.</li>
|
|
@@ -10867,37 +10828,37 @@
|
|
|
10867
10828
|
<li><a href="https://github.com/nautobot/nautobot/issues/6024">#6024</a> - Added documentation for the <code>nautobot-server validate_models</code> command.</li>
|
|
10868
10829
|
</ul>
|
|
10869
10830
|
<h2 id="v228-2024-07-22">v2.2.8 (2024-07-22)<a class="headerlink" href="#v228-2024-07-22" title="Permanent link">¶</a></h2>
|
|
10870
|
-
<h3 id="security
|
|
10831
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
10871
10832
|
<ul>
|
|
10872
10833
|
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.1</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10873
10834
|
</ul>
|
|
10874
|
-
<h3 id="
|
|
10835
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
10875
10836
|
<ul>
|
|
10876
10837
|
<li><a href="https://github.com/nautobot/nautobot/issues/5569">#5569</a> - Fixed relationship required to ignore objects that do not match the related filter.</li>
|
|
10877
10838
|
<li><a href="https://github.com/nautobot/nautobot/issues/5613">#5613</a> - Fixed intermittent failure in integration test for dynamic groups.</li>
|
|
10878
10839
|
<li><a href="https://github.com/nautobot/nautobot/issues/5906">#5906</a> - Added support for filtering in GraphQL of objects identified by a many-to-many relation (<code>Location.prefixes</code>, <code>Prefix.locations</code>, etc.)</li>
|
|
10879
10840
|
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
10880
10841
|
</ul>
|
|
10881
|
-
<h3 id="
|
|
10842
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
10882
10843
|
<ul>
|
|
10883
10844
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated dependency <code>social-auth-app-django</code> to <code>~5.4.2</code>.</li>
|
|
10884
10845
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated optional dependency <code>django-storages</code> to <code>~1.14.4</code>.</li>
|
|
10885
10846
|
</ul>
|
|
10886
|
-
<h3 id="
|
|
10847
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
10887
10848
|
<ul>
|
|
10888
10849
|
<li><a href="https://github.com/nautobot/nautobot/issues/5833">#5833</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.29</code>.</li>
|
|
10889
10850
|
<li><a href="https://github.com/nautobot/nautobot/issues/5874">#5874</a> - Updated documentation regarding Nautobot on Ubuntu 24.04.</li>
|
|
10890
10851
|
</ul>
|
|
10891
|
-
<h3 id="housekeeping
|
|
10852
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
10892
10853
|
<ul>
|
|
10893
10854
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Added integration test to do basic checking for static media failures caused by typos in template files.</li>
|
|
10894
10855
|
</ul>
|
|
10895
10856
|
<h2 id="v227-2024-07-08">v2.2.7 (2024-07-08)<a class="headerlink" href="#v227-2024-07-08" title="Permanent link">¶</a></h2>
|
|
10896
|
-
<h3 id="
|
|
10857
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
10897
10858
|
<ul>
|
|
10898
10859
|
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10899
10860
|
</ul>
|
|
10900
|
-
<h3 id="
|
|
10861
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
10901
10862
|
<ul>
|
|
10902
10863
|
<li><a href="https://github.com/nautobot/nautobot/issues/4237">#4237</a> - Fixed display issue with multiple tags filter on dynamic groups. Multiple Tags are now correctly displayed with an AND.</li>
|
|
10903
10864
|
<li><a href="https://github.com/nautobot/nautobot/issues/5093">#5093</a> - Fixed blank page redirect when syncing or running a dry run on a GIT Repo with no workers available; now redirects to the GIT Repo Detail page with an error message.</li>
|
|
@@ -10905,33 +10866,33 @@
|
|
|
10905
10866
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed lack of API versioning of responses to a POST to <code>/api/ipam/prefixes/<id>/available-prefixes/</code> to allocate child prefixes of a prefix.</li>
|
|
10906
10867
|
<li><a href="https://github.com/nautobot/nautobot/issues/5832">#5832</a> - Fixed incorrect OpenAPI schema for <code>/api/ipam/prefixes/<id>/available-prefixes/</code> and <code>/api/ipam/prefixes/<id>/available-ips/</code>.</li>
|
|
10907
10868
|
</ul>
|
|
10908
|
-
<h3 id="
|
|
10869
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
10909
10870
|
<ul>
|
|
10910
10871
|
<li><a href="https://github.com/nautobot/nautobot/issues/5518">#5518</a> - Updated <code>drf-spectacular</code> to version <code>0.27.2</code>.</li>
|
|
10911
10872
|
<li><a href="https://github.com/nautobot/nautobot/pull/5896">#5896</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
10912
10873
|
</ul>
|
|
10913
|
-
<h3 id="
|
|
10874
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
10914
10875
|
<ul>
|
|
10915
10876
|
<li><a href="https://github.com/nautobot/nautobot/issues/5847">#5847</a> - Updated the term plugin to app within the GitHub templates.</li>
|
|
10916
10877
|
<li><a href="https://github.com/nautobot/nautobot/issues/5858">#5858</a> - Enhanced the test runner to include a hash of applied database migrations as part of the factory dump filename, reducing the likelihood of using the wrong cached data for a given branch.</li>
|
|
10917
10878
|
</ul>
|
|
10918
10879
|
<h2 id="v226-2024-06-24">v2.2.6 (2024-06-24)<a class="headerlink" href="#v226-2024-06-24" title="Permanent link">¶</a></h2>
|
|
10919
|
-
<h3 id="
|
|
10880
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
10920
10881
|
<ul>
|
|
10921
10882
|
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
10922
10883
|
</ul>
|
|
10923
|
-
<h3 id="
|
|
10884
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
10924
10885
|
<ul>
|
|
10925
10886
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added support for specifying a tag or a commit hash as the GitRepository <code>branch</code> value.</li>
|
|
10926
10887
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Added an <code>enabled</code> flag to the JobButton class; disabled JobButtons will not appear in the UI.</li>
|
|
10927
10888
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Added <code>--print-hashes</code> option to <code>nautobot-server generate_test_data</code> command.</li>
|
|
10928
10889
|
<li><a href="https://github.com/nautobot/nautobot/issues/5807">#5807</a> - Added the ability to sort and filter the <code>IPAddress</code> list view by the <code>nat_inside</code> field.</li>
|
|
10929
10890
|
</ul>
|
|
10930
|
-
<h3 id="
|
|
10891
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
10931
10892
|
<ul>
|
|
10932
10893
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Changed the behavior on removal of a previously-installed Job class to additionally auto-disable any JobButtons, JobHooks, and ScheduledJobs referencing this class.</li>
|
|
10933
10894
|
</ul>
|
|
10934
|
-
<h3 id="
|
|
10895
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
10935
10896
|
<ul>
|
|
10936
10897
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an issue where config-contexts and export-templates sourced from a Git repository might not be automatically deleted from Nautobot after removing them from the repository and resyncing it.</li>
|
|
10937
10898
|
<li><a href="https://github.com/nautobot/nautobot/issues/5550">#5550</a> - Fixed an exception that might be raised when performing a Git repository "dry-run" sync if certain types of diffs are present.</li>
|
|
@@ -10939,25 +10900,25 @@
|
|
|
10939
10900
|
<li><a href="https://github.com/nautobot/nautobot/issues/5809">#5809</a> - Fixed missing support for the GitRepository model in GraphQL.</li>
|
|
10940
10901
|
<li><a href="https://github.com/nautobot/nautobot/issues/5819">#5819</a> - Fixed inability to use bare (local-DNS) hostnames when specifying a GitRepository remote URL.</li>
|
|
10941
10902
|
</ul>
|
|
10942
|
-
<h3 id="
|
|
10903
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
10943
10904
|
<ul>
|
|
10944
10905
|
<li><a href="https://github.com/nautobot/nautobot/issues/5726">#5726</a> - Updated, cleaned up, and separated out the main landing page for Nautobot docs.</li>
|
|
10945
10906
|
<li><a href="https://github.com/nautobot/nautobot/issues/5752">#5752</a> - Corrected incorrect entry for <code>nautobot.utilities.ordering</code> in <code>v2-code-location-changes</code> table.</li>
|
|
10946
10907
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated <code>mkdocs-material</code> to 9.5.25.</li>
|
|
10947
10908
|
</ul>
|
|
10948
|
-
<h3 id="
|
|
10909
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
10949
10910
|
<ul>
|
|
10950
10911
|
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependencies <code>requests</code> to <code>~2.32.2</code> and <code>watchdog</code> to <code>~4.0.1</code>.</li>
|
|
10951
10912
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Refactored <code>generate_test_data</code> implementation for improved debuggability.</li>
|
|
10952
10913
|
<li><a href="https://github.com/nautobot/nautobot/issues/5793">#5793</a> - Fixed a bug in <code>ControllerManagedDeviceGroupFactory</code> that could result in nondeterministic test data.</li>
|
|
10953
10914
|
</ul>
|
|
10954
10915
|
<h2 id="v225-2024-05-28">v2.2.5 (2024-05-28)<a class="headerlink" href="#v225-2024-05-28" title="Permanent link">¶</a></h2>
|
|
10955
|
-
<h3 id="
|
|
10916
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
10956
10917
|
<ul>
|
|
10957
10918
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
10958
10919
|
<li><a href="https://github.com/nautobot/nautobot/issues/5757">#5757</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
10959
10920
|
</ul>
|
|
10960
|
-
<h3 id="
|
|
10921
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
10961
10922
|
<ul>
|
|
10962
10923
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add VRFs" and "Remove VRFs" fields to <code>PrefixBulkEditForm</code>.</li>
|
|
10963
10924
|
<li><a href="https://github.com/nautobot/nautobot/issues/5588">#5588</a> - Added "Add Prefixes" and "Remove Prefixes" fields to <code>VRFBulkEditForm</code>.</li>
|
|
@@ -10965,11 +10926,11 @@
|
|
|
10965
10926
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Added a generic test case that asserts that all list views provide an appropriate FilterForm class.</li>
|
|
10966
10927
|
<li><a href="https://github.com/nautobot/nautobot/issues/5747">#5747</a> - Added "Circuit Terminations" navigation menu item.</li>
|
|
10967
10928
|
</ul>
|
|
10968
|
-
<h3 id="removed
|
|
10929
|
+
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
10969
10930
|
<ul>
|
|
10970
10931
|
<li><a href="https://github.com/nautobot/nautobot/issues/5690">#5690</a> - Removed deprecated <code>CustomFieldFilterForm</code> alias of <code>CustomFieldModelFilterFormMixin</code> as this would have caused confusion with the newly added <code>CustomFieldFilterForm</code> class providing filtering support for the Custom Fields list view.</li>
|
|
10971
10932
|
</ul>
|
|
10972
|
-
<h3 id="
|
|
10933
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
10973
10934
|
<ul>
|
|
10974
10935
|
<li><a href="https://github.com/nautobot/nautobot/issues/5564">#5564</a> - Fixed <code>ContactAssociationFilterSet.associated_object_type</code> not using the right filter field.</li>
|
|
10975
10936
|
<li><a href="https://github.com/nautobot/nautobot/issues/5669">#5669</a> - Fixed <code>AttributeError</code> thrown when deleting software versions or images from list views.</li>
|
|
@@ -10982,51 +10943,51 @@
|
|
|
10982
10943
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect API query parameters when selecting VLANs to apply to a VM Interface.</li>
|
|
10983
10944
|
<li><a href="https://github.com/nautobot/nautobot/issues/5738">#5738</a> - Fixed incorrect query parameters when accessing or creating Clusters from a Cluster Type detail view.</li>
|
|
10984
10945
|
</ul>
|
|
10985
|
-
<h3 id="
|
|
10946
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
10986
10947
|
<ul>
|
|
10987
10948
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated to <code>mkdocs~1.6.0</code> and <code>mkdocs-material~9.5.23</code>.</li>
|
|
10988
10949
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
10989
10950
|
</ul>
|
|
10990
|
-
<h3 id="
|
|
10951
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
10991
10952
|
<ul>
|
|
10992
10953
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Updated <code>pylint</code> to <code>~3.1.1</code>.</li>
|
|
10993
10954
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
10994
10955
|
</ul>
|
|
10995
10956
|
<h2 id="v224-2024-05-13">v2.2.4 (2024-05-13)<a class="headerlink" href="#v224-2024-05-13" title="Permanent link">¶</a></h2>
|
|
10996
|
-
<h3 id="
|
|
10957
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
10997
10958
|
<ul>
|
|
10998
10959
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
10999
10960
|
<li><a href="https://github.com/nautobot/nautobot/issues/5672">#5672</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
11000
10961
|
</ul>
|
|
11001
|
-
<h3 id="
|
|
10962
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11002
10963
|
<ul>
|
|
11003
10964
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
11004
10965
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
11005
10966
|
</ul>
|
|
11006
|
-
<h3 id="
|
|
10967
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11007
10968
|
<ul>
|
|
11008
10969
|
<li><a href="https://github.com/nautobot/nautobot/issues/4986">#4986</a> - Fixed inconsistent use of super causing <code>active_tab</code> context to be missing from several views.</li>
|
|
11009
10970
|
<li><a href="https://github.com/nautobot/nautobot/issues/5644">#5644</a> - Made the uniqueness constraints between the ContactAssociation model and the related API serializer consistent.</li>
|
|
11010
10971
|
<li><a href="https://github.com/nautobot/nautobot/issues/5684">#5684</a> - Fixed standard CSV export when using export templates.</li>
|
|
11011
10972
|
<li><a href="https://github.com/nautobot/nautobot/issues/5689">#5689</a> - Fixed change logging for bulk delete operations so that user is included in the log.</li>
|
|
11012
10973
|
</ul>
|
|
11013
|
-
<h3 id="
|
|
10974
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11014
10975
|
<ul>
|
|
11015
10976
|
<li><a href="https://github.com/nautobot/nautobot/issues/5661">#5661</a> - Updated documentation to organize installation instructions and provide easier to use functions from mkdocs.</li>
|
|
11016
10977
|
</ul>
|
|
11017
|
-
<h3 id="
|
|
10978
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11018
10979
|
<ul>
|
|
11019
10980
|
<li><a href="https://github.com/nautobot/nautobot/issues/5263">#5263</a> - Updated <code>nh3</code> to <code>0.2.17</code> in <code>poetry.lock</code>.</li>
|
|
11020
10981
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed <code>"version"</code> from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
11021
10982
|
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
11022
10983
|
</ul>
|
|
11023
10984
|
<h2 id="v223-2024-04-30">v2.2.3 (2024-04-30)<a class="headerlink" href="#v223-2024-04-30" title="Permanent link">¶</a></h2>
|
|
11024
|
-
<h3 id="
|
|
10985
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
11025
10986
|
<ul>
|
|
11026
10987
|
<li><a href="https://github.com/nautobot/nautobot/issues/5624">#5624</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.4.1</code> to address <code>CVE-2024-32879</code>.</li>
|
|
11027
10988
|
<li><a href="https://github.com/nautobot/nautobot/issues/5646">#5646</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
11028
10989
|
</ul>
|
|
11029
|
-
<h3 id="
|
|
10990
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11030
10991
|
<ul>
|
|
11031
10992
|
<li><a href="https://github.com/nautobot/nautobot/issues/2946">#2946</a> - Added custom link support for interfaces, console ports, console server ports, power ports, power outlets, front ports, rear ports, device bays, and inventory items.</li>
|
|
11032
10993
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a view to convert location contact information to contacts or teams.</li>
|
|
@@ -11034,11 +10995,11 @@
|
|
|
11034
10995
|
<li><a href="https://github.com/nautobot/nautobot/issues/5560">#5560</a> - Added a template tag which creates a hyperlink that opens in a new tab.</li>
|
|
11035
10996
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Added <code>nautobot.apps.jobs.get_jobs()</code> API.</li>
|
|
11036
10997
|
</ul>
|
|
11037
|
-
<h3 id="
|
|
10998
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11038
10999
|
<ul>
|
|
11039
11000
|
<li><a href="https://github.com/nautobot/nautobot/issues/5498">#5498</a> - Changed the <code>nautobot.extras.jobs.Job</code> class to no longer be a subclass of <code>celery.tasks.Task</code>.</li>
|
|
11040
11001
|
</ul>
|
|
11041
|
-
<h3 id="
|
|
11002
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11042
11003
|
<ul>
|
|
11043
11004
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Fixed missing <code>location</code> field in <code>Prefix</code> and <code>VLAN</code> GraphQL schema.</li>
|
|
11044
11005
|
<li><a href="https://github.com/nautobot/nautobot/issues/5513">#5513</a> - Restored ability to filter Prefix and VLAN objects at the ORM level by <code>location</code>.</li>
|
|
@@ -11051,67 +11012,67 @@
|
|
|
11051
11012
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed some cases where stale Job code might be present when Jobs are sourced from <code>JOBS_ROOT</code> or a Git repository.</li>
|
|
11052
11013
|
<li><a href="https://github.com/nautobot/nautobot/issues/5642">#5642</a> - Fixed incorrect handling of Job <code>kwargs</code> when dry-running a job approval request via the REST API.</li>
|
|
11053
11014
|
</ul>
|
|
11054
|
-
<h3 id="
|
|
11015
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11055
11016
|
<ul>
|
|
11056
11017
|
<li><a href="https://github.com/nautobot/nautobot/issues/5094">#5094</a> - Added "Reserved Attribute Names" section to the Jobs developer documentation.</li>
|
|
11057
11018
|
<li><a href="https://github.com/nautobot/nautobot/issues/5608">#5608</a> - Updated VLAN documentation with a recommendation for modeling of VLANs with respect to Locations.</li>
|
|
11058
11019
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Added extras features docs to core developer new model checklist.</li>
|
|
11059
11020
|
<li><a href="https://github.com/nautobot/nautobot/issues/5635">#5635</a> - Added borders to tabbed sections of mkdocs.</li>
|
|
11060
11021
|
</ul>
|
|
11061
|
-
<h3 id="
|
|
11022
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11062
11023
|
<ul>
|
|
11063
11024
|
<li><a href="https://github.com/nautobot/nautobot/issues/4498">#4498</a> - Removed redundant <code>nautobot.extras.plugins.register_jobs</code> function.</li>
|
|
11064
11025
|
<li><a href="https://github.com/nautobot/nautobot/issues/5586">#5586</a> - Fixed an intermittent ImportError when running tests with certain options.</li>
|
|
11065
11026
|
<li><a href="https://github.com/nautobot/nautobot/issues/5605">#5605</a> - Added prerelease and release workflow to deploy sandbox environments automatically.</li>
|
|
11066
11027
|
</ul>
|
|
11067
11028
|
<h2 id="v222-2024-04-18">v2.2.2 (2024-04-18)<a class="headerlink" href="#v222-2024-04-18" title="Permanent link">¶</a></h2>
|
|
11068
|
-
<h3 id="
|
|
11029
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
11069
11030
|
<ul>
|
|
11070
11031
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
11071
11032
|
</ul>
|
|
11072
|
-
<h3 id="
|
|
11033
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11073
11034
|
<ul>
|
|
11074
11035
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.utils.bulk_delete_with_bulk_change_logging</code> helper function for improving performance on bulk delete.</li>
|
|
11075
11036
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Added <code>nautobot.extras.context_managers.deferred_change_logging_for_bulk_operation</code> context manager for improving performance on bulk update.</li>
|
|
11076
11037
|
</ul>
|
|
11077
|
-
<h3 id="
|
|
11038
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11078
11039
|
<ul>
|
|
11079
11040
|
<li><a href="https://github.com/nautobot/nautobot/issues/2459">#2459</a> - Improved performance of bulk-edit and bulk-delete UI operations by refactoring change logging logic.</li>
|
|
11080
11041
|
<li><a href="https://github.com/nautobot/nautobot/issues/5568">#5568</a> - Added hyperlink to the total device count number under device family.</li>
|
|
11081
11042
|
<li><a href="https://github.com/nautobot/nautobot/issues/5589">#5589</a> - Fixed an invalid Javascript operator in the LLDP neighbor view.</li>
|
|
11082
11043
|
</ul>
|
|
11083
|
-
<h3 id="
|
|
11044
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11084
11045
|
<ul>
|
|
11085
11046
|
<li><a href="https://github.com/nautobot/nautobot/issues/5580">#5580</a> - Fixed bugs when assigning a VLAN to an Interface related to the recently introduced many-to-many relationship between VLANs and Locations.</li>
|
|
11086
11047
|
<li><a href="https://github.com/nautobot/nautobot/issues/5592">#5592</a> - Fixed plugins not loading when using Gunicorn.</li>
|
|
11087
11048
|
</ul>
|
|
11088
|
-
<h3 id="
|
|
11049
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
11089
11050
|
<ul>
|
|
11090
11051
|
<li><a href="https://github.com/nautobot/nautobot/issues/5583">#5583</a> - Re-added release note content for v1.6.16 through v1.6.18.</li>
|
|
11091
11052
|
</ul>
|
|
11092
|
-
<h3 id="
|
|
11053
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11093
11054
|
<ul>
|
|
11094
11055
|
<li><a href="https://github.com/nautobot/nautobot/issues/5590">#5590</a> - Fixed upstream testing workflows showing successful when one of the steps fail.</li>
|
|
11095
11056
|
</ul>
|
|
11096
11057
|
<h2 id="v221-2024-04-15">v2.2.1 (2024-04-15)<a class="headerlink" href="#v221-2024-04-15" title="Permanent link">¶</a></h2>
|
|
11097
|
-
<h3 id="
|
|
11058
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
11098
11059
|
<ul>
|
|
11099
11060
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
11100
11061
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
11101
11062
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to 3.7 due to CVE-2024-3651. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
11102
11063
|
</ul>
|
|
11103
|
-
<h3 id="
|
|
11064
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11104
11065
|
<ul>
|
|
11105
11066
|
<li><a href="https://github.com/nautobot/nautobot/issues/1631">#1631</a> - Added change logging for custom field background tasks.</li>
|
|
11106
11067
|
<li><a href="https://github.com/nautobot/nautobot/issues/5009">#5009</a> - Added the option to filter objects with select/multi-select custom fields based on the UUID of the defined custom field choice(s), for example <code>/api/dcim/locations/?cf_multiselect=1ea9237c-3ba7-4985-ba7e-6fd9e9bff813</code> as an alternative to <code>/api/dcim/locations/?cf_multiselect=some-choice-value</code>.</li>
|
|
11107
11068
|
<li><a href="https://github.com/nautobot/nautobot/issues/5493">#5493</a> - Added a configuration setting <code>METRICS_DISABLED_APPS</code> to disable app metrics for specific apps.</li>
|
|
11108
11069
|
<li><a href="https://github.com/nautobot/nautobot/issues/5540">#5540</a> - Added total devices count to device family detail page.</li>
|
|
11109
11070
|
</ul>
|
|
11110
|
-
<h3 id="
|
|
11071
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11111
11072
|
<ul>
|
|
11112
11073
|
<li><a href="https://github.com/nautobot/nautobot/issues/5274">#5274</a> - Added a setting that changes all rack unit numbers to display a minimum of two digits in rack elevations.</li>
|
|
11113
11074
|
</ul>
|
|
11114
|
-
<h3 id="
|
|
11075
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11115
11076
|
<ul>
|
|
11116
11077
|
<li><a href="https://github.com/nautobot/nautobot/issues/5469">#5469</a> - Fixed contacts and teams not being included in the global search.</li>
|
|
11117
11078
|
<li><a href="https://github.com/nautobot/nautobot/issues/5489">#5489</a> - Fixed REST API for Contact and Team incorrectly marking the <code>phone</code> and <code>email</code> fields as mandatory.</li>
|
|
@@ -11121,20 +11082,20 @@
|
|
|
11121
11082
|
<li><a href="https://github.com/nautobot/nautobot/issues/5527">#5527</a> - Fixed incorrect "members" links in Virtual Chassis list view.</li>
|
|
11122
11083
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Re-added <code>nautobot.setup()</code> function mistakenly removed in 2.2.0.</li>
|
|
11123
11084
|
</ul>
|
|
11124
|
-
<h3 id="
|
|
11085
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11125
11086
|
<ul>
|
|
11126
11087
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed jsonschema version constraint from <code>>=4.7.0,<4.19.0</code> to <code>^4.7.0</code>.</li>
|
|
11127
11088
|
<li><a href="https://github.com/nautobot/nautobot/issues/5517">#5517</a> - Updated <code>djangorestframework</code> to <code>~3.15.1</code>.</li>
|
|
11128
11089
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated most dependencies to the latest versions available as of 2024-04-01.</li>
|
|
11129
11090
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
11130
11091
|
</ul>
|
|
11131
|
-
<h3 id="
|
|
11092
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
11132
11093
|
<ul>
|
|
11133
11094
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Added "Model Development Checklist" to the core developer documentation.</li>
|
|
11134
11095
|
<li><a href="https://github.com/nautobot/nautobot/issues/5189">#5189</a> - Merged "Extending Models" documentation into the "Model Development Checklist" documentation.</li>
|
|
11135
11096
|
<li><a href="https://github.com/nautobot/nautobot/issues/5526">#5526</a> - Fixed doc reference to job cprofile file location.</li>
|
|
11136
11097
|
</ul>
|
|
11137
|
-
<h3 id="
|
|
11098
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11138
11099
|
<ul>
|
|
11139
11100
|
<li><a href="https://github.com/nautobot/nautobot/issues/5531">#5531</a> - Removed <code>nautobot-server pylint</code> management command from the <code>example_app</code>, as pylint can be invoked directly with an appropriate <code>--init-hook</code> instead.</li>
|
|
11140
11101
|
<li><a href="https://github.com/nautobot/nautobot/issues/5547">#5547</a> - Fixed TransactionTestCase inheritance order so that <code>test.client</code> works in test cases using this class.</li>
|
|
@@ -11144,12 +11105,12 @@
|
|
|
11144
11105
|
<p class="admonition-title">Warning</p>
|
|
11145
11106
|
<p>Upgrading from beta releases to final releases is never recommended for Nautobot; in the case of 2.2.0b1 to 2.2.0 several data models and database migrations have been modified (see <a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a>) between the two releases, and so upgrading in place from 2.2.0b1 to 2.2.0 <strong>will not work</strong>.</p>
|
|
11146
11107
|
</div>
|
|
11147
|
-
<h3 id="
|
|
11108
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
11148
11109
|
<ul>
|
|
11149
11110
|
<li><a href="https://github.com/nautobot/nautobot/issues/4811">#4811</a> - Added a new generic test case (<code>test_table_with_indentation_is_removed_on_filter_or_sort</code>) to <code>ListObjectsViewTestCase</code> to test that the tree hierarchy is correctly removed on TreeModel list views when sorting or filtering is applied. This test will also run in these subclasses of the <code>ListObjectsViewTestCase</code>: <code>PrimaryObjectViewTestCase</code>, <code>OrganizationalObjectViewTestCase</code>, and <code>DeviceComponentViewTestCase</code>.</li>
|
|
11150
11111
|
<li><a href="https://github.com/nautobot/nautobot/issues/5034">#5034</a> - Added a management command (<code>nautobot-server migrate_location_contacts</code>) to help migrate the Location <code>contact_name</code>, <code>contact_email</code> and <code>contact_phone</code> fields to Contact and Teams models.</li>
|
|
11151
11112
|
</ul>
|
|
11152
|
-
<h3 id="
|
|
11113
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11153
11114
|
<ul>
|
|
11154
11115
|
<li><a href="https://github.com/nautobot/nautobot/issues/5452">#5452</a> - Changed the behavior of Prefix table: now they are sortable, and after sorting is applied, all hierarchy indentations are removed.</li>
|
|
11155
11116
|
<li><a href="https://github.com/nautobot/nautobot/issues/5454">#5454</a> - Changed one-to-many links from Controller to <code>PROTECT</code> against deleting.</li>
|
|
@@ -11162,24 +11123,24 @@
|
|
|
11162
11123
|
<li><a href="https://github.com/nautobot/nautobot/issues/5475">#5475</a> - Changed the behavior of Prefix table and other Tree Model tables: now after filtering is applied, all hierarchy indentations are removed.</li>
|
|
11163
11124
|
<li><a href="https://github.com/nautobot/nautobot/issues/5487">#5487</a> - Moved some nav menu items around to make better logical sense and to allow quicker access to more commonly accessed features.</li>
|
|
11164
11125
|
</ul>
|
|
11165
|
-
<h3 id="
|
|
11126
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11166
11127
|
<ul>
|
|
11167
11128
|
<li><a href="https://github.com/nautobot/nautobot/issues/5415">#5415</a> - Fixed Team(s) field not pre-populating when editing a Contact.</li>
|
|
11168
11129
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Roles API response containing duplicate entries when filtering on more than one <code>content_types</code> value.</li>
|
|
11169
11130
|
<li><a href="https://github.com/nautobot/nautobot/issues/5431">#5431</a> - Fixed Providers API response containing duplicate entries when filtering on more than one <code>location</code> value.</li>
|
|
11170
11131
|
<li><a href="https://github.com/nautobot/nautobot/issues/5440">#5440</a> - Fixed <code>Cannot resolve keyword 'task_id' into field</code> error when calling <code>nautobot-server celery result <task_id></code>.</li>
|
|
11171
11132
|
</ul>
|
|
11172
|
-
<h3 id="
|
|
11133
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
11173
11134
|
<ul>
|
|
11174
11135
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & it's dependency on <code>ecdsa</code>.</li>
|
|
11175
11136
|
</ul>
|
|
11176
|
-
<h3 id="
|
|
11137
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11177
11138
|
<ul>
|
|
11178
11139
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--pattern</code> argument to <code>invoke unittest</code>.</li>
|
|
11179
11140
|
<li><a href="https://github.com/nautobot/nautobot/issues/5435">#5435</a> - Added <code>--parallel-workers</code> argument to <code>invoke unittest</code>.</li>
|
|
11180
11141
|
</ul>
|
|
11181
11142
|
<h2 id="v220-beta1-2024-03-19">v2.2.0-beta.1 (2024-03-19)<a class="headerlink" href="#v220-beta1-2024-03-19" title="Permanent link">¶</a></h2>
|
|
11182
|
-
<h3 id="
|
|
11143
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
11183
11144
|
<ul>
|
|
11184
11145
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added new models for software versions and software image files.</li>
|
|
11185
11146
|
<li><a href="https://github.com/nautobot/nautobot/issues/1">#1</a> - Added a many-to-many relationship from <code>Device</code> to <code>SoftwareImageFile</code>.</li>
|
|
@@ -11218,7 +11179,7 @@
|
|
|
11218
11179
|
<li><a href="https://github.com/nautobot/nautobot/issues/5347">#5347</a> - Added an option to the Job-based CSV import to make atomic transactions optional.</li>
|
|
11219
11180
|
<li><a href="https://github.com/nautobot/nautobot/issues/5349">#5349</a> - Added REST API for vlan-to-location and prefix-to-location M2M.</li>
|
|
11220
11181
|
</ul>
|
|
11221
|
-
<h3 id="
|
|
11182
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11222
11183
|
<ul>
|
|
11223
11184
|
<li><a href="https://github.com/nautobot/nautobot/issues/2906">#2906</a> - Increased <code>max_length</code> on all CharFields to at least 255 characters except where a shorter <code>max_length</code> is explicitly justified.</li>
|
|
11224
11185
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Changed <code>Prefix.location</code> to <code>Prefix.locations</code> allowing multiple Locations to be associated with a given Prefix.</li>
|
|
@@ -11237,18 +11198,18 @@
|
|
|
11237
11198
|
<li><a href="https://github.com/nautobot/nautobot/issues/5412">#5412</a> - Changed DeviceType YAML/JSON import to now map unrecognized port template <code>type</code> values to <code>"other"</code> instead of failing the import.</li>
|
|
11238
11199
|
<li><a href="https://github.com/nautobot/nautobot/issues/5414">#5414</a> - Changed <code>ImportObjects.roll_back_if_error</code> form field help text and label.</li>
|
|
11239
11200
|
</ul>
|
|
11240
|
-
<h3 id="deprecated
|
|
11201
|
+
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
11241
11202
|
<ul>
|
|
11242
11203
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Deprecated the <code>import_button</code> button template-tag.</li>
|
|
11243
11204
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Deprecated the <code>nautobot.apps.exceptions.ConfigurationError</code> class as it is no longer used in Nautobot core and is trivially reimplementable by any App if desired.</li>
|
|
11244
11205
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Deprecated the <code>plugins</code> key under the <code>/api/status/</code> REST API endpoint. Refer to <code>nautobot-apps</code> instead.</li>
|
|
11245
11206
|
</ul>
|
|
11246
|
-
<h3 id="
|
|
11207
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
11247
11208
|
<ul>
|
|
11248
11209
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Removed the requirement for <code>ViewTestCases</code> subclasses to define <code>csv_data</code> for testing bulk-import views, as this functionality is now covered by a generic system Job.</li>
|
|
11249
11210
|
<li><a href="https://github.com/nautobot/nautobot/issues/5116">#5116</a> - Removed <code>logan</code>-derived application startup logic, simplifying the Nautobot startup code flow.</li>
|
|
11250
11211
|
</ul>
|
|
11251
|
-
<h3 id="
|
|
11212
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11252
11213
|
<ul>
|
|
11253
11214
|
<li><a href="https://github.com/nautobot/nautobot/issues/4334">#4334</a> - Fixed ordering of VLANs in the UI list view.</li>
|
|
11254
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/5064">#5064</a> - Fixed an exception in <code>Job.after_return()</code> if a Job with an optional <code>FileVar</code> was executed without supplying a value for that variable.</li>
|
|
@@ -11261,18 +11222,18 @@
|
|
|
11261
11222
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a <code>ValidationError</code> that was being thrown when a user logged out.</li>
|
|
11262
11223
|
<li><a href="https://github.com/nautobot/nautobot/issues/5298">#5298</a> - Fixed a case where viewing a completed JobResult that was missing a <code>date_done</code> value would cause the JobResult view to repeatedly refresh.</li>
|
|
11263
11224
|
</ul>
|
|
11264
|
-
<h3 id="
|
|
11225
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
11265
11226
|
<ul>
|
|
11266
11227
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Broadened <code>Markdown</code> dependency to permit versions up to 3.5.x.</li>
|
|
11267
11228
|
</ul>
|
|
11268
|
-
<h3 id="
|
|
11229
|
+
<h3 id="documentation_8">Documentation<a class="headerlink" href="#documentation_8" title="Permanent link">¶</a></h3>
|
|
11269
11230
|
<ul>
|
|
11270
11231
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Updated all documentation referencing the <code>example_plugin</code> to refer to the (renamed) <code>example_app</code>.</li>
|
|
11271
11232
|
<li><a href="https://github.com/nautobot/nautobot/issues/5179">#5179</a> - Replaced some "plugin" references in the documentation with "App" or "Nautobot App" as appropriate.</li>
|
|
11272
11233
|
<li><a href="https://github.com/nautobot/nautobot/issues/5248">#5248</a> - Removed source code excerpts from the "App Developer Guide > Code Reference" section of the documentation.</li>
|
|
11273
11234
|
<li><a href="https://github.com/nautobot/nautobot/issues/5341">#5341</a> - Replaced references to "plugins" in the documentation with "Apps".</li>
|
|
11274
11235
|
</ul>
|
|
11275
|
-
<h3 id="
|
|
11236
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
11276
11237
|
<ul>
|
|
11277
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Added <code>mkdocs-macros-plugin</code> as a development/documentation-rendering dependency.</li>
|
|
11278
11239
|
<li><a href="https://github.com/nautobot/nautobot/issues/5099">#5099</a> - Refactored documentation in <code>optional-settings</code> and <code>required-settings</code> to be generated automatically from <code>settings.yaml</code> schema.</li>
|
|
@@ -11441,7 +11402,7 @@
|
|
|
11441
11402
|
<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>
|
|
11442
11403
|
|
|
11443
11404
|
|
|
11444
|
-
<script src="../assets/javascripts/bundle.
|
|
11405
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
11445
11406
|
|
|
11446
11407
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11447
11408
|
|