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
|
|
|
@@ -8713,195 +8671,6 @@
|
|
|
8713
8671
|
</ul>
|
|
8714
8672
|
</nav>
|
|
8715
8673
|
|
|
8716
|
-
</li>
|
|
8717
|
-
|
|
8718
|
-
<li class="md-nav__item">
|
|
8719
|
-
<a href="#v1629-2024-12-09" class="md-nav__link">
|
|
8720
|
-
<span class="md-ellipsis">
|
|
8721
|
-
v1.6.29 (2024-12-09)
|
|
8722
|
-
</span>
|
|
8723
|
-
</a>
|
|
8724
|
-
|
|
8725
|
-
<nav class="md-nav" aria-label="v1.6.29 (2024-12-09)">
|
|
8726
|
-
<ul class="md-nav__list">
|
|
8727
|
-
|
|
8728
|
-
<li class="md-nav__item">
|
|
8729
|
-
<a href="#security-in-v1629" class="md-nav__link">
|
|
8730
|
-
<span class="md-ellipsis">
|
|
8731
|
-
Security in v1.6.29
|
|
8732
|
-
</span>
|
|
8733
|
-
</a>
|
|
8734
|
-
|
|
8735
|
-
</li>
|
|
8736
|
-
|
|
8737
|
-
<li class="md-nav__item">
|
|
8738
|
-
<a href="#fixed-in-v1629" class="md-nav__link">
|
|
8739
|
-
<span class="md-ellipsis">
|
|
8740
|
-
Fixed in v1.6.29
|
|
8741
|
-
</span>
|
|
8742
|
-
</a>
|
|
8743
|
-
|
|
8744
|
-
</li>
|
|
8745
|
-
|
|
8746
|
-
</ul>
|
|
8747
|
-
</nav>
|
|
8748
|
-
|
|
8749
|
-
</li>
|
|
8750
|
-
|
|
8751
|
-
<li class="md-nav__item">
|
|
8752
|
-
<a href="#v1628-2024-09-24" class="md-nav__link">
|
|
8753
|
-
<span class="md-ellipsis">
|
|
8754
|
-
v1.6.28 (2024-09-24)
|
|
8755
|
-
</span>
|
|
8756
|
-
</a>
|
|
8757
|
-
|
|
8758
|
-
<nav class="md-nav" aria-label="v1.6.28 (2024-09-24)">
|
|
8759
|
-
<ul class="md-nav__list">
|
|
8760
|
-
|
|
8761
|
-
<li class="md-nav__item">
|
|
8762
|
-
<a href="#fixed-in-v1628" class="md-nav__link">
|
|
8763
|
-
<span class="md-ellipsis">
|
|
8764
|
-
Fixed in v1.6.28
|
|
8765
|
-
</span>
|
|
8766
|
-
</a>
|
|
8767
|
-
|
|
8768
|
-
</li>
|
|
8769
|
-
|
|
8770
|
-
<li class="md-nav__item">
|
|
8771
|
-
<a href="#housekeeping-in-v1628" class="md-nav__link">
|
|
8772
|
-
<span class="md-ellipsis">
|
|
8773
|
-
Housekeeping in v1.6.28
|
|
8774
|
-
</span>
|
|
8775
|
-
</a>
|
|
8776
|
-
|
|
8777
|
-
</li>
|
|
8778
|
-
|
|
8779
|
-
</ul>
|
|
8780
|
-
</nav>
|
|
8781
|
-
|
|
8782
|
-
</li>
|
|
8783
|
-
|
|
8784
|
-
<li class="md-nav__item">
|
|
8785
|
-
<a href="#v1627-2024-09-03" class="md-nav__link">
|
|
8786
|
-
<span class="md-ellipsis">
|
|
8787
|
-
v1.6.27 (2024-09-03)
|
|
8788
|
-
</span>
|
|
8789
|
-
</a>
|
|
8790
|
-
|
|
8791
|
-
<nav class="md-nav" aria-label="v1.6.27 (2024-09-03)">
|
|
8792
|
-
<ul class="md-nav__list">
|
|
8793
|
-
|
|
8794
|
-
<li class="md-nav__item">
|
|
8795
|
-
<a href="#security-in-v1627" class="md-nav__link">
|
|
8796
|
-
<span class="md-ellipsis">
|
|
8797
|
-
Security in v1.6.27
|
|
8798
|
-
</span>
|
|
8799
|
-
</a>
|
|
8800
|
-
|
|
8801
|
-
</li>
|
|
8802
|
-
|
|
8803
|
-
<li class="md-nav__item">
|
|
8804
|
-
<a href="#fixed-in-v1627" class="md-nav__link">
|
|
8805
|
-
<span class="md-ellipsis">
|
|
8806
|
-
Fixed in v1.6.27
|
|
8807
|
-
</span>
|
|
8808
|
-
</a>
|
|
8809
|
-
|
|
8810
|
-
</li>
|
|
8811
|
-
|
|
8812
|
-
</ul>
|
|
8813
|
-
</nav>
|
|
8814
|
-
|
|
8815
|
-
</li>
|
|
8816
|
-
|
|
8817
|
-
<li class="md-nav__item">
|
|
8818
|
-
<a href="#v1626-2024-07-22" class="md-nav__link">
|
|
8819
|
-
<span class="md-ellipsis">
|
|
8820
|
-
v1.6.26 (2024-07-22)
|
|
8821
|
-
</span>
|
|
8822
|
-
</a>
|
|
8823
|
-
|
|
8824
|
-
<nav class="md-nav" aria-label="v1.6.26 (2024-07-22)">
|
|
8825
|
-
<ul class="md-nav__list">
|
|
8826
|
-
|
|
8827
|
-
<li class="md-nav__item">
|
|
8828
|
-
<a href="#fixed-in-v1626" class="md-nav__link">
|
|
8829
|
-
<span class="md-ellipsis">
|
|
8830
|
-
Fixed in v1.6.26
|
|
8831
|
-
</span>
|
|
8832
|
-
</a>
|
|
8833
|
-
|
|
8834
|
-
</li>
|
|
8835
|
-
|
|
8836
|
-
</ul>
|
|
8837
|
-
</nav>
|
|
8838
|
-
|
|
8839
|
-
</li>
|
|
8840
|
-
|
|
8841
|
-
<li class="md-nav__item">
|
|
8842
|
-
<a href="#v1625-2024-07-09" class="md-nav__link">
|
|
8843
|
-
<span class="md-ellipsis">
|
|
8844
|
-
v1.6.25 (2024-07-09)
|
|
8845
|
-
</span>
|
|
8846
|
-
</a>
|
|
8847
|
-
|
|
8848
|
-
<nav class="md-nav" aria-label="v1.6.25 (2024-07-09)">
|
|
8849
|
-
<ul class="md-nav__list">
|
|
8850
|
-
|
|
8851
|
-
<li class="md-nav__item">
|
|
8852
|
-
<a href="#security-in-v1625" class="md-nav__link">
|
|
8853
|
-
<span class="md-ellipsis">
|
|
8854
|
-
Security in v1.6.25
|
|
8855
|
-
</span>
|
|
8856
|
-
</a>
|
|
8857
|
-
|
|
8858
|
-
</li>
|
|
8859
|
-
|
|
8860
|
-
<li class="md-nav__item">
|
|
8861
|
-
<a href="#dependencies-in-v1625" class="md-nav__link">
|
|
8862
|
-
<span class="md-ellipsis">
|
|
8863
|
-
Dependencies in v1.6.25
|
|
8864
|
-
</span>
|
|
8865
|
-
</a>
|
|
8866
|
-
|
|
8867
|
-
</li>
|
|
8868
|
-
|
|
8869
|
-
</ul>
|
|
8870
|
-
</nav>
|
|
8871
|
-
|
|
8872
|
-
</li>
|
|
8873
|
-
|
|
8874
|
-
<li class="md-nav__item">
|
|
8875
|
-
<a href="#v1624-2024-06-24" class="md-nav__link">
|
|
8876
|
-
<span class="md-ellipsis">
|
|
8877
|
-
v1.6.24 (2024-06-24)
|
|
8878
|
-
</span>
|
|
8879
|
-
</a>
|
|
8880
|
-
|
|
8881
|
-
<nav class="md-nav" aria-label="v1.6.24 (2024-06-24)">
|
|
8882
|
-
<ul class="md-nav__list">
|
|
8883
|
-
|
|
8884
|
-
<li class="md-nav__item">
|
|
8885
|
-
<a href="#security-in-v1624" class="md-nav__link">
|
|
8886
|
-
<span class="md-ellipsis">
|
|
8887
|
-
Security in v1.6.24
|
|
8888
|
-
</span>
|
|
8889
|
-
</a>
|
|
8890
|
-
|
|
8891
|
-
</li>
|
|
8892
|
-
|
|
8893
|
-
<li class="md-nav__item">
|
|
8894
|
-
<a href="#housekeeping-in-v1624" class="md-nav__link">
|
|
8895
|
-
<span class="md-ellipsis">
|
|
8896
|
-
Housekeeping in v1.6.24
|
|
8897
|
-
</span>
|
|
8898
|
-
</a>
|
|
8899
|
-
|
|
8900
|
-
</li>
|
|
8901
|
-
|
|
8902
|
-
</ul>
|
|
8903
|
-
</nav>
|
|
8904
|
-
|
|
8905
8674
|
</li>
|
|
8906
8675
|
|
|
8907
8676
|
<li class="md-nav__item">
|
|
@@ -8915,18 +8684,18 @@
|
|
|
8915
8684
|
<ul class="md-nav__list">
|
|
8916
8685
|
|
|
8917
8686
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#security
|
|
8687
|
+
<a href="#security" class="md-nav__link">
|
|
8919
8688
|
<span class="md-ellipsis">
|
|
8920
|
-
Security
|
|
8689
|
+
Security
|
|
8921
8690
|
</span>
|
|
8922
8691
|
</a>
|
|
8923
8692
|
|
|
8924
8693
|
</li>
|
|
8925
8694
|
|
|
8926
8695
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#housekeeping
|
|
8696
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8928
8697
|
<span class="md-ellipsis">
|
|
8929
|
-
Housekeeping
|
|
8698
|
+
Housekeeping
|
|
8930
8699
|
</span>
|
|
8931
8700
|
</a>
|
|
8932
8701
|
|
|
@@ -8948,27 +8717,27 @@
|
|
|
8948
8717
|
<ul class="md-nav__list">
|
|
8949
8718
|
|
|
8950
8719
|
<li class="md-nav__item">
|
|
8951
|
-
<a href="#
|
|
8720
|
+
<a href="#security_1" class="md-nav__link">
|
|
8952
8721
|
<span class="md-ellipsis">
|
|
8953
|
-
Security
|
|
8722
|
+
Security
|
|
8954
8723
|
</span>
|
|
8955
8724
|
</a>
|
|
8956
8725
|
|
|
8957
8726
|
</li>
|
|
8958
8727
|
|
|
8959
8728
|
<li class="md-nav__item">
|
|
8960
|
-
<a href="#
|
|
8729
|
+
<a href="#added_1" class="md-nav__link">
|
|
8961
8730
|
<span class="md-ellipsis">
|
|
8962
|
-
Added
|
|
8731
|
+
Added
|
|
8963
8732
|
</span>
|
|
8964
8733
|
</a>
|
|
8965
8734
|
|
|
8966
8735
|
</li>
|
|
8967
8736
|
|
|
8968
8737
|
<li class="md-nav__item">
|
|
8969
|
-
<a href="#fixed
|
|
8738
|
+
<a href="#fixed" class="md-nav__link">
|
|
8970
8739
|
<span class="md-ellipsis">
|
|
8971
|
-
Fixed
|
|
8740
|
+
Fixed
|
|
8972
8741
|
</span>
|
|
8973
8742
|
</a>
|
|
8974
8743
|
|
|
@@ -8990,9 +8759,9 @@
|
|
|
8990
8759
|
<ul class="md-nav__list">
|
|
8991
8760
|
|
|
8992
8761
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
8762
|
+
<a href="#security_2" class="md-nav__link">
|
|
8994
8763
|
<span class="md-ellipsis">
|
|
8995
|
-
Security
|
|
8764
|
+
Security
|
|
8996
8765
|
</span>
|
|
8997
8766
|
</a>
|
|
8998
8767
|
|
|
@@ -9014,18 +8783,18 @@
|
|
|
9014
8783
|
<ul class="md-nav__list">
|
|
9015
8784
|
|
|
9016
8785
|
<li class="md-nav__item">
|
|
9017
|
-
<a href="#
|
|
8786
|
+
<a href="#security_3" class="md-nav__link">
|
|
9018
8787
|
<span class="md-ellipsis">
|
|
9019
|
-
Security
|
|
8788
|
+
Security
|
|
9020
8789
|
</span>
|
|
9021
8790
|
</a>
|
|
9022
8791
|
|
|
9023
8792
|
</li>
|
|
9024
8793
|
|
|
9025
8794
|
<li class="md-nav__item">
|
|
9026
|
-
<a href="#
|
|
8795
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9027
8796
|
<span class="md-ellipsis">
|
|
9028
|
-
Fixed
|
|
8797
|
+
Fixed
|
|
9029
8798
|
</span>
|
|
9030
8799
|
</a>
|
|
9031
8800
|
|
|
@@ -9047,18 +8816,18 @@
|
|
|
9047
8816
|
<ul class="md-nav__list">
|
|
9048
8817
|
|
|
9049
8818
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
8819
|
+
<a href="#security_4" class="md-nav__link">
|
|
9051
8820
|
<span class="md-ellipsis">
|
|
9052
|
-
Security
|
|
8821
|
+
Security
|
|
9053
8822
|
</span>
|
|
9054
8823
|
</a>
|
|
9055
8824
|
|
|
9056
8825
|
</li>
|
|
9057
8826
|
|
|
9058
8827
|
<li class="md-nav__item">
|
|
9059
|
-
<a href="#
|
|
8828
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9060
8829
|
<span class="md-ellipsis">
|
|
9061
|
-
Fixed
|
|
8830
|
+
Fixed
|
|
9062
8831
|
</span>
|
|
9063
8832
|
</a>
|
|
9064
8833
|
|
|
@@ -9080,18 +8849,18 @@
|
|
|
9080
8849
|
<ul class="md-nav__list">
|
|
9081
8850
|
|
|
9082
8851
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
8852
|
+
<a href="#security_5" class="md-nav__link">
|
|
9084
8853
|
<span class="md-ellipsis">
|
|
9085
|
-
Security
|
|
8854
|
+
Security
|
|
9086
8855
|
</span>
|
|
9087
8856
|
</a>
|
|
9088
8857
|
|
|
9089
8858
|
</li>
|
|
9090
8859
|
|
|
9091
8860
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#dependencies
|
|
8861
|
+
<a href="#dependencies" class="md-nav__link">
|
|
9093
8862
|
<span class="md-ellipsis">
|
|
9094
|
-
Dependencies
|
|
8863
|
+
Dependencies
|
|
9095
8864
|
</span>
|
|
9096
8865
|
</a>
|
|
9097
8866
|
|
|
@@ -9113,9 +8882,9 @@
|
|
|
9113
8882
|
<ul class="md-nav__list">
|
|
9114
8883
|
|
|
9115
8884
|
<li class="md-nav__item">
|
|
9116
|
-
<a href="#
|
|
8885
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
9117
8886
|
<span class="md-ellipsis">
|
|
9118
|
-
Dependencies
|
|
8887
|
+
Dependencies
|
|
9119
8888
|
</span>
|
|
9120
8889
|
</a>
|
|
9121
8890
|
|
|
@@ -9137,54 +8906,54 @@
|
|
|
9137
8906
|
<ul class="md-nav__list">
|
|
9138
8907
|
|
|
9139
8908
|
<li class="md-nav__item">
|
|
9140
|
-
<a href="#
|
|
8909
|
+
<a href="#security_6" class="md-nav__link">
|
|
9141
8910
|
<span class="md-ellipsis">
|
|
9142
|
-
Security
|
|
8911
|
+
Security
|
|
9143
8912
|
</span>
|
|
9144
8913
|
</a>
|
|
9145
8914
|
|
|
9146
8915
|
</li>
|
|
9147
8916
|
|
|
9148
8917
|
<li class="md-nav__item">
|
|
9149
|
-
<a href="#
|
|
8918
|
+
<a href="#added_2" class="md-nav__link">
|
|
9150
8919
|
<span class="md-ellipsis">
|
|
9151
|
-
Added
|
|
8920
|
+
Added
|
|
9152
8921
|
</span>
|
|
9153
8922
|
</a>
|
|
9154
8923
|
|
|
9155
8924
|
</li>
|
|
9156
8925
|
|
|
9157
8926
|
<li class="md-nav__item">
|
|
9158
|
-
<a href="#
|
|
8927
|
+
<a href="#changed_1" class="md-nav__link">
|
|
9159
8928
|
<span class="md-ellipsis">
|
|
9160
|
-
Changed
|
|
8929
|
+
Changed
|
|
9161
8930
|
</span>
|
|
9162
8931
|
</a>
|
|
9163
8932
|
|
|
9164
8933
|
</li>
|
|
9165
8934
|
|
|
9166
8935
|
<li class="md-nav__item">
|
|
9167
|
-
<a href="#
|
|
8936
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9168
8937
|
<span class="md-ellipsis">
|
|
9169
|
-
Fixed
|
|
8938
|
+
Fixed
|
|
9170
8939
|
</span>
|
|
9171
8940
|
</a>
|
|
9172
8941
|
|
|
9173
8942
|
</li>
|
|
9174
8943
|
|
|
9175
8944
|
<li class="md-nav__item">
|
|
9176
|
-
<a href="#documentation
|
|
8945
|
+
<a href="#documentation" class="md-nav__link">
|
|
9177
8946
|
<span class="md-ellipsis">
|
|
9178
|
-
Documentation
|
|
8947
|
+
Documentation
|
|
9179
8948
|
</span>
|
|
9180
8949
|
</a>
|
|
9181
8950
|
|
|
9182
8951
|
</li>
|
|
9183
8952
|
|
|
9184
8953
|
<li class="md-nav__item">
|
|
9185
|
-
<a href="#
|
|
8954
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9186
8955
|
<span class="md-ellipsis">
|
|
9187
|
-
Housekeeping
|
|
8956
|
+
Housekeeping
|
|
9188
8957
|
</span>
|
|
9189
8958
|
</a>
|
|
9190
8959
|
|
|
@@ -9206,27 +8975,27 @@
|
|
|
9206
8975
|
<ul class="md-nav__list">
|
|
9207
8976
|
|
|
9208
8977
|
<li class="md-nav__item">
|
|
9209
|
-
<a href="#
|
|
8978
|
+
<a href="#added_3" class="md-nav__link">
|
|
9210
8979
|
<span class="md-ellipsis">
|
|
9211
|
-
Added
|
|
8980
|
+
Added
|
|
9212
8981
|
</span>
|
|
9213
8982
|
</a>
|
|
9214
8983
|
|
|
9215
8984
|
</li>
|
|
9216
8985
|
|
|
9217
8986
|
<li class="md-nav__item">
|
|
9218
|
-
<a href="#
|
|
8987
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9219
8988
|
<span class="md-ellipsis">
|
|
9220
|
-
Fixed
|
|
8989
|
+
Fixed
|
|
9221
8990
|
</span>
|
|
9222
8991
|
</a>
|
|
9223
8992
|
|
|
9224
8993
|
</li>
|
|
9225
8994
|
|
|
9226
8995
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
8996
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9228
8997
|
<span class="md-ellipsis">
|
|
9229
|
-
Housekeeping
|
|
8998
|
+
Housekeeping
|
|
9230
8999
|
</span>
|
|
9231
9000
|
</a>
|
|
9232
9001
|
|
|
@@ -9248,9 +9017,9 @@
|
|
|
9248
9017
|
<ul class="md-nav__list">
|
|
9249
9018
|
|
|
9250
9019
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9020
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9252
9021
|
<span class="md-ellipsis">
|
|
9253
|
-
Fixed
|
|
9022
|
+
Fixed
|
|
9254
9023
|
</span>
|
|
9255
9024
|
</a>
|
|
9256
9025
|
|
|
@@ -9272,27 +9041,36 @@
|
|
|
9272
9041
|
<ul class="md-nav__list">
|
|
9273
9042
|
|
|
9274
9043
|
<li class="md-nav__item">
|
|
9275
|
-
<a href="#
|
|
9044
|
+
<a href="#added_4" class="md-nav__link">
|
|
9045
|
+
<span class="md-ellipsis">
|
|
9046
|
+
Added
|
|
9047
|
+
</span>
|
|
9048
|
+
</a>
|
|
9049
|
+
|
|
9050
|
+
</li>
|
|
9051
|
+
|
|
9052
|
+
<li class="md-nav__item">
|
|
9053
|
+
<a href="#added_5" class="md-nav__link">
|
|
9276
9054
|
<span class="md-ellipsis">
|
|
9277
|
-
Added
|
|
9055
|
+
Added
|
|
9278
9056
|
</span>
|
|
9279
9057
|
</a>
|
|
9280
9058
|
|
|
9281
9059
|
</li>
|
|
9282
9060
|
|
|
9283
9061
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9062
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9285
9063
|
<span class="md-ellipsis">
|
|
9286
|
-
Fixed
|
|
9064
|
+
Fixed
|
|
9287
9065
|
</span>
|
|
9288
9066
|
</a>
|
|
9289
9067
|
|
|
9290
9068
|
</li>
|
|
9291
9069
|
|
|
9292
9070
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9071
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9294
9072
|
<span class="md-ellipsis">
|
|
9295
|
-
Documentation
|
|
9073
|
+
Documentation
|
|
9296
9074
|
</span>
|
|
9297
9075
|
</a>
|
|
9298
9076
|
|
|
@@ -9314,36 +9092,36 @@
|
|
|
9314
9092
|
<ul class="md-nav__list">
|
|
9315
9093
|
|
|
9316
9094
|
<li class="md-nav__item">
|
|
9317
|
-
<a href="#
|
|
9095
|
+
<a href="#added_6" class="md-nav__link">
|
|
9318
9096
|
<span class="md-ellipsis">
|
|
9319
|
-
|
|
9097
|
+
Added
|
|
9320
9098
|
</span>
|
|
9321
9099
|
</a>
|
|
9322
9100
|
|
|
9323
9101
|
</li>
|
|
9324
9102
|
|
|
9325
9103
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9104
|
+
<a href="#security_7" class="md-nav__link">
|
|
9327
9105
|
<span class="md-ellipsis">
|
|
9328
|
-
|
|
9106
|
+
Security
|
|
9329
9107
|
</span>
|
|
9330
9108
|
</a>
|
|
9331
9109
|
|
|
9332
9110
|
</li>
|
|
9333
9111
|
|
|
9334
9112
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9113
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9336
9114
|
<span class="md-ellipsis">
|
|
9337
|
-
Changed
|
|
9115
|
+
Changed
|
|
9338
9116
|
</span>
|
|
9339
9117
|
</a>
|
|
9340
9118
|
|
|
9341
9119
|
</li>
|
|
9342
9120
|
|
|
9343
9121
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9122
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9345
9123
|
<span class="md-ellipsis">
|
|
9346
|
-
Fixed
|
|
9124
|
+
Fixed
|
|
9347
9125
|
</span>
|
|
9348
9126
|
</a>
|
|
9349
9127
|
|
|
@@ -9365,27 +9143,27 @@
|
|
|
9365
9143
|
<ul class="md-nav__list">
|
|
9366
9144
|
|
|
9367
9145
|
<li class="md-nav__item">
|
|
9368
|
-
<a href="#
|
|
9146
|
+
<a href="#security_8" class="md-nav__link">
|
|
9369
9147
|
<span class="md-ellipsis">
|
|
9370
|
-
Security
|
|
9148
|
+
Security
|
|
9371
9149
|
</span>
|
|
9372
9150
|
</a>
|
|
9373
9151
|
|
|
9374
9152
|
</li>
|
|
9375
9153
|
|
|
9376
9154
|
<li class="md-nav__item">
|
|
9377
|
-
<a href="#
|
|
9155
|
+
<a href="#added_7" class="md-nav__link">
|
|
9378
9156
|
<span class="md-ellipsis">
|
|
9379
|
-
Added
|
|
9157
|
+
Added
|
|
9380
9158
|
</span>
|
|
9381
9159
|
</a>
|
|
9382
9160
|
|
|
9383
9161
|
</li>
|
|
9384
9162
|
|
|
9385
9163
|
<li class="md-nav__item">
|
|
9386
|
-
<a href="#
|
|
9164
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9387
9165
|
<span class="md-ellipsis">
|
|
9388
|
-
Fixed
|
|
9166
|
+
Fixed
|
|
9389
9167
|
</span>
|
|
9390
9168
|
</a>
|
|
9391
9169
|
|
|
@@ -9407,36 +9185,36 @@
|
|
|
9407
9185
|
<ul class="md-nav__list">
|
|
9408
9186
|
|
|
9409
9187
|
<li class="md-nav__item">
|
|
9410
|
-
<a href="#
|
|
9188
|
+
<a href="#security_9" class="md-nav__link">
|
|
9411
9189
|
<span class="md-ellipsis">
|
|
9412
|
-
Security
|
|
9190
|
+
Security
|
|
9413
9191
|
</span>
|
|
9414
9192
|
</a>
|
|
9415
9193
|
|
|
9416
9194
|
</li>
|
|
9417
9195
|
|
|
9418
9196
|
<li class="md-nav__item">
|
|
9419
|
-
<a href="#
|
|
9197
|
+
<a href="#added_8" class="md-nav__link">
|
|
9420
9198
|
<span class="md-ellipsis">
|
|
9421
|
-
Added
|
|
9199
|
+
Added
|
|
9422
9200
|
</span>
|
|
9423
9201
|
</a>
|
|
9424
9202
|
|
|
9425
9203
|
</li>
|
|
9426
9204
|
|
|
9427
9205
|
<li class="md-nav__item">
|
|
9428
|
-
<a href="#
|
|
9206
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9429
9207
|
<span class="md-ellipsis">
|
|
9430
|
-
Changed
|
|
9208
|
+
Changed
|
|
9431
9209
|
</span>
|
|
9432
9210
|
</a>
|
|
9433
9211
|
|
|
9434
9212
|
</li>
|
|
9435
9213
|
|
|
9436
9214
|
<li class="md-nav__item">
|
|
9437
|
-
<a href="#
|
|
9215
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9438
9216
|
<span class="md-ellipsis">
|
|
9439
|
-
Dependencies
|
|
9217
|
+
Dependencies
|
|
9440
9218
|
</span>
|
|
9441
9219
|
</a>
|
|
9442
9220
|
|
|
@@ -9458,9 +9236,9 @@
|
|
|
9458
9236
|
<ul class="md-nav__list">
|
|
9459
9237
|
|
|
9460
9238
|
<li class="md-nav__item">
|
|
9461
|
-
<a href="#
|
|
9239
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9462
9240
|
<span class="md-ellipsis">
|
|
9463
|
-
Fixed
|
|
9241
|
+
Fixed
|
|
9464
9242
|
</span>
|
|
9465
9243
|
</a>
|
|
9466
9244
|
|
|
@@ -9482,45 +9260,45 @@
|
|
|
9482
9260
|
<ul class="md-nav__list">
|
|
9483
9261
|
|
|
9484
9262
|
<li class="md-nav__item">
|
|
9485
|
-
<a href="#
|
|
9263
|
+
<a href="#security_10" class="md-nav__link">
|
|
9486
9264
|
<span class="md-ellipsis">
|
|
9487
|
-
Security
|
|
9265
|
+
Security
|
|
9488
9266
|
</span>
|
|
9489
9267
|
</a>
|
|
9490
9268
|
|
|
9491
9269
|
</li>
|
|
9492
9270
|
|
|
9493
9271
|
<li class="md-nav__item">
|
|
9494
|
-
<a href="#
|
|
9272
|
+
<a href="#added_9" class="md-nav__link">
|
|
9495
9273
|
<span class="md-ellipsis">
|
|
9496
|
-
Added
|
|
9274
|
+
Added
|
|
9497
9275
|
</span>
|
|
9498
9276
|
</a>
|
|
9499
9277
|
|
|
9500
9278
|
</li>
|
|
9501
9279
|
|
|
9502
9280
|
<li class="md-nav__item">
|
|
9503
|
-
<a href="#
|
|
9281
|
+
<a href="#removed_1" class="md-nav__link">
|
|
9504
9282
|
<span class="md-ellipsis">
|
|
9505
|
-
Removed
|
|
9283
|
+
Removed
|
|
9506
9284
|
</span>
|
|
9507
9285
|
</a>
|
|
9508
9286
|
|
|
9509
9287
|
</li>
|
|
9510
9288
|
|
|
9511
9289
|
<li class="md-nav__item">
|
|
9512
|
-
<a href="#
|
|
9290
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9513
9291
|
<span class="md-ellipsis">
|
|
9514
|
-
Fixed
|
|
9292
|
+
Fixed
|
|
9515
9293
|
</span>
|
|
9516
9294
|
</a>
|
|
9517
9295
|
|
|
9518
9296
|
</li>
|
|
9519
9297
|
|
|
9520
9298
|
<li class="md-nav__item">
|
|
9521
|
-
<a href="#
|
|
9299
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9522
9300
|
<span class="md-ellipsis">
|
|
9523
|
-
Housekeeping
|
|
9301
|
+
Housekeeping
|
|
9524
9302
|
</span>
|
|
9525
9303
|
</a>
|
|
9526
9304
|
|
|
@@ -9542,36 +9320,36 @@
|
|
|
9542
9320
|
<ul class="md-nav__list">
|
|
9543
9321
|
|
|
9544
9322
|
<li class="md-nav__item">
|
|
9545
|
-
<a href="#
|
|
9323
|
+
<a href="#security_11" class="md-nav__link">
|
|
9546
9324
|
<span class="md-ellipsis">
|
|
9547
|
-
Security
|
|
9325
|
+
Security
|
|
9548
9326
|
</span>
|
|
9549
9327
|
</a>
|
|
9550
9328
|
|
|
9551
9329
|
</li>
|
|
9552
9330
|
|
|
9553
9331
|
<li class="md-nav__item">
|
|
9554
|
-
<a href="#
|
|
9332
|
+
<a href="#added_10" class="md-nav__link">
|
|
9555
9333
|
<span class="md-ellipsis">
|
|
9556
|
-
Added
|
|
9334
|
+
Added
|
|
9557
9335
|
</span>
|
|
9558
9336
|
</a>
|
|
9559
9337
|
|
|
9560
9338
|
</li>
|
|
9561
9339
|
|
|
9562
9340
|
<li class="md-nav__item">
|
|
9563
|
-
<a href="#
|
|
9341
|
+
<a href="#removed_2" class="md-nav__link">
|
|
9564
9342
|
<span class="md-ellipsis">
|
|
9565
|
-
Removed
|
|
9343
|
+
Removed
|
|
9566
9344
|
</span>
|
|
9567
9345
|
</a>
|
|
9568
9346
|
|
|
9569
9347
|
</li>
|
|
9570
9348
|
|
|
9571
9349
|
<li class="md-nav__item">
|
|
9572
|
-
<a href="#
|
|
9350
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
9573
9351
|
<span class="md-ellipsis">
|
|
9574
|
-
Fixed
|
|
9352
|
+
Fixed
|
|
9575
9353
|
</span>
|
|
9576
9354
|
</a>
|
|
9577
9355
|
|
|
@@ -9593,45 +9371,45 @@
|
|
|
9593
9371
|
<ul class="md-nav__list">
|
|
9594
9372
|
|
|
9595
9373
|
<li class="md-nav__item">
|
|
9596
|
-
<a href="#
|
|
9374
|
+
<a href="#security_12" class="md-nav__link">
|
|
9597
9375
|
<span class="md-ellipsis">
|
|
9598
|
-
Security
|
|
9376
|
+
Security
|
|
9599
9377
|
</span>
|
|
9600
9378
|
</a>
|
|
9601
9379
|
|
|
9602
9380
|
</li>
|
|
9603
9381
|
|
|
9604
9382
|
<li class="md-nav__item">
|
|
9605
|
-
<a href="#
|
|
9383
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9606
9384
|
<span class="md-ellipsis">
|
|
9607
|
-
Changed
|
|
9385
|
+
Changed
|
|
9608
9386
|
</span>
|
|
9609
9387
|
</a>
|
|
9610
9388
|
|
|
9611
9389
|
</li>
|
|
9612
9390
|
|
|
9613
9391
|
<li class="md-nav__item">
|
|
9614
|
-
<a href="#
|
|
9392
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
9615
9393
|
<span class="md-ellipsis">
|
|
9616
|
-
Fixed
|
|
9394
|
+
Fixed
|
|
9617
9395
|
</span>
|
|
9618
9396
|
</a>
|
|
9619
9397
|
|
|
9620
9398
|
</li>
|
|
9621
9399
|
|
|
9622
9400
|
<li class="md-nav__item">
|
|
9623
|
-
<a href="#
|
|
9401
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9624
9402
|
<span class="md-ellipsis">
|
|
9625
|
-
Dependencies
|
|
9403
|
+
Dependencies
|
|
9626
9404
|
</span>
|
|
9627
9405
|
</a>
|
|
9628
9406
|
|
|
9629
9407
|
</li>
|
|
9630
9408
|
|
|
9631
9409
|
<li class="md-nav__item">
|
|
9632
|
-
<a href="#
|
|
9410
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9633
9411
|
<span class="md-ellipsis">
|
|
9634
|
-
Housekeeping
|
|
9412
|
+
Housekeeping
|
|
9635
9413
|
</span>
|
|
9636
9414
|
</a>
|
|
9637
9415
|
|
|
@@ -9653,45 +9431,45 @@
|
|
|
9653
9431
|
<ul class="md-nav__list">
|
|
9654
9432
|
|
|
9655
9433
|
<li class="md-nav__item">
|
|
9656
|
-
<a href="#
|
|
9434
|
+
<a href="#security_13" class="md-nav__link">
|
|
9657
9435
|
<span class="md-ellipsis">
|
|
9658
|
-
Security
|
|
9436
|
+
Security
|
|
9659
9437
|
</span>
|
|
9660
9438
|
</a>
|
|
9661
9439
|
|
|
9662
9440
|
</li>
|
|
9663
9441
|
|
|
9664
9442
|
<li class="md-nav__item">
|
|
9665
|
-
<a href="#
|
|
9443
|
+
<a href="#added_11" class="md-nav__link">
|
|
9666
9444
|
<span class="md-ellipsis">
|
|
9667
|
-
Added
|
|
9445
|
+
Added
|
|
9668
9446
|
</span>
|
|
9669
9447
|
</a>
|
|
9670
9448
|
|
|
9671
9449
|
</li>
|
|
9672
9450
|
|
|
9673
9451
|
<li class="md-nav__item">
|
|
9674
|
-
<a href="#
|
|
9452
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
9675
9453
|
<span class="md-ellipsis">
|
|
9676
|
-
Fixed
|
|
9454
|
+
Fixed
|
|
9677
9455
|
</span>
|
|
9678
9456
|
</a>
|
|
9679
9457
|
|
|
9680
9458
|
</li>
|
|
9681
9459
|
|
|
9682
9460
|
<li class="md-nav__item">
|
|
9683
|
-
<a href="#
|
|
9461
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9684
9462
|
<span class="md-ellipsis">
|
|
9685
|
-
Documentation
|
|
9463
|
+
Documentation
|
|
9686
9464
|
</span>
|
|
9687
9465
|
</a>
|
|
9688
9466
|
|
|
9689
9467
|
</li>
|
|
9690
9468
|
|
|
9691
9469
|
<li class="md-nav__item">
|
|
9692
|
-
<a href="#
|
|
9470
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9693
9471
|
<span class="md-ellipsis">
|
|
9694
|
-
Housekeeping
|
|
9472
|
+
Housekeeping
|
|
9695
9473
|
</span>
|
|
9696
9474
|
</a>
|
|
9697
9475
|
|
|
@@ -9713,36 +9491,36 @@
|
|
|
9713
9491
|
<ul class="md-nav__list">
|
|
9714
9492
|
|
|
9715
9493
|
<li class="md-nav__item">
|
|
9716
|
-
<a href="#
|
|
9494
|
+
<a href="#added_12" class="md-nav__link">
|
|
9717
9495
|
<span class="md-ellipsis">
|
|
9718
|
-
Added
|
|
9496
|
+
Added
|
|
9719
9497
|
</span>
|
|
9720
9498
|
</a>
|
|
9721
9499
|
|
|
9722
9500
|
</li>
|
|
9723
9501
|
|
|
9724
9502
|
<li class="md-nav__item">
|
|
9725
|
-
<a href="#
|
|
9503
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9726
9504
|
<span class="md-ellipsis">
|
|
9727
|
-
Changed
|
|
9505
|
+
Changed
|
|
9728
9506
|
</span>
|
|
9729
9507
|
</a>
|
|
9730
9508
|
|
|
9731
9509
|
</li>
|
|
9732
9510
|
|
|
9733
9511
|
<li class="md-nav__item">
|
|
9734
|
-
<a href="#
|
|
9512
|
+
<a href="#removed_3" class="md-nav__link">
|
|
9735
9513
|
<span class="md-ellipsis">
|
|
9736
|
-
Removed
|
|
9514
|
+
Removed
|
|
9737
9515
|
</span>
|
|
9738
9516
|
</a>
|
|
9739
9517
|
|
|
9740
9518
|
</li>
|
|
9741
9519
|
|
|
9742
9520
|
<li class="md-nav__item">
|
|
9743
|
-
<a href="#
|
|
9521
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9744
9522
|
<span class="md-ellipsis">
|
|
9745
|
-
Housekeeping
|
|
9523
|
+
Housekeeping
|
|
9746
9524
|
</span>
|
|
9747
9525
|
</a>
|
|
9748
9526
|
|
|
@@ -9764,36 +9542,36 @@
|
|
|
9764
9542
|
<ul class="md-nav__list">
|
|
9765
9543
|
|
|
9766
9544
|
<li class="md-nav__item">
|
|
9767
|
-
<a href="#
|
|
9545
|
+
<a href="#security_14" class="md-nav__link">
|
|
9768
9546
|
<span class="md-ellipsis">
|
|
9769
|
-
Security
|
|
9547
|
+
Security
|
|
9770
9548
|
</span>
|
|
9771
9549
|
</a>
|
|
9772
9550
|
|
|
9773
9551
|
</li>
|
|
9774
9552
|
|
|
9775
9553
|
<li class="md-nav__item">
|
|
9776
|
-
<a href="#
|
|
9554
|
+
<a href="#added_13" class="md-nav__link">
|
|
9777
9555
|
<span class="md-ellipsis">
|
|
9778
|
-
Added
|
|
9556
|
+
Added
|
|
9779
9557
|
</span>
|
|
9780
9558
|
</a>
|
|
9781
9559
|
|
|
9782
9560
|
</li>
|
|
9783
9561
|
|
|
9784
9562
|
<li class="md-nav__item">
|
|
9785
|
-
<a href="#
|
|
9563
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
9786
9564
|
<span class="md-ellipsis">
|
|
9787
|
-
Fixed
|
|
9565
|
+
Fixed
|
|
9788
9566
|
</span>
|
|
9789
9567
|
</a>
|
|
9790
9568
|
|
|
9791
9569
|
</li>
|
|
9792
9570
|
|
|
9793
9571
|
<li class="md-nav__item">
|
|
9794
|
-
<a href="#
|
|
9572
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9795
9573
|
<span class="md-ellipsis">
|
|
9796
|
-
Housekeeping
|
|
9574
|
+
Housekeeping
|
|
9797
9575
|
</span>
|
|
9798
9576
|
</a>
|
|
9799
9577
|
|
|
@@ -9815,45 +9593,45 @@
|
|
|
9815
9593
|
<ul class="md-nav__list">
|
|
9816
9594
|
|
|
9817
9595
|
<li class="md-nav__item">
|
|
9818
|
-
<a href="#
|
|
9596
|
+
<a href="#added_14" class="md-nav__link">
|
|
9819
9597
|
<span class="md-ellipsis">
|
|
9820
|
-
Added
|
|
9598
|
+
Added
|
|
9821
9599
|
</span>
|
|
9822
9600
|
</a>
|
|
9823
9601
|
|
|
9824
9602
|
</li>
|
|
9825
9603
|
|
|
9826
9604
|
<li class="md-nav__item">
|
|
9827
|
-
<a href="#
|
|
9605
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9828
9606
|
<span class="md-ellipsis">
|
|
9829
|
-
Changed
|
|
9607
|
+
Changed
|
|
9830
9608
|
</span>
|
|
9831
9609
|
</a>
|
|
9832
9610
|
|
|
9833
9611
|
</li>
|
|
9834
9612
|
|
|
9835
9613
|
<li class="md-nav__item">
|
|
9836
|
-
<a href="#
|
|
9614
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
9837
9615
|
<span class="md-ellipsis">
|
|
9838
|
-
Fixed
|
|
9616
|
+
Fixed
|
|
9839
9617
|
</span>
|
|
9840
9618
|
</a>
|
|
9841
9619
|
|
|
9842
9620
|
</li>
|
|
9843
9621
|
|
|
9844
9622
|
<li class="md-nav__item">
|
|
9845
|
-
<a href="#
|
|
9623
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9846
9624
|
<span class="md-ellipsis">
|
|
9847
|
-
Documentation
|
|
9625
|
+
Documentation
|
|
9848
9626
|
</span>
|
|
9849
9627
|
</a>
|
|
9850
9628
|
|
|
9851
9629
|
</li>
|
|
9852
9630
|
|
|
9853
9631
|
<li class="md-nav__item">
|
|
9854
|
-
<a href="#
|
|
9632
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9855
9633
|
<span class="md-ellipsis">
|
|
9856
|
-
Housekeeping
|
|
9634
|
+
Housekeeping
|
|
9857
9635
|
</span>
|
|
9858
9636
|
</a>
|
|
9859
9637
|
|
|
@@ -9875,36 +9653,36 @@
|
|
|
9875
9653
|
<ul class="md-nav__list">
|
|
9876
9654
|
|
|
9877
9655
|
<li class="md-nav__item">
|
|
9878
|
-
<a href="#
|
|
9656
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9879
9657
|
<span class="md-ellipsis">
|
|
9880
|
-
Changed
|
|
9658
|
+
Changed
|
|
9881
9659
|
</span>
|
|
9882
9660
|
</a>
|
|
9883
9661
|
|
|
9884
9662
|
</li>
|
|
9885
9663
|
|
|
9886
9664
|
<li class="md-nav__item">
|
|
9887
|
-
<a href="#
|
|
9665
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
9888
9666
|
<span class="md-ellipsis">
|
|
9889
|
-
Fixed
|
|
9667
|
+
Fixed
|
|
9890
9668
|
</span>
|
|
9891
9669
|
</a>
|
|
9892
9670
|
|
|
9893
9671
|
</li>
|
|
9894
9672
|
|
|
9895
9673
|
<li class="md-nav__item">
|
|
9896
|
-
<a href="#
|
|
9674
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9897
9675
|
<span class="md-ellipsis">
|
|
9898
|
-
Documentation
|
|
9676
|
+
Documentation
|
|
9899
9677
|
</span>
|
|
9900
9678
|
</a>
|
|
9901
9679
|
|
|
9902
9680
|
</li>
|
|
9903
9681
|
|
|
9904
9682
|
<li class="md-nav__item">
|
|
9905
|
-
<a href="#
|
|
9683
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
9906
9684
|
<span class="md-ellipsis">
|
|
9907
|
-
Housekeeping
|
|
9685
|
+
Housekeeping
|
|
9908
9686
|
</span>
|
|
9909
9687
|
</a>
|
|
9910
9688
|
|
|
@@ -9926,36 +9704,36 @@
|
|
|
9926
9704
|
<ul class="md-nav__list">
|
|
9927
9705
|
|
|
9928
9706
|
<li class="md-nav__item">
|
|
9929
|
-
<a href="#
|
|
9707
|
+
<a href="#added_15" class="md-nav__link">
|
|
9930
9708
|
<span class="md-ellipsis">
|
|
9931
|
-
Added
|
|
9709
|
+
Added
|
|
9932
9710
|
</span>
|
|
9933
9711
|
</a>
|
|
9934
9712
|
|
|
9935
9713
|
</li>
|
|
9936
9714
|
|
|
9937
9715
|
<li class="md-nav__item">
|
|
9938
|
-
<a href="#
|
|
9716
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
9939
9717
|
<span class="md-ellipsis">
|
|
9940
|
-
Fixed
|
|
9718
|
+
Fixed
|
|
9941
9719
|
</span>
|
|
9942
9720
|
</a>
|
|
9943
9721
|
|
|
9944
9722
|
</li>
|
|
9945
9723
|
|
|
9946
9724
|
<li class="md-nav__item">
|
|
9947
|
-
<a href="#
|
|
9725
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9948
9726
|
<span class="md-ellipsis">
|
|
9949
|
-
Dependencies
|
|
9727
|
+
Dependencies
|
|
9950
9728
|
</span>
|
|
9951
9729
|
</a>
|
|
9952
9730
|
|
|
9953
9731
|
</li>
|
|
9954
9732
|
|
|
9955
9733
|
<li class="md-nav__item">
|
|
9956
|
-
<a href="#
|
|
9734
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9957
9735
|
<span class="md-ellipsis">
|
|
9958
|
-
Documentation
|
|
9736
|
+
Documentation
|
|
9959
9737
|
</span>
|
|
9960
9738
|
</a>
|
|
9961
9739
|
|
|
@@ -9977,54 +9755,54 @@
|
|
|
9977
9755
|
<ul class="md-nav__list">
|
|
9978
9756
|
|
|
9979
9757
|
<li class="md-nav__item">
|
|
9980
|
-
<a href="#
|
|
9758
|
+
<a href="#added_16" class="md-nav__link">
|
|
9981
9759
|
<span class="md-ellipsis">
|
|
9982
|
-
Added
|
|
9760
|
+
Added
|
|
9983
9761
|
</span>
|
|
9984
9762
|
</a>
|
|
9985
9763
|
|
|
9986
9764
|
</li>
|
|
9987
9765
|
|
|
9988
9766
|
<li class="md-nav__item">
|
|
9989
|
-
<a href="#
|
|
9767
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9990
9768
|
<span class="md-ellipsis">
|
|
9991
|
-
Changed
|
|
9769
|
+
Changed
|
|
9992
9770
|
</span>
|
|
9993
9771
|
</a>
|
|
9994
9772
|
|
|
9995
9773
|
</li>
|
|
9996
9774
|
|
|
9997
9775
|
<li class="md-nav__item">
|
|
9998
|
-
<a href="#
|
|
9776
|
+
<a href="#removed_4" class="md-nav__link">
|
|
9999
9777
|
<span class="md-ellipsis">
|
|
10000
|
-
Removed
|
|
9778
|
+
Removed
|
|
10001
9779
|
</span>
|
|
10002
9780
|
</a>
|
|
10003
9781
|
|
|
10004
9782
|
</li>
|
|
10005
9783
|
|
|
10006
9784
|
<li class="md-nav__item">
|
|
10007
|
-
<a href="#
|
|
9785
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
10008
9786
|
<span class="md-ellipsis">
|
|
10009
|
-
Fixed
|
|
9787
|
+
Fixed
|
|
10010
9788
|
</span>
|
|
10011
9789
|
</a>
|
|
10012
9790
|
|
|
10013
9791
|
</li>
|
|
10014
9792
|
|
|
10015
9793
|
<li class="md-nav__item">
|
|
10016
|
-
<a href="#
|
|
9794
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
10017
9795
|
<span class="md-ellipsis">
|
|
10018
|
-
Dependencies
|
|
9796
|
+
Dependencies
|
|
10019
9797
|
</span>
|
|
10020
9798
|
</a>
|
|
10021
9799
|
|
|
10022
9800
|
</li>
|
|
10023
9801
|
|
|
10024
9802
|
<li class="md-nav__item">
|
|
10025
|
-
<a href="#
|
|
9803
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
10026
9804
|
<span class="md-ellipsis">
|
|
10027
|
-
Documentation
|
|
9805
|
+
Documentation
|
|
10028
9806
|
</span>
|
|
10029
9807
|
</a>
|
|
10030
9808
|
|
|
@@ -10680,195 +10458,6 @@
|
|
|
10680
10458
|
</ul>
|
|
10681
10459
|
</nav>
|
|
10682
10460
|
|
|
10683
|
-
</li>
|
|
10684
|
-
|
|
10685
|
-
<li class="md-nav__item">
|
|
10686
|
-
<a href="#v1629-2024-12-09" class="md-nav__link">
|
|
10687
|
-
<span class="md-ellipsis">
|
|
10688
|
-
v1.6.29 (2024-12-09)
|
|
10689
|
-
</span>
|
|
10690
|
-
</a>
|
|
10691
|
-
|
|
10692
|
-
<nav class="md-nav" aria-label="v1.6.29 (2024-12-09)">
|
|
10693
|
-
<ul class="md-nav__list">
|
|
10694
|
-
|
|
10695
|
-
<li class="md-nav__item">
|
|
10696
|
-
<a href="#security-in-v1629" class="md-nav__link">
|
|
10697
|
-
<span class="md-ellipsis">
|
|
10698
|
-
Security in v1.6.29
|
|
10699
|
-
</span>
|
|
10700
|
-
</a>
|
|
10701
|
-
|
|
10702
|
-
</li>
|
|
10703
|
-
|
|
10704
|
-
<li class="md-nav__item">
|
|
10705
|
-
<a href="#fixed-in-v1629" class="md-nav__link">
|
|
10706
|
-
<span class="md-ellipsis">
|
|
10707
|
-
Fixed in v1.6.29
|
|
10708
|
-
</span>
|
|
10709
|
-
</a>
|
|
10710
|
-
|
|
10711
|
-
</li>
|
|
10712
|
-
|
|
10713
|
-
</ul>
|
|
10714
|
-
</nav>
|
|
10715
|
-
|
|
10716
|
-
</li>
|
|
10717
|
-
|
|
10718
|
-
<li class="md-nav__item">
|
|
10719
|
-
<a href="#v1628-2024-09-24" class="md-nav__link">
|
|
10720
|
-
<span class="md-ellipsis">
|
|
10721
|
-
v1.6.28 (2024-09-24)
|
|
10722
|
-
</span>
|
|
10723
|
-
</a>
|
|
10724
|
-
|
|
10725
|
-
<nav class="md-nav" aria-label="v1.6.28 (2024-09-24)">
|
|
10726
|
-
<ul class="md-nav__list">
|
|
10727
|
-
|
|
10728
|
-
<li class="md-nav__item">
|
|
10729
|
-
<a href="#fixed-in-v1628" class="md-nav__link">
|
|
10730
|
-
<span class="md-ellipsis">
|
|
10731
|
-
Fixed in v1.6.28
|
|
10732
|
-
</span>
|
|
10733
|
-
</a>
|
|
10734
|
-
|
|
10735
|
-
</li>
|
|
10736
|
-
|
|
10737
|
-
<li class="md-nav__item">
|
|
10738
|
-
<a href="#housekeeping-in-v1628" class="md-nav__link">
|
|
10739
|
-
<span class="md-ellipsis">
|
|
10740
|
-
Housekeeping in v1.6.28
|
|
10741
|
-
</span>
|
|
10742
|
-
</a>
|
|
10743
|
-
|
|
10744
|
-
</li>
|
|
10745
|
-
|
|
10746
|
-
</ul>
|
|
10747
|
-
</nav>
|
|
10748
|
-
|
|
10749
|
-
</li>
|
|
10750
|
-
|
|
10751
|
-
<li class="md-nav__item">
|
|
10752
|
-
<a href="#v1627-2024-09-03" class="md-nav__link">
|
|
10753
|
-
<span class="md-ellipsis">
|
|
10754
|
-
v1.6.27 (2024-09-03)
|
|
10755
|
-
</span>
|
|
10756
|
-
</a>
|
|
10757
|
-
|
|
10758
|
-
<nav class="md-nav" aria-label="v1.6.27 (2024-09-03)">
|
|
10759
|
-
<ul class="md-nav__list">
|
|
10760
|
-
|
|
10761
|
-
<li class="md-nav__item">
|
|
10762
|
-
<a href="#security-in-v1627" class="md-nav__link">
|
|
10763
|
-
<span class="md-ellipsis">
|
|
10764
|
-
Security in v1.6.27
|
|
10765
|
-
</span>
|
|
10766
|
-
</a>
|
|
10767
|
-
|
|
10768
|
-
</li>
|
|
10769
|
-
|
|
10770
|
-
<li class="md-nav__item">
|
|
10771
|
-
<a href="#fixed-in-v1627" class="md-nav__link">
|
|
10772
|
-
<span class="md-ellipsis">
|
|
10773
|
-
Fixed in v1.6.27
|
|
10774
|
-
</span>
|
|
10775
|
-
</a>
|
|
10776
|
-
|
|
10777
|
-
</li>
|
|
10778
|
-
|
|
10779
|
-
</ul>
|
|
10780
|
-
</nav>
|
|
10781
|
-
|
|
10782
|
-
</li>
|
|
10783
|
-
|
|
10784
|
-
<li class="md-nav__item">
|
|
10785
|
-
<a href="#v1626-2024-07-22" class="md-nav__link">
|
|
10786
|
-
<span class="md-ellipsis">
|
|
10787
|
-
v1.6.26 (2024-07-22)
|
|
10788
|
-
</span>
|
|
10789
|
-
</a>
|
|
10790
|
-
|
|
10791
|
-
<nav class="md-nav" aria-label="v1.6.26 (2024-07-22)">
|
|
10792
|
-
<ul class="md-nav__list">
|
|
10793
|
-
|
|
10794
|
-
<li class="md-nav__item">
|
|
10795
|
-
<a href="#fixed-in-v1626" class="md-nav__link">
|
|
10796
|
-
<span class="md-ellipsis">
|
|
10797
|
-
Fixed in v1.6.26
|
|
10798
|
-
</span>
|
|
10799
|
-
</a>
|
|
10800
|
-
|
|
10801
|
-
</li>
|
|
10802
|
-
|
|
10803
|
-
</ul>
|
|
10804
|
-
</nav>
|
|
10805
|
-
|
|
10806
|
-
</li>
|
|
10807
|
-
|
|
10808
|
-
<li class="md-nav__item">
|
|
10809
|
-
<a href="#v1625-2024-07-09" class="md-nav__link">
|
|
10810
|
-
<span class="md-ellipsis">
|
|
10811
|
-
v1.6.25 (2024-07-09)
|
|
10812
|
-
</span>
|
|
10813
|
-
</a>
|
|
10814
|
-
|
|
10815
|
-
<nav class="md-nav" aria-label="v1.6.25 (2024-07-09)">
|
|
10816
|
-
<ul class="md-nav__list">
|
|
10817
|
-
|
|
10818
|
-
<li class="md-nav__item">
|
|
10819
|
-
<a href="#security-in-v1625" class="md-nav__link">
|
|
10820
|
-
<span class="md-ellipsis">
|
|
10821
|
-
Security in v1.6.25
|
|
10822
|
-
</span>
|
|
10823
|
-
</a>
|
|
10824
|
-
|
|
10825
|
-
</li>
|
|
10826
|
-
|
|
10827
|
-
<li class="md-nav__item">
|
|
10828
|
-
<a href="#dependencies-in-v1625" class="md-nav__link">
|
|
10829
|
-
<span class="md-ellipsis">
|
|
10830
|
-
Dependencies in v1.6.25
|
|
10831
|
-
</span>
|
|
10832
|
-
</a>
|
|
10833
|
-
|
|
10834
|
-
</li>
|
|
10835
|
-
|
|
10836
|
-
</ul>
|
|
10837
|
-
</nav>
|
|
10838
|
-
|
|
10839
|
-
</li>
|
|
10840
|
-
|
|
10841
|
-
<li class="md-nav__item">
|
|
10842
|
-
<a href="#v1624-2024-06-24" class="md-nav__link">
|
|
10843
|
-
<span class="md-ellipsis">
|
|
10844
|
-
v1.6.24 (2024-06-24)
|
|
10845
|
-
</span>
|
|
10846
|
-
</a>
|
|
10847
|
-
|
|
10848
|
-
<nav class="md-nav" aria-label="v1.6.24 (2024-06-24)">
|
|
10849
|
-
<ul class="md-nav__list">
|
|
10850
|
-
|
|
10851
|
-
<li class="md-nav__item">
|
|
10852
|
-
<a href="#security-in-v1624" class="md-nav__link">
|
|
10853
|
-
<span class="md-ellipsis">
|
|
10854
|
-
Security in v1.6.24
|
|
10855
|
-
</span>
|
|
10856
|
-
</a>
|
|
10857
|
-
|
|
10858
|
-
</li>
|
|
10859
|
-
|
|
10860
|
-
<li class="md-nav__item">
|
|
10861
|
-
<a href="#housekeeping-in-v1624" class="md-nav__link">
|
|
10862
|
-
<span class="md-ellipsis">
|
|
10863
|
-
Housekeeping in v1.6.24
|
|
10864
|
-
</span>
|
|
10865
|
-
</a>
|
|
10866
|
-
|
|
10867
|
-
</li>
|
|
10868
|
-
|
|
10869
|
-
</ul>
|
|
10870
|
-
</nav>
|
|
10871
|
-
|
|
10872
10461
|
</li>
|
|
10873
10462
|
|
|
10874
10463
|
<li class="md-nav__item">
|
|
@@ -10882,18 +10471,18 @@
|
|
|
10882
10471
|
<ul class="md-nav__list">
|
|
10883
10472
|
|
|
10884
10473
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#security
|
|
10474
|
+
<a href="#security" class="md-nav__link">
|
|
10886
10475
|
<span class="md-ellipsis">
|
|
10887
|
-
Security
|
|
10476
|
+
Security
|
|
10888
10477
|
</span>
|
|
10889
10478
|
</a>
|
|
10890
10479
|
|
|
10891
10480
|
</li>
|
|
10892
10481
|
|
|
10893
10482
|
<li class="md-nav__item">
|
|
10894
|
-
<a href="#housekeeping
|
|
10483
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10895
10484
|
<span class="md-ellipsis">
|
|
10896
|
-
Housekeeping
|
|
10485
|
+
Housekeeping
|
|
10897
10486
|
</span>
|
|
10898
10487
|
</a>
|
|
10899
10488
|
|
|
@@ -10915,27 +10504,27 @@
|
|
|
10915
10504
|
<ul class="md-nav__list">
|
|
10916
10505
|
|
|
10917
10506
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
10507
|
+
<a href="#security_1" class="md-nav__link">
|
|
10919
10508
|
<span class="md-ellipsis">
|
|
10920
|
-
Security
|
|
10509
|
+
Security
|
|
10921
10510
|
</span>
|
|
10922
10511
|
</a>
|
|
10923
10512
|
|
|
10924
10513
|
</li>
|
|
10925
10514
|
|
|
10926
10515
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
10516
|
+
<a href="#added_1" class="md-nav__link">
|
|
10928
10517
|
<span class="md-ellipsis">
|
|
10929
|
-
Added
|
|
10518
|
+
Added
|
|
10930
10519
|
</span>
|
|
10931
10520
|
</a>
|
|
10932
10521
|
|
|
10933
10522
|
</li>
|
|
10934
10523
|
|
|
10935
10524
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#fixed
|
|
10525
|
+
<a href="#fixed" class="md-nav__link">
|
|
10937
10526
|
<span class="md-ellipsis">
|
|
10938
|
-
Fixed
|
|
10527
|
+
Fixed
|
|
10939
10528
|
</span>
|
|
10940
10529
|
</a>
|
|
10941
10530
|
|
|
@@ -10957,9 +10546,9 @@
|
|
|
10957
10546
|
<ul class="md-nav__list">
|
|
10958
10547
|
|
|
10959
10548
|
<li class="md-nav__item">
|
|
10960
|
-
<a href="#
|
|
10549
|
+
<a href="#security_2" class="md-nav__link">
|
|
10961
10550
|
<span class="md-ellipsis">
|
|
10962
|
-
Security
|
|
10551
|
+
Security
|
|
10963
10552
|
</span>
|
|
10964
10553
|
</a>
|
|
10965
10554
|
|
|
@@ -10981,18 +10570,18 @@
|
|
|
10981
10570
|
<ul class="md-nav__list">
|
|
10982
10571
|
|
|
10983
10572
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
10573
|
+
<a href="#security_3" class="md-nav__link">
|
|
10985
10574
|
<span class="md-ellipsis">
|
|
10986
|
-
Security
|
|
10575
|
+
Security
|
|
10987
10576
|
</span>
|
|
10988
10577
|
</a>
|
|
10989
10578
|
|
|
10990
10579
|
</li>
|
|
10991
10580
|
|
|
10992
10581
|
<li class="md-nav__item">
|
|
10993
|
-
<a href="#
|
|
10582
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10994
10583
|
<span class="md-ellipsis">
|
|
10995
|
-
Fixed
|
|
10584
|
+
Fixed
|
|
10996
10585
|
</span>
|
|
10997
10586
|
</a>
|
|
10998
10587
|
|
|
@@ -11014,18 +10603,18 @@
|
|
|
11014
10603
|
<ul class="md-nav__list">
|
|
11015
10604
|
|
|
11016
10605
|
<li class="md-nav__item">
|
|
11017
|
-
<a href="#
|
|
10606
|
+
<a href="#security_4" class="md-nav__link">
|
|
11018
10607
|
<span class="md-ellipsis">
|
|
11019
|
-
Security
|
|
10608
|
+
Security
|
|
11020
10609
|
</span>
|
|
11021
10610
|
</a>
|
|
11022
10611
|
|
|
11023
10612
|
</li>
|
|
11024
10613
|
|
|
11025
10614
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
10615
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
11027
10616
|
<span class="md-ellipsis">
|
|
11028
|
-
Fixed
|
|
10617
|
+
Fixed
|
|
11029
10618
|
</span>
|
|
11030
10619
|
</a>
|
|
11031
10620
|
|
|
@@ -11047,18 +10636,18 @@
|
|
|
11047
10636
|
<ul class="md-nav__list">
|
|
11048
10637
|
|
|
11049
10638
|
<li class="md-nav__item">
|
|
11050
|
-
<a href="#
|
|
10639
|
+
<a href="#security_5" class="md-nav__link">
|
|
11051
10640
|
<span class="md-ellipsis">
|
|
11052
|
-
Security
|
|
10641
|
+
Security
|
|
11053
10642
|
</span>
|
|
11054
10643
|
</a>
|
|
11055
10644
|
|
|
11056
10645
|
</li>
|
|
11057
10646
|
|
|
11058
10647
|
<li class="md-nav__item">
|
|
11059
|
-
<a href="#dependencies
|
|
10648
|
+
<a href="#dependencies" class="md-nav__link">
|
|
11060
10649
|
<span class="md-ellipsis">
|
|
11061
|
-
Dependencies
|
|
10650
|
+
Dependencies
|
|
11062
10651
|
</span>
|
|
11063
10652
|
</a>
|
|
11064
10653
|
|
|
@@ -11080,9 +10669,9 @@
|
|
|
11080
10669
|
<ul class="md-nav__list">
|
|
11081
10670
|
|
|
11082
10671
|
<li class="md-nav__item">
|
|
11083
|
-
<a href="#
|
|
10672
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
11084
10673
|
<span class="md-ellipsis">
|
|
11085
|
-
Dependencies
|
|
10674
|
+
Dependencies
|
|
11086
10675
|
</span>
|
|
11087
10676
|
</a>
|
|
11088
10677
|
|
|
@@ -11104,54 +10693,54 @@
|
|
|
11104
10693
|
<ul class="md-nav__list">
|
|
11105
10694
|
|
|
11106
10695
|
<li class="md-nav__item">
|
|
11107
|
-
<a href="#
|
|
10696
|
+
<a href="#security_6" class="md-nav__link">
|
|
11108
10697
|
<span class="md-ellipsis">
|
|
11109
|
-
Security
|
|
10698
|
+
Security
|
|
11110
10699
|
</span>
|
|
11111
10700
|
</a>
|
|
11112
10701
|
|
|
11113
10702
|
</li>
|
|
11114
10703
|
|
|
11115
10704
|
<li class="md-nav__item">
|
|
11116
|
-
<a href="#
|
|
10705
|
+
<a href="#added_2" class="md-nav__link">
|
|
11117
10706
|
<span class="md-ellipsis">
|
|
11118
|
-
Added
|
|
10707
|
+
Added
|
|
11119
10708
|
</span>
|
|
11120
10709
|
</a>
|
|
11121
10710
|
|
|
11122
10711
|
</li>
|
|
11123
10712
|
|
|
11124
10713
|
<li class="md-nav__item">
|
|
11125
|
-
<a href="#
|
|
10714
|
+
<a href="#changed_1" class="md-nav__link">
|
|
11126
10715
|
<span class="md-ellipsis">
|
|
11127
|
-
Changed
|
|
10716
|
+
Changed
|
|
11128
10717
|
</span>
|
|
11129
10718
|
</a>
|
|
11130
10719
|
|
|
11131
10720
|
</li>
|
|
11132
10721
|
|
|
11133
10722
|
<li class="md-nav__item">
|
|
11134
|
-
<a href="#
|
|
10723
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
11135
10724
|
<span class="md-ellipsis">
|
|
11136
|
-
Fixed
|
|
10725
|
+
Fixed
|
|
11137
10726
|
</span>
|
|
11138
10727
|
</a>
|
|
11139
10728
|
|
|
11140
10729
|
</li>
|
|
11141
10730
|
|
|
11142
10731
|
<li class="md-nav__item">
|
|
11143
|
-
<a href="#documentation
|
|
10732
|
+
<a href="#documentation" class="md-nav__link">
|
|
11144
10733
|
<span class="md-ellipsis">
|
|
11145
|
-
Documentation
|
|
10734
|
+
Documentation
|
|
11146
10735
|
</span>
|
|
11147
10736
|
</a>
|
|
11148
10737
|
|
|
11149
10738
|
</li>
|
|
11150
10739
|
|
|
11151
10740
|
<li class="md-nav__item">
|
|
11152
|
-
<a href="#
|
|
10741
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
11153
10742
|
<span class="md-ellipsis">
|
|
11154
|
-
Housekeeping
|
|
10743
|
+
Housekeeping
|
|
11155
10744
|
</span>
|
|
11156
10745
|
</a>
|
|
11157
10746
|
|
|
@@ -11173,27 +10762,27 @@
|
|
|
11173
10762
|
<ul class="md-nav__list">
|
|
11174
10763
|
|
|
11175
10764
|
<li class="md-nav__item">
|
|
11176
|
-
<a href="#
|
|
10765
|
+
<a href="#added_3" class="md-nav__link">
|
|
11177
10766
|
<span class="md-ellipsis">
|
|
11178
|
-
Added
|
|
10767
|
+
Added
|
|
11179
10768
|
</span>
|
|
11180
10769
|
</a>
|
|
11181
10770
|
|
|
11182
10771
|
</li>
|
|
11183
10772
|
|
|
11184
10773
|
<li class="md-nav__item">
|
|
11185
|
-
<a href="#
|
|
10774
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
11186
10775
|
<span class="md-ellipsis">
|
|
11187
|
-
Fixed
|
|
10776
|
+
Fixed
|
|
11188
10777
|
</span>
|
|
11189
10778
|
</a>
|
|
11190
10779
|
|
|
11191
10780
|
</li>
|
|
11192
10781
|
|
|
11193
10782
|
<li class="md-nav__item">
|
|
11194
|
-
<a href="#
|
|
10783
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
11195
10784
|
<span class="md-ellipsis">
|
|
11196
|
-
Housekeeping
|
|
10785
|
+
Housekeeping
|
|
11197
10786
|
</span>
|
|
11198
10787
|
</a>
|
|
11199
10788
|
|
|
@@ -11215,9 +10804,9 @@
|
|
|
11215
10804
|
<ul class="md-nav__list">
|
|
11216
10805
|
|
|
11217
10806
|
<li class="md-nav__item">
|
|
11218
|
-
<a href="#
|
|
10807
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
11219
10808
|
<span class="md-ellipsis">
|
|
11220
|
-
Fixed
|
|
10809
|
+
Fixed
|
|
11221
10810
|
</span>
|
|
11222
10811
|
</a>
|
|
11223
10812
|
|
|
@@ -11239,27 +10828,36 @@
|
|
|
11239
10828
|
<ul class="md-nav__list">
|
|
11240
10829
|
|
|
11241
10830
|
<li class="md-nav__item">
|
|
11242
|
-
<a href="#
|
|
10831
|
+
<a href="#added_4" class="md-nav__link">
|
|
10832
|
+
<span class="md-ellipsis">
|
|
10833
|
+
Added
|
|
10834
|
+
</span>
|
|
10835
|
+
</a>
|
|
10836
|
+
|
|
10837
|
+
</li>
|
|
10838
|
+
|
|
10839
|
+
<li class="md-nav__item">
|
|
10840
|
+
<a href="#added_5" class="md-nav__link">
|
|
11243
10841
|
<span class="md-ellipsis">
|
|
11244
|
-
Added
|
|
10842
|
+
Added
|
|
11245
10843
|
</span>
|
|
11246
10844
|
</a>
|
|
11247
10845
|
|
|
11248
10846
|
</li>
|
|
11249
10847
|
|
|
11250
10848
|
<li class="md-nav__item">
|
|
11251
|
-
<a href="#
|
|
10849
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
11252
10850
|
<span class="md-ellipsis">
|
|
11253
|
-
Fixed
|
|
10851
|
+
Fixed
|
|
11254
10852
|
</span>
|
|
11255
10853
|
</a>
|
|
11256
10854
|
|
|
11257
10855
|
</li>
|
|
11258
10856
|
|
|
11259
10857
|
<li class="md-nav__item">
|
|
11260
|
-
<a href="#
|
|
10858
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
11261
10859
|
<span class="md-ellipsis">
|
|
11262
|
-
Documentation
|
|
10860
|
+
Documentation
|
|
11263
10861
|
</span>
|
|
11264
10862
|
</a>
|
|
11265
10863
|
|
|
@@ -11281,36 +10879,36 @@
|
|
|
11281
10879
|
<ul class="md-nav__list">
|
|
11282
10880
|
|
|
11283
10881
|
<li class="md-nav__item">
|
|
11284
|
-
<a href="#
|
|
10882
|
+
<a href="#added_6" class="md-nav__link">
|
|
11285
10883
|
<span class="md-ellipsis">
|
|
11286
|
-
|
|
10884
|
+
Added
|
|
11287
10885
|
</span>
|
|
11288
10886
|
</a>
|
|
11289
10887
|
|
|
11290
10888
|
</li>
|
|
11291
10889
|
|
|
11292
10890
|
<li class="md-nav__item">
|
|
11293
|
-
<a href="#
|
|
10891
|
+
<a href="#security_7" class="md-nav__link">
|
|
11294
10892
|
<span class="md-ellipsis">
|
|
11295
|
-
|
|
10893
|
+
Security
|
|
11296
10894
|
</span>
|
|
11297
10895
|
</a>
|
|
11298
10896
|
|
|
11299
10897
|
</li>
|
|
11300
10898
|
|
|
11301
10899
|
<li class="md-nav__item">
|
|
11302
|
-
<a href="#
|
|
10900
|
+
<a href="#changed_2" class="md-nav__link">
|
|
11303
10901
|
<span class="md-ellipsis">
|
|
11304
|
-
Changed
|
|
10902
|
+
Changed
|
|
11305
10903
|
</span>
|
|
11306
10904
|
</a>
|
|
11307
10905
|
|
|
11308
10906
|
</li>
|
|
11309
10907
|
|
|
11310
10908
|
<li class="md-nav__item">
|
|
11311
|
-
<a href="#
|
|
10909
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
11312
10910
|
<span class="md-ellipsis">
|
|
11313
|
-
Fixed
|
|
10911
|
+
Fixed
|
|
11314
10912
|
</span>
|
|
11315
10913
|
</a>
|
|
11316
10914
|
|
|
@@ -11332,27 +10930,27 @@
|
|
|
11332
10930
|
<ul class="md-nav__list">
|
|
11333
10931
|
|
|
11334
10932
|
<li class="md-nav__item">
|
|
11335
|
-
<a href="#
|
|
10933
|
+
<a href="#security_8" class="md-nav__link">
|
|
11336
10934
|
<span class="md-ellipsis">
|
|
11337
|
-
Security
|
|
10935
|
+
Security
|
|
11338
10936
|
</span>
|
|
11339
10937
|
</a>
|
|
11340
10938
|
|
|
11341
10939
|
</li>
|
|
11342
10940
|
|
|
11343
10941
|
<li class="md-nav__item">
|
|
11344
|
-
<a href="#
|
|
10942
|
+
<a href="#added_7" class="md-nav__link">
|
|
11345
10943
|
<span class="md-ellipsis">
|
|
11346
|
-
Added
|
|
10944
|
+
Added
|
|
11347
10945
|
</span>
|
|
11348
10946
|
</a>
|
|
11349
10947
|
|
|
11350
10948
|
</li>
|
|
11351
10949
|
|
|
11352
10950
|
<li class="md-nav__item">
|
|
11353
|
-
<a href="#
|
|
10951
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
11354
10952
|
<span class="md-ellipsis">
|
|
11355
|
-
Fixed
|
|
10953
|
+
Fixed
|
|
11356
10954
|
</span>
|
|
11357
10955
|
</a>
|
|
11358
10956
|
|
|
@@ -11374,36 +10972,36 @@
|
|
|
11374
10972
|
<ul class="md-nav__list">
|
|
11375
10973
|
|
|
11376
10974
|
<li class="md-nav__item">
|
|
11377
|
-
<a href="#
|
|
10975
|
+
<a href="#security_9" class="md-nav__link">
|
|
11378
10976
|
<span class="md-ellipsis">
|
|
11379
|
-
Security
|
|
10977
|
+
Security
|
|
11380
10978
|
</span>
|
|
11381
10979
|
</a>
|
|
11382
10980
|
|
|
11383
10981
|
</li>
|
|
11384
10982
|
|
|
11385
10983
|
<li class="md-nav__item">
|
|
11386
|
-
<a href="#
|
|
10984
|
+
<a href="#added_8" class="md-nav__link">
|
|
11387
10985
|
<span class="md-ellipsis">
|
|
11388
|
-
Added
|
|
10986
|
+
Added
|
|
11389
10987
|
</span>
|
|
11390
10988
|
</a>
|
|
11391
10989
|
|
|
11392
10990
|
</li>
|
|
11393
10991
|
|
|
11394
10992
|
<li class="md-nav__item">
|
|
11395
|
-
<a href="#
|
|
10993
|
+
<a href="#changed_3" class="md-nav__link">
|
|
11396
10994
|
<span class="md-ellipsis">
|
|
11397
|
-
Changed
|
|
10995
|
+
Changed
|
|
11398
10996
|
</span>
|
|
11399
10997
|
</a>
|
|
11400
10998
|
|
|
11401
10999
|
</li>
|
|
11402
11000
|
|
|
11403
11001
|
<li class="md-nav__item">
|
|
11404
|
-
<a href="#
|
|
11002
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
11405
11003
|
<span class="md-ellipsis">
|
|
11406
|
-
Dependencies
|
|
11004
|
+
Dependencies
|
|
11407
11005
|
</span>
|
|
11408
11006
|
</a>
|
|
11409
11007
|
|
|
@@ -11425,9 +11023,9 @@
|
|
|
11425
11023
|
<ul class="md-nav__list">
|
|
11426
11024
|
|
|
11427
11025
|
<li class="md-nav__item">
|
|
11428
|
-
<a href="#
|
|
11026
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
11429
11027
|
<span class="md-ellipsis">
|
|
11430
|
-
Fixed
|
|
11028
|
+
Fixed
|
|
11431
11029
|
</span>
|
|
11432
11030
|
</a>
|
|
11433
11031
|
|
|
@@ -11449,45 +11047,45 @@
|
|
|
11449
11047
|
<ul class="md-nav__list">
|
|
11450
11048
|
|
|
11451
11049
|
<li class="md-nav__item">
|
|
11452
|
-
<a href="#
|
|
11050
|
+
<a href="#security_10" class="md-nav__link">
|
|
11453
11051
|
<span class="md-ellipsis">
|
|
11454
|
-
Security
|
|
11052
|
+
Security
|
|
11455
11053
|
</span>
|
|
11456
11054
|
</a>
|
|
11457
11055
|
|
|
11458
11056
|
</li>
|
|
11459
11057
|
|
|
11460
11058
|
<li class="md-nav__item">
|
|
11461
|
-
<a href="#
|
|
11059
|
+
<a href="#added_9" class="md-nav__link">
|
|
11462
11060
|
<span class="md-ellipsis">
|
|
11463
|
-
Added
|
|
11061
|
+
Added
|
|
11464
11062
|
</span>
|
|
11465
11063
|
</a>
|
|
11466
11064
|
|
|
11467
11065
|
</li>
|
|
11468
11066
|
|
|
11469
11067
|
<li class="md-nav__item">
|
|
11470
|
-
<a href="#
|
|
11068
|
+
<a href="#removed_1" class="md-nav__link">
|
|
11471
11069
|
<span class="md-ellipsis">
|
|
11472
|
-
Removed
|
|
11070
|
+
Removed
|
|
11473
11071
|
</span>
|
|
11474
11072
|
</a>
|
|
11475
11073
|
|
|
11476
11074
|
</li>
|
|
11477
11075
|
|
|
11478
11076
|
<li class="md-nav__item">
|
|
11479
|
-
<a href="#
|
|
11077
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
11480
11078
|
<span class="md-ellipsis">
|
|
11481
|
-
Fixed
|
|
11079
|
+
Fixed
|
|
11482
11080
|
</span>
|
|
11483
11081
|
</a>
|
|
11484
11082
|
|
|
11485
11083
|
</li>
|
|
11486
11084
|
|
|
11487
11085
|
<li class="md-nav__item">
|
|
11488
|
-
<a href="#
|
|
11086
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
11489
11087
|
<span class="md-ellipsis">
|
|
11490
|
-
Housekeeping
|
|
11088
|
+
Housekeeping
|
|
11491
11089
|
</span>
|
|
11492
11090
|
</a>
|
|
11493
11091
|
|
|
@@ -11509,36 +11107,36 @@
|
|
|
11509
11107
|
<ul class="md-nav__list">
|
|
11510
11108
|
|
|
11511
11109
|
<li class="md-nav__item">
|
|
11512
|
-
<a href="#
|
|
11110
|
+
<a href="#security_11" class="md-nav__link">
|
|
11513
11111
|
<span class="md-ellipsis">
|
|
11514
|
-
Security
|
|
11112
|
+
Security
|
|
11515
11113
|
</span>
|
|
11516
11114
|
</a>
|
|
11517
11115
|
|
|
11518
11116
|
</li>
|
|
11519
11117
|
|
|
11520
11118
|
<li class="md-nav__item">
|
|
11521
|
-
<a href="#
|
|
11119
|
+
<a href="#added_10" class="md-nav__link">
|
|
11522
11120
|
<span class="md-ellipsis">
|
|
11523
|
-
Added
|
|
11121
|
+
Added
|
|
11524
11122
|
</span>
|
|
11525
11123
|
</a>
|
|
11526
11124
|
|
|
11527
11125
|
</li>
|
|
11528
11126
|
|
|
11529
11127
|
<li class="md-nav__item">
|
|
11530
|
-
<a href="#
|
|
11128
|
+
<a href="#removed_2" class="md-nav__link">
|
|
11531
11129
|
<span class="md-ellipsis">
|
|
11532
|
-
Removed
|
|
11130
|
+
Removed
|
|
11533
11131
|
</span>
|
|
11534
11132
|
</a>
|
|
11535
11133
|
|
|
11536
11134
|
</li>
|
|
11537
11135
|
|
|
11538
11136
|
<li class="md-nav__item">
|
|
11539
|
-
<a href="#
|
|
11137
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
11540
11138
|
<span class="md-ellipsis">
|
|
11541
|
-
Fixed
|
|
11139
|
+
Fixed
|
|
11542
11140
|
</span>
|
|
11543
11141
|
</a>
|
|
11544
11142
|
|
|
@@ -11560,45 +11158,45 @@
|
|
|
11560
11158
|
<ul class="md-nav__list">
|
|
11561
11159
|
|
|
11562
11160
|
<li class="md-nav__item">
|
|
11563
|
-
<a href="#
|
|
11161
|
+
<a href="#security_12" class="md-nav__link">
|
|
11564
11162
|
<span class="md-ellipsis">
|
|
11565
|
-
Security
|
|
11163
|
+
Security
|
|
11566
11164
|
</span>
|
|
11567
11165
|
</a>
|
|
11568
11166
|
|
|
11569
11167
|
</li>
|
|
11570
11168
|
|
|
11571
11169
|
<li class="md-nav__item">
|
|
11572
|
-
<a href="#
|
|
11170
|
+
<a href="#changed_4" class="md-nav__link">
|
|
11573
11171
|
<span class="md-ellipsis">
|
|
11574
|
-
Changed
|
|
11172
|
+
Changed
|
|
11575
11173
|
</span>
|
|
11576
11174
|
</a>
|
|
11577
11175
|
|
|
11578
11176
|
</li>
|
|
11579
11177
|
|
|
11580
11178
|
<li class="md-nav__item">
|
|
11581
|
-
<a href="#
|
|
11179
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
11582
11180
|
<span class="md-ellipsis">
|
|
11583
|
-
Fixed
|
|
11181
|
+
Fixed
|
|
11584
11182
|
</span>
|
|
11585
11183
|
</a>
|
|
11586
11184
|
|
|
11587
11185
|
</li>
|
|
11588
11186
|
|
|
11589
11187
|
<li class="md-nav__item">
|
|
11590
|
-
<a href="#
|
|
11188
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
11591
11189
|
<span class="md-ellipsis">
|
|
11592
|
-
Dependencies
|
|
11190
|
+
Dependencies
|
|
11593
11191
|
</span>
|
|
11594
11192
|
</a>
|
|
11595
11193
|
|
|
11596
11194
|
</li>
|
|
11597
11195
|
|
|
11598
11196
|
<li class="md-nav__item">
|
|
11599
|
-
<a href="#
|
|
11197
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
11600
11198
|
<span class="md-ellipsis">
|
|
11601
|
-
Housekeeping
|
|
11199
|
+
Housekeeping
|
|
11602
11200
|
</span>
|
|
11603
11201
|
</a>
|
|
11604
11202
|
|
|
@@ -11620,45 +11218,45 @@
|
|
|
11620
11218
|
<ul class="md-nav__list">
|
|
11621
11219
|
|
|
11622
11220
|
<li class="md-nav__item">
|
|
11623
|
-
<a href="#
|
|
11221
|
+
<a href="#security_13" class="md-nav__link">
|
|
11624
11222
|
<span class="md-ellipsis">
|
|
11625
|
-
Security
|
|
11223
|
+
Security
|
|
11626
11224
|
</span>
|
|
11627
11225
|
</a>
|
|
11628
11226
|
|
|
11629
11227
|
</li>
|
|
11630
11228
|
|
|
11631
11229
|
<li class="md-nav__item">
|
|
11632
|
-
<a href="#
|
|
11230
|
+
<a href="#added_11" class="md-nav__link">
|
|
11633
11231
|
<span class="md-ellipsis">
|
|
11634
|
-
Added
|
|
11232
|
+
Added
|
|
11635
11233
|
</span>
|
|
11636
11234
|
</a>
|
|
11637
11235
|
|
|
11638
11236
|
</li>
|
|
11639
11237
|
|
|
11640
11238
|
<li class="md-nav__item">
|
|
11641
|
-
<a href="#
|
|
11239
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
11642
11240
|
<span class="md-ellipsis">
|
|
11643
|
-
Fixed
|
|
11241
|
+
Fixed
|
|
11644
11242
|
</span>
|
|
11645
11243
|
</a>
|
|
11646
11244
|
|
|
11647
11245
|
</li>
|
|
11648
11246
|
|
|
11649
11247
|
<li class="md-nav__item">
|
|
11650
|
-
<a href="#
|
|
11248
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
11651
11249
|
<span class="md-ellipsis">
|
|
11652
|
-
Documentation
|
|
11250
|
+
Documentation
|
|
11653
11251
|
</span>
|
|
11654
11252
|
</a>
|
|
11655
11253
|
|
|
11656
11254
|
</li>
|
|
11657
11255
|
|
|
11658
11256
|
<li class="md-nav__item">
|
|
11659
|
-
<a href="#
|
|
11257
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
11660
11258
|
<span class="md-ellipsis">
|
|
11661
|
-
Housekeeping
|
|
11259
|
+
Housekeeping
|
|
11662
11260
|
</span>
|
|
11663
11261
|
</a>
|
|
11664
11262
|
|
|
@@ -11680,36 +11278,36 @@
|
|
|
11680
11278
|
<ul class="md-nav__list">
|
|
11681
11279
|
|
|
11682
11280
|
<li class="md-nav__item">
|
|
11683
|
-
<a href="#
|
|
11281
|
+
<a href="#added_12" class="md-nav__link">
|
|
11684
11282
|
<span class="md-ellipsis">
|
|
11685
|
-
Added
|
|
11283
|
+
Added
|
|
11686
11284
|
</span>
|
|
11687
11285
|
</a>
|
|
11688
11286
|
|
|
11689
11287
|
</li>
|
|
11690
11288
|
|
|
11691
11289
|
<li class="md-nav__item">
|
|
11692
|
-
<a href="#
|
|
11290
|
+
<a href="#changed_5" class="md-nav__link">
|
|
11693
11291
|
<span class="md-ellipsis">
|
|
11694
|
-
Changed
|
|
11292
|
+
Changed
|
|
11695
11293
|
</span>
|
|
11696
11294
|
</a>
|
|
11697
11295
|
|
|
11698
11296
|
</li>
|
|
11699
11297
|
|
|
11700
11298
|
<li class="md-nav__item">
|
|
11701
|
-
<a href="#
|
|
11299
|
+
<a href="#removed_3" class="md-nav__link">
|
|
11702
11300
|
<span class="md-ellipsis">
|
|
11703
|
-
Removed
|
|
11301
|
+
Removed
|
|
11704
11302
|
</span>
|
|
11705
11303
|
</a>
|
|
11706
11304
|
|
|
11707
11305
|
</li>
|
|
11708
11306
|
|
|
11709
11307
|
<li class="md-nav__item">
|
|
11710
|
-
<a href="#
|
|
11308
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
11711
11309
|
<span class="md-ellipsis">
|
|
11712
|
-
Housekeeping
|
|
11310
|
+
Housekeeping
|
|
11713
11311
|
</span>
|
|
11714
11312
|
</a>
|
|
11715
11313
|
|
|
@@ -11731,36 +11329,36 @@
|
|
|
11731
11329
|
<ul class="md-nav__list">
|
|
11732
11330
|
|
|
11733
11331
|
<li class="md-nav__item">
|
|
11734
|
-
<a href="#
|
|
11332
|
+
<a href="#security_14" class="md-nav__link">
|
|
11735
11333
|
<span class="md-ellipsis">
|
|
11736
|
-
Security
|
|
11334
|
+
Security
|
|
11737
11335
|
</span>
|
|
11738
11336
|
</a>
|
|
11739
11337
|
|
|
11740
11338
|
</li>
|
|
11741
11339
|
|
|
11742
11340
|
<li class="md-nav__item">
|
|
11743
|
-
<a href="#
|
|
11341
|
+
<a href="#added_13" class="md-nav__link">
|
|
11744
11342
|
<span class="md-ellipsis">
|
|
11745
|
-
Added
|
|
11343
|
+
Added
|
|
11746
11344
|
</span>
|
|
11747
11345
|
</a>
|
|
11748
11346
|
|
|
11749
11347
|
</li>
|
|
11750
11348
|
|
|
11751
11349
|
<li class="md-nav__item">
|
|
11752
|
-
<a href="#
|
|
11350
|
+
<a href="#fixed_14" class="md-nav__link">
|
|
11753
11351
|
<span class="md-ellipsis">
|
|
11754
|
-
Fixed
|
|
11352
|
+
Fixed
|
|
11755
11353
|
</span>
|
|
11756
11354
|
</a>
|
|
11757
11355
|
|
|
11758
11356
|
</li>
|
|
11759
11357
|
|
|
11760
11358
|
<li class="md-nav__item">
|
|
11761
|
-
<a href="#
|
|
11359
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
11762
11360
|
<span class="md-ellipsis">
|
|
11763
|
-
Housekeeping
|
|
11361
|
+
Housekeeping
|
|
11764
11362
|
</span>
|
|
11765
11363
|
</a>
|
|
11766
11364
|
|
|
@@ -11782,45 +11380,45 @@
|
|
|
11782
11380
|
<ul class="md-nav__list">
|
|
11783
11381
|
|
|
11784
11382
|
<li class="md-nav__item">
|
|
11785
|
-
<a href="#
|
|
11383
|
+
<a href="#added_14" class="md-nav__link">
|
|
11786
11384
|
<span class="md-ellipsis">
|
|
11787
|
-
Added
|
|
11385
|
+
Added
|
|
11788
11386
|
</span>
|
|
11789
11387
|
</a>
|
|
11790
11388
|
|
|
11791
11389
|
</li>
|
|
11792
11390
|
|
|
11793
11391
|
<li class="md-nav__item">
|
|
11794
|
-
<a href="#
|
|
11392
|
+
<a href="#changed_6" class="md-nav__link">
|
|
11795
11393
|
<span class="md-ellipsis">
|
|
11796
|
-
Changed
|
|
11394
|
+
Changed
|
|
11797
11395
|
</span>
|
|
11798
11396
|
</a>
|
|
11799
11397
|
|
|
11800
11398
|
</li>
|
|
11801
11399
|
|
|
11802
11400
|
<li class="md-nav__item">
|
|
11803
|
-
<a href="#
|
|
11401
|
+
<a href="#fixed_15" class="md-nav__link">
|
|
11804
11402
|
<span class="md-ellipsis">
|
|
11805
|
-
Fixed
|
|
11403
|
+
Fixed
|
|
11806
11404
|
</span>
|
|
11807
11405
|
</a>
|
|
11808
11406
|
|
|
11809
11407
|
</li>
|
|
11810
11408
|
|
|
11811
11409
|
<li class="md-nav__item">
|
|
11812
|
-
<a href="#
|
|
11410
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
11813
11411
|
<span class="md-ellipsis">
|
|
11814
|
-
Documentation
|
|
11412
|
+
Documentation
|
|
11815
11413
|
</span>
|
|
11816
11414
|
</a>
|
|
11817
11415
|
|
|
11818
11416
|
</li>
|
|
11819
11417
|
|
|
11820
11418
|
<li class="md-nav__item">
|
|
11821
|
-
<a href="#
|
|
11419
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
11822
11420
|
<span class="md-ellipsis">
|
|
11823
|
-
Housekeeping
|
|
11421
|
+
Housekeeping
|
|
11824
11422
|
</span>
|
|
11825
11423
|
</a>
|
|
11826
11424
|
|
|
@@ -11842,36 +11440,36 @@
|
|
|
11842
11440
|
<ul class="md-nav__list">
|
|
11843
11441
|
|
|
11844
11442
|
<li class="md-nav__item">
|
|
11845
|
-
<a href="#
|
|
11443
|
+
<a href="#changed_7" class="md-nav__link">
|
|
11846
11444
|
<span class="md-ellipsis">
|
|
11847
|
-
Changed
|
|
11445
|
+
Changed
|
|
11848
11446
|
</span>
|
|
11849
11447
|
</a>
|
|
11850
11448
|
|
|
11851
11449
|
</li>
|
|
11852
11450
|
|
|
11853
11451
|
<li class="md-nav__item">
|
|
11854
|
-
<a href="#
|
|
11452
|
+
<a href="#fixed_16" class="md-nav__link">
|
|
11855
11453
|
<span class="md-ellipsis">
|
|
11856
|
-
Fixed
|
|
11454
|
+
Fixed
|
|
11857
11455
|
</span>
|
|
11858
11456
|
</a>
|
|
11859
11457
|
|
|
11860
11458
|
</li>
|
|
11861
11459
|
|
|
11862
11460
|
<li class="md-nav__item">
|
|
11863
|
-
<a href="#
|
|
11461
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
11864
11462
|
<span class="md-ellipsis">
|
|
11865
|
-
Documentation
|
|
11463
|
+
Documentation
|
|
11866
11464
|
</span>
|
|
11867
11465
|
</a>
|
|
11868
11466
|
|
|
11869
11467
|
</li>
|
|
11870
11468
|
|
|
11871
11469
|
<li class="md-nav__item">
|
|
11872
|
-
<a href="#
|
|
11470
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
11873
11471
|
<span class="md-ellipsis">
|
|
11874
|
-
Housekeeping
|
|
11472
|
+
Housekeeping
|
|
11875
11473
|
</span>
|
|
11876
11474
|
</a>
|
|
11877
11475
|
|
|
@@ -11893,36 +11491,36 @@
|
|
|
11893
11491
|
<ul class="md-nav__list">
|
|
11894
11492
|
|
|
11895
11493
|
<li class="md-nav__item">
|
|
11896
|
-
<a href="#
|
|
11494
|
+
<a href="#added_15" class="md-nav__link">
|
|
11897
11495
|
<span class="md-ellipsis">
|
|
11898
|
-
Added
|
|
11496
|
+
Added
|
|
11899
11497
|
</span>
|
|
11900
11498
|
</a>
|
|
11901
11499
|
|
|
11902
11500
|
</li>
|
|
11903
11501
|
|
|
11904
11502
|
<li class="md-nav__item">
|
|
11905
|
-
<a href="#
|
|
11503
|
+
<a href="#fixed_17" class="md-nav__link">
|
|
11906
11504
|
<span class="md-ellipsis">
|
|
11907
|
-
Fixed
|
|
11505
|
+
Fixed
|
|
11908
11506
|
</span>
|
|
11909
11507
|
</a>
|
|
11910
11508
|
|
|
11911
11509
|
</li>
|
|
11912
11510
|
|
|
11913
11511
|
<li class="md-nav__item">
|
|
11914
|
-
<a href="#
|
|
11512
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
11915
11513
|
<span class="md-ellipsis">
|
|
11916
|
-
Dependencies
|
|
11514
|
+
Dependencies
|
|
11917
11515
|
</span>
|
|
11918
11516
|
</a>
|
|
11919
11517
|
|
|
11920
11518
|
</li>
|
|
11921
11519
|
|
|
11922
11520
|
<li class="md-nav__item">
|
|
11923
|
-
<a href="#
|
|
11521
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
11924
11522
|
<span class="md-ellipsis">
|
|
11925
|
-
Documentation
|
|
11523
|
+
Documentation
|
|
11926
11524
|
</span>
|
|
11927
11525
|
</a>
|
|
11928
11526
|
|
|
@@ -11944,54 +11542,54 @@
|
|
|
11944
11542
|
<ul class="md-nav__list">
|
|
11945
11543
|
|
|
11946
11544
|
<li class="md-nav__item">
|
|
11947
|
-
<a href="#
|
|
11545
|
+
<a href="#added_16" class="md-nav__link">
|
|
11948
11546
|
<span class="md-ellipsis">
|
|
11949
|
-
Added
|
|
11547
|
+
Added
|
|
11950
11548
|
</span>
|
|
11951
11549
|
</a>
|
|
11952
11550
|
|
|
11953
11551
|
</li>
|
|
11954
11552
|
|
|
11955
11553
|
<li class="md-nav__item">
|
|
11956
|
-
<a href="#
|
|
11554
|
+
<a href="#changed_8" class="md-nav__link">
|
|
11957
11555
|
<span class="md-ellipsis">
|
|
11958
|
-
Changed
|
|
11556
|
+
Changed
|
|
11959
11557
|
</span>
|
|
11960
11558
|
</a>
|
|
11961
11559
|
|
|
11962
11560
|
</li>
|
|
11963
11561
|
|
|
11964
11562
|
<li class="md-nav__item">
|
|
11965
|
-
<a href="#
|
|
11563
|
+
<a href="#removed_4" class="md-nav__link">
|
|
11966
11564
|
<span class="md-ellipsis">
|
|
11967
|
-
Removed
|
|
11565
|
+
Removed
|
|
11968
11566
|
</span>
|
|
11969
11567
|
</a>
|
|
11970
11568
|
|
|
11971
11569
|
</li>
|
|
11972
11570
|
|
|
11973
11571
|
<li class="md-nav__item">
|
|
11974
|
-
<a href="#
|
|
11572
|
+
<a href="#fixed_18" class="md-nav__link">
|
|
11975
11573
|
<span class="md-ellipsis">
|
|
11976
|
-
Fixed
|
|
11574
|
+
Fixed
|
|
11977
11575
|
</span>
|
|
11978
11576
|
</a>
|
|
11979
11577
|
|
|
11980
11578
|
</li>
|
|
11981
11579
|
|
|
11982
11580
|
<li class="md-nav__item">
|
|
11983
|
-
<a href="#
|
|
11581
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
11984
11582
|
<span class="md-ellipsis">
|
|
11985
|
-
Dependencies
|
|
11583
|
+
Dependencies
|
|
11986
11584
|
</span>
|
|
11987
11585
|
</a>
|
|
11988
11586
|
|
|
11989
11587
|
</li>
|
|
11990
11588
|
|
|
11991
11589
|
<li class="md-nav__item">
|
|
11992
|
-
<a href="#
|
|
11590
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
11993
11591
|
<span class="md-ellipsis">
|
|
11994
|
-
Documentation
|
|
11592
|
+
Documentation
|
|
11995
11593
|
</span>
|
|
11996
11594
|
</a>
|
|
11997
11595
|
|
|
@@ -12020,6 +11618,8 @@
|
|
|
12020
11618
|
|
|
12021
11619
|
|
|
12022
11620
|
|
|
11621
|
+
<!-- markdownlint-disable MD024 -->
|
|
11622
|
+
|
|
12023
11623
|
<h1 id="nautobot-v16">Nautobot v1.6<a class="headerlink" href="#nautobot-v16" title="Permanent link">¶</a></h1>
|
|
12024
11624
|
<p>This document describes all new features and changes in Nautobot 1.6.</p>
|
|
12025
11625
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -12060,91 +11660,33 @@
|
|
|
12060
11660
|
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12061
11661
|
<h4 id="removed-python-37-support-3561">Removed Python 3.7 Support (<a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a>)<a class="headerlink" href="#removed-python-37-support-3561" title="Permanent link">¶</a></h4>
|
|
12062
11662
|
<p>As Python 3.7 has reached end-of-life, Nautobot 1.6 and later do not support installation or operation under Python 3.7.</p>
|
|
12063
|
-
<!-- pyml disable-num-lines 2 blanks-around-headers -->
|
|
12064
11663
|
<!-- towncrier release notes start -->
|
|
12065
|
-
<h2 id="v1629-2024-12-09">v1.6.29 (2024-12-09)<a class="headerlink" href="#v1629-2024-12-09" title="Permanent link">¶</a></h2>
|
|
12066
|
-
<h3 id="security-in-v1629">Security in v1.6.29<a class="headerlink" href="#security-in-v1629" title="Permanent link">¶</a></h3>
|
|
12067
|
-
<ul>
|
|
12068
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5911">#5911</a> - Updated <code>zipp</code> to <code>3.19.2</code> to address <code>CVE-2024-5569</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12069
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6625">#6625</a> - Patched <code>set_values()</code> method of Query class from django.db.models.sql.query to address <code>CVE-2024-42005</code>.</li>
|
|
12070
|
-
</ul>
|
|
12071
|
-
<h3 id="fixed-in-v1629">Fixed in v1.6.29<a class="headerlink" href="#fixed-in-v1629" title="Permanent link">¶</a></h3>
|
|
12072
|
-
<ul>
|
|
12073
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5924">#5924</a> - Fixed the redirect URL for the Device Bay Populate/Depopulate view to take the user back to the Device Bays tab on the Device page.</li>
|
|
12074
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed a bug in the Dockerfile that prevented <code>docker build</code> from working on some platforms.</li>
|
|
12075
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6502">#6502</a> - Fixed Docker builds failing in Gitlab CI.</li>
|
|
12076
|
-
</ul>
|
|
12077
|
-
<h2 id="v1628-2024-09-24">v1.6.28 (2024-09-24)<a class="headerlink" href="#v1628-2024-09-24" title="Permanent link">¶</a></h2>
|
|
12078
|
-
<h3 id="fixed-in-v1628">Fixed in v1.6.28<a class="headerlink" href="#fixed-in-v1628" title="Permanent link">¶</a></h3>
|
|
12079
|
-
<ul>
|
|
12080
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6152">#6152</a> - Fixed table column ordering.</li>
|
|
12081
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6237">#6237</a> - Corrected presentation of rendered Markdown content in Notes table.</li>
|
|
12082
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Fixed invalid installation of <code>xmlsec</code> library in the Nautobot Docker images.</li>
|
|
12083
|
-
</ul>
|
|
12084
|
-
<h3 id="housekeeping-in-v1628">Housekeeping in v1.6.28<a class="headerlink" href="#housekeeping-in-v1628" title="Permanent link">¶</a></h3>
|
|
12085
|
-
<ul>
|
|
12086
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Removed "version" from development <code>docker-compose.yml</code> files as newer versions of Docker complain about it being obsolete.</li>
|
|
12087
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5637">#5637</a> - Fixed behavior of <code>invoke stop</code> so that it also stops the optional <code>mkdocs</code> container if present.</li>
|
|
12088
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6262">#6262</a> - Brought <code>.gitignore</code> up to date with latest to aid in branch switching.</li>
|
|
12089
|
-
</ul>
|
|
12090
|
-
<h2 id="v1627-2024-09-03">v1.6.27 (2024-09-03)<a class="headerlink" href="#v1627-2024-09-03" title="Permanent link">¶</a></h2>
|
|
12091
|
-
<h3 id="security-in-v1627">Security in v1.6.27<a class="headerlink" href="#security-in-v1627" title="Permanent link">¶</a></h3>
|
|
12092
|
-
<ul>
|
|
12093
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6182">#6182</a> - Updated <code>cryptography</code> to <code>43.0.1</code> to address <code>GHSA-h4gh-qq45-vh27</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12094
|
-
</ul>
|
|
12095
|
-
<h3 id="fixed-in-v1627">Fixed in v1.6.27<a class="headerlink" href="#fixed-in-v1627" title="Permanent link">¶</a></h3>
|
|
12096
|
-
<ul>
|
|
12097
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6081">#6081</a> - Fixed AttributeError during <code>pre_migrate</code> when permission constraints are applied to custom fields.</li>
|
|
12098
|
-
</ul>
|
|
12099
|
-
<h2 id="v1626-2024-07-22">v1.6.26 (2024-07-22)<a class="headerlink" href="#v1626-2024-07-22" title="Permanent link">¶</a></h2>
|
|
12100
|
-
<h3 id="fixed-in-v1626">Fixed in v1.6.26<a class="headerlink" href="#fixed-in-v1626" title="Permanent link">¶</a></h3>
|
|
12101
|
-
<ul>
|
|
12102
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5935">#5935</a> - Fixed issue in which a save() could be called unnecessarily on child devices.</li>
|
|
12103
|
-
</ul>
|
|
12104
|
-
<h2 id="v1625-2024-07-09">v1.6.25 (2024-07-09)<a class="headerlink" href="#v1625-2024-07-09" title="Permanent link">¶</a></h2>
|
|
12105
|
-
<h3 id="security-in-v1625">Security in v1.6.25<a class="headerlink" href="#security-in-v1625" title="Permanent link">¶</a></h3>
|
|
12106
|
-
<ul>
|
|
12107
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5891">#5891</a> - Updated <code>certifi</code> to <code>2024.7.4</code> to address <code>CVE-2024-39689</code>. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12108
|
-
</ul>
|
|
12109
|
-
<h3 id="dependencies-in-v1625">Dependencies in v1.6.25<a class="headerlink" href="#dependencies-in-v1625" title="Permanent link">¶</a></h3>
|
|
12110
|
-
<ul>
|
|
12111
|
-
<li><a href="https://github.com/nautobot/nautobot/pull/5897">#5897</a> - Pinned dev dependency <code>faker</code> to <code>>=0.7.0,<26.0.0</code> to work around breaking change in v26.0.0 (<a href="https://github.com/joke2k/faker/issues/2070">faker/#2070</a>).</li>
|
|
12112
|
-
</ul>
|
|
12113
|
-
<h2 id="v1624-2024-06-24">v1.6.24 (2024-06-24)<a class="headerlink" href="#v1624-2024-06-24" title="Permanent link">¶</a></h2>
|
|
12114
|
-
<h3 id="security-in-v1624">Security in v1.6.24<a class="headerlink" href="#security-in-v1624" title="Permanent link">¶</a></h3>
|
|
12115
|
-
<ul>
|
|
12116
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5821">#5821</a> - Updated <code>urllib3</code> to 2.2.2 due to CVE-2024-37891. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12117
|
-
</ul>
|
|
12118
|
-
<h3 id="housekeeping-in-v1624">Housekeeping in v1.6.24<a class="headerlink" href="#housekeeping-in-v1624" title="Permanent link">¶</a></h3>
|
|
12119
|
-
<ul>
|
|
12120
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5754">#5754</a> - Updated development dependency <code>requests</code> to <code>~2.32.2</code>.</li>
|
|
12121
|
-
</ul>
|
|
12122
11664
|
<h2 id="v1623-2024-05-28">v1.6.23 (2024-05-28)<a class="headerlink" href="#v1623-2024-05-28" title="Permanent link">¶</a></h2>
|
|
12123
|
-
<h3 id="security
|
|
11665
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12124
11666
|
<ul>
|
|
12125
11667
|
<li><a href="https://github.com/nautobot/nautobot/issues/5762">#5762</a> - Fixed missing member object permission enforcement (e.g., enforce Device permissions for a Dynamic Group containing Devices) when viewing Dynamic Group member objects in the UI or REST API (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-qmjf-wc2h-6x3q">GHSA-qmjf-wc2h-6x3q</a>).</li>
|
|
12126
11668
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated <code>requests</code> to <code>2.32.1</code> to address <a href="https://github.com/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56">GHSA-9wx4-h78v-vm56</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
12127
11669
|
</ul>
|
|
12128
|
-
<h3 id="housekeeping
|
|
11670
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12129
11671
|
<ul>
|
|
12130
11672
|
<li><a href="https://github.com/nautobot/nautobot/issues/5740">#5740</a> - Updated test dependency <code>requests</code> to <code>~2.32.1</code>.</li>
|
|
12131
11673
|
</ul>
|
|
12132
11674
|
<h2 id="v1622-2024-05-13">v1.6.22 (2024-05-13)<a class="headerlink" href="#v1622-2024-05-13" title="Permanent link">¶</a></h2>
|
|
12133
|
-
<h3 id="
|
|
11675
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
12134
11676
|
<ul>
|
|
12135
11677
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added sanitization of HTML tags in the content of <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration to prevent against potential injection of malicious scripts (stored XSS) via these features (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-r2hr-4v48-fjv3">GHSA-r2hr-4v48-fjv3</a>).</li>
|
|
12136
11678
|
</ul>
|
|
12137
|
-
<h3 id="
|
|
11679
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
12138
11680
|
<ul>
|
|
12139
11681
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added support in <code>BRANDING_FILEPATHS</code> configuration to specify a custom <code>css</code> and/or <code>javascript</code> file to be added to Nautobot page content.</li>
|
|
12140
11682
|
<li><a href="https://github.com/nautobot/nautobot/issues/1858">#1858</a> - Added Markdown support to the <code>BANNER_TOP</code>, <code>BANNER_BOTTOM</code>, and <code>BANNER_LOGIN</code> configuration settings.</li>
|
|
12141
11683
|
</ul>
|
|
12142
|
-
<h3 id="fixed
|
|
11684
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12143
11685
|
<ul>
|
|
12144
11686
|
<li><a href="https://github.com/nautobot/nautobot/issues/2974">#2974</a> - Fixed an error when deleting and then recreating a GitRepository that provides Jobs.</li>
|
|
12145
11687
|
</ul>
|
|
12146
11688
|
<h2 id="v1621-2024-05-07">v1.6.21 (2024-05-07)<a class="headerlink" href="#v1621-2024-05-07" title="Permanent link">¶</a></h2>
|
|
12147
|
-
<h3 id="
|
|
11689
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
12148
11690
|
<ul>
|
|
12149
11691
|
<li><a href="https://github.com/nautobot/nautobot/issues/5521">#5521</a> - Updated <code>Pillow</code> dependency to <code>~10.3.0</code> to address <code>CVE-2024-28219</code>.</li>
|
|
12150
11692
|
<li><a href="https://github.com/nautobot/nautobot/issues/5561">#5561</a> - Updated <code>idna</code> to <code>3.7</code> due to <code>CVE-2024-3651</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
@@ -12152,40 +11694,40 @@
|
|
|
12152
11694
|
<li><a href="https://github.com/nautobot/nautobot/issues/5675">#5675</a> - Updated <code>Jinja2</code> dependency to <code>3.1.4</code> to address <code>CVE-2024-34064</code>.</li>
|
|
12153
11695
|
</ul>
|
|
12154
11696
|
<h2 id="v1620-2024-04-30">v1.6.20 (2024-04-30)<a class="headerlink" href="#v1620-2024-04-30" title="Permanent link">¶</a></h2>
|
|
12155
|
-
<h3 id="
|
|
11697
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
12156
11698
|
<ul>
|
|
12157
11699
|
<li><a href="https://github.com/nautobot/nautobot/issues/5647">#5647</a> - Fixed a reflected-XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-jxgr-gcj5-cqqg">GHSA-jxgr-gcj5-cqqg</a>) in object-list view rendering of user-provided query parameters.</li>
|
|
12158
11700
|
</ul>
|
|
12159
|
-
<h3 id="
|
|
11701
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
12160
11702
|
<ul>
|
|
12161
11703
|
<li><a href="https://github.com/nautobot/nautobot/issues/5626">#5626</a> - Increased performance of <code>brief=true</code> in API endpoints by eliminating unnecessary database joins.</li>
|
|
12162
11704
|
</ul>
|
|
12163
11705
|
<h2 id="v1619-2024-04-23">v1.6.19 (2024-04-23)<a class="headerlink" href="#v1619-2024-04-23" title="Permanent link">¶</a></h2>
|
|
12164
|
-
<h3 id="
|
|
11706
|
+
<h3 id="security_4">Security<a class="headerlink" href="#security_4" title="Permanent link">¶</a></h3>
|
|
12165
11707
|
<ul>
|
|
12166
11708
|
<li><a href="https://github.com/nautobot/nautobot/issues/5579">#5579</a> - Updated <code>sqlparse</code> to <code>0.5.0</code> to fix <a href="https://github.com/advisories/GHSA-2m57-hf25-phgg">GHSA-2m57-hf25-phgg</a>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
12167
11709
|
</ul>
|
|
12168
|
-
<h3 id="
|
|
11710
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
12169
11711
|
<ul>
|
|
12170
11712
|
<li><a href="https://github.com/nautobot/nautobot/issues/5610">#5610</a> - Fixed static media failure on <code>/graphql/</code> and <code>/admin/</code> pages.</li>
|
|
12171
11713
|
</ul>
|
|
12172
11714
|
<h2 id="v1618-2024-04-15">v1.6.18 (2024-04-15)<a class="headerlink" href="#v1618-2024-04-15" title="Permanent link">¶</a></h2>
|
|
12173
|
-
<h3 id="
|
|
11715
|
+
<h3 id="security_5">Security<a class="headerlink" href="#security_5" title="Permanent link">¶</a></h3>
|
|
12174
11716
|
<ul>
|
|
12175
11717
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery-ui</code> to version <code>1.13.2</code> due to <code>CVE-2022-31160</code>.</li>
|
|
12176
11718
|
</ul>
|
|
12177
|
-
<h3 id="dependencies
|
|
11719
|
+
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12178
11720
|
<ul>
|
|
12179
11721
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
12180
11722
|
</ul>
|
|
12181
11723
|
<h2 id="v1617-2024-04-01">v1.6.17 (2024-04-01)<a class="headerlink" href="#v1617-2024-04-01" title="Permanent link">¶</a></h2>
|
|
12182
|
-
<h3 id="
|
|
11724
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
12183
11725
|
<ul>
|
|
12184
11726
|
<li><a href="https://github.com/nautobot/nautobot/issues/4583">#4583</a> - Updated pinned version of <code>social-auth-core</code> to remove dependency on <code>python-jose</code> & its dependency on <code>ecdsa</code>.</li>
|
|
12185
11727
|
<li><a href="https://github.com/nautobot/nautobot/issues/5495">#5495</a> - Changed <code>jsonschema</code> version constraint from <code>>=4.7.0,<4.18.0</code> to <code>^4.7.0</code>.</li>
|
|
12186
11728
|
</ul>
|
|
12187
11729
|
<h2 id="v1616-2024-03-25">v1.6.16 (2024-03-25)<a class="headerlink" href="#v1616-2024-03-25" title="Permanent link">¶</a></h2>
|
|
12188
|
-
<h3 id="
|
|
11730
|
+
<h3 id="security_6">Security<a class="headerlink" href="#security_6" title="Permanent link">¶</a></h3>
|
|
12189
11731
|
<ul>
|
|
12190
11732
|
<li><a href="https://github.com/nautobot/nautobot/issues/5450">#5450</a> - Updated <code>django</code> to <code>~3.2.25</code> due to <code>CVE-2024-27351</code>.</li>
|
|
12191
11733
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/job-results/<uuid:pk>/log-table/</code>; furthermore it will not allow an authenticated user to view log entries for a JobResult they don't otherwise have permission to view. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
@@ -12197,202 +11739,203 @@
|
|
|
12197
11739
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoints <code>/dcim/racks/<uuid>/dynamic-groups/</code>, <code>/dcim/devices/<uuid>/dynamic-groups/</code>, <code>/ipam/prefixes/<uuid>/dynamic-groups/</code>, <code>/ipam/ip-addresses/<uuid>/dynamic-groups/</code>, <code>/virtualization/clusters/<uuid>/dynamic-groups/</code>, and <code>/virtualization/virtual-machines/<uuid>/dynamic-groups/</code>, even when <code>EXEMPT_VIEW_PERMISSIONS</code> is configured. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
12198
11740
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access the endpoint <code>/extras/secrets/provider/<str:provider_slug>/form/</code>. (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-m732-wvh2-7cq4">GHSA-m732-wvh2-7cq4</a>)</li>
|
|
12199
11741
|
</ul>
|
|
12200
|
-
<h3 id="
|
|
11742
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
12201
11743
|
<ul>
|
|
12202
11744
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.utils.get_url_for_url_pattern</code> and <code>nautobot.apps.utils.get_url_patterns</code> lookup functions.</li>
|
|
12203
11745
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
12204
11746
|
</ul>
|
|
12205
|
-
<h3 id="
|
|
11747
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
12206
11748
|
<ul>
|
|
12207
11749
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added support for <code>view_name</code> and <code>view_description</code> optional parameters when instantiating a <code>nautobot.apps.api.OrderedDefaultRouter</code>. Specifying these parameters is to be preferred over defining a custom <code>APIRootView</code> subclass when defining App API URLs.</li>
|
|
12208
11750
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication by default on the <code>nautobot.core.api.AuthenticatedAPIRootView</code> class. As a consequence, viewing the browsable REST API root endpoints (e.g. <code>/api/</code>, <code>/api/circuits/</code>, <code>/api/dcim/</code>, etc.) now requires user authentication.</li>
|
|
12209
11751
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added requirement for user authentication to access <code>/api/docs/</code> and <code>/graphql/</code> even when <code>HIDE_RESTRICTED_UI</code> is False.</li>
|
|
12210
11752
|
</ul>
|
|
12211
|
-
<h3 id="
|
|
11753
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
12212
11754
|
<ul>
|
|
12213
11755
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Fixed a 500 error when accessing any of the <code>/dcim/<port-type>/<uuid>/connect/<termination_b_type>/</code> view endpoints with an invalid/nonexistent <code>termination_b_type</code> string.</li>
|
|
12214
11756
|
</ul>
|
|
12215
|
-
<h3 id="documentation
|
|
11757
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12216
11758
|
<ul>
|
|
12217
11759
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated example views in the App developer documentation to include <code>ObjectPermissionRequiredMixin</code> or <code>LoginRequiredMixin</code> as appropriate best practices.</li>
|
|
12218
11760
|
</ul>
|
|
12219
|
-
<h3 id="
|
|
11761
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
12220
11762
|
<ul>
|
|
12221
11763
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Updated custom views in the <code>example_plugin</code> to use the new <code>GenericView</code> base class as a best practice.</li>
|
|
12222
11764
|
</ul>
|
|
12223
11765
|
<h2 id="v1615-2024-03-18">v1.6.15 (2024-03-18)<a class="headerlink" href="#v1615-2024-03-18" title="Permanent link">¶</a></h2>
|
|
12224
|
-
<h3 id="
|
|
11766
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
12225
11767
|
<ul>
|
|
12226
11768
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
12227
11769
|
<li><a href="https://github.com/nautobot/nautobot/issues/5424">#5424</a> - Added <code>TemplateExtension.list_buttons()</code> API, allowing apps to register button content to be injected into object list views.</li>
|
|
12228
11770
|
</ul>
|
|
12229
|
-
<h3 id="
|
|
11771
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
12230
11772
|
<ul>
|
|
12231
11773
|
<li><a href="https://github.com/nautobot/nautobot/issues/5247">#5247</a> - Fixed Job buttons do not respect the <code>task_queues</code> of the job class.</li>
|
|
12232
11774
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
12233
11775
|
</ul>
|
|
12234
|
-
<h3 id="
|
|
11776
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
12235
11777
|
<ul>
|
|
12236
11778
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added health check for Celery Beat based on it touching a file (by default <code>/tmp/nautobot_celery_beat_heartbeat</code>) each time its scheduler wakes up.</li>
|
|
12237
11779
|
<li><a href="https://github.com/nautobot/nautobot/issues/5434">#5434</a> - Fixed health check for beat container in <code>docker-compose.yml</code> under <code>docker-compose</code> v1.x.</li>
|
|
12238
11780
|
</ul>
|
|
12239
11781
|
<h2 id="v1614-2024-03-05">v1.6.14 (2024-03-05)<a class="headerlink" href="#v1614-2024-03-05" title="Permanent link">¶</a></h2>
|
|
12240
|
-
<h3 id="
|
|
11782
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
12241
11783
|
<ul>
|
|
12242
11784
|
<li><a href="https://github.com/nautobot/nautobot/issues/5387">#5387</a> - Fixed an error in the Dockerfile that resulted in <code>pyuwsgi</code> being installed without SSL support.</li>
|
|
12243
11785
|
</ul>
|
|
12244
11786
|
<h2 id="v1613-2024-03-04">v1.6.13 (2024-03-04)<a class="headerlink" href="#v1613-2024-03-04" title="Permanent link">¶</a></h2>
|
|
12245
|
-
<h3 id="
|
|
11787
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11788
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
12246
11789
|
<ul>
|
|
12247
11790
|
<li><a href="https://github.com/nautobot/nautobot/issues/4247">#4247</a> - Added a check to the <code>nautobot-server pre_migrate</code> command to identify Interfaces and VMInterfaces with multiple VRFs through IPAddress relationships.</li>
|
|
12248
11791
|
</ul>
|
|
12249
|
-
<h3 id="
|
|
11792
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
12250
11793
|
<ul>
|
|
12251
11794
|
<li><a href="https://github.com/nautobot/nautobot/issues/5307">#5307</a> - Fixed Custom Field form field(s) missing from git repository edit form.</li>
|
|
12252
11795
|
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
12253
11796
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Fixed intermittent 405 errors when using the Docker image with SAML authentication.</li>
|
|
12254
11797
|
</ul>
|
|
12255
|
-
<h3 id="
|
|
11798
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
12256
11799
|
<ul>
|
|
12257
11800
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the Nautobot installation documentation about the need to do <code>pip3 install --no-binary=pyuwsgi</code> in order to have SSL support in <code>pyuwsgi</code>.</li>
|
|
12258
11801
|
<li><a href="https://github.com/nautobot/nautobot/issues/5345">#5345</a> - Added a note to the SSO documentation about the need to do <code>pip3 install --no-binary=lxml</code> to avoid incompatibilities between <code>lxml</code> and <code>xmlsec</code> packages.</li>
|
|
12259
11802
|
</ul>
|
|
12260
11803
|
<h2 id="v1612-2024-02-20">v1.6.12 (2024-02-20)<a class="headerlink" href="#v1612-2024-02-20" title="Permanent link">¶</a></h2>
|
|
12261
|
-
<h3 id="
|
|
11804
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
12262
11805
|
<ul>
|
|
12263
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
11806
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
12264
11807
|
</ul>
|
|
12265
|
-
<h3 id="
|
|
11808
|
+
<h3 id="security_7">Security<a class="headerlink" href="#security_7" title="Permanent link">¶</a></h3>
|
|
12266
11809
|
<ul>
|
|
12267
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
11810
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5251">#5251</a> - Updated <code>Django</code> dependency to 3.2.24 due to CVE-2024-24680.</li>
|
|
12268
11811
|
</ul>
|
|
12269
|
-
<h3 id="
|
|
11812
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
12270
11813
|
<ul>
|
|
12271
11814
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed <code>TreeQuerySet.ancestors</code> implementation to a more efficient approach for shallow trees.</li>
|
|
12272
11815
|
<li><a href="https://github.com/nautobot/nautobot/issues/5254">#5254</a> - Changed the location detail view not to annotate tree fields on its queries.</li>
|
|
12273
11816
|
</ul>
|
|
12274
|
-
<h3 id="
|
|
11817
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
12275
11818
|
<ul>
|
|
12276
11819
|
<li><a href="https://github.com/nautobot/nautobot/issues/5253">#5253</a> - Fixed issue with Job Button Groups displaying when Conditional Rendering should remove the button.</li>
|
|
12277
11820
|
<li><a href="https://github.com/nautobot/nautobot/issues/5261">#5261</a> - Fixed a regression introduced in v1.6.8 where Job Buttons would always run with <code>commit=False</code>.</li>
|
|
12278
11821
|
</ul>
|
|
12279
11822
|
<h2 id="v1611-2024-02-05">v1.6.11 (2024-02-05)<a class="headerlink" href="#v1611-2024-02-05" title="Permanent link">¶</a></h2>
|
|
12280
|
-
<h3 id="
|
|
11823
|
+
<h3 id="security_8">Security<a class="headerlink" href="#security_8" title="Permanent link">¶</a></h3>
|
|
12281
11824
|
<ul>
|
|
12282
11825
|
<li><a href="https://github.com/nautobot/nautobot/issues/5151">#5151</a> - Updated <code>pillow</code> dependency to 10.2.0 due to CVE-2023-50447.</li>
|
|
12283
11826
|
</ul>
|
|
12284
|
-
<h3 id="
|
|
11827
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
12285
11828
|
<ul>
|
|
12286
11829
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
12287
11830
|
</ul>
|
|
12288
|
-
<h3 id="
|
|
11831
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
12289
11832
|
<ul>
|
|
12290
11833
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
12291
11834
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
12292
11835
|
</ul>
|
|
12293
11836
|
<h2 id="v1610-2024-01-22">v1.6.10 (2024-01-22)<a class="headerlink" href="#v1610-2024-01-22" title="Permanent link">¶</a></h2>
|
|
12294
|
-
<h3 id="
|
|
11837
|
+
<h3 id="security_9">Security<a class="headerlink" href="#security_9" title="Permanent link">¶</a></h3>
|
|
12295
11838
|
<ul>
|
|
12296
11839
|
<li><a href="https://github.com/nautobot/nautobot/issues/5109">#5109</a> - Removed <code>/files/get/</code> URL endpoint (for viewing FileAttachment files in the browser), as it was unused and could potentially pose security issues.</li>
|
|
12297
11840
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Fixed an XSS vulnerability (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-v4xv-795h-rv4h">GHSA-v4xv-795h-rv4h</a>) in the <code>render_markdown()</code> utility function used to render comments, notes, job log entries, etc.</li>
|
|
12298
11841
|
</ul>
|
|
12299
|
-
<h3 id="
|
|
11842
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
12300
11843
|
<ul>
|
|
12301
11844
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Enhanced Markdown-supporting fields (<code>comments</code>, <code>description</code>, Notes, Job log entries, etc.) to also permit the use of a limited subset of "safe" HTML tags and attributes.</li>
|
|
12302
11845
|
</ul>
|
|
12303
|
-
<h3 id="
|
|
11846
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
12304
11847
|
<ul>
|
|
12305
11848
|
<li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
|
|
12306
11849
|
</ul>
|
|
12307
|
-
<h3 id="
|
|
11850
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
12308
11851
|
<ul>
|
|
12309
11852
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated GitPython to version 3.1.41 to address Windows security vulnerability <a href="https://github.com/gitpython-developers/GitPython/security/advisories/GHSA-2mqj-m65w-jghx">GHSA-2mqj-m65w-jghx</a>.</li>
|
|
12310
11853
|
<li><a href="https://github.com/nautobot/nautobot/issues/5087">#5087</a> - Updated Jinja2 to version 3.1.3 to address to address XSS security vulnerability <a href="https://github.com/pallets/jinja/security/advisories/GHSA-h5c8-rqwp-cp95">GHSA-h5c8-rqwp-cp95</a>.</li>
|
|
12311
11854
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
12312
11855
|
</ul>
|
|
12313
11856
|
<h2 id="v169-2024-01-08">v1.6.9 (2024-01-08)<a class="headerlink" href="#v169-2024-01-08" title="Permanent link">¶</a></h2>
|
|
12314
|
-
<h3 id="
|
|
11857
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
12315
11858
|
<ul>
|
|
12316
11859
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
12317
11860
|
</ul>
|
|
12318
11861
|
<h2 id="v168-2023-12-21">v1.6.8 (2023-12-21)<a class="headerlink" href="#v168-2023-12-21" title="Permanent link">¶</a></h2>
|
|
12319
|
-
<h3 id="
|
|
11862
|
+
<h3 id="security_10">Security<a class="headerlink" href="#security_10" title="Permanent link">¶</a></h3>
|
|
12320
11863
|
<ul>
|
|
12321
11864
|
<li><a href="https://github.com/nautobot/nautobot/issues/4876">#4876</a> - Updated <code>cryptography</code> to <code>41.0.7</code> due to CVE-2023-49083. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12322
11865
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed missing object-level permissions enforcement when running a JobButton (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-vf5m-xrhm-v999">GHSA-vf5m-xrhm-v999</a>).</li>
|
|
12323
11866
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed the requirement for users to have both <code>extras.run_job</code> and <code>extras.run_jobbutton</code> permissions to run a Job via a Job Button. Only <code>extras.run_job</code> permission is now required.</li>
|
|
12324
11867
|
<li><a href="https://github.com/nautobot/nautobot/issues/5002">#5002</a> - Updated <code>paramiko</code> to <code>3.4.0</code> due to CVE-2023-48795. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12325
11868
|
</ul>
|
|
12326
|
-
<h3 id="
|
|
11869
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
12327
11870
|
<ul>
|
|
12328
11871
|
<li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
|
|
12329
11872
|
</ul>
|
|
12330
|
-
<h3 id="
|
|
11873
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
12331
11874
|
<ul>
|
|
12332
11875
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Removed redundant <code>/extras/job-button/<uuid>/run/</code> URL endpoint; Job Buttons now use <code>/extras/jobs/<uuid>/run/</code> endpoint like any other job.</li>
|
|
12333
11876
|
</ul>
|
|
12334
|
-
<h3 id="
|
|
11877
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
12335
11878
|
<ul>
|
|
12336
11879
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
12337
11880
|
</ul>
|
|
12338
|
-
<h3 id="
|
|
11881
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
12339
11882
|
<ul>
|
|
12340
11883
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
12341
11884
|
</ul>
|
|
12342
11885
|
<h2 id="v167-2023-12-12">v1.6.7 (2023-12-12)<a class="headerlink" href="#v167-2023-12-12" title="Permanent link">¶</a></h2>
|
|
12343
|
-
<h3 id="
|
|
11886
|
+
<h3 id="security_11">Security<a class="headerlink" href="#security_11" title="Permanent link">¶</a></h3>
|
|
12344
11887
|
<ul>
|
|
12345
11888
|
<li><a href="https://github.com/nautobot/nautobot/issues/4959">#4959</a> - Enforce authentication and object permissions on DB file storage views (<a href="https://github.com/nautobot/nautobot/security/advisories/GHSA-75mc-3pjc-727q">GHSA-75mc-3pjc-727q</a>).</li>
|
|
12346
11889
|
</ul>
|
|
12347
|
-
<h3 id="
|
|
11890
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
12348
11891
|
<ul>
|
|
12349
11892
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
12350
11893
|
</ul>
|
|
12351
|
-
<h3 id="
|
|
11894
|
+
<h3 id="removed_2">Removed<a class="headerlink" href="#removed_2" title="Permanent link">¶</a></h3>
|
|
12352
11895
|
<ul>
|
|
12353
11896
|
<li><a href="https://github.com/nautobot/nautobot/issues/4797">#4797</a> - Removed erroneous <code>custom_fields</code> decorator from InterfaceRedundancyGroupAssociation as it's not a supported feature for this model.</li>
|
|
12354
11897
|
<li><a href="https://github.com/nautobot/nautobot/issues/4857">#4857</a> - Removed Jathan McCollum as a point of contact in <code>SECURITY.md</code>.</li>
|
|
12355
11898
|
</ul>
|
|
12356
|
-
<h3 id="
|
|
11899
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
12357
11900
|
<ul>
|
|
12358
11901
|
<li><a href="https://github.com/nautobot/nautobot/issues/4142">#4142</a> - Fixed unnecessary git operations when calling <code>ensure_git_repository</code> while the desired commit is already checked out.</li>
|
|
12359
11902
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
12360
11903
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
12361
11904
|
</ul>
|
|
12362
11905
|
<h2 id="v166-2023-11-21">v1.6.6 (2023-11-21)<a class="headerlink" href="#v166-2023-11-21" title="Permanent link">¶</a></h2>
|
|
12363
|
-
<h3 id="
|
|
11906
|
+
<h3 id="security_12">Security<a class="headerlink" href="#security_12" title="Permanent link">¶</a></h3>
|
|
12364
11907
|
<ul>
|
|
12365
11908
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Fixed cross-site-scripting (XSS) potential with maliciously crafted Custom Links, Computed Fields, and Job Buttons (GHSA-cf9f-wmhp-v4pr).</li>
|
|
12366
11909
|
</ul>
|
|
12367
|
-
<h3 id="
|
|
11910
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
12368
11911
|
<ul>
|
|
12369
11912
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Changed the <code>render_jinja2()</code> API to no longer automatically call <code>mark_safe()</code> on the output.</li>
|
|
12370
11913
|
</ul>
|
|
12371
|
-
<h3 id="
|
|
11914
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
12372
11915
|
<ul>
|
|
12373
11916
|
<li><a href="https://github.com/nautobot/nautobot/issues/3179">#3179</a> - Fixed the error that occurred when fetching the API response for CircuitTermination with a cable connected to CircuitTermination, FrontPort, or RearPort.</li>
|
|
12374
11917
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Reduced size of Nautobot <code>sdist</code> and <code>wheel</code> packages from 69 MB to 29 MB.</li>
|
|
12375
11918
|
</ul>
|
|
12376
|
-
<h3 id="
|
|
11919
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
12377
11920
|
<ul>
|
|
12378
11921
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated <code>mkdocs</code> development dependency to <code>1.5.3</code>.</li>
|
|
12379
11922
|
</ul>
|
|
12380
|
-
<h3 id="
|
|
11923
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
12381
11924
|
<ul>
|
|
12382
11925
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
12383
11926
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
12384
11927
|
</ul>
|
|
12385
11928
|
<h2 id="v165-2023-11-13">v1.6.5 (2023-11-13)<a class="headerlink" href="#v165-2023-11-13" title="Permanent link">¶</a></h2>
|
|
12386
|
-
<h3 id="
|
|
11929
|
+
<h3 id="security_13">Security<a class="headerlink" href="#security_13" title="Permanent link">¶</a></h3>
|
|
12387
11930
|
<ul>
|
|
12388
11931
|
<li><a href="https://github.com/nautobot/nautobot/issues/4671">#4671</a> - Updated <code>urllib3</code> to 2.0.7 due to CVE-2023-45803. This is not a direct dependency so it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12389
11932
|
<li><a href="https://github.com/nautobot/nautobot/issues/4748">#4748</a> - Updated <code>Django</code> minimum version to 3.2.23 to protect against CVE-2023-46695.</li>
|
|
12390
11933
|
</ul>
|
|
12391
|
-
<h3 id="
|
|
11934
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
12392
11935
|
<ul>
|
|
12393
11936
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
12394
11937
|
</ul>
|
|
12395
|
-
<h3 id="
|
|
11938
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
12396
11939
|
<ul>
|
|
12397
11940
|
<li><a href="https://github.com/nautobot/nautobot/issues/4645">#4645</a> - Fixed a bug where the <code>failover-strategy</code> field was required for the device redundancy group API.</li>
|
|
12398
11941
|
<li><a href="https://github.com/nautobot/nautobot/issues/4686">#4686</a> - Fixed incorrect tagging of 1.6.x Docker <code>nautobot-dev</code> images as <code>latest</code>.</li>
|
|
@@ -12400,108 +11943,108 @@
|
|
|
12400
11943
|
<li><a href="https://github.com/nautobot/nautobot/issues/4728">#4728</a> - Fixed bug with JobResultFilterSet and ScheduledJobFilterSet using <code>django_filters.DateTimeFilter</code> for only exact date matches.</li>
|
|
12401
11944
|
<li><a href="https://github.com/nautobot/nautobot/issues/4733">#4733</a> - Fixed the bug that prevents retrieval of IPAddress using its address args if it was created using <code>host</code> and <code>prefix_length</code>.</li>
|
|
12402
11945
|
</ul>
|
|
12403
|
-
<h3 id="
|
|
11946
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
12404
11947
|
<ul>
|
|
12405
11948
|
<li><a href="https://github.com/nautobot/nautobot/issues/4700">#4700</a> - Removed incorrect <code>NAUTOBOT_DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> environment variable reference from settings documentation.</li>
|
|
12406
11949
|
</ul>
|
|
12407
|
-
<h3 id="
|
|
11950
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
12408
11951
|
<ul>
|
|
12409
11952
|
<li><a href="https://github.com/nautobot/nautobot/issues/4638">#4638</a> - Renamed <code>ltm/1.6</code> branch to <code>ltm-1.6</code>.</li>
|
|
12410
11953
|
</ul>
|
|
12411
11954
|
<h2 id="v164-2023-10-17">v1.6.4 (2023-10-17)<a class="headerlink" href="#v164-2023-10-17" title="Permanent link">¶</a></h2>
|
|
12412
|
-
<h3 id="
|
|
11955
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
12413
11956
|
<ul>
|
|
12414
11957
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
12415
11958
|
<li><a href="https://github.com/nautobot/nautobot/issues/4573">#4573</a> - Added caching for <code>display</code> property of <code>Location</code> and <code>LocationType</code>, mitigating duplicated SQL queries in the related API views.</li>
|
|
12416
11959
|
</ul>
|
|
12417
|
-
<h3 id="
|
|
11960
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
12418
11961
|
<ul>
|
|
12419
11962
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
12420
11963
|
</ul>
|
|
12421
|
-
<h3 id="
|
|
11964
|
+
<h3 id="removed_3">Removed<a class="headerlink" href="#removed_3" title="Permanent link">¶</a></h3>
|
|
12422
11965
|
<ul>
|
|
12423
11966
|
<li><a href="https://github.com/nautobot/nautobot/issues/4595">#4595</a> - Removed <code>stable</code> tagging for container builds in LTM release workflow.</li>
|
|
12424
11967
|
</ul>
|
|
12425
|
-
<h3 id="
|
|
11968
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
12426
11969
|
<ul>
|
|
12427
11970
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
12428
11971
|
</ul>
|
|
12429
11972
|
<h2 id="v163-2023-10-03">v1.6.3 (2023-10-03)<a class="headerlink" href="#v163-2023-10-03" title="Permanent link">¶</a></h2>
|
|
12430
|
-
<h3 id="
|
|
11973
|
+
<h3 id="security_14">Security<a class="headerlink" href="#security_14" title="Permanent link">¶</a></h3>
|
|
12431
11974
|
<ul>
|
|
12432
11975
|
<li><a href="https://github.com/nautobot/nautobot/issues/4446">#4446</a> - Updated <code>GitPython</code> to <code>3.1.36</code> to address <code>CVE-2023-41040</code>.</li>
|
|
12433
11976
|
</ul>
|
|
12434
|
-
<h3 id="
|
|
11977
|
+
<h3 id="added_13">Added<a class="headerlink" href="#added_13" title="Permanent link">¶</a></h3>
|
|
12435
11978
|
<ul>
|
|
12436
11979
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
|
|
12437
11980
|
</ul>
|
|
12438
|
-
<h3 id="
|
|
11981
|
+
<h3 id="fixed_14">Fixed<a class="headerlink" href="#fixed_14" title="Permanent link">¶</a></h3>
|
|
12439
11982
|
<ul>
|
|
12440
11983
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
12441
11984
|
</ul>
|
|
12442
|
-
<h3 id="
|
|
11985
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
12443
11986
|
<ul>
|
|
12444
11987
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Fixed <code>release.yml</code> and <code>pre-release.yml</code> workflow files to target <code>ci_integration.yml</code> in its own branch.</li>
|
|
12445
11988
|
<li><a href="https://github.com/nautobot/nautobot/issues/4587">#4587</a> - Enforced changelog requirement in <code>ci_pullrequest.yml</code> for <code>ltm/1.6</code>.</li>
|
|
12446
11989
|
</ul>
|
|
12447
11990
|
<h2 id="v162-2023-09-01">v1.6.2 (2023-09-01)<a class="headerlink" href="#v162-2023-09-01" title="Permanent link">¶</a></h2>
|
|
12448
|
-
<h3 id="
|
|
11991
|
+
<h3 id="added_14">Added<a class="headerlink" href="#added_14" title="Permanent link">¶</a></h3>
|
|
12449
11992
|
<ul>
|
|
12450
11993
|
<li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
|
|
12451
11994
|
<li><a href="https://github.com/nautobot/nautobot/issues/4316">#4316</a> - Added management command <code>nautobot-server populate_platform_network_driver</code> to help update the <code>Platform.network_driver</code> field in bulk.</li>
|
|
12452
11995
|
</ul>
|
|
12453
|
-
<h3 id="
|
|
11996
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
12454
11997
|
<ul>
|
|
12455
11998
|
<li><a href="https://github.com/nautobot/nautobot/issues/3212">#3212</a> - Updated Dynamic Group field filter/child group exclusivity error to be more noticeable.</li>
|
|
12456
11999
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Moved DynamicGroup <code>clean_filter()</code> call from <code>clean()</code> to <code>clean_fields()</code>, which has the impact that it will still be called by <code>full_clean()</code> and <code>validated_save()</code> but no longer called on a simple <code>clean()</code>.</li>
|
|
12457
12000
|
<li><a href="https://github.com/nautobot/nautobot/issues/4216">#4216</a> - Changed the rendering of <code>TagFilterField</code> to prevent very slow rendering of pages when large numbers of tags are defined.</li>
|
|
12458
12001
|
<li><a href="https://github.com/nautobot/nautobot/issues/4217">#4217</a> - Added a restriction that two Git repositories with the same <code>remote_url</code> cannot overlap in their <code>provided_contents</code>, as such cases are highly likely to introduce data conflicts.</li>
|
|
12459
12002
|
</ul>
|
|
12460
|
-
<h3 id="
|
|
12003
|
+
<h3 id="fixed_15">Fixed<a class="headerlink" href="#fixed_15" title="Permanent link">¶</a></h3>
|
|
12461
12004
|
<ul>
|
|
12462
12005
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed a ValueError when editing an existing DynamicGroup that has invalid <code>filter</code> data.</li>
|
|
12463
12006
|
<li><a href="https://github.com/nautobot/nautobot/issues/3949">#3949</a> - Fixed <code>DynamicGroup.clean_fields()</code> so that it will respect an <code>exclude=["filter"]</code> kwarg by not validating the <code>filter</code> field.</li>
|
|
12464
12007
|
<li><a href="https://github.com/nautobot/nautobot/issues/4262">#4262</a> - Fixed warning message when trying to use bulk edit with no items selected.</li>
|
|
12465
12008
|
</ul>
|
|
12466
|
-
<h3 id="
|
|
12009
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
12467
12010
|
<ul>
|
|
12468
12011
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
12469
12012
|
<li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
|
|
12470
12013
|
</ul>
|
|
12471
|
-
<h3 id="
|
|
12014
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
12472
12015
|
<ul>
|
|
12473
12016
|
<li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
|
|
12474
12017
|
<li><a href="https://github.com/nautobot/nautobot/issues/4331">#4331</a> - Added a "housekeeping" subsection to the release-notes via <code>towncrier</code>.</li>
|
|
12475
12018
|
</ul>
|
|
12476
12019
|
<h2 id="v161-2023-08-21">v1.6.1 (2023-08-21)<a class="headerlink" href="#v161-2023-08-21" title="Permanent link">¶</a></h2>
|
|
12477
|
-
<h3 id="
|
|
12020
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
12478
12021
|
<ul>
|
|
12479
12022
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed behavior of <code>dev</code> and <code>final-dev</code> Docker images to disable installation metrics by default.</li>
|
|
12480
12023
|
</ul>
|
|
12481
|
-
<h3 id="
|
|
12024
|
+
<h3 id="fixed_16">Fixed<a class="headerlink" href="#fixed_16" title="Permanent link">¶</a></h3>
|
|
12482
12025
|
<ul>
|
|
12483
12026
|
<li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
|
|
12484
12027
|
<li><a href="https://github.com/nautobot/nautobot/issues/4149">#4149</a> - Fixed a bug that prevented renaming a <code>Rack</code> if it contained any devices whose names were not globally unique.</li>
|
|
12485
12028
|
<li><a href="https://github.com/nautobot/nautobot/issues/4241">#4241</a> - Added a timeout and exception handling to the <code>nautobot-server send_installation_metrics</code> command.</li>
|
|
12486
12029
|
</ul>
|
|
12487
|
-
<h3 id="
|
|
12030
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
12488
12031
|
<ul>
|
|
12489
12032
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Introduced new <code>mkdocs</code> setting of <code>tabbed</code>.</li>
|
|
12490
12033
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Updated docs at <code>nautobot/docs/installation/nautobot.md</code> and <code>nautobot/docs/installation/http-server.md</code> to adopt tabbed interfaces.</li>
|
|
12491
12034
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
12492
12035
|
</ul>
|
|
12493
|
-
<h3 id="
|
|
12036
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
12494
12037
|
<ul>
|
|
12495
12038
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow to publish 'final-dev', and build only <code>final</code> images.</li>
|
|
12496
12039
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
12497
12040
|
<li><a href="https://github.com/nautobot/nautobot/issues/4242">#4242</a> - Changed <code>development/nautobot_config.py</code> to disable installation metrics for developer environments by default.</li>
|
|
12498
12041
|
</ul>
|
|
12499
12042
|
<h2 id="v160-2023-08-08">v1.6.0 (2023-08-08)<a class="headerlink" href="#v160-2023-08-08" title="Permanent link">¶</a></h2>
|
|
12500
|
-
<h3 id="
|
|
12043
|
+
<h3 id="added_15">Added<a class="headerlink" href="#added_15" title="Permanent link">¶</a></h3>
|
|
12501
12044
|
<ul>
|
|
12502
12045
|
<li><a href="https://github.com/nautobot/nautobot/issues/4169">#4169</a> - Added environment variable <code>NAUTOBOT_SESSION_EXPIRE_AT_BROWSER_CLOSE</code> to set the <code>SESSION_EXPIRE_AT_BROWSER_CLOSE</code> Django setting which expires session cookies when the user closes their browser.</li>
|
|
12503
12046
|
</ul>
|
|
12504
|
-
<h3 id="
|
|
12047
|
+
<h3 id="fixed_17">Fixed<a class="headerlink" href="#fixed_17" title="Permanent link">¶</a></h3>
|
|
12505
12048
|
<ul>
|
|
12506
12049
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added error handling in <code>JobResult.log()</code> for the case where an object's <code>get_absolute_url()</code> raises an exception.</li>
|
|
12507
12050
|
<li><a href="https://github.com/nautobot/nautobot/issues/3985">#3985</a> - Added missing <code>get_absolute_url()</code> implementation on <code>CustomFieldChoice</code> model.</li>
|
|
@@ -12510,7 +12053,7 @@
|
|
|
12510
12053
|
<li><a href="https://github.com/nautobot/nautobot/issues/4205">#4205</a> - Fixed failing Apps CI due to missing dependency of <code>toml</code>.</li>
|
|
12511
12054
|
<li><a href="https://github.com/nautobot/nautobot/issues/4222">#4222</a> - Fixed a bug in which <code>Job</code> <code>ChoiceVars</code> could sometimes get rendered incorrectly in the UI as multiple-choice fields.</li>
|
|
12512
12055
|
</ul>
|
|
12513
|
-
<h3 id="
|
|
12056
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
12514
12057
|
<ul>
|
|
12515
12058
|
<li><a href="https://github.com/nautobot/nautobot/issues/4208">#4208</a> - Updated django-rq to 2.8.1.</li>
|
|
12516
12059
|
<li><a href="https://github.com/nautobot/nautobot/issues/4209">#4209</a> - Relaxed constraint on prometheus-client minimum version to <code>0.14.1</code>.</li>
|
|
@@ -12518,12 +12061,12 @@
|
|
|
12518
12061
|
<li><a href="https://github.com/nautobot/nautobot/issues/4199">#4199</a> - Updated <code>cryptography</code> to <code>~41.0.3</code>. As this is not a direct dependency of Nautobot, it will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12519
12062
|
<li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
|
|
12520
12063
|
</ul>
|
|
12521
|
-
<h3 id="
|
|
12064
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
12522
12065
|
<ul>
|
|
12523
12066
|
<li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
|
|
12524
12067
|
</ul>
|
|
12525
12068
|
<h2 id="v160-rc1-2023-08-02">v1.6.0-rc.1 (2023-08-02)<a class="headerlink" href="#v160-rc1-2023-08-02" title="Permanent link">¶</a></h2>
|
|
12526
|
-
<h3 id="
|
|
12069
|
+
<h3 id="added_16">Added<a class="headerlink" href="#added_16" title="Permanent link">¶</a></h3>
|
|
12527
12070
|
<ul>
|
|
12528
12071
|
<li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
|
|
12529
12072
|
<li><a href="https://github.com/nautobot/nautobot/issues/3269">#3269</a> - Added ability to cache <code>DynamicGroup</code> memberships in Redis to improve reverse lookup performance.</li>
|
|
@@ -12538,24 +12081,24 @@
|
|
|
12538
12081
|
<li><a href="https://github.com/nautobot/nautobot/issues/4136">#4136</a> - Added support for <code>NETWORK_DRIVERS</code> config setting to override or extend default network driver mappings from <code>netutils</code> library.</li>
|
|
12539
12082
|
<li><a href="https://github.com/nautobot/nautobot/issues/4161">#4161</a> - Enhanced <code>NautobotUIViewSet</code> to allow Create and Update methods to have their own form classes.</li>
|
|
12540
12083
|
</ul>
|
|
12541
|
-
<h3 id="
|
|
12084
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
12542
12085
|
<ul>
|
|
12543
12086
|
<li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Redirect unauthenticated users on all views to login page if <code>HIDE_RESTRICTED_UI</code> is True.</li>
|
|
12544
12087
|
<li><a href="https://github.com/nautobot/nautobot/issues/3646">#3646</a> - Only time is shown on the footer if a user is unauthenticated and <code>HIDE_RESTRICTED_UI</code> is True.</li>
|
|
12545
12088
|
<li><a href="https://github.com/nautobot/nautobot/issues/3693">#3693</a> - Increased Device model's <code>asset_tag</code> size limit to 100.</li>
|
|
12546
12089
|
<li><a href="https://github.com/nautobot/nautobot/issues/4029">#4029</a> - Changed default Python version for Docker images from 3.7 to 3.11.</li>
|
|
12547
12090
|
</ul>
|
|
12548
|
-
<h3 id="
|
|
12091
|
+
<h3 id="removed_4">Removed<a class="headerlink" href="#removed_4" title="Permanent link">¶</a></h3>
|
|
12549
12092
|
<ul>
|
|
12550
12093
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Dropped support for Python 3.7. Python 3.8 is now the minimum version required by Nautobot.</li>
|
|
12551
12094
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
|
|
12552
12095
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>pycryptodome</code> as Nautobot does not currently use this library and hasn't for some time.</li>
|
|
12553
12096
|
</ul>
|
|
12554
|
-
<h3 id="
|
|
12097
|
+
<h3 id="fixed_18">Fixed<a class="headerlink" href="#fixed_18" title="Permanent link">¶</a></h3>
|
|
12555
12098
|
<ul>
|
|
12556
12099
|
<li><a href="https://github.com/nautobot/nautobot/issues/4178">#4178</a> - Fixed JSON serialization of overloaded/non-default FilterForm fields on Dynamic Groups.</li>
|
|
12557
12100
|
</ul>
|
|
12558
|
-
<h3 id="
|
|
12101
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
12559
12102
|
<ul>
|
|
12560
12103
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>celery</code> dependency to <code>~5.3.1</code>.</li>
|
|
12561
12104
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>django-auth-ldap</code> optional dependency to <code>~4.3.0</code>.</li>
|
|
@@ -12588,7 +12131,7 @@
|
|
|
12588
12131
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>social-auth-app-django</code> dependency to <code>~5.2.0</code>.</li>
|
|
12589
12132
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
12590
12133
|
</ul>
|
|
12591
|
-
<h3 id="
|
|
12134
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
12592
12135
|
<ul>
|
|
12593
12136
|
<li><a href="https://github.com/nautobot/nautobot/issues/4118">#4118</a> - Added documentation for troubleshooting integration test failures via VNC.</li>
|
|
12594
12137
|
</ul>
|
|
@@ -12738,7 +12281,7 @@
|
|
|
12738
12281
|
<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>
|
|
12739
12282
|
|
|
12740
12283
|
|
|
12741
|
-
<script src="../assets/javascripts/bundle.
|
|
12284
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
12742
12285
|
|
|
12743
12286
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12744
12287
|
|