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
|
|
|
@@ -8897,54 +8855,54 @@
|
|
|
8897
8855
|
<ul class="md-nav__list">
|
|
8898
8856
|
|
|
8899
8857
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#security
|
|
8858
|
+
<a href="#security" class="md-nav__link">
|
|
8901
8859
|
<span class="md-ellipsis">
|
|
8902
|
-
Security
|
|
8860
|
+
Security
|
|
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="#added_1" class="md-nav__link">
|
|
8910
8868
|
<span class="md-ellipsis">
|
|
8911
|
-
Added
|
|
8869
|
+
Added
|
|
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="#changed_1" class="md-nav__link">
|
|
8919
8877
|
<span class="md-ellipsis">
|
|
8920
|
-
Changed
|
|
8878
|
+
Changed
|
|
8921
8879
|
</span>
|
|
8922
8880
|
</a>
|
|
8923
8881
|
|
|
8924
8882
|
</li>
|
|
8925
8883
|
|
|
8926
8884
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#fixed
|
|
8885
|
+
<a href="#fixed" class="md-nav__link">
|
|
8928
8886
|
<span class="md-ellipsis">
|
|
8929
|
-
Fixed
|
|
8887
|
+
Fixed
|
|
8930
8888
|
</span>
|
|
8931
8889
|
</a>
|
|
8932
8890
|
|
|
8933
8891
|
</li>
|
|
8934
8892
|
|
|
8935
8893
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#dependencies
|
|
8894
|
+
<a href="#dependencies" class="md-nav__link">
|
|
8937
8895
|
<span class="md-ellipsis">
|
|
8938
|
-
Dependencies
|
|
8896
|
+
Dependencies
|
|
8939
8897
|
</span>
|
|
8940
8898
|
</a>
|
|
8941
8899
|
|
|
8942
8900
|
</li>
|
|
8943
8901
|
|
|
8944
8902
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#housekeeping
|
|
8903
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8946
8904
|
<span class="md-ellipsis">
|
|
8947
|
-
Housekeeping
|
|
8905
|
+
Housekeeping
|
|
8948
8906
|
</span>
|
|
8949
8907
|
</a>
|
|
8950
8908
|
|
|
@@ -8966,36 +8924,36 @@
|
|
|
8966
8924
|
<ul class="md-nav__list">
|
|
8967
8925
|
|
|
8968
8926
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#
|
|
8927
|
+
<a href="#added_2" class="md-nav__link">
|
|
8970
8928
|
<span class="md-ellipsis">
|
|
8971
|
-
Added
|
|
8929
|
+
Added
|
|
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="#changed_2" class="md-nav__link">
|
|
8979
8937
|
<span class="md-ellipsis">
|
|
8980
|
-
Changed
|
|
8938
|
+
Changed
|
|
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="#fixed_1" class="md-nav__link">
|
|
8988
8946
|
<span class="md-ellipsis">
|
|
8989
|
-
Fixed
|
|
8947
|
+
Fixed
|
|
8990
8948
|
</span>
|
|
8991
8949
|
</a>
|
|
8992
8950
|
|
|
8993
8951
|
</li>
|
|
8994
8952
|
|
|
8995
8953
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#documentation
|
|
8954
|
+
<a href="#documentation" class="md-nav__link">
|
|
8997
8955
|
<span class="md-ellipsis">
|
|
8998
|
-
Documentation
|
|
8956
|
+
Documentation
|
|
8999
8957
|
</span>
|
|
9000
8958
|
</a>
|
|
9001
8959
|
|
|
@@ -9017,54 +8975,54 @@
|
|
|
9017
8975
|
<ul class="md-nav__list">
|
|
9018
8976
|
|
|
9019
8977
|
<li class="md-nav__item">
|
|
9020
|
-
<a href="#
|
|
8978
|
+
<a href="#security_1" class="md-nav__link">
|
|
9021
8979
|
<span class="md-ellipsis">
|
|
9022
|
-
Security
|
|
8980
|
+
Security
|
|
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="#added_3" class="md-nav__link">
|
|
9030
8988
|
<span class="md-ellipsis">
|
|
9031
|
-
Added
|
|
8989
|
+
Added
|
|
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="#changed_3" class="md-nav__link">
|
|
9039
8997
|
<span class="md-ellipsis">
|
|
9040
|
-
Changed
|
|
8998
|
+
Changed
|
|
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="#fixed_2" class="md-nav__link">
|
|
9048
9006
|
<span class="md-ellipsis">
|
|
9049
|
-
Fixed
|
|
9007
|
+
Fixed
|
|
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="#dependencies_1" class="md-nav__link">
|
|
9057
9015
|
<span class="md-ellipsis">
|
|
9058
|
-
Dependencies
|
|
9016
|
+
Dependencies
|
|
9059
9017
|
</span>
|
|
9060
9018
|
</a>
|
|
9061
9019
|
|
|
9062
9020
|
</li>
|
|
9063
9021
|
|
|
9064
9022
|
<li class="md-nav__item">
|
|
9065
|
-
<a href="#
|
|
9023
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9066
9024
|
<span class="md-ellipsis">
|
|
9067
|
-
Housekeeping
|
|
9025
|
+
Housekeeping
|
|
9068
9026
|
</span>
|
|
9069
9027
|
</a>
|
|
9070
9028
|
|
|
@@ -9086,45 +9044,45 @@
|
|
|
9086
9044
|
<ul class="md-nav__list">
|
|
9087
9045
|
|
|
9088
9046
|
<li class="md-nav__item">
|
|
9089
|
-
<a href="#
|
|
9047
|
+
<a href="#added_4" 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_4" 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_3" 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_1" 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_2" class="md-nav__link">
|
|
9126
9084
|
<span class="md-ellipsis">
|
|
9127
|
-
Housekeeping
|
|
9085
|
+
Housekeeping
|
|
9128
9086
|
</span>
|
|
9129
9087
|
</a>
|
|
9130
9088
|
|
|
@@ -9146,27 +9104,27 @@
|
|
|
9146
9104
|
<ul class="md-nav__list">
|
|
9147
9105
|
|
|
9148
9106
|
<li class="md-nav__item">
|
|
9149
|
-
<a href="#
|
|
9107
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9150
9108
|
<span class="md-ellipsis">
|
|
9151
|
-
Fixed
|
|
9109
|
+
Fixed
|
|
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="#documentation_2" class="md-nav__link">
|
|
9159
9117
|
<span class="md-ellipsis">
|
|
9160
|
-
Documentation
|
|
9118
|
+
Documentation
|
|
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="#housekeeping_3" class="md-nav__link">
|
|
9168
9126
|
<span class="md-ellipsis">
|
|
9169
|
-
Housekeeping
|
|
9127
|
+
Housekeeping
|
|
9170
9128
|
</span>
|
|
9171
9129
|
</a>
|
|
9172
9130
|
|
|
@@ -9188,36 +9146,36 @@
|
|
|
9188
9146
|
<ul class="md-nav__list">
|
|
9189
9147
|
|
|
9190
9148
|
<li class="md-nav__item">
|
|
9191
|
-
<a href="#
|
|
9149
|
+
<a href="#security_2" class="md-nav__link">
|
|
9192
9150
|
<span class="md-ellipsis">
|
|
9193
|
-
Security
|
|
9151
|
+
Security
|
|
9194
9152
|
</span>
|
|
9195
9153
|
</a>
|
|
9196
9154
|
|
|
9197
9155
|
</li>
|
|
9198
9156
|
|
|
9199
9157
|
<li class="md-nav__item">
|
|
9200
|
-
<a href="#
|
|
9158
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9201
9159
|
<span class="md-ellipsis">
|
|
9202
|
-
Fixed
|
|
9160
|
+
Fixed
|
|
9203
9161
|
</span>
|
|
9204
9162
|
</a>
|
|
9205
9163
|
|
|
9206
9164
|
</li>
|
|
9207
9165
|
|
|
9208
9166
|
<li class="md-nav__item">
|
|
9209
|
-
<a href="#
|
|
9167
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9210
9168
|
<span class="md-ellipsis">
|
|
9211
|
-
Documentation
|
|
9169
|
+
Documentation
|
|
9212
9170
|
</span>
|
|
9213
9171
|
</a>
|
|
9214
9172
|
|
|
9215
9173
|
</li>
|
|
9216
9174
|
|
|
9217
9175
|
<li class="md-nav__item">
|
|
9218
|
-
<a href="#
|
|
9176
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9219
9177
|
<span class="md-ellipsis">
|
|
9220
|
-
Housekeeping
|
|
9178
|
+
Housekeeping
|
|
9221
9179
|
</span>
|
|
9222
9180
|
</a>
|
|
9223
9181
|
|
|
@@ -9239,36 +9197,36 @@
|
|
|
9239
9197
|
<ul class="md-nav__list">
|
|
9240
9198
|
|
|
9241
9199
|
<li class="md-nav__item">
|
|
9242
|
-
<a href="#
|
|
9200
|
+
<a href="#security_3" class="md-nav__link">
|
|
9243
9201
|
<span class="md-ellipsis">
|
|
9244
|
-
Security
|
|
9202
|
+
Security
|
|
9245
9203
|
</span>
|
|
9246
9204
|
</a>
|
|
9247
9205
|
|
|
9248
9206
|
</li>
|
|
9249
9207
|
|
|
9250
9208
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9209
|
+
<a href="#added_5" class="md-nav__link">
|
|
9252
9210
|
<span class="md-ellipsis">
|
|
9253
|
-
Added
|
|
9211
|
+
Added
|
|
9254
9212
|
</span>
|
|
9255
9213
|
</a>
|
|
9256
9214
|
|
|
9257
9215
|
</li>
|
|
9258
9216
|
|
|
9259
9217
|
<li class="md-nav__item">
|
|
9260
|
-
<a href="#
|
|
9218
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9261
9219
|
<span class="md-ellipsis">
|
|
9262
|
-
Fixed
|
|
9220
|
+
Fixed
|
|
9263
9221
|
</span>
|
|
9264
9222
|
</a>
|
|
9265
9223
|
|
|
9266
9224
|
</li>
|
|
9267
9225
|
|
|
9268
9226
|
<li class="md-nav__item">
|
|
9269
|
-
<a href="#
|
|
9227
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9270
9228
|
<span class="md-ellipsis">
|
|
9271
|
-
Documentation
|
|
9229
|
+
Documentation
|
|
9272
9230
|
</span>
|
|
9273
9231
|
</a>
|
|
9274
9232
|
|
|
@@ -9290,54 +9248,54 @@
|
|
|
9290
9248
|
<ul class="md-nav__list">
|
|
9291
9249
|
|
|
9292
9250
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9251
|
+
<a href="#added_6" class="md-nav__link">
|
|
9294
9252
|
<span class="md-ellipsis">
|
|
9295
|
-
Added
|
|
9253
|
+
Added
|
|
9296
9254
|
</span>
|
|
9297
9255
|
</a>
|
|
9298
9256
|
|
|
9299
9257
|
</li>
|
|
9300
9258
|
|
|
9301
9259
|
<li class="md-nav__item">
|
|
9302
|
-
<a href="#
|
|
9260
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9303
9261
|
<span class="md-ellipsis">
|
|
9304
|
-
Changed
|
|
9262
|
+
Changed
|
|
9305
9263
|
</span>
|
|
9306
9264
|
</a>
|
|
9307
9265
|
|
|
9308
9266
|
</li>
|
|
9309
9267
|
|
|
9310
9268
|
<li class="md-nav__item">
|
|
9311
|
-
<a href="#
|
|
9269
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9312
9270
|
<span class="md-ellipsis">
|
|
9313
|
-
Fixed
|
|
9271
|
+
Fixed
|
|
9314
9272
|
</span>
|
|
9315
9273
|
</a>
|
|
9316
9274
|
|
|
9317
9275
|
</li>
|
|
9318
9276
|
|
|
9319
9277
|
<li class="md-nav__item">
|
|
9320
|
-
<a href="#
|
|
9278
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9321
9279
|
<span class="md-ellipsis">
|
|
9322
|
-
Dependencies
|
|
9280
|
+
Dependencies
|
|
9323
9281
|
</span>
|
|
9324
9282
|
</a>
|
|
9325
9283
|
|
|
9326
9284
|
</li>
|
|
9327
9285
|
|
|
9328
9286
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9287
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9330
9288
|
<span class="md-ellipsis">
|
|
9331
|
-
Documentation
|
|
9289
|
+
Documentation
|
|
9332
9290
|
</span>
|
|
9333
9291
|
</a>
|
|
9334
9292
|
|
|
9335
9293
|
</li>
|
|
9336
9294
|
|
|
9337
9295
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9296
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9339
9297
|
<span class="md-ellipsis">
|
|
9340
|
-
Housekeeping
|
|
9298
|
+
Housekeeping
|
|
9341
9299
|
</span>
|
|
9342
9300
|
</a>
|
|
9343
9301
|
|
|
@@ -9359,54 +9317,54 @@
|
|
|
9359
9317
|
<ul class="md-nav__list">
|
|
9360
9318
|
|
|
9361
9319
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9320
|
+
<a href="#security_4" class="md-nav__link">
|
|
9363
9321
|
<span class="md-ellipsis">
|
|
9364
|
-
Security
|
|
9322
|
+
Security
|
|
9365
9323
|
</span>
|
|
9366
9324
|
</a>
|
|
9367
9325
|
|
|
9368
9326
|
</li>
|
|
9369
9327
|
|
|
9370
9328
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9329
|
+
<a href="#added_7" class="md-nav__link">
|
|
9372
9330
|
<span class="md-ellipsis">
|
|
9373
|
-
Added
|
|
9331
|
+
Added
|
|
9374
9332
|
</span>
|
|
9375
9333
|
</a>
|
|
9376
9334
|
|
|
9377
9335
|
</li>
|
|
9378
9336
|
|
|
9379
9337
|
<li class="md-nav__item">
|
|
9380
|
-
<a href="#
|
|
9338
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9381
9339
|
<span class="md-ellipsis">
|
|
9382
|
-
Changed
|
|
9340
|
+
Changed
|
|
9383
9341
|
</span>
|
|
9384
9342
|
</a>
|
|
9385
9343
|
|
|
9386
9344
|
</li>
|
|
9387
9345
|
|
|
9388
9346
|
<li class="md-nav__item">
|
|
9389
|
-
<a href="#
|
|
9347
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9390
9348
|
<span class="md-ellipsis">
|
|
9391
|
-
Fixed
|
|
9349
|
+
Fixed
|
|
9392
9350
|
</span>
|
|
9393
9351
|
</a>
|
|
9394
9352
|
|
|
9395
9353
|
</li>
|
|
9396
9354
|
|
|
9397
9355
|
<li class="md-nav__item">
|
|
9398
|
-
<a href="#
|
|
9356
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9399
9357
|
<span class="md-ellipsis">
|
|
9400
|
-
Documentation
|
|
9358
|
+
Documentation
|
|
9401
9359
|
</span>
|
|
9402
9360
|
</a>
|
|
9403
9361
|
|
|
9404
9362
|
</li>
|
|
9405
9363
|
|
|
9406
9364
|
<li class="md-nav__item">
|
|
9407
|
-
<a href="#
|
|
9365
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9408
9366
|
<span class="md-ellipsis">
|
|
9409
|
-
Housekeeping
|
|
9367
|
+
Housekeeping
|
|
9410
9368
|
</span>
|
|
9411
9369
|
</a>
|
|
9412
9370
|
|
|
@@ -9428,18 +9386,18 @@
|
|
|
9428
9386
|
<ul class="md-nav__list">
|
|
9429
9387
|
|
|
9430
9388
|
<li class="md-nav__item">
|
|
9431
|
-
<a href="#
|
|
9389
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9432
9390
|
<span class="md-ellipsis">
|
|
9433
|
-
Changed
|
|
9391
|
+
Changed
|
|
9434
9392
|
</span>
|
|
9435
9393
|
</a>
|
|
9436
9394
|
|
|
9437
9395
|
</li>
|
|
9438
9396
|
|
|
9439
9397
|
<li class="md-nav__item">
|
|
9440
|
-
<a href="#
|
|
9398
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9441
9399
|
<span class="md-ellipsis">
|
|
9442
|
-
Fixed
|
|
9400
|
+
Fixed
|
|
9443
9401
|
</span>
|
|
9444
9402
|
</a>
|
|
9445
9403
|
|
|
@@ -9461,45 +9419,45 @@
|
|
|
9461
9419
|
<ul class="md-nav__list">
|
|
9462
9420
|
|
|
9463
9421
|
<li class="md-nav__item">
|
|
9464
|
-
<a href="#
|
|
9422
|
+
<a href="#added_8" class="md-nav__link">
|
|
9465
9423
|
<span class="md-ellipsis">
|
|
9466
|
-
Added
|
|
9424
|
+
Added
|
|
9467
9425
|
</span>
|
|
9468
9426
|
</a>
|
|
9469
9427
|
|
|
9470
9428
|
</li>
|
|
9471
9429
|
|
|
9472
9430
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9431
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9474
9432
|
<span class="md-ellipsis">
|
|
9475
|
-
Changed
|
|
9433
|
+
Changed
|
|
9476
9434
|
</span>
|
|
9477
9435
|
</a>
|
|
9478
9436
|
|
|
9479
9437
|
</li>
|
|
9480
9438
|
|
|
9481
9439
|
<li class="md-nav__item">
|
|
9482
|
-
<a href="#
|
|
9440
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9483
9441
|
<span class="md-ellipsis">
|
|
9484
|
-
Fixed
|
|
9442
|
+
Fixed
|
|
9485
9443
|
</span>
|
|
9486
9444
|
</a>
|
|
9487
9445
|
|
|
9488
9446
|
</li>
|
|
9489
9447
|
|
|
9490
9448
|
<li class="md-nav__item">
|
|
9491
|
-
<a href="#
|
|
9449
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
9492
9450
|
<span class="md-ellipsis">
|
|
9493
|
-
Documentation
|
|
9451
|
+
Documentation
|
|
9494
9452
|
</span>
|
|
9495
9453
|
</a>
|
|
9496
9454
|
|
|
9497
9455
|
</li>
|
|
9498
9456
|
|
|
9499
9457
|
<li class="md-nav__item">
|
|
9500
|
-
<a href="#
|
|
9458
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9501
9459
|
<span class="md-ellipsis">
|
|
9502
|
-
Housekeeping
|
|
9460
|
+
Housekeeping
|
|
9503
9461
|
</span>
|
|
9504
9462
|
</a>
|
|
9505
9463
|
|
|
@@ -9521,54 +9479,54 @@
|
|
|
9521
9479
|
<ul class="md-nav__list">
|
|
9522
9480
|
|
|
9523
9481
|
<li class="md-nav__item">
|
|
9524
|
-
<a href="#
|
|
9482
|
+
<a href="#added_9" class="md-nav__link">
|
|
9525
9483
|
<span class="md-ellipsis">
|
|
9526
|
-
Added
|
|
9484
|
+
Added
|
|
9527
9485
|
</span>
|
|
9528
9486
|
</a>
|
|
9529
9487
|
|
|
9530
9488
|
</li>
|
|
9531
9489
|
|
|
9532
9490
|
<li class="md-nav__item">
|
|
9533
|
-
<a href="#
|
|
9491
|
+
<a href="#changed_9" class="md-nav__link">
|
|
9534
9492
|
<span class="md-ellipsis">
|
|
9535
|
-
Changed
|
|
9493
|
+
Changed
|
|
9536
9494
|
</span>
|
|
9537
9495
|
</a>
|
|
9538
9496
|
|
|
9539
9497
|
</li>
|
|
9540
9498
|
|
|
9541
9499
|
<li class="md-nav__item">
|
|
9542
|
-
<a href="#
|
|
9500
|
+
<a href="#removed_1" class="md-nav__link">
|
|
9543
9501
|
<span class="md-ellipsis">
|
|
9544
|
-
Removed
|
|
9502
|
+
Removed
|
|
9545
9503
|
</span>
|
|
9546
9504
|
</a>
|
|
9547
9505
|
|
|
9548
9506
|
</li>
|
|
9549
9507
|
|
|
9550
9508
|
<li class="md-nav__item">
|
|
9551
|
-
<a href="#
|
|
9509
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
9552
9510
|
<span class="md-ellipsis">
|
|
9553
|
-
Fixed
|
|
9511
|
+
Fixed
|
|
9554
9512
|
</span>
|
|
9555
9513
|
</a>
|
|
9556
9514
|
|
|
9557
9515
|
</li>
|
|
9558
9516
|
|
|
9559
9517
|
<li class="md-nav__item">
|
|
9560
|
-
<a href="#
|
|
9518
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9561
9519
|
<span class="md-ellipsis">
|
|
9562
|
-
Dependencies
|
|
9520
|
+
Dependencies
|
|
9563
9521
|
</span>
|
|
9564
9522
|
</a>
|
|
9565
9523
|
|
|
9566
9524
|
</li>
|
|
9567
9525
|
|
|
9568
9526
|
<li class="md-nav__item">
|
|
9569
|
-
<a href="#
|
|
9527
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9570
9528
|
<span class="md-ellipsis">
|
|
9571
|
-
Housekeeping
|
|
9529
|
+
Housekeeping
|
|
9572
9530
|
</span>
|
|
9573
9531
|
</a>
|
|
9574
9532
|
|
|
@@ -10282,54 +10240,54 @@
|
|
|
10282
10240
|
<ul class="md-nav__list">
|
|
10283
10241
|
|
|
10284
10242
|
<li class="md-nav__item">
|
|
10285
|
-
<a href="#security
|
|
10243
|
+
<a href="#security" class="md-nav__link">
|
|
10286
10244
|
<span class="md-ellipsis">
|
|
10287
|
-
Security
|
|
10245
|
+
Security
|
|
10288
10246
|
</span>
|
|
10289
10247
|
</a>
|
|
10290
10248
|
|
|
10291
10249
|
</li>
|
|
10292
10250
|
|
|
10293
10251
|
<li class="md-nav__item">
|
|
10294
|
-
<a href="#
|
|
10252
|
+
<a href="#added_1" class="md-nav__link">
|
|
10295
10253
|
<span class="md-ellipsis">
|
|
10296
|
-
Added
|
|
10254
|
+
Added
|
|
10297
10255
|
</span>
|
|
10298
10256
|
</a>
|
|
10299
10257
|
|
|
10300
10258
|
</li>
|
|
10301
10259
|
|
|
10302
10260
|
<li class="md-nav__item">
|
|
10303
|
-
<a href="#
|
|
10261
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10304
10262
|
<span class="md-ellipsis">
|
|
10305
|
-
Changed
|
|
10263
|
+
Changed
|
|
10306
10264
|
</span>
|
|
10307
10265
|
</a>
|
|
10308
10266
|
|
|
10309
10267
|
</li>
|
|
10310
10268
|
|
|
10311
10269
|
<li class="md-nav__item">
|
|
10312
|
-
<a href="#fixed
|
|
10270
|
+
<a href="#fixed" class="md-nav__link">
|
|
10313
10271
|
<span class="md-ellipsis">
|
|
10314
|
-
Fixed
|
|
10272
|
+
Fixed
|
|
10315
10273
|
</span>
|
|
10316
10274
|
</a>
|
|
10317
10275
|
|
|
10318
10276
|
</li>
|
|
10319
10277
|
|
|
10320
10278
|
<li class="md-nav__item">
|
|
10321
|
-
<a href="#dependencies
|
|
10279
|
+
<a href="#dependencies" class="md-nav__link">
|
|
10322
10280
|
<span class="md-ellipsis">
|
|
10323
|
-
Dependencies
|
|
10281
|
+
Dependencies
|
|
10324
10282
|
</span>
|
|
10325
10283
|
</a>
|
|
10326
10284
|
|
|
10327
10285
|
</li>
|
|
10328
10286
|
|
|
10329
10287
|
<li class="md-nav__item">
|
|
10330
|
-
<a href="#housekeeping
|
|
10288
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10331
10289
|
<span class="md-ellipsis">
|
|
10332
|
-
Housekeeping
|
|
10290
|
+
Housekeeping
|
|
10333
10291
|
</span>
|
|
10334
10292
|
</a>
|
|
10335
10293
|
|
|
@@ -10351,36 +10309,36 @@
|
|
|
10351
10309
|
<ul class="md-nav__list">
|
|
10352
10310
|
|
|
10353
10311
|
<li class="md-nav__item">
|
|
10354
|
-
<a href="#
|
|
10312
|
+
<a href="#added_2" class="md-nav__link">
|
|
10355
10313
|
<span class="md-ellipsis">
|
|
10356
|
-
Added
|
|
10314
|
+
Added
|
|
10357
10315
|
</span>
|
|
10358
10316
|
</a>
|
|
10359
10317
|
|
|
10360
10318
|
</li>
|
|
10361
10319
|
|
|
10362
10320
|
<li class="md-nav__item">
|
|
10363
|
-
<a href="#
|
|
10321
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10364
10322
|
<span class="md-ellipsis">
|
|
10365
|
-
Changed
|
|
10323
|
+
Changed
|
|
10366
10324
|
</span>
|
|
10367
10325
|
</a>
|
|
10368
10326
|
|
|
10369
10327
|
</li>
|
|
10370
10328
|
|
|
10371
10329
|
<li class="md-nav__item">
|
|
10372
|
-
<a href="#
|
|
10330
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10373
10331
|
<span class="md-ellipsis">
|
|
10374
|
-
Fixed
|
|
10332
|
+
Fixed
|
|
10375
10333
|
</span>
|
|
10376
10334
|
</a>
|
|
10377
10335
|
|
|
10378
10336
|
</li>
|
|
10379
10337
|
|
|
10380
10338
|
<li class="md-nav__item">
|
|
10381
|
-
<a href="#documentation
|
|
10339
|
+
<a href="#documentation" class="md-nav__link">
|
|
10382
10340
|
<span class="md-ellipsis">
|
|
10383
|
-
Documentation
|
|
10341
|
+
Documentation
|
|
10384
10342
|
</span>
|
|
10385
10343
|
</a>
|
|
10386
10344
|
|
|
@@ -10402,54 +10360,54 @@
|
|
|
10402
10360
|
<ul class="md-nav__list">
|
|
10403
10361
|
|
|
10404
10362
|
<li class="md-nav__item">
|
|
10405
|
-
<a href="#
|
|
10363
|
+
<a href="#security_1" class="md-nav__link">
|
|
10406
10364
|
<span class="md-ellipsis">
|
|
10407
|
-
Security
|
|
10365
|
+
Security
|
|
10408
10366
|
</span>
|
|
10409
10367
|
</a>
|
|
10410
10368
|
|
|
10411
10369
|
</li>
|
|
10412
10370
|
|
|
10413
10371
|
<li class="md-nav__item">
|
|
10414
|
-
<a href="#
|
|
10372
|
+
<a href="#added_3" class="md-nav__link">
|
|
10415
10373
|
<span class="md-ellipsis">
|
|
10416
|
-
Added
|
|
10374
|
+
Added
|
|
10417
10375
|
</span>
|
|
10418
10376
|
</a>
|
|
10419
10377
|
|
|
10420
10378
|
</li>
|
|
10421
10379
|
|
|
10422
10380
|
<li class="md-nav__item">
|
|
10423
|
-
<a href="#
|
|
10381
|
+
<a href="#changed_3" class="md-nav__link">
|
|
10424
10382
|
<span class="md-ellipsis">
|
|
10425
|
-
Changed
|
|
10383
|
+
Changed
|
|
10426
10384
|
</span>
|
|
10427
10385
|
</a>
|
|
10428
10386
|
|
|
10429
10387
|
</li>
|
|
10430
10388
|
|
|
10431
10389
|
<li class="md-nav__item">
|
|
10432
|
-
<a href="#
|
|
10390
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10433
10391
|
<span class="md-ellipsis">
|
|
10434
|
-
Fixed
|
|
10392
|
+
Fixed
|
|
10435
10393
|
</span>
|
|
10436
10394
|
</a>
|
|
10437
10395
|
|
|
10438
10396
|
</li>
|
|
10439
10397
|
|
|
10440
10398
|
<li class="md-nav__item">
|
|
10441
|
-
<a href="#
|
|
10399
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10442
10400
|
<span class="md-ellipsis">
|
|
10443
|
-
Dependencies
|
|
10401
|
+
Dependencies
|
|
10444
10402
|
</span>
|
|
10445
10403
|
</a>
|
|
10446
10404
|
|
|
10447
10405
|
</li>
|
|
10448
10406
|
|
|
10449
10407
|
<li class="md-nav__item">
|
|
10450
|
-
<a href="#
|
|
10408
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10451
10409
|
<span class="md-ellipsis">
|
|
10452
|
-
Housekeeping
|
|
10410
|
+
Housekeeping
|
|
10453
10411
|
</span>
|
|
10454
10412
|
</a>
|
|
10455
10413
|
|
|
@@ -10471,45 +10429,45 @@
|
|
|
10471
10429
|
<ul class="md-nav__list">
|
|
10472
10430
|
|
|
10473
10431
|
<li class="md-nav__item">
|
|
10474
|
-
<a href="#
|
|
10432
|
+
<a href="#added_4" class="md-nav__link">
|
|
10475
10433
|
<span class="md-ellipsis">
|
|
10476
|
-
Added
|
|
10434
|
+
Added
|
|
10477
10435
|
</span>
|
|
10478
10436
|
</a>
|
|
10479
10437
|
|
|
10480
10438
|
</li>
|
|
10481
10439
|
|
|
10482
10440
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#
|
|
10441
|
+
<a href="#changed_4" class="md-nav__link">
|
|
10484
10442
|
<span class="md-ellipsis">
|
|
10485
|
-
Changed
|
|
10443
|
+
Changed
|
|
10486
10444
|
</span>
|
|
10487
10445
|
</a>
|
|
10488
10446
|
|
|
10489
10447
|
</li>
|
|
10490
10448
|
|
|
10491
10449
|
<li class="md-nav__item">
|
|
10492
|
-
<a href="#
|
|
10450
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
10493
10451
|
<span class="md-ellipsis">
|
|
10494
|
-
Fixed
|
|
10452
|
+
Fixed
|
|
10495
10453
|
</span>
|
|
10496
10454
|
</a>
|
|
10497
10455
|
|
|
10498
10456
|
</li>
|
|
10499
10457
|
|
|
10500
10458
|
<li class="md-nav__item">
|
|
10501
|
-
<a href="#
|
|
10459
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10502
10460
|
<span class="md-ellipsis">
|
|
10503
|
-
Documentation
|
|
10461
|
+
Documentation
|
|
10504
10462
|
</span>
|
|
10505
10463
|
</a>
|
|
10506
10464
|
|
|
10507
10465
|
</li>
|
|
10508
10466
|
|
|
10509
10467
|
<li class="md-nav__item">
|
|
10510
|
-
<a href="#
|
|
10468
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10511
10469
|
<span class="md-ellipsis">
|
|
10512
|
-
Housekeeping
|
|
10470
|
+
Housekeeping
|
|
10513
10471
|
</span>
|
|
10514
10472
|
</a>
|
|
10515
10473
|
|
|
@@ -10531,27 +10489,27 @@
|
|
|
10531
10489
|
<ul class="md-nav__list">
|
|
10532
10490
|
|
|
10533
10491
|
<li class="md-nav__item">
|
|
10534
|
-
<a href="#
|
|
10492
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
10535
10493
|
<span class="md-ellipsis">
|
|
10536
|
-
Fixed
|
|
10494
|
+
Fixed
|
|
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="#documentation_2" class="md-nav__link">
|
|
10544
10502
|
<span class="md-ellipsis">
|
|
10545
|
-
Documentation
|
|
10503
|
+
Documentation
|
|
10546
10504
|
</span>
|
|
10547
10505
|
</a>
|
|
10548
10506
|
|
|
10549
10507
|
</li>
|
|
10550
10508
|
|
|
10551
10509
|
<li class="md-nav__item">
|
|
10552
|
-
<a href="#
|
|
10510
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
10553
10511
|
<span class="md-ellipsis">
|
|
10554
|
-
Housekeeping
|
|
10512
|
+
Housekeeping
|
|
10555
10513
|
</span>
|
|
10556
10514
|
</a>
|
|
10557
10515
|
|
|
@@ -10573,36 +10531,36 @@
|
|
|
10573
10531
|
<ul class="md-nav__list">
|
|
10574
10532
|
|
|
10575
10533
|
<li class="md-nav__item">
|
|
10576
|
-
<a href="#
|
|
10534
|
+
<a href="#security_2" class="md-nav__link">
|
|
10577
10535
|
<span class="md-ellipsis">
|
|
10578
|
-
Security
|
|
10536
|
+
Security
|
|
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="#fixed_5" class="md-nav__link">
|
|
10586
10544
|
<span class="md-ellipsis">
|
|
10587
|
-
Fixed
|
|
10545
|
+
Fixed
|
|
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="#documentation_3" class="md-nav__link">
|
|
10595
10553
|
<span class="md-ellipsis">
|
|
10596
|
-
Documentation
|
|
10554
|
+
Documentation
|
|
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="#housekeeping_4" class="md-nav__link">
|
|
10604
10562
|
<span class="md-ellipsis">
|
|
10605
|
-
Housekeeping
|
|
10563
|
+
Housekeeping
|
|
10606
10564
|
</span>
|
|
10607
10565
|
</a>
|
|
10608
10566
|
|
|
@@ -10624,36 +10582,36 @@
|
|
|
10624
10582
|
<ul class="md-nav__list">
|
|
10625
10583
|
|
|
10626
10584
|
<li class="md-nav__item">
|
|
10627
|
-
<a href="#
|
|
10585
|
+
<a href="#security_3" class="md-nav__link">
|
|
10628
10586
|
<span class="md-ellipsis">
|
|
10629
|
-
Security
|
|
10587
|
+
Security
|
|
10630
10588
|
</span>
|
|
10631
10589
|
</a>
|
|
10632
10590
|
|
|
10633
10591
|
</li>
|
|
10634
10592
|
|
|
10635
10593
|
<li class="md-nav__item">
|
|
10636
|
-
<a href="#
|
|
10594
|
+
<a href="#added_5" class="md-nav__link">
|
|
10637
10595
|
<span class="md-ellipsis">
|
|
10638
|
-
Added
|
|
10596
|
+
Added
|
|
10639
10597
|
</span>
|
|
10640
10598
|
</a>
|
|
10641
10599
|
|
|
10642
10600
|
</li>
|
|
10643
10601
|
|
|
10644
10602
|
<li class="md-nav__item">
|
|
10645
|
-
<a href="#
|
|
10603
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
10646
10604
|
<span class="md-ellipsis">
|
|
10647
|
-
Fixed
|
|
10605
|
+
Fixed
|
|
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="#documentation_4" class="md-nav__link">
|
|
10655
10613
|
<span class="md-ellipsis">
|
|
10656
|
-
Documentation
|
|
10614
|
+
Documentation
|
|
10657
10615
|
</span>
|
|
10658
10616
|
</a>
|
|
10659
10617
|
|
|
@@ -10675,54 +10633,54 @@
|
|
|
10675
10633
|
<ul class="md-nav__list">
|
|
10676
10634
|
|
|
10677
10635
|
<li class="md-nav__item">
|
|
10678
|
-
<a href="#
|
|
10636
|
+
<a href="#added_6" class="md-nav__link">
|
|
10679
10637
|
<span class="md-ellipsis">
|
|
10680
|
-
Added
|
|
10638
|
+
Added
|
|
10681
10639
|
</span>
|
|
10682
10640
|
</a>
|
|
10683
10641
|
|
|
10684
10642
|
</li>
|
|
10685
10643
|
|
|
10686
10644
|
<li class="md-nav__item">
|
|
10687
|
-
<a href="#
|
|
10645
|
+
<a href="#changed_5" class="md-nav__link">
|
|
10688
10646
|
<span class="md-ellipsis">
|
|
10689
|
-
Changed
|
|
10647
|
+
Changed
|
|
10690
10648
|
</span>
|
|
10691
10649
|
</a>
|
|
10692
10650
|
|
|
10693
10651
|
</li>
|
|
10694
10652
|
|
|
10695
10653
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#
|
|
10654
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
10697
10655
|
<span class="md-ellipsis">
|
|
10698
|
-
Fixed
|
|
10656
|
+
Fixed
|
|
10699
10657
|
</span>
|
|
10700
10658
|
</a>
|
|
10701
10659
|
|
|
10702
10660
|
</li>
|
|
10703
10661
|
|
|
10704
10662
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
10663
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10706
10664
|
<span class="md-ellipsis">
|
|
10707
|
-
Dependencies
|
|
10665
|
+
Dependencies
|
|
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="#documentation_5" class="md-nav__link">
|
|
10715
10673
|
<span class="md-ellipsis">
|
|
10716
|
-
Documentation
|
|
10674
|
+
Documentation
|
|
10717
10675
|
</span>
|
|
10718
10676
|
</a>
|
|
10719
10677
|
|
|
10720
10678
|
</li>
|
|
10721
10679
|
|
|
10722
10680
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
10681
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
10724
10682
|
<span class="md-ellipsis">
|
|
10725
|
-
Housekeeping
|
|
10683
|
+
Housekeeping
|
|
10726
10684
|
</span>
|
|
10727
10685
|
</a>
|
|
10728
10686
|
|
|
@@ -10744,54 +10702,54 @@
|
|
|
10744
10702
|
<ul class="md-nav__list">
|
|
10745
10703
|
|
|
10746
10704
|
<li class="md-nav__item">
|
|
10747
|
-
<a href="#
|
|
10705
|
+
<a href="#security_4" class="md-nav__link">
|
|
10748
10706
|
<span class="md-ellipsis">
|
|
10749
|
-
Security
|
|
10707
|
+
Security
|
|
10750
10708
|
</span>
|
|
10751
10709
|
</a>
|
|
10752
10710
|
|
|
10753
10711
|
</li>
|
|
10754
10712
|
|
|
10755
10713
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
10714
|
+
<a href="#added_7" class="md-nav__link">
|
|
10757
10715
|
<span class="md-ellipsis">
|
|
10758
|
-
Added
|
|
10716
|
+
Added
|
|
10759
10717
|
</span>
|
|
10760
10718
|
</a>
|
|
10761
10719
|
|
|
10762
10720
|
</li>
|
|
10763
10721
|
|
|
10764
10722
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#
|
|
10723
|
+
<a href="#changed_6" class="md-nav__link">
|
|
10766
10724
|
<span class="md-ellipsis">
|
|
10767
|
-
Changed
|
|
10725
|
+
Changed
|
|
10768
10726
|
</span>
|
|
10769
10727
|
</a>
|
|
10770
10728
|
|
|
10771
10729
|
</li>
|
|
10772
10730
|
|
|
10773
10731
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#
|
|
10732
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
10775
10733
|
<span class="md-ellipsis">
|
|
10776
|
-
Fixed
|
|
10734
|
+
Fixed
|
|
10777
10735
|
</span>
|
|
10778
10736
|
</a>
|
|
10779
10737
|
|
|
10780
10738
|
</li>
|
|
10781
10739
|
|
|
10782
10740
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
10741
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10784
10742
|
<span class="md-ellipsis">
|
|
10785
|
-
Documentation
|
|
10743
|
+
Documentation
|
|
10786
10744
|
</span>
|
|
10787
10745
|
</a>
|
|
10788
10746
|
|
|
10789
10747
|
</li>
|
|
10790
10748
|
|
|
10791
10749
|
<li class="md-nav__item">
|
|
10792
|
-
<a href="#
|
|
10750
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
10793
10751
|
<span class="md-ellipsis">
|
|
10794
|
-
Housekeeping
|
|
10752
|
+
Housekeeping
|
|
10795
10753
|
</span>
|
|
10796
10754
|
</a>
|
|
10797
10755
|
|
|
@@ -10813,18 +10771,18 @@
|
|
|
10813
10771
|
<ul class="md-nav__list">
|
|
10814
10772
|
|
|
10815
10773
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#
|
|
10774
|
+
<a href="#changed_7" class="md-nav__link">
|
|
10817
10775
|
<span class="md-ellipsis">
|
|
10818
|
-
Changed
|
|
10776
|
+
Changed
|
|
10819
10777
|
</span>
|
|
10820
10778
|
</a>
|
|
10821
10779
|
|
|
10822
10780
|
</li>
|
|
10823
10781
|
|
|
10824
10782
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
10783
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
10826
10784
|
<span class="md-ellipsis">
|
|
10827
|
-
Fixed
|
|
10785
|
+
Fixed
|
|
10828
10786
|
</span>
|
|
10829
10787
|
</a>
|
|
10830
10788
|
|
|
@@ -10846,45 +10804,45 @@
|
|
|
10846
10804
|
<ul class="md-nav__list">
|
|
10847
10805
|
|
|
10848
10806
|
<li class="md-nav__item">
|
|
10849
|
-
<a href="#
|
|
10807
|
+
<a href="#added_8" class="md-nav__link">
|
|
10850
10808
|
<span class="md-ellipsis">
|
|
10851
|
-
Added
|
|
10809
|
+
Added
|
|
10852
10810
|
</span>
|
|
10853
10811
|
</a>
|
|
10854
10812
|
|
|
10855
10813
|
</li>
|
|
10856
10814
|
|
|
10857
10815
|
<li class="md-nav__item">
|
|
10858
|
-
<a href="#
|
|
10816
|
+
<a href="#changed_8" class="md-nav__link">
|
|
10859
10817
|
<span class="md-ellipsis">
|
|
10860
|
-
Changed
|
|
10818
|
+
Changed
|
|
10861
10819
|
</span>
|
|
10862
10820
|
</a>
|
|
10863
10821
|
|
|
10864
10822
|
</li>
|
|
10865
10823
|
|
|
10866
10824
|
<li class="md-nav__item">
|
|
10867
|
-
<a href="#
|
|
10825
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
10868
10826
|
<span class="md-ellipsis">
|
|
10869
|
-
Fixed
|
|
10827
|
+
Fixed
|
|
10870
10828
|
</span>
|
|
10871
10829
|
</a>
|
|
10872
10830
|
|
|
10873
10831
|
</li>
|
|
10874
10832
|
|
|
10875
10833
|
<li class="md-nav__item">
|
|
10876
|
-
<a href="#
|
|
10834
|
+
<a href="#documentation_7" class="md-nav__link">
|
|
10877
10835
|
<span class="md-ellipsis">
|
|
10878
|
-
Documentation
|
|
10836
|
+
Documentation
|
|
10879
10837
|
</span>
|
|
10880
10838
|
</a>
|
|
10881
10839
|
|
|
10882
10840
|
</li>
|
|
10883
10841
|
|
|
10884
10842
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
10843
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
10886
10844
|
<span class="md-ellipsis">
|
|
10887
|
-
Housekeeping
|
|
10845
|
+
Housekeeping
|
|
10888
10846
|
</span>
|
|
10889
10847
|
</a>
|
|
10890
10848
|
|
|
@@ -10906,54 +10864,54 @@
|
|
|
10906
10864
|
<ul class="md-nav__list">
|
|
10907
10865
|
|
|
10908
10866
|
<li class="md-nav__item">
|
|
10909
|
-
<a href="#
|
|
10867
|
+
<a href="#added_9" class="md-nav__link">
|
|
10910
10868
|
<span class="md-ellipsis">
|
|
10911
|
-
Added
|
|
10869
|
+
Added
|
|
10912
10870
|
</span>
|
|
10913
10871
|
</a>
|
|
10914
10872
|
|
|
10915
10873
|
</li>
|
|
10916
10874
|
|
|
10917
10875
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
10876
|
+
<a href="#changed_9" class="md-nav__link">
|
|
10919
10877
|
<span class="md-ellipsis">
|
|
10920
|
-
Changed
|
|
10878
|
+
Changed
|
|
10921
10879
|
</span>
|
|
10922
10880
|
</a>
|
|
10923
10881
|
|
|
10924
10882
|
</li>
|
|
10925
10883
|
|
|
10926
10884
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
10885
|
+
<a href="#removed_1" class="md-nav__link">
|
|
10928
10886
|
<span class="md-ellipsis">
|
|
10929
|
-
Removed
|
|
10887
|
+
Removed
|
|
10930
10888
|
</span>
|
|
10931
10889
|
</a>
|
|
10932
10890
|
|
|
10933
10891
|
</li>
|
|
10934
10892
|
|
|
10935
10893
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
10894
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
10937
10895
|
<span class="md-ellipsis">
|
|
10938
|
-
Fixed
|
|
10896
|
+
Fixed
|
|
10939
10897
|
</span>
|
|
10940
10898
|
</a>
|
|
10941
10899
|
|
|
10942
10900
|
</li>
|
|
10943
10901
|
|
|
10944
10902
|
<li class="md-nav__item">
|
|
10945
|
-
<a href="#
|
|
10903
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
10946
10904
|
<span class="md-ellipsis">
|
|
10947
|
-
Dependencies
|
|
10905
|
+
Dependencies
|
|
10948
10906
|
</span>
|
|
10949
10907
|
</a>
|
|
10950
10908
|
|
|
10951
10909
|
</li>
|
|
10952
10910
|
|
|
10953
10911
|
<li class="md-nav__item">
|
|
10954
|
-
<a href="#
|
|
10912
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
10955
10913
|
<span class="md-ellipsis">
|
|
10956
|
-
Housekeeping
|
|
10914
|
+
Housekeeping
|
|
10957
10915
|
</span>
|
|
10958
10916
|
</a>
|
|
10959
10917
|
|
|
@@ -10982,6 +10940,7 @@
|
|
|
10982
10940
|
|
|
10983
10941
|
|
|
10984
10942
|
|
|
10943
|
+
<!-- markdownlint-disable MD024 -->
|
|
10985
10944
|
<h1 id="nautobot-v13">Nautobot v1.3<a class="headerlink" href="#nautobot-v13" title="Permanent link">¶</a></h1>
|
|
10986
10945
|
<p>This document describes all new features and changes in Nautobot 1.3.</p>
|
|
10987
10946
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -11037,7 +10996,7 @@
|
|
|
11037
10996
|
<p><a href="../user-guide/platform-functionality/rest-api/filtering.html#string-fields">New lookup expressions for using regular expressions</a> to filter objects by string (char) fields in the API have been added to all core filters.</p>
|
|
11038
10997
|
<p>The expressions <code>re</code> (regex), <code>nre</code> (negated regex), <code>ire</code> (case-insensitive regex), and <code>nire</code> (negated case-insensitive regex) lookup expressions are now dynamically-generated for filter fields inherited by subclasses of <code>nautobot.utilities.filters.BaseFilterSet</code>.</p>
|
|
11039
10998
|
<h4 id="remove-stale-scheduled-jobs-2091">Remove Stale Scheduled Jobs (<a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a>)<a class="headerlink" href="#remove-stale-scheduled-jobs-2091" title="Permanent link">¶</a></h4>
|
|
11040
|
-
<p><a href="../user-guide/administration/tools/nautobot-server.html#remove_stale_scheduled_jobs"
|
|
10999
|
+
<p><a href="../user-guide/administration/tools/nautobot-server.html#remove_stale_scheduled_jobs">remove_stale_scheduled_jobs</a> management command has been added to delete non-recurring scheduled jobs that were scheduled to run more than a specified days ago.</p>
|
|
11041
11000
|
<h4 id="rest-api-token-provisioning-1374">REST API Token Provisioning (<a href="https://github.com/nautobot/nautobot/issues/1374">#1374</a>)<a class="headerlink" href="#rest-api-token-provisioning-1374" title="Permanent link">¶</a></h4>
|
|
11042
11001
|
<p>Nautobot now has an <code>/api/users/tokens/</code> REST API endpoint where a user can provision a new REST API token. This allows a user to gain REST API access without needing to first create a token via the web UI.</p>
|
|
11043
11002
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>curl<span class="w"> </span>-X<span class="w"> </span>POST<span class="w"> </span><span class="se">\</span>
|
|
@@ -11086,7 +11045,7 @@
|
|
|
11086
11045
|
<h4 id="python-36-no-longer-supported-1268">Python 3.6 No Longer Supported (<a href="https://github.com/nautobot/nautobot/issues/1268">#1268</a>)<a class="headerlink" href="#python-36-no-longer-supported-1268" title="Permanent link">¶</a></h4>
|
|
11087
11046
|
<p>As Python 3.6 has reached end-of-life, and many of Nautobot's dependencies have already dropped support for Python 3.6 as a consequence, Nautobot 1.3 and later do not support installation under Python 3.6.</p>
|
|
11088
11047
|
<h2 id="v1310-2022-08-08">v1.3.10 (2022-08-08)<a class="headerlink" href="#v1310-2022-08-08" title="Permanent link">¶</a></h2>
|
|
11089
|
-
<h3 id="security
|
|
11048
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
11090
11049
|
<div class="admonition important">
|
|
11091
11050
|
<p class="admonition-title">Important</p>
|
|
11092
11051
|
<p>With introducing the <code>has_sensitive_variables</code> flag on Job classes and model (see: <a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a>), jobs can be prevented from storing their inputs in the database. Due to the nature of queuing or scheduling jobs, the desired inputs must be stored for future use.</p>
|
|
@@ -11096,7 +11055,7 @@
|
|
|
11096
11055
|
<p>A new management command exists (<code>remove_stale_scheduled_jobs</code>) which will aid in cleaning up schedules to past jobs which may still have sensitive data stored in the database. This command is not exhaustive nor intended to clean up sensitive values stored in the database. You should review the <code>extras_scheduledjob</code> table for any further cleanup.</p>
|
|
11097
11056
|
<p><strong>Note:</strong> Leveraging the Secrets and Secret Groups features in Jobs does not need to be considered a sensitive variable. Secrets are retrieved by reference at run time, which means no secret value is stored directly in the database.</p>
|
|
11098
11057
|
</div>
|
|
11099
|
-
<h3 id="
|
|
11058
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
11100
11059
|
<ul>
|
|
11101
11060
|
<li><a href="https://github.com/nautobot/nautobot/issues/1226">#1226</a> - Added custom job intervals package management.</li>
|
|
11102
11061
|
<li><a href="https://github.com/nautobot/nautobot/pull/2073">#2073</a> - Added <code>--local</code> option to <code>nautobot-server runjob</code> command.</li>
|
|
@@ -11104,38 +11063,38 @@
|
|
|
11104
11063
|
<li><a href="https://github.com/nautobot/nautobot/issues/2091">#2091</a> - Added <code>remove_stale_scheduled_jobs</code> management command which removes all stale scheduled jobs and also added <code>has_sensitive_variables</code> field to Job model which prevents the job's input parameters from being saved to the database.</li>
|
|
11105
11064
|
<li><a href="https://github.com/nautobot/nautobot/pull/2143">#2143</a> - Scheduled Job detail view now includes details of any custom interval.</li>
|
|
11106
11065
|
</ul>
|
|
11107
|
-
<h3 id="
|
|
11066
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
11108
11067
|
<ul>
|
|
11109
11068
|
<li><a href="https://github.com/nautobot/nautobot/issues/2114">#2114</a> - Home page now redirects to the login page when <code>HIDE_RESTRICTED_UI</code> is enabled and user is not authenticated.</li>
|
|
11110
11069
|
</ul>
|
|
11111
|
-
<h3 id="fixed
|
|
11070
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11112
11071
|
<ul>
|
|
11113
11072
|
<li><a href="https://github.com/nautobot/nautobot/issues/1739">#1739</a> - Fixed paginator not enforcing <code>max_page_size</code> setting in web UI views.</li>
|
|
11114
11073
|
<li><a href="https://github.com/nautobot/nautobot/issues/2060">#2060</a> - Fixed relationship <code>peer_id</code> filter non-existent error on relationship association page.</li>
|
|
11115
11074
|
<li><a href="https://github.com/nautobot/nautobot/issues/2095">#2095</a> - Fixed health check failing with Redis Sentinel, TLS configuration.</li>
|
|
11116
11075
|
</ul>
|
|
11117
|
-
<h3 id="dependencies
|
|
11076
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11118
11077
|
<ul>
|
|
11119
11078
|
<li><a href="https://github.com/nautobot/nautobot/pull/2115">#2115</a> - Patch updates to <code>mkdocs</code>, <code>svgwrite</code>.</li>
|
|
11120
11079
|
</ul>
|
|
11121
|
-
<h3 id="housekeeping
|
|
11080
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11122
11081
|
<ul>
|
|
11123
11082
|
<li><a href="https://github.com/nautobot/nautobot/pull/2025">#2025</a> - Tweak Renovate config for automated package management.</li>
|
|
11124
11083
|
<li><a href="https://github.com/nautobot/nautobot/pull/2119">#2119</a> - Fixed flaky integration test for cable connection UI.</li>
|
|
11125
11084
|
</ul>
|
|
11126
11085
|
<h2 id="v139-2022-07-25">v1.3.9 (2022-07-25)<a class="headerlink" href="#v139-2022-07-25" title="Permanent link">¶</a></h2>
|
|
11127
|
-
<h3 id="
|
|
11086
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
11128
11087
|
<ul>
|
|
11129
11088
|
<li><a href="https://github.com/nautobot/nautobot/issues/1595">#1595</a> - Add ability to specify uWSGI buffer size via environment variable.</li>
|
|
11130
11089
|
<li><a href="https://github.com/nautobot/nautobot/issues/1757">#1757</a> - Added nullable face, position to Device bulk edit form to provided desired behavior to bulk assigning to a new rack.</li>
|
|
11131
11090
|
</ul>
|
|
11132
|
-
<h3 id="
|
|
11091
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11133
11092
|
<ul>
|
|
11134
11093
|
<li><a href="https://github.com/nautobot/nautobot/issues/386">#386</a> - Clarified messaging in API for rack position occupied.</li>
|
|
11135
11094
|
<li><a href="https://github.com/nautobot/nautobot/issues/1356">#1356</a> - Virtual chassis master device interface list is less confusing.</li>
|
|
11136
11095
|
<li><a href="https://github.com/nautobot/nautobot/pull/2045">#2045</a> - Clarified Job authoring around proper class inheritance.</li>
|
|
11137
11096
|
</ul>
|
|
11138
|
-
<h3 id="
|
|
11097
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11139
11098
|
<ul>
|
|
11140
11099
|
<li><a href="https://github.com/nautobot/nautobot/issues/1035">#1035</a> - Fix assertion raised if SLAAC Status is missing when creating <code>IPAddress</code> objects</li>
|
|
11141
11100
|
<li><a href="https://github.com/nautobot/nautobot/issues/1694">#1694</a> - Fixed CablePath not found error when disconnects/delete action performed on a cable</li>
|
|
@@ -11148,13 +11107,13 @@
|
|
|
11148
11107
|
<li><a href="https://github.com/nautobot/nautobot/issues/2077">#2077</a> - Fixed an error when viewing object detail pages after uninstalling a plugin but still having RelationshipAssociations involving the plugin's models.</li>
|
|
11149
11108
|
<li><a href="https://github.com/nautobot/nautobot/issues/2081">#2081</a> - Fixed error raised if status connected not found when creating a cable</li>
|
|
11150
11109
|
</ul>
|
|
11151
|
-
<h3 id="documentation
|
|
11110
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11152
11111
|
<ul>
|
|
11153
11112
|
<li><a href="https://github.com/nautobot/nautobot/issues/860">#860</a> - Added documentation that adding device component to device type does not modify existing device instances</li>
|
|
11154
11113
|
<li><a href="https://github.com/nautobot/nautobot/pull/2036">#2036</a> - Fixed outdated UI navigation references in documentation.</li>
|
|
11155
11114
|
</ul>
|
|
11156
11115
|
<h2 id="v138-2022-07-11">v1.3.8 (2022-07-11)<a class="headerlink" href="#v138-2022-07-11" title="Permanent link">¶</a></h2>
|
|
11157
|
-
<h3 id="
|
|
11116
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
11158
11117
|
<div class="admonition important">
|
|
11159
11118
|
<p class="admonition-title">Important</p>
|
|
11160
11119
|
<p>CVE in Django versions <code>>= 3.2, < 3.2.14</code>. This update upgrades Django to <code>3.2.14</code>.</p>
|
|
@@ -11162,56 +11121,56 @@
|
|
|
11162
11121
|
<ul>
|
|
11163
11122
|
<li><a href="https://github.com/nautobot/nautobot/pull/2004">#2004</a> - Bump Django from 3.2.13 to 3.2.14 for for <a href="https://github.com/advisories/GHSA-p64x-8rxx-wf6q">CVE-2022-34265</a>.</li>
|
|
11164
11123
|
</ul>
|
|
11165
|
-
<h3 id="
|
|
11124
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11166
11125
|
<ul>
|
|
11167
11126
|
<li><a href="https://github.com/nautobot/nautobot/issues/1464">#1464</a> - Added "Continue with SSO" link on login page.</li>
|
|
11168
11127
|
</ul>
|
|
11169
|
-
<h3 id="
|
|
11128
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11170
11129
|
<ul>
|
|
11171
11130
|
<li><a href="https://github.com/nautobot/nautobot/issues/1407">#1407</a> - Changed custom field export column headings to prefix with <code>cf_</code>.</li>
|
|
11172
11131
|
<li><a href="https://github.com/nautobot/nautobot/issues/1603">#1603</a> - Changed GraphQL schema generation to call time for GraphQL API.</li>
|
|
11173
11132
|
</ul>
|
|
11174
|
-
<h3 id="
|
|
11133
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11175
11134
|
<ul>
|
|
11176
11135
|
<li><a href="https://github.com/nautobot/nautobot/issues/1838">#1838</a> - Fixed job result to show latest not oldest.</li>
|
|
11177
11136
|
<li><a href="https://github.com/nautobot/nautobot/issues/1874">#1874</a> - Fixed Git repo sync issue with Sentinel with deprecated <code>rq_count</code> check.</li>
|
|
11178
11137
|
</ul>
|
|
11179
|
-
<h3 id="
|
|
11138
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11180
11139
|
<ul>
|
|
11181
11140
|
<li><a href="https://github.com/nautobot/nautobot/pull/2020">#2020</a> - Updated <code>celery >= 5.2.7</code>, <code>django-jinja >= 2.10.2</code>, and <code>mysqlclient >= 2.1.1</code> versions in lock file (patch updates).</li>
|
|
11182
11141
|
</ul>
|
|
11183
|
-
<h3 id="
|
|
11142
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11184
11143
|
<ul>
|
|
11185
11144
|
<li><a href="https://github.com/nautobot/nautobot/pull/1977">#1977</a> - Updated Renovate config to batch updates (additional PRs included to further refine config).</li>
|
|
11186
11145
|
</ul>
|
|
11187
11146
|
<h2 id="v137-2022-06-27">v1.3.7 (2022-06-27)<a class="headerlink" href="#v137-2022-06-27" title="Permanent link">¶</a></h2>
|
|
11188
|
-
<h3 id="
|
|
11147
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11189
11148
|
<ul>
|
|
11190
11149
|
<li><a href="https://github.com/nautobot/nautobot/issues/1900">#1900</a> - Added ability to filter Git repository table based on provided contents.</li>
|
|
11191
11150
|
</ul>
|
|
11192
|
-
<h3 id="
|
|
11151
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
11193
11152
|
<ul>
|
|
11194
11153
|
<li><a href="https://github.com/nautobot/nautobot/issues/1645">#1645</a> - Hide search bar for unauthenticated users if <code>HIDE_RESTRICTED_UI</code> is True</li>
|
|
11195
11154
|
<li><a href="https://github.com/nautobot/nautobot/pull/1946">#1946</a> - Increase character limit on <code>FileAttachment.mimetype</code> to 255 to allow for all mime types to be used.</li>
|
|
11196
11155
|
</ul>
|
|
11197
|
-
<h3 id="
|
|
11156
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11198
11157
|
<ul>
|
|
11199
11158
|
<li><a href="https://github.com/nautobot/nautobot/issues/1677">#1677</a> - Fixed default values of custom fields on device components (such as Interface) not being applied upon Device creation.</li>
|
|
11200
11159
|
<li><a href="https://github.com/nautobot/nautobot/issues/1769">#1769</a> - Resolve missing menu 'General / Installed Plugins' in navbar if <code>HIDE_RESTRICTED_UI</code> is activated</li>
|
|
11201
11160
|
<li><a href="https://github.com/nautobot/nautobot/issues/1836">#1836</a> - Fixed incorrect pre-population of custom field filters in table views.</li>
|
|
11202
11161
|
<li><a href="https://github.com/nautobot/nautobot/issues/1870">#1870</a> - Fixed cable <code>_abs_length</code> validation error.</li>
|
|
11203
11162
|
</ul>
|
|
11204
|
-
<h3 id="
|
|
11163
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
11205
11164
|
<ul>
|
|
11206
11165
|
<li><a href="https://github.com/nautobot/nautobot/pull/1941">#1941</a> - Fixed uWSGI config example, development environment links in Docker section of docs.</li>
|
|
11207
11166
|
</ul>
|
|
11208
|
-
<h3 id="
|
|
11167
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11209
11168
|
<ul>
|
|
11210
11169
|
<li><a href="https://github.com/nautobot/nautobot/pull/1856">#1896</a> - Added Renovate Bot configuration, targeting <code>next</code>.</li>
|
|
11211
11170
|
<li><a href="https://github.com/nautobot/nautobot/issues/1948">#1948</a> - Switched Renovate Bot configuration to bump lock-file only on patch releases instead of bumping in <code>pyproject.toml</code>.</li>
|
|
11212
11171
|
</ul>
|
|
11213
11172
|
<h2 id="v136-2022-06-13">v1.3.6 (2022-06-13)<a class="headerlink" href="#v136-2022-06-13" title="Permanent link">¶</a></h2>
|
|
11214
|
-
<h3 id="
|
|
11173
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
11215
11174
|
<ul>
|
|
11216
11175
|
<li><a href="https://github.com/nautobot/nautobot/issues/1409">#1409</a> - Fixed page title on device status (NAPALM) page template.</li>
|
|
11217
11176
|
<li><a href="https://github.com/nautobot/nautobot/issues/1524">#1524</a> - Fixed valid "None" option removed from search field upon display.</li>
|
|
@@ -11222,20 +11181,20 @@
|
|
|
11222
11181
|
<li><a href="https://github.com/nautobot/nautobot/issues/1841">#1841</a> - Fixed incorrect display of boolean values in Git Repository view.</li>
|
|
11223
11182
|
<li><a href="https://github.com/nautobot/nautobot/pull/1850">#1850</a> - Added <code>{{block.super}}</code> to negate the override from the js block in rack.html. This change fixed the issue of unable to navigate away from rack changelog tab.</li>
|
|
11224
11183
|
</ul>
|
|
11225
|
-
<h3 id="
|
|
11184
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
11226
11185
|
<ul>
|
|
11227
11186
|
<li><a href="https://github.com/nautobot/nautobot/issues/207">#207</a> - Update permissions documentation to add assigning permissions section.</li>
|
|
11228
11187
|
<li><a href="https://github.com/nautobot/nautobot/issues/1763">#1763</a> - Job testing documentation updated to include details around enabling jobs. Job logs database added to <code>TransactionTestCase</code>.</li>
|
|
11229
11188
|
<li><a href="https://github.com/nautobot/nautobot/pull/1856">#1856</a> - Updated links to Slack community.</li>
|
|
11230
11189
|
<li><a href="https://github.com/nautobot/nautobot/pull/1868">#1868</a> - Updated link to advanced Docker compose use in getting started guide.</li>
|
|
11231
11190
|
</ul>
|
|
11232
|
-
<h3 id="
|
|
11191
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11233
11192
|
<ul>
|
|
11234
11193
|
<li><a href="https://github.com/nautobot/nautobot/pull/1829">#1829</a> - Change Docker build GitHub Action to cache with matrix awareness.</li>
|
|
11235
11194
|
<li><a href="https://github.com/nautobot/nautobot/pull/1848">#1848</a> - Fix Poetry cache issue in CI causing version tests to fail in <code>next</code>.</li>
|
|
11236
11195
|
</ul>
|
|
11237
11196
|
<h2 id="v135-2022-05-30">v1.3.5 (2022-05-30)<a class="headerlink" href="#v135-2022-05-30" title="Permanent link">¶</a></h2>
|
|
11238
|
-
<h3 id="
|
|
11197
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
11239
11198
|
<div class="admonition attention">
|
|
11240
11199
|
<p class="admonition-title">Attention</p>
|
|
11241
11200
|
<p><code>PyJWT</code> - Nautobot does not directly depend on <code>PyJWT</code> so your upgrading Nautobot via <code>pip</code> or other package management tools may not pick up the patched version (we are not pinning this dependency). However some tools support an "eager" upgrade policy as an option. For example, <code>pip install --upgrade --upgrade-strategy eager nautobot</code> will upgrade Nautobot and all it's dependencies to their latest compatible version. This may not work for all use cases so it may be safer to update Nautobot then perform <code>pip install --upgrade PyJWT</code>.</p>
|
|
@@ -11244,7 +11203,7 @@
|
|
|
11244
11203
|
<ul>
|
|
11245
11204
|
<li><a href="https://github.com/nautobot/nautobot/pull/1808">#1808</a> - Bump PyJWT from 2.3.0 to 2.4.0</li>
|
|
11246
11205
|
</ul>
|
|
11247
|
-
<h3 id="
|
|
11206
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
11248
11207
|
<ul>
|
|
11249
11208
|
<li><a href="https://github.com/nautobot/nautobot/issues/895">#895</a> - Fixed validation when creating <code>Interface</code> and <code>VMInterface</code> objects via the REST API while specifying <code>untagged_vlan</code> without <code>mode</code> also set in the payload. A 400 error will now be raised as expected.</li>
|
|
11250
11209
|
<li><a href="https://github.com/nautobot/nautobot/issues/1289">#1289</a> - Fixed issue where job result live pagination would reset to page 1 on refresh. The currently selected page will now persist until the job run completes.</li>
|
|
@@ -11256,28 +11215,28 @@
|
|
|
11256
11215
|
<li><a href="https://github.com/nautobot/nautobot/issues/1772">#1772</a> - Fix RelationshipAssociationSerializer not triggering model clean method.</li>
|
|
11257
11216
|
<li><a href="https://github.com/nautobot/nautobot/issues/1784">#1784</a> - Fix <code>nautobot-server dumpdata</code> not working due to <code>django_rq</code> update. Updated documentation.</li>
|
|
11258
11217
|
</ul>
|
|
11259
|
-
<h3 id="
|
|
11218
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
11260
11219
|
<ul>
|
|
11261
11220
|
<li><a href="https://github.com/nautobot/nautobot/issues/1606">#1606</a> - Added best practices for working with FilterSet classes to developer documentation.</li>
|
|
11262
11221
|
<li><a href="https://github.com/nautobot/nautobot/issues/1796">#1796</a> - Added documentation for using Git Repositories behind/via proxies.</li>
|
|
11263
11222
|
</ul>
|
|
11264
|
-
<h3 id="
|
|
11223
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
11265
11224
|
<ul>
|
|
11266
11225
|
<li><a href="https://github.com/nautobot/nautobot/pull/1805">#1805</a> - Fix git pre-commit hook incompatibility with dash shell and add warning on skipped tests.</li>
|
|
11267
11226
|
<li><a href="https://github.com/nautobot/nautobot/pull/1811">#1811</a> - Added developer Docker container for running mkdocs instead of locally.</li>
|
|
11268
11227
|
<li><a href="https://github.com/nautobot/nautobot/pull/1818">#1818</a> - Changed README.md to link to correct build status workflows.</li>
|
|
11269
11228
|
</ul>
|
|
11270
11229
|
<h2 id="v134-2022-05-16">v1.3.4 (2022-05-16)<a class="headerlink" href="#v134-2022-05-16" title="Permanent link">¶</a></h2>
|
|
11271
|
-
<h3 id="
|
|
11230
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
11272
11231
|
<ul>
|
|
11273
11232
|
<li><a href="https://github.com/nautobot/nautobot/issues/1715">#1715</a> - Add <a href="../user-guide/administration/configuration/settings.html#sanitizer_patterns"><code>SANITIZER_PATTERNS</code> optional setting</a> and <code>nautobot.utilities.logging.sanitize</code> function and use it for redaction of Job log entries.</li>
|
|
11274
11233
|
</ul>
|
|
11275
|
-
<h3 id="
|
|
11234
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
11276
11235
|
<ul>
|
|
11277
11236
|
<li><a href="https://github.com/nautobot/nautobot/pull/1766">#1766</a> - Added configuration for downloaded filename branding.</li>
|
|
11278
11237
|
<li><a href="https://github.com/nautobot/nautobot/pull/1752">#1752</a> - Added a new <code>SearchFilter</code> that is now used on all core filtersets to provide the <code>q=</code> search parameter for basic searching in list view of objects.</li>
|
|
11279
11238
|
</ul>
|
|
11280
|
-
<h3 id="
|
|
11239
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
11281
11240
|
<ul>
|
|
11282
11241
|
<li><a href="https://github.com/nautobot/nautobot/issues/1263">#1263</a> - Rack device image toggle added back to detail UI.</li>
|
|
11283
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/1449">#1449</a> - Fixed a performance bug in <code>/api/dcim/devices/</code> and <code>/api/virtualization/virtual-machines/</code> relating to configuration contexts.</li>
|
|
@@ -11285,23 +11244,23 @@
|
|
|
11285
11244
|
<li><a href="https://github.com/nautobot/nautobot/issues/1712">#1712</a> - Fixed circuit termination detail view getting 500 response when it's a provider network.</li>
|
|
11286
11245
|
<li><a href="https://github.com/nautobot/nautobot/issues/1755">#1755</a> - Fixed "Select All" helper widget from taking full UI height.</li>
|
|
11287
11246
|
</ul>
|
|
11288
|
-
<h3 id="
|
|
11247
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
11289
11248
|
<ul>
|
|
11290
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/1744">#1744</a> - Updated REST API token provisioning docs to include added in version.</li>
|
|
11291
11250
|
<li><a href="https://github.com/nautobot/nautobot/pull/1751">#1751</a> - Updated secrets documentation advisory notes.</li>
|
|
11292
11251
|
<li><a href="https://github.com/nautobot/nautobot/pull/1761">#1761</a> - Fixed typo in upgrading documentation.</li>
|
|
11293
11252
|
</ul>
|
|
11294
11253
|
<h2 id="v133-2022-05-02">v1.3.3 (2022-05-02)<a class="headerlink" href="#v133-2022-05-02" title="Permanent link">¶</a></h2>
|
|
11295
|
-
<h3 id="
|
|
11254
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
11296
11255
|
<ul>
|
|
11297
11256
|
<li><a href="https://github.com/nautobot/nautobot/issues/1481">#1481</a> - Pre-Generate Docs, Add Support for Plugin-Provided Docs</li>
|
|
11298
11257
|
<li><a href="https://github.com/nautobot/nautobot/pull/1617">#1617</a> - Added <code>run_job_for_testing</code> helper method for testing Jobs in plugins, internally.</li>
|
|
11299
11258
|
</ul>
|
|
11300
|
-
<h3 id="
|
|
11259
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
11301
11260
|
<ul>
|
|
11302
11261
|
<li><a href="https://github.com/nautobot/nautobot/issues/1481">#1481</a> - Docs link in footer now opens link to bundled documentation instead of Read the Docs.</li>
|
|
11303
11262
|
</ul>
|
|
11304
|
-
<h3 id="
|
|
11263
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
11305
11264
|
<ul>
|
|
11306
11265
|
<li><a href="https://github.com/nautobot/nautobot/issues/473">#473</a> - Fix <code>get_return_url</code> for plugin reverse URLs.</li>
|
|
11307
11266
|
<li><a href="https://github.com/nautobot/nautobot/issues/1430">#1430</a> - Fix not being able to print Job results, related IPs.</li>
|
|
@@ -11314,21 +11273,21 @@
|
|
|
11314
11273
|
<li><a href="https://github.com/nautobot/nautobot/pull/1701">#1701</a> - Fix static file serving of drf-spectacular-sidecar assets when using alternative <code>STATICFILES_STORAGE</code> settings.</li>
|
|
11315
11274
|
<li><a href="https://github.com/nautobot/nautobot/pull/1705">#1705</a> - Fix <code>NestedVMInterfaceSerializer</code> referencing the wrong model.</li>
|
|
11316
11275
|
</ul>
|
|
11317
|
-
<h3 id="
|
|
11276
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11318
11277
|
<ul>
|
|
11319
11278
|
<li><a href="https://github.com/nautobot/nautobot/pull/1680">#1680</a> - Bump netutils dependency to 1.1.0.</li>
|
|
11320
11279
|
<li><a href="https://github.com/nautobot/nautobot/pull/1700">#1700</a> - Revert vendoring <code>drf-spectacular</code>.</li>
|
|
11321
11280
|
</ul>
|
|
11322
|
-
<h3 id="
|
|
11281
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
11323
11282
|
<ul>
|
|
11324
11283
|
<li><a href="https://github.com/nautobot/nautobot/pull/1697">#1697</a> - Fix docs incorrectly stating Celery Redis URLs defaulting from CACHES.</li>
|
|
11325
11284
|
</ul>
|
|
11326
|
-
<h3 id="
|
|
11285
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
11327
11286
|
<ul>
|
|
11328
11287
|
<li><a href="https://github.com/nautobot/nautobot/issues/1685">#1685</a> - Fix Hadolint issue of <code>docker/Dockerfile</code>.</li>
|
|
11329
11288
|
</ul>
|
|
11330
11289
|
<h2 id="v132-2022-04-22">v1.3.2 (2022-04-22)<a class="headerlink" href="#v132-2022-04-22" title="Permanent link">¶</a></h2>
|
|
11331
|
-
<h3 id="
|
|
11290
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
11332
11291
|
<div class="admonition important">
|
|
11333
11292
|
<p class="admonition-title">Important</p>
|
|
11334
11293
|
<p>Critical CVEs in Django versions <code>>= 3.2, < 3.2.13</code>. This update upgrades Django to <code>3.2.13</code>.</p>
|
|
@@ -11336,41 +11295,41 @@
|
|
|
11336
11295
|
<ul>
|
|
11337
11296
|
<li><a href="https://github.com/nautobot/nautobot/pull/1686">#1686</a> - Implemented fixes for <a href="https://github.com/advisories/GHSA-w24h-v9qh-8gxj">CVE-2022-28347</a> and <a href="https://github.com/advisories/GHSA-2gwj-7jmv-h26r">CVE-2022-28346</a> to require Django >=3.2.13.</li>
|
|
11338
11297
|
</ul>
|
|
11339
|
-
<h3 id="
|
|
11298
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
11340
11299
|
<ul>
|
|
11341
11300
|
<li><a href="https://github.com/nautobot/nautobot/pull/1219">#1219</a> - Add ARM64 support (alpha).</li>
|
|
11342
11301
|
</ul>
|
|
11343
|
-
<h3 id="
|
|
11302
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
11344
11303
|
<ul>
|
|
11345
11304
|
<li><a href="https://github.com/nautobot/nautobot/pull/1670">#1670</a> - Configure drf-spectacular schema to more closely match drf-yasg (related to: <a href="https://github.com/nautobot/nautobot-ansible/pull/135">nautobot-ansible#135</a>).</li>
|
|
11346
11305
|
</ul>
|
|
11347
|
-
<h3 id="
|
|
11306
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
11348
11307
|
<ul>
|
|
11349
11308
|
<li><a href="https://github.com/nautobot/nautobot/issues/1682">#1682</a> - Fixed Nautobot health checks failing if Redis Sentinel password is required.</li>
|
|
11350
11309
|
</ul>
|
|
11351
|
-
<h3 id="
|
|
11310
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
11352
11311
|
<ul>
|
|
11353
11312
|
<li><a href="https://github.com/nautobot/nautobot/issues/1426">#1426</a> - Added plugin development documentation around using ObjectListView.</li>
|
|
11354
11313
|
<li><a href="https://github.com/nautobot/nautobot/pull/1659">#1659</a> - Added some missing test/lint commands to the <a href="../development/core/getting-started.html">development getting-started</a> documentation, and made <code>invoke cli</code> parameters match <code>invoke start/stop</code>.</li>
|
|
11355
11314
|
<li><a href="https://github.com/nautobot/nautobot/pull/1666">#1666</a> - Fixed errors in documentation with incomplete import statements.</li>
|
|
11356
11315
|
<li><a href="https://github.com/nautobot/nautobot/issues/1667">#1667</a> - Updated README.md screenshots.</li>
|
|
11357
11316
|
</ul>
|
|
11358
|
-
<h3 id="
|
|
11317
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
11359
11318
|
<ul>
|
|
11360
11319
|
<li><a href="https://github.com/nautobot/nautobot/pull/1674">#1674</a> - Added flag in Dockerfile, tasks.py to enable Poetry install parallelization.</li>
|
|
11361
11320
|
</ul>
|
|
11362
11321
|
<h2 id="v131-2022-04-19">v1.3.1 (2022-04-19)<a class="headerlink" href="#v131-2022-04-19" title="Permanent link">¶</a></h2>
|
|
11363
|
-
<h3 id="
|
|
11322
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
11364
11323
|
<ul>
|
|
11365
11324
|
<li><a href="https://github.com/nautobot/nautobot/pull/1647">#1647</a> - Changed class inheritance of JobViewSet to be simpler and more self-consistent.</li>
|
|
11366
11325
|
</ul>
|
|
11367
|
-
<h3 id="
|
|
11326
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
11368
11327
|
<ul>
|
|
11369
11328
|
<li><a href="https://github.com/nautobot/nautobot/issues/1278">#1278</a> - Fixed several different errors that could be raised when working with RelationshipAssociations.</li>
|
|
11370
11329
|
<li><a href="https://github.com/nautobot/nautobot/issues/1662">#1662</a> - Fixed <code>nat_outside</code> prefetch on Device API view, and displaying multiple <code>nat_outside</code> entries on VM detail view.</li>
|
|
11371
11330
|
</ul>
|
|
11372
11331
|
<h2 id="v130-2022-04-18">v1.3.0 (2022-04-18)<a class="headerlink" href="#v130-2022-04-18" title="Permanent link">¶</a></h2>
|
|
11373
|
-
<h3 id="
|
|
11332
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
11374
11333
|
<ul>
|
|
11375
11334
|
<li><a href="https://github.com/nautobot/nautobot/issues/630">#630</a> - Added support for multiple NAT outside IP addresses.</li>
|
|
11376
11335
|
<li><a href="https://github.com/nautobot/nautobot/issues/872">#872</a> - Added ability to scope tags to content types.</li>
|
|
@@ -11381,7 +11340,7 @@
|
|
|
11381
11340
|
<li><a href="https://github.com/nautobot/nautobot/issues/1525">#1525</a> - Implemented support for regex lookup expressions for <code>BaseFilterSet</code> filter fields in the API.</li>
|
|
11382
11341
|
<li><a href="https://github.com/nautobot/nautobot/issues/1638">#1638</a> - Implemented numerous indexes on models natural lookup fields as well as some index togethers for <code>ObjectChange</code>.</li>
|
|
11383
11342
|
</ul>
|
|
11384
|
-
<h3 id="
|
|
11343
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
11385
11344
|
<ul>
|
|
11386
11345
|
<li><a href="https://github.com/nautobot/nautobot/issues/595">#595</a> - Migrated from <code>drf-yasg</code> (OpenAPI 2.0) to <code>drf-spectacular</code> (OpenAPI 3.0) for REST API interactive Swagger documentation.</li>
|
|
11387
11346
|
<li><a href="https://github.com/nautobot/nautobot/issues/792">#792</a> - Poetry-installed dependencies are now identical between <code>dev</code> and <code>final</code> images.</li>
|
|
@@ -11390,7 +11349,7 @@
|
|
|
11390
11349
|
<li><a href="https://github.com/nautobot/nautobot/issues/1502">#1502</a> Finalized Dynamic Groups implementation for 1.3 release (including documentation and integration tests).</li>
|
|
11391
11350
|
<li><a href="https://github.com/nautobot/nautobot/pull/1521">#1521</a> - Consolidated Job REST API endpoints, taking advantage of REST API versioning.</li>
|
|
11392
11351
|
</ul>
|
|
11393
|
-
<h3 id="
|
|
11352
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
11394
11353
|
<ul>
|
|
11395
11354
|
<li><a href="https://github.com/nautobot/nautobot/issues/794">#794</a> - Fixed health check issue when using Redis Sentinel for caching with Cacheops. The Redis health check backend is now aware of Redis Sentinel.</li>
|
|
11396
11355
|
<li><a href="https://github.com/nautobot/nautobot/issues/1311">#1311</a> - Fixed where it was not possible to set the rack height to <code>0</code> when performing a bulk edit of device types.</li>
|
|
@@ -11403,20 +11362,20 @@
|
|
|
11403
11362
|
<li><a href="https://github.com/nautobot/nautobot/pull/1632">#1632</a> - Fixed issue accessing request attributes when request may be None.</li>
|
|
11404
11363
|
<li><a href="https://github.com/nautobot/nautobot/pull/1637">#1637</a> - Fixed warnings logged during REST API schema generation.</li>
|
|
11405
11364
|
</ul>
|
|
11406
|
-
<h3 id="
|
|
11365
|
+
<h3 id="documentation_7">Documentation<a class="headerlink" href="#documentation_7" title="Permanent link">¶</a></h3>
|
|
11407
11366
|
<ul>
|
|
11408
11367
|
<li><a href="https://github.com/nautobot/nautobot/issues/814">#814</a> - Extended documentation for configuring Celery for use Redis Sentinel clustering.</li>
|
|
11409
11368
|
<li><a href="https://github.com/nautobot/nautobot/issues/1479">#1479</a> - Updated Jobs documentation regarding the concrete Job database model.</li>
|
|
11410
11369
|
<li><a href="https://github.com/nautobot/nautobot/issues/1556">#1556</a> - Cleaned up typos and formatting issues across docs, few code spots.</li>
|
|
11411
11370
|
</ul>
|
|
11412
|
-
<h3 id="
|
|
11371
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
11413
11372
|
<ul>
|
|
11414
11373
|
<li><a href="https://github.com/nautobot/nautobot/issues/1385">#1385</a> - Added MarkdownLint validation and enforcement to CI.</li>
|
|
11415
11374
|
<li><a href="https://github.com/nautobot/nautobot/issues/1417">#1417</a> - CI scope improvements for streamlined performance.</li>
|
|
11416
11375
|
<li><a href="https://github.com/nautobot/nautobot/issues/1516">#1516</a> - Fixed MySQL unit tests running in Docker environment and revised recommended MySQL encoding settings.</li>
|
|
11417
11376
|
</ul>
|
|
11418
11377
|
<h2 id="v130b1-2022-03-11">v1.3.0b1 (2022-03-11)<a class="headerlink" href="#v130b1-2022-03-11" title="Permanent link">¶</a></h2>
|
|
11419
|
-
<h3 id="
|
|
11378
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
11420
11379
|
<ul>
|
|
11421
11380
|
<li><a href="https://github.com/nautobot/nautobot/issues/5">#5</a> - Added the option to perform a "dry run" of Git repository syncing.</li>
|
|
11422
11381
|
<li><a href="https://github.com/nautobot/nautobot/issues/330">#330</a> - Added pre-/post-change data to WebHooks leveraging snapshots.</li>
|
|
@@ -11437,7 +11396,7 @@
|
|
|
11437
11396
|
<li><a href="https://github.com/nautobot/nautobot/pull/1457">#1457</a> - Added new Jobs REST API, added control logic to use JobModel rather than JobClass where appropriate; improved permissions enforcement for Jobs.</li>
|
|
11438
11397
|
<li><a href="https://github.com/nautobot/nautobot/issues/1470">#1470</a> - Added plugin framework for extending FilterSets and Filter Forms.</li>
|
|
11439
11398
|
</ul>
|
|
11440
|
-
<h3 id="
|
|
11399
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
11441
11400
|
<ul>
|
|
11442
11401
|
<li><a href="https://github.com/nautobot/nautobot/issues/368">#368</a> - Added <code>nautobot.extras.forms.NautobotModelForm</code> and <code>nautobot.extras.filters.NautobotFilterSet</code> base classes. All form classes which inherited from all three of (<code>BootstrapMixin</code>, <code>CustomFieldModelForm</code>, and <code>RelationshipModelForm</code>) now inherit from <code>NautobotModelForm</code> as their base class. All filterset classes which inherited from all three of (<code>BaseFilterSet</code>, <code>CreatedUpdatedFilterSet</code>, and <code>CustomFieldModelFilterSet</code>) now inherit from <code>NautobotFilterSet</code> as their base class.</li>
|
|
11443
11402
|
<li><a href="https://github.com/nautobot/nautobot/issues/591">#591</a> - All uses of <code>type()</code> are now refactored to use <code>isinstance()</code> where applicable.</li>
|
|
@@ -11448,15 +11407,15 @@
|
|
|
11448
11407
|
<li><a href="https://github.com/nautobot/nautobot/pull/1252">#1252</a> - As Python 3.6 has reached end-of-life, the default Docker images published for this release (i.e. <code>1.3.0</code>, <code>stable</code>, <code>latest</code>) have been updated to use Python 3.7 instead.</li>
|
|
11449
11408
|
<li><a href="https://github.com/nautobot/nautobot/pull/1367">#1367</a> - Extracted Job-related models to submodule <code>nautobot.extras.models.jobs</code>; refined Job testing best practices.</li>
|
|
11450
11409
|
</ul>
|
|
11451
|
-
<h3 id="
|
|
11410
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
11452
11411
|
<ul>
|
|
11453
11412
|
<li><a href="https://github.com/nautobot/nautobot/issues/1268">#1268</a> - Drop Support for Python 3.6.</li>
|
|
11454
11413
|
</ul>
|
|
11455
|
-
<h3 id="
|
|
11414
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
11456
11415
|
<ul>
|
|
11457
11416
|
<li><a href="https://github.com/nautobot/nautobot/issues/1440">#1440</a> - Handle models missing serializer methods, dependent from adding pre-/post-change data to WebHooks.</li>
|
|
11458
11417
|
</ul>
|
|
11459
|
-
<h3 id="
|
|
11418
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11460
11419
|
<ul>
|
|
11461
11420
|
<li><a href="https://github.com/nautobot/nautobot/issues/1277">#1277</a> - Updated Django dependency to 3.2.X LTS.</li>
|
|
11462
11421
|
<li><a href="https://github.com/nautobot/nautobot/pull/1307">#1307</a> - Updated various Python package dependencies to their latest compatible versions.</li>
|
|
@@ -11464,7 +11423,7 @@
|
|
|
11464
11423
|
<li><a href="https://github.com/nautobot/nautobot/issues/1391">#1391</a> - Updated Jinja2 dependency to 3.0.X.</li>
|
|
11465
11424
|
<li><a href="https://github.com/nautobot/nautobot/issues/1435">#1435</a> - Update to Selenium 4.X.</li>
|
|
11466
11425
|
</ul>
|
|
11467
|
-
<h3 id="
|
|
11426
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
11468
11427
|
<ul>
|
|
11469
11428
|
<li><a href="https://github.com/nautobot/nautobot/issues/443">#443</a> - The provided "Dummy Plugin" has been renamed to "Example Plugin".</li>
|
|
11470
11429
|
<li><a href="https://github.com/nautobot/nautobot/pull/1314">#1314</a> - Updated various development-only Python package dependencies to their latest compatible versions.</li>
|
|
@@ -11615,7 +11574,7 @@
|
|
|
11615
11574
|
<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>
|
|
11616
11575
|
|
|
11617
11576
|
|
|
11618
|
-
<script src="../assets/javascripts/bundle.
|
|
11577
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
11619
11578
|
|
|
11620
11579
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11621
11580
|
|