nautobot 2.4.0b1__py3-none-any.whl → 2.4.1__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 +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +13 -0
- nautobot/core/templates/search.html +7 -0
- 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 +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +86 -4
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +460 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +126 -38
- nautobot/core/views/renderers.py +6 -6
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +36 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +7 -5
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device.html +1 -9
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/location.html +1 -9
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/rack.html +1 -9
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackreservation.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_delete.py +189 -0
- nautobot/dcim/tests/integration/test_device_bulk_edit.py +181 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +21 -83
- nautobot/dcim/views.py +1 -13
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +90 -85
- nautobot/extras/api/views.py +22 -27
- nautobot/extras/constants.py +2 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +12 -11
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/dynamicgroup.html +1 -9
- nautobot/extras/templates/extras/job_detail.html +16 -0
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/plugin_detail.html +32 -15
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templatetags/job_buttons.py +4 -4
- 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 +3 -1
- 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/singleton.py +16 -0
- 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 +0 -2
- nautobot/extras/tests/test_api.py +13 -13
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +2 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +16 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +3 -2
- nautobot/extras/views.py +30 -98
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +66 -16
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +23 -7
- nautobot/ipam/templates/ipam/ipaddress.html +1 -9
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +1 -9
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlan.html +1 -9
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +95 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +36 -6
- nautobot/ipam/views.py +61 -87
- 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 +40 -2
- 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 +46 -4
- nautobot/project-static/docs/apps/index.html +46 -4
- nautobot/project-static/docs/apps/nautobot-apps.html +47 -6
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.88dd0f4e.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.88dd0f4e.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +374 -122
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +90 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +95 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +53 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +52 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +79 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +102 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +108 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +131 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +239 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +581 -165
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +109 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +453 -167
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +493 -211
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +60 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +71 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +407 -55
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +620 -205
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +858 -412
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +59 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +448 -186
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +365 -147
- nautobot/project-static/docs/development/apps/api/configuration-view.html +46 -4
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/global-search.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/graphql.html +46 -4
- nautobot/project-static/docs/development/apps/api/models/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +46 -4
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +68 -7
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +46 -4
- nautobot/project-static/docs/development/apps/api/prometheus.html +46 -4
- nautobot/project-static/docs/development/apps/api/setup.html +46 -4
- nautobot/project-static/docs/development/apps/api/testing.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +46 -4
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/base-template.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/index.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/notes.html +46 -4
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +52 -6
- nautobot/project-static/docs/development/apps/api/views/urls.html +46 -4
- nautobot/project-static/docs/development/apps/index.html +46 -4
- nautobot/project-static/docs/development/apps/migration/code-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +46 -4
- nautobot/project-static/docs/development/apps/migration/from-v1.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +46 -4
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +50 -8
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +46 -4
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +211 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +46 -4
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +46 -4
- nautobot/project-static/docs/development/core/application-registry.html +46 -4
- nautobot/project-static/docs/development/core/best-practices.html +46 -4
- nautobot/project-static/docs/development/core/bootstrap-ui.html +46 -4
- nautobot/project-static/docs/development/core/caching.html +46 -4
- nautobot/project-static/docs/development/core/controllers.html +46 -4
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +73 -74
- nautobot/project-static/docs/development/core/generic-views.html +46 -4
- nautobot/project-static/docs/development/core/getting-started.html +249 -224
- nautobot/project-static/docs/development/core/homepage.html +49 -7
- nautobot/project-static/docs/development/core/index.html +46 -4
- nautobot/project-static/docs/development/core/{local-k8s.html → minikube-dev-environment-for-k8s-jobs.html} +469 -168
- nautobot/project-static/docs/development/core/model-checklist.html +56 -12
- nautobot/project-static/docs/development/core/model-features.html +46 -4
- nautobot/project-static/docs/development/core/natural-keys.html +46 -4
- nautobot/project-static/docs/development/core/navigation-menu.html +46 -4
- nautobot/project-static/docs/development/core/release-checklist.html +49 -7
- nautobot/project-static/docs/development/core/role-internals.html +46 -4
- nautobot/project-static/docs/development/core/settings.html +46 -4
- nautobot/project-static/docs/development/core/style-guide.html +49 -7
- nautobot/project-static/docs/development/core/templates.html +46 -4
- nautobot/project-static/docs/development/core/testing.html +46 -4
- nautobot/project-static/docs/development/core/ui-component-framework.html +369 -273
- nautobot/project-static/docs/development/core/user-preferences.html +46 -4
- nautobot/project-static/docs/development/index.html +46 -4
- nautobot/project-static/docs/development/jobs/index.html +216 -122
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +46 -4
- nautobot/project-static/docs/index.html +54 -23
- 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/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +47 -7
- nautobot/project-static/docs/overview/design_philosophy.html +46 -4
- nautobot/project-static/docs/release-notes/index.html +52 -12
- nautobot/project-static/docs/release-notes/version-1.0.html +234 -193
- nautobot/project-static/docs/release-notes/version-1.1.html +231 -190
- nautobot/project-static/docs/release-notes/version-1.2.html +306 -265
- nautobot/project-static/docs/release-notes/version-1.3.html +332 -291
- nautobot/project-static/docs/release-notes/version-1.4.html +417 -377
- nautobot/project-static/docs/release-notes/version-1.5.html +605 -566
- nautobot/project-static/docs/release-notes/version-1.6.html +904 -447
- nautobot/project-static/docs/release-notes/version-2.0.html +528 -489
- nautobot/project-static/docs/release-notes/version-2.1.html +363 -324
- nautobot/project-static/docs/release-notes/version-2.2.html +356 -317
- nautobot/project-static/docs/release-notes/version-2.3.html +997 -352
- nautobot/project-static/docs/release-notes/version-2.4.html +525 -101
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +295 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +48 -6
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +46 -4
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +110 -8
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +46 -4
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +48 -6
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +66 -8
- nautobot/project-static/docs/user-guide/administration/installation/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +47 -5
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +46 -4
- nautobot/project-static/docs/user-guide/administration/installation/services.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +46 -4
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +46 -4
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +49 -8
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +46 -4
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +50 -12
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +49 -7
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +46 -4
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +51 -7
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +46 -4
- 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/ip-address-merge-tool.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +46 -4
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +49 -7
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +9444 -0
- nautobot/project-static/docs/user-guide/index.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +50 -8
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +50 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +49 -7
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9722 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +47 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +94 -25
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +74 -5
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +46 -4
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +46 -4
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -9
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/METADATA +6 -6
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/RECORD +600 -550
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.1.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.49">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -2112,6 +2112,27 @@
|
|
|
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
|
+
|
|
2115
2136
|
</ul>
|
|
2116
2137
|
</nav>
|
|
2117
2138
|
|
|
@@ -5131,6 +5152,27 @@
|
|
|
5131
5152
|
|
|
5132
5153
|
|
|
5133
5154
|
|
|
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
|
+
|
|
5134
5176
|
<li class="md-nav__item">
|
|
5135
5177
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5178
|
|
|
@@ -8055,11 +8097,11 @@
|
|
|
8055
8097
|
|
|
8056
8098
|
|
|
8057
8099
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="../development/core/
|
|
8100
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8059
8101
|
|
|
8060
8102
|
|
|
8061
8103
|
<span class="md-ellipsis">
|
|
8062
|
-
|
|
8104
|
+
Minikube Dev Environment for K8s Jobs
|
|
8063
8105
|
</span>
|
|
8064
8106
|
|
|
8065
8107
|
|
|
@@ -8671,6 +8713,195 @@
|
|
|
8671
8713
|
</ul>
|
|
8672
8714
|
</nav>
|
|
8673
8715
|
|
|
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
|
+
|
|
8674
8905
|
</li>
|
|
8675
8906
|
|
|
8676
8907
|
<li class="md-nav__item">
|
|
@@ -8684,18 +8915,18 @@
|
|
|
8684
8915
|
<ul class="md-nav__list">
|
|
8685
8916
|
|
|
8686
8917
|
<li class="md-nav__item">
|
|
8687
|
-
<a href="#security" class="md-nav__link">
|
|
8918
|
+
<a href="#security-in-v1623" class="md-nav__link">
|
|
8688
8919
|
<span class="md-ellipsis">
|
|
8689
|
-
Security
|
|
8920
|
+
Security in v1.6.23
|
|
8690
8921
|
</span>
|
|
8691
8922
|
</a>
|
|
8692
8923
|
|
|
8693
8924
|
</li>
|
|
8694
8925
|
|
|
8695
8926
|
<li class="md-nav__item">
|
|
8696
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8927
|
+
<a href="#housekeeping-in-v1623" class="md-nav__link">
|
|
8697
8928
|
<span class="md-ellipsis">
|
|
8698
|
-
Housekeeping
|
|
8929
|
+
Housekeeping in v1.6.23
|
|
8699
8930
|
</span>
|
|
8700
8931
|
</a>
|
|
8701
8932
|
|
|
@@ -8717,27 +8948,27 @@
|
|
|
8717
8948
|
<ul class="md-nav__list">
|
|
8718
8949
|
|
|
8719
8950
|
<li class="md-nav__item">
|
|
8720
|
-
<a href="#
|
|
8951
|
+
<a href="#security-in-v1622" class="md-nav__link">
|
|
8721
8952
|
<span class="md-ellipsis">
|
|
8722
|
-
Security
|
|
8953
|
+
Security in v1.6.22
|
|
8723
8954
|
</span>
|
|
8724
8955
|
</a>
|
|
8725
8956
|
|
|
8726
8957
|
</li>
|
|
8727
8958
|
|
|
8728
8959
|
<li class="md-nav__item">
|
|
8729
|
-
<a href="#
|
|
8960
|
+
<a href="#added-in-v1622" class="md-nav__link">
|
|
8730
8961
|
<span class="md-ellipsis">
|
|
8731
|
-
Added
|
|
8962
|
+
Added in v1.6.22
|
|
8732
8963
|
</span>
|
|
8733
8964
|
</a>
|
|
8734
8965
|
|
|
8735
8966
|
</li>
|
|
8736
8967
|
|
|
8737
8968
|
<li class="md-nav__item">
|
|
8738
|
-
<a href="#fixed" class="md-nav__link">
|
|
8969
|
+
<a href="#fixed-in-v1622" class="md-nav__link">
|
|
8739
8970
|
<span class="md-ellipsis">
|
|
8740
|
-
Fixed
|
|
8971
|
+
Fixed in v1.6.22
|
|
8741
8972
|
</span>
|
|
8742
8973
|
</a>
|
|
8743
8974
|
|
|
@@ -8759,9 +8990,9 @@
|
|
|
8759
8990
|
<ul class="md-nav__list">
|
|
8760
8991
|
|
|
8761
8992
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
8993
|
+
<a href="#security-in-v1621" class="md-nav__link">
|
|
8763
8994
|
<span class="md-ellipsis">
|
|
8764
|
-
Security
|
|
8995
|
+
Security in v1.6.21
|
|
8765
8996
|
</span>
|
|
8766
8997
|
</a>
|
|
8767
8998
|
|
|
@@ -8783,18 +9014,18 @@
|
|
|
8783
9014
|
<ul class="md-nav__list">
|
|
8784
9015
|
|
|
8785
9016
|
<li class="md-nav__item">
|
|
8786
|
-
<a href="#
|
|
9017
|
+
<a href="#security-in-v1620" class="md-nav__link">
|
|
8787
9018
|
<span class="md-ellipsis">
|
|
8788
|
-
Security
|
|
9019
|
+
Security in v1.6.20
|
|
8789
9020
|
</span>
|
|
8790
9021
|
</a>
|
|
8791
9022
|
|
|
8792
9023
|
</li>
|
|
8793
9024
|
|
|
8794
9025
|
<li class="md-nav__item">
|
|
8795
|
-
<a href="#
|
|
9026
|
+
<a href="#fixed-in-v1620" class="md-nav__link">
|
|
8796
9027
|
<span class="md-ellipsis">
|
|
8797
|
-
Fixed
|
|
9028
|
+
Fixed in v1.6.20
|
|
8798
9029
|
</span>
|
|
8799
9030
|
</a>
|
|
8800
9031
|
|
|
@@ -8816,18 +9047,18 @@
|
|
|
8816
9047
|
<ul class="md-nav__list">
|
|
8817
9048
|
|
|
8818
9049
|
<li class="md-nav__item">
|
|
8819
|
-
<a href="#
|
|
9050
|
+
<a href="#security-in-v1619" class="md-nav__link">
|
|
8820
9051
|
<span class="md-ellipsis">
|
|
8821
|
-
Security
|
|
9052
|
+
Security in v1.6.19
|
|
8822
9053
|
</span>
|
|
8823
9054
|
</a>
|
|
8824
9055
|
|
|
8825
9056
|
</li>
|
|
8826
9057
|
|
|
8827
9058
|
<li class="md-nav__item">
|
|
8828
|
-
<a href="#
|
|
9059
|
+
<a href="#fixed-in-v1619" class="md-nav__link">
|
|
8829
9060
|
<span class="md-ellipsis">
|
|
8830
|
-
Fixed
|
|
9061
|
+
Fixed in v1.6.19
|
|
8831
9062
|
</span>
|
|
8832
9063
|
</a>
|
|
8833
9064
|
|
|
@@ -8849,18 +9080,18 @@
|
|
|
8849
9080
|
<ul class="md-nav__list">
|
|
8850
9081
|
|
|
8851
9082
|
<li class="md-nav__item">
|
|
8852
|
-
<a href="#
|
|
9083
|
+
<a href="#security-in-v1618" class="md-nav__link">
|
|
8853
9084
|
<span class="md-ellipsis">
|
|
8854
|
-
Security
|
|
9085
|
+
Security in v1.6.18
|
|
8855
9086
|
</span>
|
|
8856
9087
|
</a>
|
|
8857
9088
|
|
|
8858
9089
|
</li>
|
|
8859
9090
|
|
|
8860
9091
|
<li class="md-nav__item">
|
|
8861
|
-
<a href="#dependencies" class="md-nav__link">
|
|
9092
|
+
<a href="#dependencies-in-v1618" class="md-nav__link">
|
|
8862
9093
|
<span class="md-ellipsis">
|
|
8863
|
-
Dependencies
|
|
9094
|
+
Dependencies in v1.6.18
|
|
8864
9095
|
</span>
|
|
8865
9096
|
</a>
|
|
8866
9097
|
|
|
@@ -8882,9 +9113,9 @@
|
|
|
8882
9113
|
<ul class="md-nav__list">
|
|
8883
9114
|
|
|
8884
9115
|
<li class="md-nav__item">
|
|
8885
|
-
<a href="#
|
|
9116
|
+
<a href="#dependencies-in-v1617" class="md-nav__link">
|
|
8886
9117
|
<span class="md-ellipsis">
|
|
8887
|
-
Dependencies
|
|
9118
|
+
Dependencies in v1.6.17
|
|
8888
9119
|
</span>
|
|
8889
9120
|
</a>
|
|
8890
9121
|
|
|
@@ -8906,54 +9137,54 @@
|
|
|
8906
9137
|
<ul class="md-nav__list">
|
|
8907
9138
|
|
|
8908
9139
|
<li class="md-nav__item">
|
|
8909
|
-
<a href="#
|
|
9140
|
+
<a href="#security-in-v1616" class="md-nav__link">
|
|
8910
9141
|
<span class="md-ellipsis">
|
|
8911
|
-
Security
|
|
9142
|
+
Security in v1.6.16
|
|
8912
9143
|
</span>
|
|
8913
9144
|
</a>
|
|
8914
9145
|
|
|
8915
9146
|
</li>
|
|
8916
9147
|
|
|
8917
9148
|
<li class="md-nav__item">
|
|
8918
|
-
<a href="#
|
|
9149
|
+
<a href="#added-in-v1616" class="md-nav__link">
|
|
8919
9150
|
<span class="md-ellipsis">
|
|
8920
|
-
Added
|
|
9151
|
+
Added in v1.6.16
|
|
8921
9152
|
</span>
|
|
8922
9153
|
</a>
|
|
8923
9154
|
|
|
8924
9155
|
</li>
|
|
8925
9156
|
|
|
8926
9157
|
<li class="md-nav__item">
|
|
8927
|
-
<a href="#
|
|
9158
|
+
<a href="#changed-in-v1616" class="md-nav__link">
|
|
8928
9159
|
<span class="md-ellipsis">
|
|
8929
|
-
Changed
|
|
9160
|
+
Changed in v1.6.16
|
|
8930
9161
|
</span>
|
|
8931
9162
|
</a>
|
|
8932
9163
|
|
|
8933
9164
|
</li>
|
|
8934
9165
|
|
|
8935
9166
|
<li class="md-nav__item">
|
|
8936
|
-
<a href="#
|
|
9167
|
+
<a href="#fixed-in-v1616" class="md-nav__link">
|
|
8937
9168
|
<span class="md-ellipsis">
|
|
8938
|
-
Fixed
|
|
9169
|
+
Fixed in v1.6.16
|
|
8939
9170
|
</span>
|
|
8940
9171
|
</a>
|
|
8941
9172
|
|
|
8942
9173
|
</li>
|
|
8943
9174
|
|
|
8944
9175
|
<li class="md-nav__item">
|
|
8945
|
-
<a href="#documentation" class="md-nav__link">
|
|
9176
|
+
<a href="#documentation-in-v1616" class="md-nav__link">
|
|
8946
9177
|
<span class="md-ellipsis">
|
|
8947
|
-
Documentation
|
|
9178
|
+
Documentation in v1.6.16
|
|
8948
9179
|
</span>
|
|
8949
9180
|
</a>
|
|
8950
9181
|
|
|
8951
9182
|
</li>
|
|
8952
9183
|
|
|
8953
9184
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
9185
|
+
<a href="#housekeeping-in-v1616" class="md-nav__link">
|
|
8955
9186
|
<span class="md-ellipsis">
|
|
8956
|
-
Housekeeping
|
|
9187
|
+
Housekeeping in v1.6.16
|
|
8957
9188
|
</span>
|
|
8958
9189
|
</a>
|
|
8959
9190
|
|
|
@@ -8975,27 +9206,27 @@
|
|
|
8975
9206
|
<ul class="md-nav__list">
|
|
8976
9207
|
|
|
8977
9208
|
<li class="md-nav__item">
|
|
8978
|
-
<a href="#
|
|
9209
|
+
<a href="#added-in-v1615" class="md-nav__link">
|
|
8979
9210
|
<span class="md-ellipsis">
|
|
8980
|
-
Added
|
|
9211
|
+
Added in v1.6.15
|
|
8981
9212
|
</span>
|
|
8982
9213
|
</a>
|
|
8983
9214
|
|
|
8984
9215
|
</li>
|
|
8985
9216
|
|
|
8986
9217
|
<li class="md-nav__item">
|
|
8987
|
-
<a href="#
|
|
9218
|
+
<a href="#fixed-in-v1615" class="md-nav__link">
|
|
8988
9219
|
<span class="md-ellipsis">
|
|
8989
|
-
Fixed
|
|
9220
|
+
Fixed in v1.6.15
|
|
8990
9221
|
</span>
|
|
8991
9222
|
</a>
|
|
8992
9223
|
|
|
8993
9224
|
</li>
|
|
8994
9225
|
|
|
8995
9226
|
<li class="md-nav__item">
|
|
8996
|
-
<a href="#
|
|
9227
|
+
<a href="#housekeeping-in-v1615" class="md-nav__link">
|
|
8997
9228
|
<span class="md-ellipsis">
|
|
8998
|
-
Housekeeping
|
|
9229
|
+
Housekeeping in v1.6.15
|
|
8999
9230
|
</span>
|
|
9000
9231
|
</a>
|
|
9001
9232
|
|
|
@@ -9017,9 +9248,9 @@
|
|
|
9017
9248
|
<ul class="md-nav__list">
|
|
9018
9249
|
|
|
9019
9250
|
<li class="md-nav__item">
|
|
9020
|
-
<a href="#
|
|
9251
|
+
<a href="#fixed-in-v1614" class="md-nav__link">
|
|
9021
9252
|
<span class="md-ellipsis">
|
|
9022
|
-
Fixed
|
|
9253
|
+
Fixed in v1.6.14
|
|
9023
9254
|
</span>
|
|
9024
9255
|
</a>
|
|
9025
9256
|
|
|
@@ -9041,36 +9272,27 @@
|
|
|
9041
9272
|
<ul class="md-nav__list">
|
|
9042
9273
|
|
|
9043
9274
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
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">
|
|
9275
|
+
<a href="#added-in-v1613" class="md-nav__link">
|
|
9054
9276
|
<span class="md-ellipsis">
|
|
9055
|
-
Added
|
|
9277
|
+
Added in v1.6.13
|
|
9056
9278
|
</span>
|
|
9057
9279
|
</a>
|
|
9058
9280
|
|
|
9059
9281
|
</li>
|
|
9060
9282
|
|
|
9061
9283
|
<li class="md-nav__item">
|
|
9062
|
-
<a href="#
|
|
9284
|
+
<a href="#fixed-in-v1613" class="md-nav__link">
|
|
9063
9285
|
<span class="md-ellipsis">
|
|
9064
|
-
Fixed
|
|
9286
|
+
Fixed in v1.6.13
|
|
9065
9287
|
</span>
|
|
9066
9288
|
</a>
|
|
9067
9289
|
|
|
9068
9290
|
</li>
|
|
9069
9291
|
|
|
9070
9292
|
<li class="md-nav__item">
|
|
9071
|
-
<a href="#
|
|
9293
|
+
<a href="#documentation-in-v1613" class="md-nav__link">
|
|
9072
9294
|
<span class="md-ellipsis">
|
|
9073
|
-
Documentation
|
|
9295
|
+
Documentation in v1.6.13
|
|
9074
9296
|
</span>
|
|
9075
9297
|
</a>
|
|
9076
9298
|
|
|
@@ -9092,36 +9314,36 @@
|
|
|
9092
9314
|
<ul class="md-nav__list">
|
|
9093
9315
|
|
|
9094
9316
|
<li class="md-nav__item">
|
|
9095
|
-
<a href="#
|
|
9317
|
+
<a href="#security-in-v1612" class="md-nav__link">
|
|
9096
9318
|
<span class="md-ellipsis">
|
|
9097
|
-
|
|
9319
|
+
Security in v1.6.12
|
|
9098
9320
|
</span>
|
|
9099
9321
|
</a>
|
|
9100
9322
|
|
|
9101
9323
|
</li>
|
|
9102
9324
|
|
|
9103
9325
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9326
|
+
<a href="#added-in-v1612" class="md-nav__link">
|
|
9105
9327
|
<span class="md-ellipsis">
|
|
9106
|
-
|
|
9328
|
+
Added in v1.6.12
|
|
9107
9329
|
</span>
|
|
9108
9330
|
</a>
|
|
9109
9331
|
|
|
9110
9332
|
</li>
|
|
9111
9333
|
|
|
9112
9334
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9335
|
+
<a href="#changed-in-v1612" class="md-nav__link">
|
|
9114
9336
|
<span class="md-ellipsis">
|
|
9115
|
-
Changed
|
|
9337
|
+
Changed in v1.6.12
|
|
9116
9338
|
</span>
|
|
9117
9339
|
</a>
|
|
9118
9340
|
|
|
9119
9341
|
</li>
|
|
9120
9342
|
|
|
9121
9343
|
<li class="md-nav__item">
|
|
9122
|
-
<a href="#
|
|
9344
|
+
<a href="#fixed-in-v1612" class="md-nav__link">
|
|
9123
9345
|
<span class="md-ellipsis">
|
|
9124
|
-
Fixed
|
|
9346
|
+
Fixed in v1.6.12
|
|
9125
9347
|
</span>
|
|
9126
9348
|
</a>
|
|
9127
9349
|
|
|
@@ -9143,27 +9365,27 @@
|
|
|
9143
9365
|
<ul class="md-nav__list">
|
|
9144
9366
|
|
|
9145
9367
|
<li class="md-nav__item">
|
|
9146
|
-
<a href="#
|
|
9368
|
+
<a href="#security-in-v1611" class="md-nav__link">
|
|
9147
9369
|
<span class="md-ellipsis">
|
|
9148
|
-
Security
|
|
9370
|
+
Security in v1.6.11
|
|
9149
9371
|
</span>
|
|
9150
9372
|
</a>
|
|
9151
9373
|
|
|
9152
9374
|
</li>
|
|
9153
9375
|
|
|
9154
9376
|
<li class="md-nav__item">
|
|
9155
|
-
<a href="#
|
|
9377
|
+
<a href="#added-in-v1611" class="md-nav__link">
|
|
9156
9378
|
<span class="md-ellipsis">
|
|
9157
|
-
Added
|
|
9379
|
+
Added in v1.6.11
|
|
9158
9380
|
</span>
|
|
9159
9381
|
</a>
|
|
9160
9382
|
|
|
9161
9383
|
</li>
|
|
9162
9384
|
|
|
9163
9385
|
<li class="md-nav__item">
|
|
9164
|
-
<a href="#
|
|
9386
|
+
<a href="#fixed-in-v1611" class="md-nav__link">
|
|
9165
9387
|
<span class="md-ellipsis">
|
|
9166
|
-
Fixed
|
|
9388
|
+
Fixed in v1.6.11
|
|
9167
9389
|
</span>
|
|
9168
9390
|
</a>
|
|
9169
9391
|
|
|
@@ -9185,36 +9407,36 @@
|
|
|
9185
9407
|
<ul class="md-nav__list">
|
|
9186
9408
|
|
|
9187
9409
|
<li class="md-nav__item">
|
|
9188
|
-
<a href="#
|
|
9410
|
+
<a href="#security-in-v1610" class="md-nav__link">
|
|
9189
9411
|
<span class="md-ellipsis">
|
|
9190
|
-
Security
|
|
9412
|
+
Security in v1.6.10
|
|
9191
9413
|
</span>
|
|
9192
9414
|
</a>
|
|
9193
9415
|
|
|
9194
9416
|
</li>
|
|
9195
9417
|
|
|
9196
9418
|
<li class="md-nav__item">
|
|
9197
|
-
<a href="#
|
|
9419
|
+
<a href="#added-in-v1610" class="md-nav__link">
|
|
9198
9420
|
<span class="md-ellipsis">
|
|
9199
|
-
Added
|
|
9421
|
+
Added in v1.6.10
|
|
9200
9422
|
</span>
|
|
9201
9423
|
</a>
|
|
9202
9424
|
|
|
9203
9425
|
</li>
|
|
9204
9426
|
|
|
9205
9427
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9428
|
+
<a href="#changed-in-v1610" class="md-nav__link">
|
|
9207
9429
|
<span class="md-ellipsis">
|
|
9208
|
-
Changed
|
|
9430
|
+
Changed in v1.6.10
|
|
9209
9431
|
</span>
|
|
9210
9432
|
</a>
|
|
9211
9433
|
|
|
9212
9434
|
</li>
|
|
9213
9435
|
|
|
9214
9436
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9437
|
+
<a href="#dependencies-in-v1610" class="md-nav__link">
|
|
9216
9438
|
<span class="md-ellipsis">
|
|
9217
|
-
Dependencies
|
|
9439
|
+
Dependencies in v1.6.10
|
|
9218
9440
|
</span>
|
|
9219
9441
|
</a>
|
|
9220
9442
|
|
|
@@ -9236,9 +9458,9 @@
|
|
|
9236
9458
|
<ul class="md-nav__list">
|
|
9237
9459
|
|
|
9238
9460
|
<li class="md-nav__item">
|
|
9239
|
-
<a href="#
|
|
9461
|
+
<a href="#fixed-in-v169" class="md-nav__link">
|
|
9240
9462
|
<span class="md-ellipsis">
|
|
9241
|
-
Fixed
|
|
9463
|
+
Fixed in v1.6.9
|
|
9242
9464
|
</span>
|
|
9243
9465
|
</a>
|
|
9244
9466
|
|
|
@@ -9260,45 +9482,45 @@
|
|
|
9260
9482
|
<ul class="md-nav__list">
|
|
9261
9483
|
|
|
9262
9484
|
<li class="md-nav__item">
|
|
9263
|
-
<a href="#
|
|
9485
|
+
<a href="#security-in-v168" class="md-nav__link">
|
|
9264
9486
|
<span class="md-ellipsis">
|
|
9265
|
-
Security
|
|
9487
|
+
Security in v1.6.8
|
|
9266
9488
|
</span>
|
|
9267
9489
|
</a>
|
|
9268
9490
|
|
|
9269
9491
|
</li>
|
|
9270
9492
|
|
|
9271
9493
|
<li class="md-nav__item">
|
|
9272
|
-
<a href="#
|
|
9494
|
+
<a href="#added-in-v168" class="md-nav__link">
|
|
9273
9495
|
<span class="md-ellipsis">
|
|
9274
|
-
Added
|
|
9496
|
+
Added in v1.6.8
|
|
9275
9497
|
</span>
|
|
9276
9498
|
</a>
|
|
9277
9499
|
|
|
9278
9500
|
</li>
|
|
9279
9501
|
|
|
9280
9502
|
<li class="md-nav__item">
|
|
9281
|
-
<a href="#
|
|
9503
|
+
<a href="#removed-in-v168" class="md-nav__link">
|
|
9282
9504
|
<span class="md-ellipsis">
|
|
9283
|
-
Removed
|
|
9505
|
+
Removed in v1.6.8
|
|
9284
9506
|
</span>
|
|
9285
9507
|
</a>
|
|
9286
9508
|
|
|
9287
9509
|
</li>
|
|
9288
9510
|
|
|
9289
9511
|
<li class="md-nav__item">
|
|
9290
|
-
<a href="#
|
|
9512
|
+
<a href="#fixed-in-v168" class="md-nav__link">
|
|
9291
9513
|
<span class="md-ellipsis">
|
|
9292
|
-
Fixed
|
|
9514
|
+
Fixed in v1.6.8
|
|
9293
9515
|
</span>
|
|
9294
9516
|
</a>
|
|
9295
9517
|
|
|
9296
9518
|
</li>
|
|
9297
9519
|
|
|
9298
9520
|
<li class="md-nav__item">
|
|
9299
|
-
<a href="#
|
|
9521
|
+
<a href="#housekeeping-in-v168" class="md-nav__link">
|
|
9300
9522
|
<span class="md-ellipsis">
|
|
9301
|
-
Housekeeping
|
|
9523
|
+
Housekeeping in v1.6.8
|
|
9302
9524
|
</span>
|
|
9303
9525
|
</a>
|
|
9304
9526
|
|
|
@@ -9320,36 +9542,36 @@
|
|
|
9320
9542
|
<ul class="md-nav__list">
|
|
9321
9543
|
|
|
9322
9544
|
<li class="md-nav__item">
|
|
9323
|
-
<a href="#
|
|
9545
|
+
<a href="#security-in-v167" class="md-nav__link">
|
|
9324
9546
|
<span class="md-ellipsis">
|
|
9325
|
-
Security
|
|
9547
|
+
Security in v1.6.7
|
|
9326
9548
|
</span>
|
|
9327
9549
|
</a>
|
|
9328
9550
|
|
|
9329
9551
|
</li>
|
|
9330
9552
|
|
|
9331
9553
|
<li class="md-nav__item">
|
|
9332
|
-
<a href="#
|
|
9554
|
+
<a href="#added-in-v167" class="md-nav__link">
|
|
9333
9555
|
<span class="md-ellipsis">
|
|
9334
|
-
Added
|
|
9556
|
+
Added in v1.6.7
|
|
9335
9557
|
</span>
|
|
9336
9558
|
</a>
|
|
9337
9559
|
|
|
9338
9560
|
</li>
|
|
9339
9561
|
|
|
9340
9562
|
<li class="md-nav__item">
|
|
9341
|
-
<a href="#
|
|
9563
|
+
<a href="#removed-in-v167" class="md-nav__link">
|
|
9342
9564
|
<span class="md-ellipsis">
|
|
9343
|
-
Removed
|
|
9565
|
+
Removed in v1.6.7
|
|
9344
9566
|
</span>
|
|
9345
9567
|
</a>
|
|
9346
9568
|
|
|
9347
9569
|
</li>
|
|
9348
9570
|
|
|
9349
9571
|
<li class="md-nav__item">
|
|
9350
|
-
<a href="#
|
|
9572
|
+
<a href="#fixed-in-v167" class="md-nav__link">
|
|
9351
9573
|
<span class="md-ellipsis">
|
|
9352
|
-
Fixed
|
|
9574
|
+
Fixed in v1.6.7
|
|
9353
9575
|
</span>
|
|
9354
9576
|
</a>
|
|
9355
9577
|
|
|
@@ -9371,45 +9593,45 @@
|
|
|
9371
9593
|
<ul class="md-nav__list">
|
|
9372
9594
|
|
|
9373
9595
|
<li class="md-nav__item">
|
|
9374
|
-
<a href="#
|
|
9596
|
+
<a href="#security-in-v166" class="md-nav__link">
|
|
9375
9597
|
<span class="md-ellipsis">
|
|
9376
|
-
Security
|
|
9598
|
+
Security in v1.6.6
|
|
9377
9599
|
</span>
|
|
9378
9600
|
</a>
|
|
9379
9601
|
|
|
9380
9602
|
</li>
|
|
9381
9603
|
|
|
9382
9604
|
<li class="md-nav__item">
|
|
9383
|
-
<a href="#
|
|
9605
|
+
<a href="#changed-in-v166" class="md-nav__link">
|
|
9384
9606
|
<span class="md-ellipsis">
|
|
9385
|
-
Changed
|
|
9607
|
+
Changed in v1.6.6
|
|
9386
9608
|
</span>
|
|
9387
9609
|
</a>
|
|
9388
9610
|
|
|
9389
9611
|
</li>
|
|
9390
9612
|
|
|
9391
9613
|
<li class="md-nav__item">
|
|
9392
|
-
<a href="#
|
|
9614
|
+
<a href="#fixed-in-v166" class="md-nav__link">
|
|
9393
9615
|
<span class="md-ellipsis">
|
|
9394
|
-
Fixed
|
|
9616
|
+
Fixed in v1.6.6
|
|
9395
9617
|
</span>
|
|
9396
9618
|
</a>
|
|
9397
9619
|
|
|
9398
9620
|
</li>
|
|
9399
9621
|
|
|
9400
9622
|
<li class="md-nav__item">
|
|
9401
|
-
<a href="#
|
|
9623
|
+
<a href="#dependencies-in-v166" class="md-nav__link">
|
|
9402
9624
|
<span class="md-ellipsis">
|
|
9403
|
-
Dependencies
|
|
9625
|
+
Dependencies in v1.6.6
|
|
9404
9626
|
</span>
|
|
9405
9627
|
</a>
|
|
9406
9628
|
|
|
9407
9629
|
</li>
|
|
9408
9630
|
|
|
9409
9631
|
<li class="md-nav__item">
|
|
9410
|
-
<a href="#
|
|
9632
|
+
<a href="#housekeeping-in-v166" class="md-nav__link">
|
|
9411
9633
|
<span class="md-ellipsis">
|
|
9412
|
-
Housekeeping
|
|
9634
|
+
Housekeeping in v1.6.6
|
|
9413
9635
|
</span>
|
|
9414
9636
|
</a>
|
|
9415
9637
|
|
|
@@ -9431,45 +9653,45 @@
|
|
|
9431
9653
|
<ul class="md-nav__list">
|
|
9432
9654
|
|
|
9433
9655
|
<li class="md-nav__item">
|
|
9434
|
-
<a href="#
|
|
9656
|
+
<a href="#security-in-v165" class="md-nav__link">
|
|
9435
9657
|
<span class="md-ellipsis">
|
|
9436
|
-
Security
|
|
9658
|
+
Security in v1.6.5
|
|
9437
9659
|
</span>
|
|
9438
9660
|
</a>
|
|
9439
9661
|
|
|
9440
9662
|
</li>
|
|
9441
9663
|
|
|
9442
9664
|
<li class="md-nav__item">
|
|
9443
|
-
<a href="#
|
|
9665
|
+
<a href="#added-in-v165" class="md-nav__link">
|
|
9444
9666
|
<span class="md-ellipsis">
|
|
9445
|
-
Added
|
|
9667
|
+
Added in v1.6.5
|
|
9446
9668
|
</span>
|
|
9447
9669
|
</a>
|
|
9448
9670
|
|
|
9449
9671
|
</li>
|
|
9450
9672
|
|
|
9451
9673
|
<li class="md-nav__item">
|
|
9452
|
-
<a href="#
|
|
9674
|
+
<a href="#fixed-in-v165" class="md-nav__link">
|
|
9453
9675
|
<span class="md-ellipsis">
|
|
9454
|
-
Fixed
|
|
9676
|
+
Fixed in v1.6.5
|
|
9455
9677
|
</span>
|
|
9456
9678
|
</a>
|
|
9457
9679
|
|
|
9458
9680
|
</li>
|
|
9459
9681
|
|
|
9460
9682
|
<li class="md-nav__item">
|
|
9461
|
-
<a href="#
|
|
9683
|
+
<a href="#documentation-in-v165" class="md-nav__link">
|
|
9462
9684
|
<span class="md-ellipsis">
|
|
9463
|
-
Documentation
|
|
9685
|
+
Documentation in v1.6.5
|
|
9464
9686
|
</span>
|
|
9465
9687
|
</a>
|
|
9466
9688
|
|
|
9467
9689
|
</li>
|
|
9468
9690
|
|
|
9469
9691
|
<li class="md-nav__item">
|
|
9470
|
-
<a href="#
|
|
9692
|
+
<a href="#housekeeping-in-v165" class="md-nav__link">
|
|
9471
9693
|
<span class="md-ellipsis">
|
|
9472
|
-
Housekeeping
|
|
9694
|
+
Housekeeping in v1.6.5
|
|
9473
9695
|
</span>
|
|
9474
9696
|
</a>
|
|
9475
9697
|
|
|
@@ -9491,36 +9713,36 @@
|
|
|
9491
9713
|
<ul class="md-nav__list">
|
|
9492
9714
|
|
|
9493
9715
|
<li class="md-nav__item">
|
|
9494
|
-
<a href="#
|
|
9716
|
+
<a href="#added-in-v164" class="md-nav__link">
|
|
9495
9717
|
<span class="md-ellipsis">
|
|
9496
|
-
Added
|
|
9718
|
+
Added in v1.6.4
|
|
9497
9719
|
</span>
|
|
9498
9720
|
</a>
|
|
9499
9721
|
|
|
9500
9722
|
</li>
|
|
9501
9723
|
|
|
9502
9724
|
<li class="md-nav__item">
|
|
9503
|
-
<a href="#
|
|
9725
|
+
<a href="#changed-in-v164" class="md-nav__link">
|
|
9504
9726
|
<span class="md-ellipsis">
|
|
9505
|
-
Changed
|
|
9727
|
+
Changed in v1.6.4
|
|
9506
9728
|
</span>
|
|
9507
9729
|
</a>
|
|
9508
9730
|
|
|
9509
9731
|
</li>
|
|
9510
9732
|
|
|
9511
9733
|
<li class="md-nav__item">
|
|
9512
|
-
<a href="#
|
|
9734
|
+
<a href="#removed-in-v164" class="md-nav__link">
|
|
9513
9735
|
<span class="md-ellipsis">
|
|
9514
|
-
Removed
|
|
9736
|
+
Removed in v1.6.4
|
|
9515
9737
|
</span>
|
|
9516
9738
|
</a>
|
|
9517
9739
|
|
|
9518
9740
|
</li>
|
|
9519
9741
|
|
|
9520
9742
|
<li class="md-nav__item">
|
|
9521
|
-
<a href="#
|
|
9743
|
+
<a href="#housekeeping-in-v164" class="md-nav__link">
|
|
9522
9744
|
<span class="md-ellipsis">
|
|
9523
|
-
Housekeeping
|
|
9745
|
+
Housekeeping in v1.6.4
|
|
9524
9746
|
</span>
|
|
9525
9747
|
</a>
|
|
9526
9748
|
|
|
@@ -9542,36 +9764,36 @@
|
|
|
9542
9764
|
<ul class="md-nav__list">
|
|
9543
9765
|
|
|
9544
9766
|
<li class="md-nav__item">
|
|
9545
|
-
<a href="#
|
|
9767
|
+
<a href="#security-in-v163" class="md-nav__link">
|
|
9546
9768
|
<span class="md-ellipsis">
|
|
9547
|
-
Security
|
|
9769
|
+
Security in v1.6.3
|
|
9548
9770
|
</span>
|
|
9549
9771
|
</a>
|
|
9550
9772
|
|
|
9551
9773
|
</li>
|
|
9552
9774
|
|
|
9553
9775
|
<li class="md-nav__item">
|
|
9554
|
-
<a href="#
|
|
9776
|
+
<a href="#added-in-v163" class="md-nav__link">
|
|
9555
9777
|
<span class="md-ellipsis">
|
|
9556
|
-
Added
|
|
9778
|
+
Added in v1.6.3
|
|
9557
9779
|
</span>
|
|
9558
9780
|
</a>
|
|
9559
9781
|
|
|
9560
9782
|
</li>
|
|
9561
9783
|
|
|
9562
9784
|
<li class="md-nav__item">
|
|
9563
|
-
<a href="#
|
|
9785
|
+
<a href="#fixed-in-v163" class="md-nav__link">
|
|
9564
9786
|
<span class="md-ellipsis">
|
|
9565
|
-
Fixed
|
|
9787
|
+
Fixed in v1.6.3
|
|
9566
9788
|
</span>
|
|
9567
9789
|
</a>
|
|
9568
9790
|
|
|
9569
9791
|
</li>
|
|
9570
9792
|
|
|
9571
9793
|
<li class="md-nav__item">
|
|
9572
|
-
<a href="#
|
|
9794
|
+
<a href="#housekeeping-in-v163" class="md-nav__link">
|
|
9573
9795
|
<span class="md-ellipsis">
|
|
9574
|
-
Housekeeping
|
|
9796
|
+
Housekeeping in v1.6.3
|
|
9575
9797
|
</span>
|
|
9576
9798
|
</a>
|
|
9577
9799
|
|
|
@@ -9593,45 +9815,45 @@
|
|
|
9593
9815
|
<ul class="md-nav__list">
|
|
9594
9816
|
|
|
9595
9817
|
<li class="md-nav__item">
|
|
9596
|
-
<a href="#
|
|
9818
|
+
<a href="#added-in-v162" class="md-nav__link">
|
|
9597
9819
|
<span class="md-ellipsis">
|
|
9598
|
-
Added
|
|
9820
|
+
Added in v1.6.2
|
|
9599
9821
|
</span>
|
|
9600
9822
|
</a>
|
|
9601
9823
|
|
|
9602
9824
|
</li>
|
|
9603
9825
|
|
|
9604
9826
|
<li class="md-nav__item">
|
|
9605
|
-
<a href="#
|
|
9827
|
+
<a href="#changed-in-v162" class="md-nav__link">
|
|
9606
9828
|
<span class="md-ellipsis">
|
|
9607
|
-
Changed
|
|
9829
|
+
Changed in v1.6.2
|
|
9608
9830
|
</span>
|
|
9609
9831
|
</a>
|
|
9610
9832
|
|
|
9611
9833
|
</li>
|
|
9612
9834
|
|
|
9613
9835
|
<li class="md-nav__item">
|
|
9614
|
-
<a href="#
|
|
9836
|
+
<a href="#fixed-in-v162" class="md-nav__link">
|
|
9615
9837
|
<span class="md-ellipsis">
|
|
9616
|
-
Fixed
|
|
9838
|
+
Fixed in v1.6.2
|
|
9617
9839
|
</span>
|
|
9618
9840
|
</a>
|
|
9619
9841
|
|
|
9620
9842
|
</li>
|
|
9621
9843
|
|
|
9622
9844
|
<li class="md-nav__item">
|
|
9623
|
-
<a href="#
|
|
9845
|
+
<a href="#documentation-in-v162" class="md-nav__link">
|
|
9624
9846
|
<span class="md-ellipsis">
|
|
9625
|
-
Documentation
|
|
9847
|
+
Documentation in v1.6.2
|
|
9626
9848
|
</span>
|
|
9627
9849
|
</a>
|
|
9628
9850
|
|
|
9629
9851
|
</li>
|
|
9630
9852
|
|
|
9631
9853
|
<li class="md-nav__item">
|
|
9632
|
-
<a href="#
|
|
9854
|
+
<a href="#housekeeping-in-v162" class="md-nav__link">
|
|
9633
9855
|
<span class="md-ellipsis">
|
|
9634
|
-
Housekeeping
|
|
9856
|
+
Housekeeping in v1.6.2
|
|
9635
9857
|
</span>
|
|
9636
9858
|
</a>
|
|
9637
9859
|
|
|
@@ -9653,36 +9875,36 @@
|
|
|
9653
9875
|
<ul class="md-nav__list">
|
|
9654
9876
|
|
|
9655
9877
|
<li class="md-nav__item">
|
|
9656
|
-
<a href="#
|
|
9878
|
+
<a href="#changed-in-v161" class="md-nav__link">
|
|
9657
9879
|
<span class="md-ellipsis">
|
|
9658
|
-
Changed
|
|
9880
|
+
Changed in v1.6.1
|
|
9659
9881
|
</span>
|
|
9660
9882
|
</a>
|
|
9661
9883
|
|
|
9662
9884
|
</li>
|
|
9663
9885
|
|
|
9664
9886
|
<li class="md-nav__item">
|
|
9665
|
-
<a href="#
|
|
9887
|
+
<a href="#fixed-in-v161" class="md-nav__link">
|
|
9666
9888
|
<span class="md-ellipsis">
|
|
9667
|
-
Fixed
|
|
9889
|
+
Fixed in v1.6.1
|
|
9668
9890
|
</span>
|
|
9669
9891
|
</a>
|
|
9670
9892
|
|
|
9671
9893
|
</li>
|
|
9672
9894
|
|
|
9673
9895
|
<li class="md-nav__item">
|
|
9674
|
-
<a href="#
|
|
9896
|
+
<a href="#documentation-in-v161" class="md-nav__link">
|
|
9675
9897
|
<span class="md-ellipsis">
|
|
9676
|
-
Documentation
|
|
9898
|
+
Documentation in v1.6.1
|
|
9677
9899
|
</span>
|
|
9678
9900
|
</a>
|
|
9679
9901
|
|
|
9680
9902
|
</li>
|
|
9681
9903
|
|
|
9682
9904
|
<li class="md-nav__item">
|
|
9683
|
-
<a href="#
|
|
9905
|
+
<a href="#housekeeping-in-v161" class="md-nav__link">
|
|
9684
9906
|
<span class="md-ellipsis">
|
|
9685
|
-
Housekeeping
|
|
9907
|
+
Housekeeping in v1.6.1
|
|
9686
9908
|
</span>
|
|
9687
9909
|
</a>
|
|
9688
9910
|
|
|
@@ -9704,36 +9926,36 @@
|
|
|
9704
9926
|
<ul class="md-nav__list">
|
|
9705
9927
|
|
|
9706
9928
|
<li class="md-nav__item">
|
|
9707
|
-
<a href="#
|
|
9929
|
+
<a href="#added-in-v160" class="md-nav__link">
|
|
9708
9930
|
<span class="md-ellipsis">
|
|
9709
|
-
Added
|
|
9931
|
+
Added in v1.6.0
|
|
9710
9932
|
</span>
|
|
9711
9933
|
</a>
|
|
9712
9934
|
|
|
9713
9935
|
</li>
|
|
9714
9936
|
|
|
9715
9937
|
<li class="md-nav__item">
|
|
9716
|
-
<a href="#
|
|
9938
|
+
<a href="#fixed-in-v160" class="md-nav__link">
|
|
9717
9939
|
<span class="md-ellipsis">
|
|
9718
|
-
Fixed
|
|
9940
|
+
Fixed in v1.6.0
|
|
9719
9941
|
</span>
|
|
9720
9942
|
</a>
|
|
9721
9943
|
|
|
9722
9944
|
</li>
|
|
9723
9945
|
|
|
9724
9946
|
<li class="md-nav__item">
|
|
9725
|
-
<a href="#
|
|
9947
|
+
<a href="#dependencies-in-v160" class="md-nav__link">
|
|
9726
9948
|
<span class="md-ellipsis">
|
|
9727
|
-
Dependencies
|
|
9949
|
+
Dependencies in v1.6.0
|
|
9728
9950
|
</span>
|
|
9729
9951
|
</a>
|
|
9730
9952
|
|
|
9731
9953
|
</li>
|
|
9732
9954
|
|
|
9733
9955
|
<li class="md-nav__item">
|
|
9734
|
-
<a href="#
|
|
9956
|
+
<a href="#documentation-in-v160" class="md-nav__link">
|
|
9735
9957
|
<span class="md-ellipsis">
|
|
9736
|
-
Documentation
|
|
9958
|
+
Documentation in v1.6.0
|
|
9737
9959
|
</span>
|
|
9738
9960
|
</a>
|
|
9739
9961
|
|
|
@@ -9755,54 +9977,54 @@
|
|
|
9755
9977
|
<ul class="md-nav__list">
|
|
9756
9978
|
|
|
9757
9979
|
<li class="md-nav__item">
|
|
9758
|
-
<a href="#
|
|
9980
|
+
<a href="#added-in-v160-rc1" class="md-nav__link">
|
|
9759
9981
|
<span class="md-ellipsis">
|
|
9760
|
-
Added
|
|
9982
|
+
Added in v1.6.0-rc.1
|
|
9761
9983
|
</span>
|
|
9762
9984
|
</a>
|
|
9763
9985
|
|
|
9764
9986
|
</li>
|
|
9765
9987
|
|
|
9766
9988
|
<li class="md-nav__item">
|
|
9767
|
-
<a href="#
|
|
9989
|
+
<a href="#changed-in-v160-rc1" class="md-nav__link">
|
|
9768
9990
|
<span class="md-ellipsis">
|
|
9769
|
-
Changed
|
|
9991
|
+
Changed in v1.6.0-rc.1
|
|
9770
9992
|
</span>
|
|
9771
9993
|
</a>
|
|
9772
9994
|
|
|
9773
9995
|
</li>
|
|
9774
9996
|
|
|
9775
9997
|
<li class="md-nav__item">
|
|
9776
|
-
<a href="#
|
|
9998
|
+
<a href="#removed-in-v160-rc1" class="md-nav__link">
|
|
9777
9999
|
<span class="md-ellipsis">
|
|
9778
|
-
Removed
|
|
10000
|
+
Removed in v1.6.0-rc.1
|
|
9779
10001
|
</span>
|
|
9780
10002
|
</a>
|
|
9781
10003
|
|
|
9782
10004
|
</li>
|
|
9783
10005
|
|
|
9784
10006
|
<li class="md-nav__item">
|
|
9785
|
-
<a href="#
|
|
10007
|
+
<a href="#fixed-in-v160-rc1" class="md-nav__link">
|
|
9786
10008
|
<span class="md-ellipsis">
|
|
9787
|
-
Fixed
|
|
10009
|
+
Fixed in v1.6.0-rc.1
|
|
9788
10010
|
</span>
|
|
9789
10011
|
</a>
|
|
9790
10012
|
|
|
9791
10013
|
</li>
|
|
9792
10014
|
|
|
9793
10015
|
<li class="md-nav__item">
|
|
9794
|
-
<a href="#
|
|
10016
|
+
<a href="#dependencies-in-v160-rc1" class="md-nav__link">
|
|
9795
10017
|
<span class="md-ellipsis">
|
|
9796
|
-
Dependencies
|
|
10018
|
+
Dependencies in v1.6.0-rc.1
|
|
9797
10019
|
</span>
|
|
9798
10020
|
</a>
|
|
9799
10021
|
|
|
9800
10022
|
</li>
|
|
9801
10023
|
|
|
9802
10024
|
<li class="md-nav__item">
|
|
9803
|
-
<a href="#
|
|
10025
|
+
<a href="#documentation-in-v160-rc1" class="md-nav__link">
|
|
9804
10026
|
<span class="md-ellipsis">
|
|
9805
|
-
Documentation
|
|
10027
|
+
Documentation in v1.6.0-rc.1
|
|
9806
10028
|
</span>
|
|
9807
10029
|
</a>
|
|
9808
10030
|
|
|
@@ -10458,6 +10680,195 @@
|
|
|
10458
10680
|
</ul>
|
|
10459
10681
|
</nav>
|
|
10460
10682
|
|
|
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
|
+
|
|
10461
10872
|
</li>
|
|
10462
10873
|
|
|
10463
10874
|
<li class="md-nav__item">
|
|
@@ -10471,18 +10882,18 @@
|
|
|
10471
10882
|
<ul class="md-nav__list">
|
|
10472
10883
|
|
|
10473
10884
|
<li class="md-nav__item">
|
|
10474
|
-
<a href="#security" class="md-nav__link">
|
|
10885
|
+
<a href="#security-in-v1623" class="md-nav__link">
|
|
10475
10886
|
<span class="md-ellipsis">
|
|
10476
|
-
Security
|
|
10887
|
+
Security in v1.6.23
|
|
10477
10888
|
</span>
|
|
10478
10889
|
</a>
|
|
10479
10890
|
|
|
10480
10891
|
</li>
|
|
10481
10892
|
|
|
10482
10893
|
<li class="md-nav__item">
|
|
10483
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10894
|
+
<a href="#housekeeping-in-v1623" class="md-nav__link">
|
|
10484
10895
|
<span class="md-ellipsis">
|
|
10485
|
-
Housekeeping
|
|
10896
|
+
Housekeeping in v1.6.23
|
|
10486
10897
|
</span>
|
|
10487
10898
|
</a>
|
|
10488
10899
|
|
|
@@ -10504,27 +10915,27 @@
|
|
|
10504
10915
|
<ul class="md-nav__list">
|
|
10505
10916
|
|
|
10506
10917
|
<li class="md-nav__item">
|
|
10507
|
-
<a href="#
|
|
10918
|
+
<a href="#security-in-v1622" class="md-nav__link">
|
|
10508
10919
|
<span class="md-ellipsis">
|
|
10509
|
-
Security
|
|
10920
|
+
Security in v1.6.22
|
|
10510
10921
|
</span>
|
|
10511
10922
|
</a>
|
|
10512
10923
|
|
|
10513
10924
|
</li>
|
|
10514
10925
|
|
|
10515
10926
|
<li class="md-nav__item">
|
|
10516
|
-
<a href="#
|
|
10927
|
+
<a href="#added-in-v1622" class="md-nav__link">
|
|
10517
10928
|
<span class="md-ellipsis">
|
|
10518
|
-
Added
|
|
10929
|
+
Added in v1.6.22
|
|
10519
10930
|
</span>
|
|
10520
10931
|
</a>
|
|
10521
10932
|
|
|
10522
10933
|
</li>
|
|
10523
10934
|
|
|
10524
10935
|
<li class="md-nav__item">
|
|
10525
|
-
<a href="#fixed" class="md-nav__link">
|
|
10936
|
+
<a href="#fixed-in-v1622" class="md-nav__link">
|
|
10526
10937
|
<span class="md-ellipsis">
|
|
10527
|
-
Fixed
|
|
10938
|
+
Fixed in v1.6.22
|
|
10528
10939
|
</span>
|
|
10529
10940
|
</a>
|
|
10530
10941
|
|
|
@@ -10546,9 +10957,9 @@
|
|
|
10546
10957
|
<ul class="md-nav__list">
|
|
10547
10958
|
|
|
10548
10959
|
<li class="md-nav__item">
|
|
10549
|
-
<a href="#
|
|
10960
|
+
<a href="#security-in-v1621" class="md-nav__link">
|
|
10550
10961
|
<span class="md-ellipsis">
|
|
10551
|
-
Security
|
|
10962
|
+
Security in v1.6.21
|
|
10552
10963
|
</span>
|
|
10553
10964
|
</a>
|
|
10554
10965
|
|
|
@@ -10570,18 +10981,18 @@
|
|
|
10570
10981
|
<ul class="md-nav__list">
|
|
10571
10982
|
|
|
10572
10983
|
<li class="md-nav__item">
|
|
10573
|
-
<a href="#
|
|
10984
|
+
<a href="#security-in-v1620" class="md-nav__link">
|
|
10574
10985
|
<span class="md-ellipsis">
|
|
10575
|
-
Security
|
|
10986
|
+
Security in v1.6.20
|
|
10576
10987
|
</span>
|
|
10577
10988
|
</a>
|
|
10578
10989
|
|
|
10579
10990
|
</li>
|
|
10580
10991
|
|
|
10581
10992
|
<li class="md-nav__item">
|
|
10582
|
-
<a href="#
|
|
10993
|
+
<a href="#fixed-in-v1620" class="md-nav__link">
|
|
10583
10994
|
<span class="md-ellipsis">
|
|
10584
|
-
Fixed
|
|
10995
|
+
Fixed in v1.6.20
|
|
10585
10996
|
</span>
|
|
10586
10997
|
</a>
|
|
10587
10998
|
|
|
@@ -10603,18 +11014,18 @@
|
|
|
10603
11014
|
<ul class="md-nav__list">
|
|
10604
11015
|
|
|
10605
11016
|
<li class="md-nav__item">
|
|
10606
|
-
<a href="#
|
|
11017
|
+
<a href="#security-in-v1619" class="md-nav__link">
|
|
10607
11018
|
<span class="md-ellipsis">
|
|
10608
|
-
Security
|
|
11019
|
+
Security in v1.6.19
|
|
10609
11020
|
</span>
|
|
10610
11021
|
</a>
|
|
10611
11022
|
|
|
10612
11023
|
</li>
|
|
10613
11024
|
|
|
10614
11025
|
<li class="md-nav__item">
|
|
10615
|
-
<a href="#
|
|
11026
|
+
<a href="#fixed-in-v1619" class="md-nav__link">
|
|
10616
11027
|
<span class="md-ellipsis">
|
|
10617
|
-
Fixed
|
|
11028
|
+
Fixed in v1.6.19
|
|
10618
11029
|
</span>
|
|
10619
11030
|
</a>
|
|
10620
11031
|
|
|
@@ -10636,18 +11047,18 @@
|
|
|
10636
11047
|
<ul class="md-nav__list">
|
|
10637
11048
|
|
|
10638
11049
|
<li class="md-nav__item">
|
|
10639
|
-
<a href="#
|
|
11050
|
+
<a href="#security-in-v1618" class="md-nav__link">
|
|
10640
11051
|
<span class="md-ellipsis">
|
|
10641
|
-
Security
|
|
11052
|
+
Security in v1.6.18
|
|
10642
11053
|
</span>
|
|
10643
11054
|
</a>
|
|
10644
11055
|
|
|
10645
11056
|
</li>
|
|
10646
11057
|
|
|
10647
11058
|
<li class="md-nav__item">
|
|
10648
|
-
<a href="#dependencies" class="md-nav__link">
|
|
11059
|
+
<a href="#dependencies-in-v1618" class="md-nav__link">
|
|
10649
11060
|
<span class="md-ellipsis">
|
|
10650
|
-
Dependencies
|
|
11061
|
+
Dependencies in v1.6.18
|
|
10651
11062
|
</span>
|
|
10652
11063
|
</a>
|
|
10653
11064
|
|
|
@@ -10669,9 +11080,9 @@
|
|
|
10669
11080
|
<ul class="md-nav__list">
|
|
10670
11081
|
|
|
10671
11082
|
<li class="md-nav__item">
|
|
10672
|
-
<a href="#
|
|
11083
|
+
<a href="#dependencies-in-v1617" class="md-nav__link">
|
|
10673
11084
|
<span class="md-ellipsis">
|
|
10674
|
-
Dependencies
|
|
11085
|
+
Dependencies in v1.6.17
|
|
10675
11086
|
</span>
|
|
10676
11087
|
</a>
|
|
10677
11088
|
|
|
@@ -10693,54 +11104,54 @@
|
|
|
10693
11104
|
<ul class="md-nav__list">
|
|
10694
11105
|
|
|
10695
11106
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#
|
|
11107
|
+
<a href="#security-in-v1616" class="md-nav__link">
|
|
10697
11108
|
<span class="md-ellipsis">
|
|
10698
|
-
Security
|
|
11109
|
+
Security in v1.6.16
|
|
10699
11110
|
</span>
|
|
10700
11111
|
</a>
|
|
10701
11112
|
|
|
10702
11113
|
</li>
|
|
10703
11114
|
|
|
10704
11115
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#
|
|
11116
|
+
<a href="#added-in-v1616" class="md-nav__link">
|
|
10706
11117
|
<span class="md-ellipsis">
|
|
10707
|
-
Added
|
|
11118
|
+
Added in v1.6.16
|
|
10708
11119
|
</span>
|
|
10709
11120
|
</a>
|
|
10710
11121
|
|
|
10711
11122
|
</li>
|
|
10712
11123
|
|
|
10713
11124
|
<li class="md-nav__item">
|
|
10714
|
-
<a href="#
|
|
11125
|
+
<a href="#changed-in-v1616" class="md-nav__link">
|
|
10715
11126
|
<span class="md-ellipsis">
|
|
10716
|
-
Changed
|
|
11127
|
+
Changed in v1.6.16
|
|
10717
11128
|
</span>
|
|
10718
11129
|
</a>
|
|
10719
11130
|
|
|
10720
11131
|
</li>
|
|
10721
11132
|
|
|
10722
11133
|
<li class="md-nav__item">
|
|
10723
|
-
<a href="#
|
|
11134
|
+
<a href="#fixed-in-v1616" class="md-nav__link">
|
|
10724
11135
|
<span class="md-ellipsis">
|
|
10725
|
-
Fixed
|
|
11136
|
+
Fixed in v1.6.16
|
|
10726
11137
|
</span>
|
|
10727
11138
|
</a>
|
|
10728
11139
|
|
|
10729
11140
|
</li>
|
|
10730
11141
|
|
|
10731
11142
|
<li class="md-nav__item">
|
|
10732
|
-
<a href="#documentation" class="md-nav__link">
|
|
11143
|
+
<a href="#documentation-in-v1616" class="md-nav__link">
|
|
10733
11144
|
<span class="md-ellipsis">
|
|
10734
|
-
Documentation
|
|
11145
|
+
Documentation in v1.6.16
|
|
10735
11146
|
</span>
|
|
10736
11147
|
</a>
|
|
10737
11148
|
|
|
10738
11149
|
</li>
|
|
10739
11150
|
|
|
10740
11151
|
<li class="md-nav__item">
|
|
10741
|
-
<a href="#
|
|
11152
|
+
<a href="#housekeeping-in-v1616" class="md-nav__link">
|
|
10742
11153
|
<span class="md-ellipsis">
|
|
10743
|
-
Housekeeping
|
|
11154
|
+
Housekeeping in v1.6.16
|
|
10744
11155
|
</span>
|
|
10745
11156
|
</a>
|
|
10746
11157
|
|
|
@@ -10762,27 +11173,27 @@
|
|
|
10762
11173
|
<ul class="md-nav__list">
|
|
10763
11174
|
|
|
10764
11175
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#
|
|
11176
|
+
<a href="#added-in-v1615" class="md-nav__link">
|
|
10766
11177
|
<span class="md-ellipsis">
|
|
10767
|
-
Added
|
|
11178
|
+
Added in v1.6.15
|
|
10768
11179
|
</span>
|
|
10769
11180
|
</a>
|
|
10770
11181
|
|
|
10771
11182
|
</li>
|
|
10772
11183
|
|
|
10773
11184
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#
|
|
11185
|
+
<a href="#fixed-in-v1615" class="md-nav__link">
|
|
10775
11186
|
<span class="md-ellipsis">
|
|
10776
|
-
Fixed
|
|
11187
|
+
Fixed in v1.6.15
|
|
10777
11188
|
</span>
|
|
10778
11189
|
</a>
|
|
10779
11190
|
|
|
10780
11191
|
</li>
|
|
10781
11192
|
|
|
10782
11193
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#
|
|
11194
|
+
<a href="#housekeeping-in-v1615" class="md-nav__link">
|
|
10784
11195
|
<span class="md-ellipsis">
|
|
10785
|
-
Housekeeping
|
|
11196
|
+
Housekeeping in v1.6.15
|
|
10786
11197
|
</span>
|
|
10787
11198
|
</a>
|
|
10788
11199
|
|
|
@@ -10804,9 +11215,9 @@
|
|
|
10804
11215
|
<ul class="md-nav__list">
|
|
10805
11216
|
|
|
10806
11217
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#
|
|
11218
|
+
<a href="#fixed-in-v1614" class="md-nav__link">
|
|
10808
11219
|
<span class="md-ellipsis">
|
|
10809
|
-
Fixed
|
|
11220
|
+
Fixed in v1.6.14
|
|
10810
11221
|
</span>
|
|
10811
11222
|
</a>
|
|
10812
11223
|
|
|
@@ -10828,36 +11239,27 @@
|
|
|
10828
11239
|
<ul class="md-nav__list">
|
|
10829
11240
|
|
|
10830
11241
|
<li class="md-nav__item">
|
|
10831
|
-
<a href="#
|
|
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">
|
|
11242
|
+
<a href="#added-in-v1613" class="md-nav__link">
|
|
10841
11243
|
<span class="md-ellipsis">
|
|
10842
|
-
Added
|
|
11244
|
+
Added in v1.6.13
|
|
10843
11245
|
</span>
|
|
10844
11246
|
</a>
|
|
10845
11247
|
|
|
10846
11248
|
</li>
|
|
10847
11249
|
|
|
10848
11250
|
<li class="md-nav__item">
|
|
10849
|
-
<a href="#
|
|
11251
|
+
<a href="#fixed-in-v1613" class="md-nav__link">
|
|
10850
11252
|
<span class="md-ellipsis">
|
|
10851
|
-
Fixed
|
|
11253
|
+
Fixed in v1.6.13
|
|
10852
11254
|
</span>
|
|
10853
11255
|
</a>
|
|
10854
11256
|
|
|
10855
11257
|
</li>
|
|
10856
11258
|
|
|
10857
11259
|
<li class="md-nav__item">
|
|
10858
|
-
<a href="#
|
|
11260
|
+
<a href="#documentation-in-v1613" class="md-nav__link">
|
|
10859
11261
|
<span class="md-ellipsis">
|
|
10860
|
-
Documentation
|
|
11262
|
+
Documentation in v1.6.13
|
|
10861
11263
|
</span>
|
|
10862
11264
|
</a>
|
|
10863
11265
|
|
|
@@ -10879,36 +11281,36 @@
|
|
|
10879
11281
|
<ul class="md-nav__list">
|
|
10880
11282
|
|
|
10881
11283
|
<li class="md-nav__item">
|
|
10882
|
-
<a href="#
|
|
11284
|
+
<a href="#security-in-v1612" class="md-nav__link">
|
|
10883
11285
|
<span class="md-ellipsis">
|
|
10884
|
-
|
|
11286
|
+
Security in v1.6.12
|
|
10885
11287
|
</span>
|
|
10886
11288
|
</a>
|
|
10887
11289
|
|
|
10888
11290
|
</li>
|
|
10889
11291
|
|
|
10890
11292
|
<li class="md-nav__item">
|
|
10891
|
-
<a href="#
|
|
11293
|
+
<a href="#added-in-v1612" class="md-nav__link">
|
|
10892
11294
|
<span class="md-ellipsis">
|
|
10893
|
-
|
|
11295
|
+
Added in v1.6.12
|
|
10894
11296
|
</span>
|
|
10895
11297
|
</a>
|
|
10896
11298
|
|
|
10897
11299
|
</li>
|
|
10898
11300
|
|
|
10899
11301
|
<li class="md-nav__item">
|
|
10900
|
-
<a href="#
|
|
11302
|
+
<a href="#changed-in-v1612" class="md-nav__link">
|
|
10901
11303
|
<span class="md-ellipsis">
|
|
10902
|
-
Changed
|
|
11304
|
+
Changed in v1.6.12
|
|
10903
11305
|
</span>
|
|
10904
11306
|
</a>
|
|
10905
11307
|
|
|
10906
11308
|
</li>
|
|
10907
11309
|
|
|
10908
11310
|
<li class="md-nav__item">
|
|
10909
|
-
<a href="#
|
|
11311
|
+
<a href="#fixed-in-v1612" class="md-nav__link">
|
|
10910
11312
|
<span class="md-ellipsis">
|
|
10911
|
-
Fixed
|
|
11313
|
+
Fixed in v1.6.12
|
|
10912
11314
|
</span>
|
|
10913
11315
|
</a>
|
|
10914
11316
|
|
|
@@ -10930,27 +11332,27 @@
|
|
|
10930
11332
|
<ul class="md-nav__list">
|
|
10931
11333
|
|
|
10932
11334
|
<li class="md-nav__item">
|
|
10933
|
-
<a href="#
|
|
11335
|
+
<a href="#security-in-v1611" class="md-nav__link">
|
|
10934
11336
|
<span class="md-ellipsis">
|
|
10935
|
-
Security
|
|
11337
|
+
Security in v1.6.11
|
|
10936
11338
|
</span>
|
|
10937
11339
|
</a>
|
|
10938
11340
|
|
|
10939
11341
|
</li>
|
|
10940
11342
|
|
|
10941
11343
|
<li class="md-nav__item">
|
|
10942
|
-
<a href="#
|
|
11344
|
+
<a href="#added-in-v1611" class="md-nav__link">
|
|
10943
11345
|
<span class="md-ellipsis">
|
|
10944
|
-
Added
|
|
11346
|
+
Added in v1.6.11
|
|
10945
11347
|
</span>
|
|
10946
11348
|
</a>
|
|
10947
11349
|
|
|
10948
11350
|
</li>
|
|
10949
11351
|
|
|
10950
11352
|
<li class="md-nav__item">
|
|
10951
|
-
<a href="#
|
|
11353
|
+
<a href="#fixed-in-v1611" class="md-nav__link">
|
|
10952
11354
|
<span class="md-ellipsis">
|
|
10953
|
-
Fixed
|
|
11355
|
+
Fixed in v1.6.11
|
|
10954
11356
|
</span>
|
|
10955
11357
|
</a>
|
|
10956
11358
|
|
|
@@ -10972,36 +11374,36 @@
|
|
|
10972
11374
|
<ul class="md-nav__list">
|
|
10973
11375
|
|
|
10974
11376
|
<li class="md-nav__item">
|
|
10975
|
-
<a href="#
|
|
11377
|
+
<a href="#security-in-v1610" class="md-nav__link">
|
|
10976
11378
|
<span class="md-ellipsis">
|
|
10977
|
-
Security
|
|
11379
|
+
Security in v1.6.10
|
|
10978
11380
|
</span>
|
|
10979
11381
|
</a>
|
|
10980
11382
|
|
|
10981
11383
|
</li>
|
|
10982
11384
|
|
|
10983
11385
|
<li class="md-nav__item">
|
|
10984
|
-
<a href="#
|
|
11386
|
+
<a href="#added-in-v1610" class="md-nav__link">
|
|
10985
11387
|
<span class="md-ellipsis">
|
|
10986
|
-
Added
|
|
11388
|
+
Added in v1.6.10
|
|
10987
11389
|
</span>
|
|
10988
11390
|
</a>
|
|
10989
11391
|
|
|
10990
11392
|
</li>
|
|
10991
11393
|
|
|
10992
11394
|
<li class="md-nav__item">
|
|
10993
|
-
<a href="#
|
|
11395
|
+
<a href="#changed-in-v1610" class="md-nav__link">
|
|
10994
11396
|
<span class="md-ellipsis">
|
|
10995
|
-
Changed
|
|
11397
|
+
Changed in v1.6.10
|
|
10996
11398
|
</span>
|
|
10997
11399
|
</a>
|
|
10998
11400
|
|
|
10999
11401
|
</li>
|
|
11000
11402
|
|
|
11001
11403
|
<li class="md-nav__item">
|
|
11002
|
-
<a href="#
|
|
11404
|
+
<a href="#dependencies-in-v1610" class="md-nav__link">
|
|
11003
11405
|
<span class="md-ellipsis">
|
|
11004
|
-
Dependencies
|
|
11406
|
+
Dependencies in v1.6.10
|
|
11005
11407
|
</span>
|
|
11006
11408
|
</a>
|
|
11007
11409
|
|
|
@@ -11023,9 +11425,9 @@
|
|
|
11023
11425
|
<ul class="md-nav__list">
|
|
11024
11426
|
|
|
11025
11427
|
<li class="md-nav__item">
|
|
11026
|
-
<a href="#
|
|
11428
|
+
<a href="#fixed-in-v169" class="md-nav__link">
|
|
11027
11429
|
<span class="md-ellipsis">
|
|
11028
|
-
Fixed
|
|
11430
|
+
Fixed in v1.6.9
|
|
11029
11431
|
</span>
|
|
11030
11432
|
</a>
|
|
11031
11433
|
|
|
@@ -11047,45 +11449,45 @@
|
|
|
11047
11449
|
<ul class="md-nav__list">
|
|
11048
11450
|
|
|
11049
11451
|
<li class="md-nav__item">
|
|
11050
|
-
<a href="#
|
|
11452
|
+
<a href="#security-in-v168" class="md-nav__link">
|
|
11051
11453
|
<span class="md-ellipsis">
|
|
11052
|
-
Security
|
|
11454
|
+
Security in v1.6.8
|
|
11053
11455
|
</span>
|
|
11054
11456
|
</a>
|
|
11055
11457
|
|
|
11056
11458
|
</li>
|
|
11057
11459
|
|
|
11058
11460
|
<li class="md-nav__item">
|
|
11059
|
-
<a href="#
|
|
11461
|
+
<a href="#added-in-v168" class="md-nav__link">
|
|
11060
11462
|
<span class="md-ellipsis">
|
|
11061
|
-
Added
|
|
11463
|
+
Added in v1.6.8
|
|
11062
11464
|
</span>
|
|
11063
11465
|
</a>
|
|
11064
11466
|
|
|
11065
11467
|
</li>
|
|
11066
11468
|
|
|
11067
11469
|
<li class="md-nav__item">
|
|
11068
|
-
<a href="#
|
|
11470
|
+
<a href="#removed-in-v168" class="md-nav__link">
|
|
11069
11471
|
<span class="md-ellipsis">
|
|
11070
|
-
Removed
|
|
11472
|
+
Removed in v1.6.8
|
|
11071
11473
|
</span>
|
|
11072
11474
|
</a>
|
|
11073
11475
|
|
|
11074
11476
|
</li>
|
|
11075
11477
|
|
|
11076
11478
|
<li class="md-nav__item">
|
|
11077
|
-
<a href="#
|
|
11479
|
+
<a href="#fixed-in-v168" class="md-nav__link">
|
|
11078
11480
|
<span class="md-ellipsis">
|
|
11079
|
-
Fixed
|
|
11481
|
+
Fixed in v1.6.8
|
|
11080
11482
|
</span>
|
|
11081
11483
|
</a>
|
|
11082
11484
|
|
|
11083
11485
|
</li>
|
|
11084
11486
|
|
|
11085
11487
|
<li class="md-nav__item">
|
|
11086
|
-
<a href="#
|
|
11488
|
+
<a href="#housekeeping-in-v168" class="md-nav__link">
|
|
11087
11489
|
<span class="md-ellipsis">
|
|
11088
|
-
Housekeeping
|
|
11490
|
+
Housekeeping in v1.6.8
|
|
11089
11491
|
</span>
|
|
11090
11492
|
</a>
|
|
11091
11493
|
|
|
@@ -11107,36 +11509,36 @@
|
|
|
11107
11509
|
<ul class="md-nav__list">
|
|
11108
11510
|
|
|
11109
11511
|
<li class="md-nav__item">
|
|
11110
|
-
<a href="#
|
|
11512
|
+
<a href="#security-in-v167" class="md-nav__link">
|
|
11111
11513
|
<span class="md-ellipsis">
|
|
11112
|
-
Security
|
|
11514
|
+
Security in v1.6.7
|
|
11113
11515
|
</span>
|
|
11114
11516
|
</a>
|
|
11115
11517
|
|
|
11116
11518
|
</li>
|
|
11117
11519
|
|
|
11118
11520
|
<li class="md-nav__item">
|
|
11119
|
-
<a href="#
|
|
11521
|
+
<a href="#added-in-v167" class="md-nav__link">
|
|
11120
11522
|
<span class="md-ellipsis">
|
|
11121
|
-
Added
|
|
11523
|
+
Added in v1.6.7
|
|
11122
11524
|
</span>
|
|
11123
11525
|
</a>
|
|
11124
11526
|
|
|
11125
11527
|
</li>
|
|
11126
11528
|
|
|
11127
11529
|
<li class="md-nav__item">
|
|
11128
|
-
<a href="#
|
|
11530
|
+
<a href="#removed-in-v167" class="md-nav__link">
|
|
11129
11531
|
<span class="md-ellipsis">
|
|
11130
|
-
Removed
|
|
11532
|
+
Removed in v1.6.7
|
|
11131
11533
|
</span>
|
|
11132
11534
|
</a>
|
|
11133
11535
|
|
|
11134
11536
|
</li>
|
|
11135
11537
|
|
|
11136
11538
|
<li class="md-nav__item">
|
|
11137
|
-
<a href="#
|
|
11539
|
+
<a href="#fixed-in-v167" class="md-nav__link">
|
|
11138
11540
|
<span class="md-ellipsis">
|
|
11139
|
-
Fixed
|
|
11541
|
+
Fixed in v1.6.7
|
|
11140
11542
|
</span>
|
|
11141
11543
|
</a>
|
|
11142
11544
|
|
|
@@ -11158,45 +11560,45 @@
|
|
|
11158
11560
|
<ul class="md-nav__list">
|
|
11159
11561
|
|
|
11160
11562
|
<li class="md-nav__item">
|
|
11161
|
-
<a href="#
|
|
11563
|
+
<a href="#security-in-v166" class="md-nav__link">
|
|
11162
11564
|
<span class="md-ellipsis">
|
|
11163
|
-
Security
|
|
11565
|
+
Security in v1.6.6
|
|
11164
11566
|
</span>
|
|
11165
11567
|
</a>
|
|
11166
11568
|
|
|
11167
11569
|
</li>
|
|
11168
11570
|
|
|
11169
11571
|
<li class="md-nav__item">
|
|
11170
|
-
<a href="#
|
|
11572
|
+
<a href="#changed-in-v166" class="md-nav__link">
|
|
11171
11573
|
<span class="md-ellipsis">
|
|
11172
|
-
Changed
|
|
11574
|
+
Changed in v1.6.6
|
|
11173
11575
|
</span>
|
|
11174
11576
|
</a>
|
|
11175
11577
|
|
|
11176
11578
|
</li>
|
|
11177
11579
|
|
|
11178
11580
|
<li class="md-nav__item">
|
|
11179
|
-
<a href="#
|
|
11581
|
+
<a href="#fixed-in-v166" class="md-nav__link">
|
|
11180
11582
|
<span class="md-ellipsis">
|
|
11181
|
-
Fixed
|
|
11583
|
+
Fixed in v1.6.6
|
|
11182
11584
|
</span>
|
|
11183
11585
|
</a>
|
|
11184
11586
|
|
|
11185
11587
|
</li>
|
|
11186
11588
|
|
|
11187
11589
|
<li class="md-nav__item">
|
|
11188
|
-
<a href="#
|
|
11590
|
+
<a href="#dependencies-in-v166" class="md-nav__link">
|
|
11189
11591
|
<span class="md-ellipsis">
|
|
11190
|
-
Dependencies
|
|
11592
|
+
Dependencies in v1.6.6
|
|
11191
11593
|
</span>
|
|
11192
11594
|
</a>
|
|
11193
11595
|
|
|
11194
11596
|
</li>
|
|
11195
11597
|
|
|
11196
11598
|
<li class="md-nav__item">
|
|
11197
|
-
<a href="#
|
|
11599
|
+
<a href="#housekeeping-in-v166" class="md-nav__link">
|
|
11198
11600
|
<span class="md-ellipsis">
|
|
11199
|
-
Housekeeping
|
|
11601
|
+
Housekeeping in v1.6.6
|
|
11200
11602
|
</span>
|
|
11201
11603
|
</a>
|
|
11202
11604
|
|
|
@@ -11218,45 +11620,45 @@
|
|
|
11218
11620
|
<ul class="md-nav__list">
|
|
11219
11621
|
|
|
11220
11622
|
<li class="md-nav__item">
|
|
11221
|
-
<a href="#
|
|
11623
|
+
<a href="#security-in-v165" class="md-nav__link">
|
|
11222
11624
|
<span class="md-ellipsis">
|
|
11223
|
-
Security
|
|
11625
|
+
Security in v1.6.5
|
|
11224
11626
|
</span>
|
|
11225
11627
|
</a>
|
|
11226
11628
|
|
|
11227
11629
|
</li>
|
|
11228
11630
|
|
|
11229
11631
|
<li class="md-nav__item">
|
|
11230
|
-
<a href="#
|
|
11632
|
+
<a href="#added-in-v165" class="md-nav__link">
|
|
11231
11633
|
<span class="md-ellipsis">
|
|
11232
|
-
Added
|
|
11634
|
+
Added in v1.6.5
|
|
11233
11635
|
</span>
|
|
11234
11636
|
</a>
|
|
11235
11637
|
|
|
11236
11638
|
</li>
|
|
11237
11639
|
|
|
11238
11640
|
<li class="md-nav__item">
|
|
11239
|
-
<a href="#
|
|
11641
|
+
<a href="#fixed-in-v165" class="md-nav__link">
|
|
11240
11642
|
<span class="md-ellipsis">
|
|
11241
|
-
Fixed
|
|
11643
|
+
Fixed in v1.6.5
|
|
11242
11644
|
</span>
|
|
11243
11645
|
</a>
|
|
11244
11646
|
|
|
11245
11647
|
</li>
|
|
11246
11648
|
|
|
11247
11649
|
<li class="md-nav__item">
|
|
11248
|
-
<a href="#
|
|
11650
|
+
<a href="#documentation-in-v165" class="md-nav__link">
|
|
11249
11651
|
<span class="md-ellipsis">
|
|
11250
|
-
Documentation
|
|
11652
|
+
Documentation in v1.6.5
|
|
11251
11653
|
</span>
|
|
11252
11654
|
</a>
|
|
11253
11655
|
|
|
11254
11656
|
</li>
|
|
11255
11657
|
|
|
11256
11658
|
<li class="md-nav__item">
|
|
11257
|
-
<a href="#
|
|
11659
|
+
<a href="#housekeeping-in-v165" class="md-nav__link">
|
|
11258
11660
|
<span class="md-ellipsis">
|
|
11259
|
-
Housekeeping
|
|
11661
|
+
Housekeeping in v1.6.5
|
|
11260
11662
|
</span>
|
|
11261
11663
|
</a>
|
|
11262
11664
|
|
|
@@ -11278,36 +11680,36 @@
|
|
|
11278
11680
|
<ul class="md-nav__list">
|
|
11279
11681
|
|
|
11280
11682
|
<li class="md-nav__item">
|
|
11281
|
-
<a href="#
|
|
11683
|
+
<a href="#added-in-v164" class="md-nav__link">
|
|
11282
11684
|
<span class="md-ellipsis">
|
|
11283
|
-
Added
|
|
11685
|
+
Added in v1.6.4
|
|
11284
11686
|
</span>
|
|
11285
11687
|
</a>
|
|
11286
11688
|
|
|
11287
11689
|
</li>
|
|
11288
11690
|
|
|
11289
11691
|
<li class="md-nav__item">
|
|
11290
|
-
<a href="#
|
|
11692
|
+
<a href="#changed-in-v164" class="md-nav__link">
|
|
11291
11693
|
<span class="md-ellipsis">
|
|
11292
|
-
Changed
|
|
11694
|
+
Changed in v1.6.4
|
|
11293
11695
|
</span>
|
|
11294
11696
|
</a>
|
|
11295
11697
|
|
|
11296
11698
|
</li>
|
|
11297
11699
|
|
|
11298
11700
|
<li class="md-nav__item">
|
|
11299
|
-
<a href="#
|
|
11701
|
+
<a href="#removed-in-v164" class="md-nav__link">
|
|
11300
11702
|
<span class="md-ellipsis">
|
|
11301
|
-
Removed
|
|
11703
|
+
Removed in v1.6.4
|
|
11302
11704
|
</span>
|
|
11303
11705
|
</a>
|
|
11304
11706
|
|
|
11305
11707
|
</li>
|
|
11306
11708
|
|
|
11307
11709
|
<li class="md-nav__item">
|
|
11308
|
-
<a href="#
|
|
11710
|
+
<a href="#housekeeping-in-v164" class="md-nav__link">
|
|
11309
11711
|
<span class="md-ellipsis">
|
|
11310
|
-
Housekeeping
|
|
11712
|
+
Housekeeping in v1.6.4
|
|
11311
11713
|
</span>
|
|
11312
11714
|
</a>
|
|
11313
11715
|
|
|
@@ -11329,36 +11731,36 @@
|
|
|
11329
11731
|
<ul class="md-nav__list">
|
|
11330
11732
|
|
|
11331
11733
|
<li class="md-nav__item">
|
|
11332
|
-
<a href="#
|
|
11734
|
+
<a href="#security-in-v163" class="md-nav__link">
|
|
11333
11735
|
<span class="md-ellipsis">
|
|
11334
|
-
Security
|
|
11736
|
+
Security in v1.6.3
|
|
11335
11737
|
</span>
|
|
11336
11738
|
</a>
|
|
11337
11739
|
|
|
11338
11740
|
</li>
|
|
11339
11741
|
|
|
11340
11742
|
<li class="md-nav__item">
|
|
11341
|
-
<a href="#
|
|
11743
|
+
<a href="#added-in-v163" class="md-nav__link">
|
|
11342
11744
|
<span class="md-ellipsis">
|
|
11343
|
-
Added
|
|
11745
|
+
Added in v1.6.3
|
|
11344
11746
|
</span>
|
|
11345
11747
|
</a>
|
|
11346
11748
|
|
|
11347
11749
|
</li>
|
|
11348
11750
|
|
|
11349
11751
|
<li class="md-nav__item">
|
|
11350
|
-
<a href="#
|
|
11752
|
+
<a href="#fixed-in-v163" class="md-nav__link">
|
|
11351
11753
|
<span class="md-ellipsis">
|
|
11352
|
-
Fixed
|
|
11754
|
+
Fixed in v1.6.3
|
|
11353
11755
|
</span>
|
|
11354
11756
|
</a>
|
|
11355
11757
|
|
|
11356
11758
|
</li>
|
|
11357
11759
|
|
|
11358
11760
|
<li class="md-nav__item">
|
|
11359
|
-
<a href="#
|
|
11761
|
+
<a href="#housekeeping-in-v163" class="md-nav__link">
|
|
11360
11762
|
<span class="md-ellipsis">
|
|
11361
|
-
Housekeeping
|
|
11763
|
+
Housekeeping in v1.6.3
|
|
11362
11764
|
</span>
|
|
11363
11765
|
</a>
|
|
11364
11766
|
|
|
@@ -11380,45 +11782,45 @@
|
|
|
11380
11782
|
<ul class="md-nav__list">
|
|
11381
11783
|
|
|
11382
11784
|
<li class="md-nav__item">
|
|
11383
|
-
<a href="#
|
|
11785
|
+
<a href="#added-in-v162" class="md-nav__link">
|
|
11384
11786
|
<span class="md-ellipsis">
|
|
11385
|
-
Added
|
|
11787
|
+
Added in v1.6.2
|
|
11386
11788
|
</span>
|
|
11387
11789
|
</a>
|
|
11388
11790
|
|
|
11389
11791
|
</li>
|
|
11390
11792
|
|
|
11391
11793
|
<li class="md-nav__item">
|
|
11392
|
-
<a href="#
|
|
11794
|
+
<a href="#changed-in-v162" class="md-nav__link">
|
|
11393
11795
|
<span class="md-ellipsis">
|
|
11394
|
-
Changed
|
|
11796
|
+
Changed in v1.6.2
|
|
11395
11797
|
</span>
|
|
11396
11798
|
</a>
|
|
11397
11799
|
|
|
11398
11800
|
</li>
|
|
11399
11801
|
|
|
11400
11802
|
<li class="md-nav__item">
|
|
11401
|
-
<a href="#
|
|
11803
|
+
<a href="#fixed-in-v162" class="md-nav__link">
|
|
11402
11804
|
<span class="md-ellipsis">
|
|
11403
|
-
Fixed
|
|
11805
|
+
Fixed in v1.6.2
|
|
11404
11806
|
</span>
|
|
11405
11807
|
</a>
|
|
11406
11808
|
|
|
11407
11809
|
</li>
|
|
11408
11810
|
|
|
11409
11811
|
<li class="md-nav__item">
|
|
11410
|
-
<a href="#
|
|
11812
|
+
<a href="#documentation-in-v162" class="md-nav__link">
|
|
11411
11813
|
<span class="md-ellipsis">
|
|
11412
|
-
Documentation
|
|
11814
|
+
Documentation in v1.6.2
|
|
11413
11815
|
</span>
|
|
11414
11816
|
</a>
|
|
11415
11817
|
|
|
11416
11818
|
</li>
|
|
11417
11819
|
|
|
11418
11820
|
<li class="md-nav__item">
|
|
11419
|
-
<a href="#
|
|
11821
|
+
<a href="#housekeeping-in-v162" class="md-nav__link">
|
|
11420
11822
|
<span class="md-ellipsis">
|
|
11421
|
-
Housekeeping
|
|
11823
|
+
Housekeeping in v1.6.2
|
|
11422
11824
|
</span>
|
|
11423
11825
|
</a>
|
|
11424
11826
|
|
|
@@ -11440,36 +11842,36 @@
|
|
|
11440
11842
|
<ul class="md-nav__list">
|
|
11441
11843
|
|
|
11442
11844
|
<li class="md-nav__item">
|
|
11443
|
-
<a href="#
|
|
11845
|
+
<a href="#changed-in-v161" class="md-nav__link">
|
|
11444
11846
|
<span class="md-ellipsis">
|
|
11445
|
-
Changed
|
|
11847
|
+
Changed in v1.6.1
|
|
11446
11848
|
</span>
|
|
11447
11849
|
</a>
|
|
11448
11850
|
|
|
11449
11851
|
</li>
|
|
11450
11852
|
|
|
11451
11853
|
<li class="md-nav__item">
|
|
11452
|
-
<a href="#
|
|
11854
|
+
<a href="#fixed-in-v161" class="md-nav__link">
|
|
11453
11855
|
<span class="md-ellipsis">
|
|
11454
|
-
Fixed
|
|
11856
|
+
Fixed in v1.6.1
|
|
11455
11857
|
</span>
|
|
11456
11858
|
</a>
|
|
11457
11859
|
|
|
11458
11860
|
</li>
|
|
11459
11861
|
|
|
11460
11862
|
<li class="md-nav__item">
|
|
11461
|
-
<a href="#
|
|
11863
|
+
<a href="#documentation-in-v161" class="md-nav__link">
|
|
11462
11864
|
<span class="md-ellipsis">
|
|
11463
|
-
Documentation
|
|
11865
|
+
Documentation in v1.6.1
|
|
11464
11866
|
</span>
|
|
11465
11867
|
</a>
|
|
11466
11868
|
|
|
11467
11869
|
</li>
|
|
11468
11870
|
|
|
11469
11871
|
<li class="md-nav__item">
|
|
11470
|
-
<a href="#
|
|
11872
|
+
<a href="#housekeeping-in-v161" class="md-nav__link">
|
|
11471
11873
|
<span class="md-ellipsis">
|
|
11472
|
-
Housekeeping
|
|
11874
|
+
Housekeeping in v1.6.1
|
|
11473
11875
|
</span>
|
|
11474
11876
|
</a>
|
|
11475
11877
|
|
|
@@ -11491,36 +11893,36 @@
|
|
|
11491
11893
|
<ul class="md-nav__list">
|
|
11492
11894
|
|
|
11493
11895
|
<li class="md-nav__item">
|
|
11494
|
-
<a href="#
|
|
11896
|
+
<a href="#added-in-v160" class="md-nav__link">
|
|
11495
11897
|
<span class="md-ellipsis">
|
|
11496
|
-
Added
|
|
11898
|
+
Added in v1.6.0
|
|
11497
11899
|
</span>
|
|
11498
11900
|
</a>
|
|
11499
11901
|
|
|
11500
11902
|
</li>
|
|
11501
11903
|
|
|
11502
11904
|
<li class="md-nav__item">
|
|
11503
|
-
<a href="#
|
|
11905
|
+
<a href="#fixed-in-v160" class="md-nav__link">
|
|
11504
11906
|
<span class="md-ellipsis">
|
|
11505
|
-
Fixed
|
|
11907
|
+
Fixed in v1.6.0
|
|
11506
11908
|
</span>
|
|
11507
11909
|
</a>
|
|
11508
11910
|
|
|
11509
11911
|
</li>
|
|
11510
11912
|
|
|
11511
11913
|
<li class="md-nav__item">
|
|
11512
|
-
<a href="#
|
|
11914
|
+
<a href="#dependencies-in-v160" class="md-nav__link">
|
|
11513
11915
|
<span class="md-ellipsis">
|
|
11514
|
-
Dependencies
|
|
11916
|
+
Dependencies in v1.6.0
|
|
11515
11917
|
</span>
|
|
11516
11918
|
</a>
|
|
11517
11919
|
|
|
11518
11920
|
</li>
|
|
11519
11921
|
|
|
11520
11922
|
<li class="md-nav__item">
|
|
11521
|
-
<a href="#
|
|
11923
|
+
<a href="#documentation-in-v160" class="md-nav__link">
|
|
11522
11924
|
<span class="md-ellipsis">
|
|
11523
|
-
Documentation
|
|
11925
|
+
Documentation in v1.6.0
|
|
11524
11926
|
</span>
|
|
11525
11927
|
</a>
|
|
11526
11928
|
|
|
@@ -11542,54 +11944,54 @@
|
|
|
11542
11944
|
<ul class="md-nav__list">
|
|
11543
11945
|
|
|
11544
11946
|
<li class="md-nav__item">
|
|
11545
|
-
<a href="#
|
|
11947
|
+
<a href="#added-in-v160-rc1" class="md-nav__link">
|
|
11546
11948
|
<span class="md-ellipsis">
|
|
11547
|
-
Added
|
|
11949
|
+
Added in v1.6.0-rc.1
|
|
11548
11950
|
</span>
|
|
11549
11951
|
</a>
|
|
11550
11952
|
|
|
11551
11953
|
</li>
|
|
11552
11954
|
|
|
11553
11955
|
<li class="md-nav__item">
|
|
11554
|
-
<a href="#
|
|
11956
|
+
<a href="#changed-in-v160-rc1" class="md-nav__link">
|
|
11555
11957
|
<span class="md-ellipsis">
|
|
11556
|
-
Changed
|
|
11958
|
+
Changed in v1.6.0-rc.1
|
|
11557
11959
|
</span>
|
|
11558
11960
|
</a>
|
|
11559
11961
|
|
|
11560
11962
|
</li>
|
|
11561
11963
|
|
|
11562
11964
|
<li class="md-nav__item">
|
|
11563
|
-
<a href="#
|
|
11965
|
+
<a href="#removed-in-v160-rc1" class="md-nav__link">
|
|
11564
11966
|
<span class="md-ellipsis">
|
|
11565
|
-
Removed
|
|
11967
|
+
Removed in v1.6.0-rc.1
|
|
11566
11968
|
</span>
|
|
11567
11969
|
</a>
|
|
11568
11970
|
|
|
11569
11971
|
</li>
|
|
11570
11972
|
|
|
11571
11973
|
<li class="md-nav__item">
|
|
11572
|
-
<a href="#
|
|
11974
|
+
<a href="#fixed-in-v160-rc1" class="md-nav__link">
|
|
11573
11975
|
<span class="md-ellipsis">
|
|
11574
|
-
Fixed
|
|
11976
|
+
Fixed in v1.6.0-rc.1
|
|
11575
11977
|
</span>
|
|
11576
11978
|
</a>
|
|
11577
11979
|
|
|
11578
11980
|
</li>
|
|
11579
11981
|
|
|
11580
11982
|
<li class="md-nav__item">
|
|
11581
|
-
<a href="#
|
|
11983
|
+
<a href="#dependencies-in-v160-rc1" class="md-nav__link">
|
|
11582
11984
|
<span class="md-ellipsis">
|
|
11583
|
-
Dependencies
|
|
11985
|
+
Dependencies in v1.6.0-rc.1
|
|
11584
11986
|
</span>
|
|
11585
11987
|
</a>
|
|
11586
11988
|
|
|
11587
11989
|
</li>
|
|
11588
11990
|
|
|
11589
11991
|
<li class="md-nav__item">
|
|
11590
|
-
<a href="#
|
|
11992
|
+
<a href="#documentation-in-v160-rc1" class="md-nav__link">
|
|
11591
11993
|
<span class="md-ellipsis">
|
|
11592
|
-
Documentation
|
|
11994
|
+
Documentation in v1.6.0-rc.1
|
|
11593
11995
|
</span>
|
|
11594
11996
|
</a>
|
|
11595
11997
|
|
|
@@ -11618,8 +12020,6 @@
|
|
|
11618
12020
|
|
|
11619
12021
|
|
|
11620
12022
|
|
|
11621
|
-
<!-- markdownlint-disable MD024 -->
|
|
11622
|
-
|
|
11623
12023
|
<h1 id="nautobot-v16">Nautobot v1.6<a class="headerlink" href="#nautobot-v16" title="Permanent link">¶</a></h1>
|
|
11624
12024
|
<p>This document describes all new features and changes in Nautobot 1.6.</p>
|
|
11625
12025
|
<h2 id="release-overview">Release Overview<a class="headerlink" href="#release-overview" title="Permanent link">¶</a></h2>
|
|
@@ -11660,33 +12060,91 @@
|
|
|
11660
12060
|
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
11661
12061
|
<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>
|
|
11662
12062
|
<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 -->
|
|
11663
12064
|
<!-- 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>
|
|
11664
12122
|
<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>
|
|
11665
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12123
|
+
<h3 id="security-in-v1623">Security in v1.6.23<a class="headerlink" href="#security-in-v1623" title="Permanent link">¶</a></h3>
|
|
11666
12124
|
<ul>
|
|
11667
12125
|
<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>
|
|
11668
12126
|
<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>
|
|
11669
12127
|
</ul>
|
|
11670
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12128
|
+
<h3 id="housekeeping-in-v1623">Housekeeping in v1.6.23<a class="headerlink" href="#housekeeping-in-v1623" title="Permanent link">¶</a></h3>
|
|
11671
12129
|
<ul>
|
|
11672
12130
|
<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>
|
|
11673
12131
|
</ul>
|
|
11674
12132
|
<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>
|
|
11675
|
-
<h3 id="
|
|
12133
|
+
<h3 id="security-in-v1622">Security in v1.6.22<a class="headerlink" href="#security-in-v1622" title="Permanent link">¶</a></h3>
|
|
11676
12134
|
<ul>
|
|
11677
12135
|
<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>
|
|
11678
12136
|
</ul>
|
|
11679
|
-
<h3 id="
|
|
12137
|
+
<h3 id="added-in-v1622">Added in v1.6.22<a class="headerlink" href="#added-in-v1622" title="Permanent link">¶</a></h3>
|
|
11680
12138
|
<ul>
|
|
11681
12139
|
<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>
|
|
11682
12140
|
<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>
|
|
11683
12141
|
</ul>
|
|
11684
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12142
|
+
<h3 id="fixed-in-v1622">Fixed in v1.6.22<a class="headerlink" href="#fixed-in-v1622" title="Permanent link">¶</a></h3>
|
|
11685
12143
|
<ul>
|
|
11686
12144
|
<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>
|
|
11687
12145
|
</ul>
|
|
11688
12146
|
<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>
|
|
11689
|
-
<h3 id="
|
|
12147
|
+
<h3 id="security-in-v1621">Security in v1.6.21<a class="headerlink" href="#security-in-v1621" title="Permanent link">¶</a></h3>
|
|
11690
12148
|
<ul>
|
|
11691
12149
|
<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>
|
|
11692
12150
|
<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>
|
|
@@ -11694,40 +12152,40 @@
|
|
|
11694
12152
|
<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>
|
|
11695
12153
|
</ul>
|
|
11696
12154
|
<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>
|
|
11697
|
-
<h3 id="
|
|
12155
|
+
<h3 id="security-in-v1620">Security in v1.6.20<a class="headerlink" href="#security-in-v1620" title="Permanent link">¶</a></h3>
|
|
11698
12156
|
<ul>
|
|
11699
12157
|
<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>
|
|
11700
12158
|
</ul>
|
|
11701
|
-
<h3 id="
|
|
12159
|
+
<h3 id="fixed-in-v1620">Fixed in v1.6.20<a class="headerlink" href="#fixed-in-v1620" title="Permanent link">¶</a></h3>
|
|
11702
12160
|
<ul>
|
|
11703
12161
|
<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>
|
|
11704
12162
|
</ul>
|
|
11705
12163
|
<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>
|
|
11706
|
-
<h3 id="
|
|
12164
|
+
<h3 id="security-in-v1619">Security in v1.6.19<a class="headerlink" href="#security-in-v1619" title="Permanent link">¶</a></h3>
|
|
11707
12165
|
<ul>
|
|
11708
12166
|
<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>
|
|
11709
12167
|
</ul>
|
|
11710
|
-
<h3 id="
|
|
12168
|
+
<h3 id="fixed-in-v1619">Fixed in v1.6.19<a class="headerlink" href="#fixed-in-v1619" title="Permanent link">¶</a></h3>
|
|
11711
12169
|
<ul>
|
|
11712
12170
|
<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>
|
|
11713
12171
|
</ul>
|
|
11714
12172
|
<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>
|
|
11715
|
-
<h3 id="
|
|
12173
|
+
<h3 id="security-in-v1618">Security in v1.6.18<a class="headerlink" href="#security-in-v1618" title="Permanent link">¶</a></h3>
|
|
11716
12174
|
<ul>
|
|
11717
12175
|
<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>
|
|
11718
12176
|
</ul>
|
|
11719
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12177
|
+
<h3 id="dependencies-in-v1618">Dependencies in v1.6.18<a class="headerlink" href="#dependencies-in-v1618" title="Permanent link">¶</a></h3>
|
|
11720
12178
|
<ul>
|
|
11721
12179
|
<li><a href="https://github.com/nautobot/nautobot/issues/5543">#5543</a> - Updated <code>jquery</code> to version <code>3.7.1</code>.</li>
|
|
11722
12180
|
</ul>
|
|
11723
12181
|
<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>
|
|
11724
|
-
<h3 id="
|
|
12182
|
+
<h3 id="dependencies-in-v1617">Dependencies in v1.6.17<a class="headerlink" href="#dependencies-in-v1617" title="Permanent link">¶</a></h3>
|
|
11725
12183
|
<ul>
|
|
11726
12184
|
<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>
|
|
11727
12185
|
<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>
|
|
11728
12186
|
</ul>
|
|
11729
12187
|
<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>
|
|
11730
|
-
<h3 id="
|
|
12188
|
+
<h3 id="security-in-v1616">Security in v1.6.16<a class="headerlink" href="#security-in-v1616" title="Permanent link">¶</a></h3>
|
|
11731
12189
|
<ul>
|
|
11732
12190
|
<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>
|
|
11733
12191
|
<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>
|
|
@@ -11739,203 +12197,202 @@
|
|
|
11739
12197
|
<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>
|
|
11740
12198
|
<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>
|
|
11741
12199
|
</ul>
|
|
11742
|
-
<h3 id="
|
|
12200
|
+
<h3 id="added-in-v1616">Added in v1.6.16<a class="headerlink" href="#added-in-v1616" title="Permanent link">¶</a></h3>
|
|
11743
12201
|
<ul>
|
|
11744
12202
|
<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>
|
|
11745
12203
|
<li><a href="https://github.com/nautobot/nautobot/issues/5465">#5465</a> - Added <code>nautobot.apps.views.GenericView</code> base class.</li>
|
|
11746
12204
|
</ul>
|
|
11747
|
-
<h3 id="
|
|
12205
|
+
<h3 id="changed-in-v1616">Changed in v1.6.16<a class="headerlink" href="#changed-in-v1616" title="Permanent link">¶</a></h3>
|
|
11748
12206
|
<ul>
|
|
11749
12207
|
<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>
|
|
11750
12208
|
<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>
|
|
11751
12209
|
<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>
|
|
11752
12210
|
</ul>
|
|
11753
|
-
<h3 id="
|
|
12211
|
+
<h3 id="fixed-in-v1616">Fixed in v1.6.16<a class="headerlink" href="#fixed-in-v1616" title="Permanent link">¶</a></h3>
|
|
11754
12212
|
<ul>
|
|
11755
12213
|
<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>
|
|
11756
12214
|
</ul>
|
|
11757
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12215
|
+
<h3 id="documentation-in-v1616">Documentation in v1.6.16<a class="headerlink" href="#documentation-in-v1616" title="Permanent link">¶</a></h3>
|
|
11758
12216
|
<ul>
|
|
11759
12217
|
<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>
|
|
11760
12218
|
</ul>
|
|
11761
|
-
<h3 id="
|
|
12219
|
+
<h3 id="housekeeping-in-v1616">Housekeeping in v1.6.16<a class="headerlink" href="#housekeeping-in-v1616" title="Permanent link">¶</a></h3>
|
|
11762
12220
|
<ul>
|
|
11763
12221
|
<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>
|
|
11764
12222
|
</ul>
|
|
11765
12223
|
<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>
|
|
11766
|
-
<h3 id="
|
|
12224
|
+
<h3 id="added-in-v1615">Added in v1.6.15<a class="headerlink" href="#added-in-v1615" title="Permanent link">¶</a></h3>
|
|
11767
12225
|
<ul>
|
|
11768
12226
|
<li><a href="https://github.com/nautobot/nautobot/issues/1102">#1102</a> - Added <code>CELERY_BEAT_HEARTBEAT_FILE</code> settings variable.</li>
|
|
11769
12227
|
<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>
|
|
11770
12228
|
</ul>
|
|
11771
|
-
<h3 id="
|
|
12229
|
+
<h3 id="fixed-in-v1615">Fixed in v1.6.15<a class="headerlink" href="#fixed-in-v1615" title="Permanent link">¶</a></h3>
|
|
11772
12230
|
<ul>
|
|
11773
12231
|
<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>
|
|
11774
12232
|
<li><a href="https://github.com/nautobot/nautobot/issues/5354">#5354</a> - Fixed Configuration Context not applied based on nested Tenant Groups.</li>
|
|
11775
12233
|
</ul>
|
|
11776
|
-
<h3 id="
|
|
12234
|
+
<h3 id="housekeeping-in-v1615">Housekeeping in v1.6.15<a class="headerlink" href="#housekeeping-in-v1615" title="Permanent link">¶</a></h3>
|
|
11777
12235
|
<ul>
|
|
11778
12236
|
<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>
|
|
11779
12237
|
<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>
|
|
11780
12238
|
</ul>
|
|
11781
12239
|
<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>
|
|
11782
|
-
<h3 id="
|
|
12240
|
+
<h3 id="fixed-in-v1614">Fixed in v1.6.14<a class="headerlink" href="#fixed-in-v1614" title="Permanent link">¶</a></h3>
|
|
11783
12241
|
<ul>
|
|
11784
12242
|
<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>
|
|
11785
12243
|
</ul>
|
|
11786
12244
|
<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>
|
|
11787
|
-
<h3 id="
|
|
11788
|
-
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
12245
|
+
<h3 id="added-in-v1613">Added in v1.6.13<a class="headerlink" href="#added-in-v1613" title="Permanent link">¶</a></h3>
|
|
11789
12246
|
<ul>
|
|
11790
12247
|
<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>
|
|
11791
12248
|
</ul>
|
|
11792
|
-
<h3 id="
|
|
12249
|
+
<h3 id="fixed-in-v1613">Fixed in v1.6.13<a class="headerlink" href="#fixed-in-v1613" title="Permanent link">¶</a></h3>
|
|
11793
12250
|
<ul>
|
|
11794
12251
|
<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>
|
|
11795
12252
|
<li><a href="https://github.com/nautobot/nautobot/issues/5336">#5336</a> - Fixed 'docker-compose: command not found' error when running invoke commands.</li>
|
|
11796
12253
|
<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>
|
|
11797
12254
|
</ul>
|
|
11798
|
-
<h3 id="
|
|
12255
|
+
<h3 id="documentation-in-v1613">Documentation in v1.6.13<a class="headerlink" href="#documentation-in-v1613" title="Permanent link">¶</a></h3>
|
|
11799
12256
|
<ul>
|
|
11800
12257
|
<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>
|
|
11801
12258
|
<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>
|
|
11802
12259
|
</ul>
|
|
11803
12260
|
<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>
|
|
11804
|
-
<h3 id="
|
|
12261
|
+
<h3 id="security-in-v1612">Security in v1.6.12<a class="headerlink" href="#security-in-v1612" title="Permanent link">¶</a></h3>
|
|
11805
12262
|
<ul>
|
|
11806
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
12263
|
+
<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>
|
|
11807
12264
|
</ul>
|
|
11808
|
-
<h3 id="
|
|
12265
|
+
<h3 id="added-in-v1612">Added in v1.6.12<a class="headerlink" href="#added-in-v1612" title="Permanent link">¶</a></h3>
|
|
11809
12266
|
<ul>
|
|
11810
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/
|
|
12267
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/5104">#5104</a> - Added User Token as permission constraints.</li>
|
|
11811
12268
|
</ul>
|
|
11812
|
-
<h3 id="
|
|
12269
|
+
<h3 id="changed-in-v1612">Changed in v1.6.12<a class="headerlink" href="#changed-in-v1612" title="Permanent link">¶</a></h3>
|
|
11813
12270
|
<ul>
|
|
11814
12271
|
<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>
|
|
11815
12272
|
<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>
|
|
11816
12273
|
</ul>
|
|
11817
|
-
<h3 id="
|
|
12274
|
+
<h3 id="fixed-in-v1612">Fixed in v1.6.12<a class="headerlink" href="#fixed-in-v1612" title="Permanent link">¶</a></h3>
|
|
11818
12275
|
<ul>
|
|
11819
12276
|
<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>
|
|
11820
12277
|
<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>
|
|
11821
12278
|
</ul>
|
|
11822
12279
|
<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>
|
|
11823
|
-
<h3 id="
|
|
12280
|
+
<h3 id="security-in-v1611">Security in v1.6.11<a class="headerlink" href="#security-in-v1611" title="Permanent link">¶</a></h3>
|
|
11824
12281
|
<ul>
|
|
11825
12282
|
<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>
|
|
11826
12283
|
</ul>
|
|
11827
|
-
<h3 id="
|
|
12284
|
+
<h3 id="added-in-v1611">Added in v1.6.11<a class="headerlink" href="#added-in-v1611" title="Permanent link">¶</a></h3>
|
|
11828
12285
|
<ul>
|
|
11829
12286
|
<li><a href="https://github.com/nautobot/nautobot/issues/5169">#5169</a> - Added support for user session profiling via django-silk.</li>
|
|
11830
12287
|
</ul>
|
|
11831
|
-
<h3 id="
|
|
12288
|
+
<h3 id="fixed-in-v1611">Fixed in v1.6.11<a class="headerlink" href="#fixed-in-v1611" title="Permanent link">¶</a></h3>
|
|
11832
12289
|
<ul>
|
|
11833
12290
|
<li><a href="https://github.com/nautobot/nautobot/issues/3664">#3664</a> - Fixed AssertionError when querying Date type custom fields in GraphQL.</li>
|
|
11834
12291
|
<li><a href="https://github.com/nautobot/nautobot/issues/5162">#5162</a> - Fixed incorrect rack group variable in device template.</li>
|
|
11835
12292
|
</ul>
|
|
11836
12293
|
<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>
|
|
11837
|
-
<h3 id="
|
|
12294
|
+
<h3 id="security-in-v1610">Security in v1.6.10<a class="headerlink" href="#security-in-v1610" title="Permanent link">¶</a></h3>
|
|
11838
12295
|
<ul>
|
|
11839
12296
|
<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>
|
|
11840
12297
|
<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>
|
|
11841
12298
|
</ul>
|
|
11842
|
-
<h3 id="
|
|
12299
|
+
<h3 id="added-in-v1610">Added in v1.6.10<a class="headerlink" href="#added-in-v1610" title="Permanent link">¶</a></h3>
|
|
11843
12300
|
<ul>
|
|
11844
12301
|
<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>
|
|
11845
12302
|
</ul>
|
|
11846
|
-
<h3 id="
|
|
12303
|
+
<h3 id="changed-in-v1610">Changed in v1.6.10<a class="headerlink" href="#changed-in-v1610" title="Permanent link">¶</a></h3>
|
|
11847
12304
|
<ul>
|
|
11848
12305
|
<li><a href="https://github.com/nautobot/nautobot/issues/5132">#5132</a> - Updated poetry version for development Docker image to match 2.0.</li>
|
|
11849
12306
|
</ul>
|
|
11850
|
-
<h3 id="
|
|
12307
|
+
<h3 id="dependencies-in-v1610">Dependencies in v1.6.10<a class="headerlink" href="#dependencies-in-v1610" title="Permanent link">¶</a></h3>
|
|
11851
12308
|
<ul>
|
|
11852
12309
|
<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>
|
|
11853
12310
|
<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>
|
|
11854
12311
|
<li><a href="https://github.com/nautobot/nautobot/issues/5134">#5134</a> - Added <code>nh3</code> HTML sanitization library as a dependency.</li>
|
|
11855
12312
|
</ul>
|
|
11856
12313
|
<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>
|
|
11857
|
-
<h3 id="
|
|
12314
|
+
<h3 id="fixed-in-v169">Fixed in v1.6.9<a class="headerlink" href="#fixed-in-v169" title="Permanent link">¶</a></h3>
|
|
11858
12315
|
<ul>
|
|
11859
12316
|
<li><a href="https://github.com/nautobot/nautobot/issues/5042">#5042</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11860
12317
|
</ul>
|
|
11861
12318
|
<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>
|
|
11862
|
-
<h3 id="
|
|
12319
|
+
<h3 id="security-in-v168">Security in v1.6.8<a class="headerlink" href="#security-in-v168" title="Permanent link">¶</a></h3>
|
|
11863
12320
|
<ul>
|
|
11864
12321
|
<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>
|
|
11865
12322
|
<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>
|
|
11866
12323
|
<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>
|
|
11867
12324
|
<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>
|
|
11868
12325
|
</ul>
|
|
11869
|
-
<h3 id="
|
|
12326
|
+
<h3 id="added-in-v168">Added in v1.6.8<a class="headerlink" href="#added-in-v168" title="Permanent link">¶</a></h3>
|
|
11870
12327
|
<ul>
|
|
11871
12328
|
<li><a href="https://github.com/nautobot/nautobot/issues/4965">#4965</a> - Added MMF OM5 cable type to cable type choices.</li>
|
|
11872
12329
|
</ul>
|
|
11873
|
-
<h3 id="
|
|
12330
|
+
<h3 id="removed-in-v168">Removed in v1.6.8<a class="headerlink" href="#removed-in-v168" title="Permanent link">¶</a></h3>
|
|
11874
12331
|
<ul>
|
|
11875
12332
|
<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>
|
|
11876
12333
|
</ul>
|
|
11877
|
-
<h3 id="
|
|
12334
|
+
<h3 id="fixed-in-v168">Fixed in v1.6.8<a class="headerlink" href="#fixed-in-v168" title="Permanent link">¶</a></h3>
|
|
11878
12335
|
<ul>
|
|
11879
12336
|
<li><a href="https://github.com/nautobot/nautobot/issues/4977">#4977</a> - Fixed early return conditional in <code>ensure_git_repository</code>.</li>
|
|
11880
12337
|
</ul>
|
|
11881
|
-
<h3 id="
|
|
12338
|
+
<h3 id="housekeeping-in-v168">Housekeeping in v1.6.8<a class="headerlink" href="#housekeeping-in-v168" title="Permanent link">¶</a></h3>
|
|
11882
12339
|
<ul>
|
|
11883
12340
|
<li><a href="https://github.com/nautobot/nautobot/issues/4988">#4988</a> - Fixed some bugs in <code>example_plugin.jobs.ExampleComplexJobButtonReceiver</code>.</li>
|
|
11884
12341
|
</ul>
|
|
11885
12342
|
<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>
|
|
11886
|
-
<h3 id="
|
|
12343
|
+
<h3 id="security-in-v167">Security in v1.6.7<a class="headerlink" href="#security-in-v167" title="Permanent link">¶</a></h3>
|
|
11887
12344
|
<ul>
|
|
11888
12345
|
<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>
|
|
11889
12346
|
</ul>
|
|
11890
|
-
<h3 id="
|
|
12347
|
+
<h3 id="added-in-v167">Added in v1.6.7<a class="headerlink" href="#added-in-v167" title="Permanent link">¶</a></h3>
|
|
11891
12348
|
<ul>
|
|
11892
12349
|
<li><a href="https://github.com/nautobot/nautobot/issues/4873">#4873</a> - Added QSFP112 interface type to interface type choices.</li>
|
|
11893
12350
|
</ul>
|
|
11894
|
-
<h3 id="
|
|
12351
|
+
<h3 id="removed-in-v167">Removed in v1.6.7<a class="headerlink" href="#removed-in-v167" title="Permanent link">¶</a></h3>
|
|
11895
12352
|
<ul>
|
|
11896
12353
|
<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>
|
|
11897
12354
|
<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>
|
|
11898
12355
|
</ul>
|
|
11899
|
-
<h3 id="
|
|
12356
|
+
<h3 id="fixed-in-v167">Fixed in v1.6.7<a class="headerlink" href="#fixed-in-v167" title="Permanent link">¶</a></h3>
|
|
11900
12357
|
<ul>
|
|
11901
12358
|
<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>
|
|
11902
12359
|
<li><a href="https://github.com/nautobot/nautobot/issues/4917">#4917</a> - Fixed slow performance on location hierarchy html template.</li>
|
|
11903
12360
|
<li><a href="https://github.com/nautobot/nautobot/issues/4921">#4921</a> - Fixed inefficient queries in <code>Location.base_site</code>.</li>
|
|
11904
12361
|
</ul>
|
|
11905
12362
|
<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>
|
|
11906
|
-
<h3 id="
|
|
12363
|
+
<h3 id="security-in-v166">Security in v1.6.6<a class="headerlink" href="#security-in-v166" title="Permanent link">¶</a></h3>
|
|
11907
12364
|
<ul>
|
|
11908
12365
|
<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>
|
|
11909
12366
|
</ul>
|
|
11910
|
-
<h3 id="
|
|
12367
|
+
<h3 id="changed-in-v166">Changed in v1.6.6<a class="headerlink" href="#changed-in-v166" title="Permanent link">¶</a></h3>
|
|
11911
12368
|
<ul>
|
|
11912
12369
|
<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>
|
|
11913
12370
|
</ul>
|
|
11914
|
-
<h3 id="
|
|
12371
|
+
<h3 id="fixed-in-v166">Fixed in v1.6.6<a class="headerlink" href="#fixed-in-v166" title="Permanent link">¶</a></h3>
|
|
11915
12372
|
<ul>
|
|
11916
12373
|
<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>
|
|
11917
12374
|
<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>
|
|
11918
12375
|
</ul>
|
|
11919
|
-
<h3 id="
|
|
12376
|
+
<h3 id="dependencies-in-v166">Dependencies in v1.6.6<a class="headerlink" href="#dependencies-in-v166" title="Permanent link">¶</a></h3>
|
|
11920
12377
|
<ul>
|
|
11921
12378
|
<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>
|
|
11922
12379
|
</ul>
|
|
11923
|
-
<h3 id="
|
|
12380
|
+
<h3 id="housekeeping-in-v166">Housekeeping in v1.6.6<a class="headerlink" href="#housekeeping-in-v166" title="Permanent link">¶</a></h3>
|
|
11924
12381
|
<ul>
|
|
11925
12382
|
<li><a href="https://github.com/nautobot/nautobot/issues/4799">#4799</a> - Updated docs configuration for <code>examples/example_plugin</code>.</li>
|
|
11926
12383
|
<li><a href="https://github.com/nautobot/nautobot/issues/4833">#4833</a> - Added <code>ruff</code> to invoke tasks and CI.</li>
|
|
11927
12384
|
</ul>
|
|
11928
12385
|
<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>
|
|
11929
|
-
<h3 id="
|
|
12386
|
+
<h3 id="security-in-v165">Security in v1.6.5<a class="headerlink" href="#security-in-v165" title="Permanent link">¶</a></h3>
|
|
11930
12387
|
<ul>
|
|
11931
12388
|
<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>
|
|
11932
12389
|
<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>
|
|
11933
12390
|
</ul>
|
|
11934
|
-
<h3 id="
|
|
12391
|
+
<h3 id="added-in-v165">Added in v1.6.5<a class="headerlink" href="#added-in-v165" title="Permanent link">¶</a></h3>
|
|
11935
12392
|
<ul>
|
|
11936
12393
|
<li><a href="https://github.com/nautobot/nautobot/issues/4649">#4649</a> - Added <code>device_redundancy_groups</code> field to <code>ConfigContextSerializer</code>.</li>
|
|
11937
12394
|
</ul>
|
|
11938
|
-
<h3 id="
|
|
12395
|
+
<h3 id="fixed-in-v165">Fixed in v1.6.5<a class="headerlink" href="#fixed-in-v165" title="Permanent link">¶</a></h3>
|
|
11939
12396
|
<ul>
|
|
11940
12397
|
<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>
|
|
11941
12398
|
<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>
|
|
@@ -11943,108 +12400,108 @@
|
|
|
11943
12400
|
<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>
|
|
11944
12401
|
<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>
|
|
11945
12402
|
</ul>
|
|
11946
|
-
<h3 id="
|
|
12403
|
+
<h3 id="documentation-in-v165">Documentation in v1.6.5<a class="headerlink" href="#documentation-in-v165" title="Permanent link">¶</a></h3>
|
|
11947
12404
|
<ul>
|
|
11948
12405
|
<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>
|
|
11949
12406
|
</ul>
|
|
11950
|
-
<h3 id="
|
|
12407
|
+
<h3 id="housekeeping-in-v165">Housekeeping in v1.6.5<a class="headerlink" href="#housekeeping-in-v165" title="Permanent link">¶</a></h3>
|
|
11951
12408
|
<ul>
|
|
11952
12409
|
<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>
|
|
11953
12410
|
</ul>
|
|
11954
12411
|
<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>
|
|
11955
|
-
<h3 id="
|
|
12412
|
+
<h3 id="added-in-v164">Added in v1.6.4<a class="headerlink" href="#added-in-v164" title="Permanent link">¶</a></h3>
|
|
11956
12413
|
<ul>
|
|
11957
12414
|
<li><a href="https://github.com/nautobot/nautobot/issues/4361">#4361</a> - Added <code>SUPPORT_MESSAGE</code> configuration setting.</li>
|
|
11958
12415
|
<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>
|
|
11959
12416
|
</ul>
|
|
11960
|
-
<h3 id="
|
|
12417
|
+
<h3 id="changed-in-v164">Changed in v1.6.4<a class="headerlink" href="#changed-in-v164" title="Permanent link">¶</a></h3>
|
|
11961
12418
|
<ul>
|
|
11962
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/4313">#4313</a> - Updated device search to include manufacturer name.</li>
|
|
11963
12420
|
</ul>
|
|
11964
|
-
<h3 id="
|
|
12421
|
+
<h3 id="removed-in-v164">Removed in v1.6.4<a class="headerlink" href="#removed-in-v164" title="Permanent link">¶</a></h3>
|
|
11965
12422
|
<ul>
|
|
11966
12423
|
<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>
|
|
11967
12424
|
</ul>
|
|
11968
|
-
<h3 id="
|
|
12425
|
+
<h3 id="housekeeping-in-v164">Housekeeping in v1.6.4<a class="headerlink" href="#housekeeping-in-v164" title="Permanent link">¶</a></h3>
|
|
11969
12426
|
<ul>
|
|
11970
12427
|
<li><a href="https://github.com/nautobot/nautobot/issues/4619">#4619</a> - Fixed broken links in Nautobot README.md.</li>
|
|
11971
12428
|
</ul>
|
|
11972
12429
|
<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>
|
|
11973
|
-
<h3 id="
|
|
12430
|
+
<h3 id="security-in-v163">Security in v1.6.3<a class="headerlink" href="#security-in-v163" title="Permanent link">¶</a></h3>
|
|
11974
12431
|
<ul>
|
|
11975
12432
|
<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>
|
|
11976
12433
|
</ul>
|
|
11977
|
-
<h3 id="
|
|
12434
|
+
<h3 id="added-in-v163">Added in v1.6.3<a class="headerlink" href="#added-in-v163" title="Permanent link">¶</a></h3>
|
|
11978
12435
|
<ul>
|
|
11979
12436
|
<li><a href="https://github.com/nautobot/nautobot/issues/3372">#3372</a> - Added ObjectPermission constraints check to <code>pre_migrate</code> management command.</li>
|
|
11980
12437
|
</ul>
|
|
11981
|
-
<h3 id="
|
|
12438
|
+
<h3 id="fixed-in-v163">Fixed in v1.6.3<a class="headerlink" href="#fixed-in-v163" title="Permanent link">¶</a></h3>
|
|
11982
12439
|
<ul>
|
|
11983
12440
|
<li><a href="https://github.com/nautobot/nautobot/issues/4396">#4396</a> - Fixed rack form silently dropping custom field values.</li>
|
|
11984
12441
|
</ul>
|
|
11985
|
-
<h3 id="
|
|
12442
|
+
<h3 id="housekeeping-in-v163">Housekeeping in v1.6.3<a class="headerlink" href="#housekeeping-in-v163" title="Permanent link">¶</a></h3>
|
|
11986
12443
|
<ul>
|
|
11987
12444
|
<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>
|
|
11988
12445
|
<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>
|
|
11989
12446
|
</ul>
|
|
11990
12447
|
<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>
|
|
11991
|
-
<h3 id="
|
|
12448
|
+
<h3 id="added-in-v162">Added in v1.6.2<a class="headerlink" href="#added-in-v162" title="Permanent link">¶</a></h3>
|
|
11992
12449
|
<ul>
|
|
11993
12450
|
<li><a href="https://github.com/nautobot/nautobot/issues/3913">#3913</a> - Added <code>url</code> field to GraphQL objects.</li>
|
|
11994
12451
|
<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>
|
|
11995
12452
|
</ul>
|
|
11996
|
-
<h3 id="
|
|
12453
|
+
<h3 id="changed-in-v162">Changed in v1.6.2<a class="headerlink" href="#changed-in-v162" title="Permanent link">¶</a></h3>
|
|
11997
12454
|
<ul>
|
|
11998
12455
|
<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>
|
|
11999
12456
|
<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>
|
|
12000
12457
|
<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>
|
|
12001
12458
|
<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>
|
|
12002
12459
|
</ul>
|
|
12003
|
-
<h3 id="
|
|
12460
|
+
<h3 id="fixed-in-v162">Fixed in v1.6.2<a class="headerlink" href="#fixed-in-v162" title="Permanent link">¶</a></h3>
|
|
12004
12461
|
<ul>
|
|
12005
12462
|
<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>
|
|
12006
12463
|
<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>
|
|
12007
12464
|
<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>
|
|
12008
12465
|
</ul>
|
|
12009
|
-
<h3 id="
|
|
12466
|
+
<h3 id="documentation-in-v162">Documentation in v1.6.2<a class="headerlink" href="#documentation-in-v162" title="Permanent link">¶</a></h3>
|
|
12010
12467
|
<ul>
|
|
12011
12468
|
<li><a href="https://github.com/nautobot/nautobot/issues/3289">#3289</a> - Added documentation on factory data caching.</li>
|
|
12012
12469
|
<li><a href="https://github.com/nautobot/nautobot/issues/4201">#4201</a> - Added docs for <code>InterfaceRedundancyGroup</code>.</li>
|
|
12013
12470
|
</ul>
|
|
12014
|
-
<h3 id="
|
|
12471
|
+
<h3 id="housekeeping-in-v162">Housekeeping in v1.6.2<a class="headerlink" href="#housekeeping-in-v162" title="Permanent link">¶</a></h3>
|
|
12015
12472
|
<ul>
|
|
12016
12473
|
<li><a href="https://github.com/nautobot/nautobot/issues/4317">#4317</a> - Added tests for GraphQL url field.</li>
|
|
12017
12474
|
<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>
|
|
12018
12475
|
</ul>
|
|
12019
12476
|
<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>
|
|
12020
|
-
<h3 id="
|
|
12477
|
+
<h3 id="changed-in-v161">Changed in v1.6.1<a class="headerlink" href="#changed-in-v161" title="Permanent link">¶</a></h3>
|
|
12021
12478
|
<ul>
|
|
12022
12479
|
<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>
|
|
12023
12480
|
</ul>
|
|
12024
|
-
<h3 id="
|
|
12481
|
+
<h3 id="fixed-in-v161">Fixed in v1.6.1<a class="headerlink" href="#fixed-in-v161" title="Permanent link">¶</a></h3>
|
|
12025
12482
|
<ul>
|
|
12026
12483
|
<li><a href="https://github.com/nautobot/nautobot/issues/4093">#4093</a> - Fixed dependencies required for saml support missing in final docker image.</li>
|
|
12027
12484
|
<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>
|
|
12028
12485
|
<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>
|
|
12029
12486
|
</ul>
|
|
12030
|
-
<h3 id="
|
|
12487
|
+
<h3 id="documentation-in-v161">Documentation in v1.6.1<a class="headerlink" href="#documentation-in-v161" title="Permanent link">¶</a></h3>
|
|
12031
12488
|
<ul>
|
|
12032
12489
|
<li><a href="https://github.com/nautobot/nautobot/issues/4256">#4256</a> - Introduced new <code>mkdocs</code> setting of <code>tabbed</code>.</li>
|
|
12033
12490
|
<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>
|
|
12034
12491
|
<li><a href="https://github.com/nautobot/nautobot/issues/4258">#4258</a> - Re-enabled copy-to-clipboard button in mkdocs theme.</li>
|
|
12035
12492
|
</ul>
|
|
12036
|
-
<h3 id="
|
|
12493
|
+
<h3 id="housekeeping-in-v161">Housekeeping in v1.6.1<a class="headerlink" href="#housekeeping-in-v161" title="Permanent link">¶</a></h3>
|
|
12037
12494
|
<ul>
|
|
12038
12495
|
<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>
|
|
12039
12496
|
<li><a href="https://github.com/nautobot/nautobot/issues/4028">#4028</a> - Fixed CI integration workflow <code>set-output</code> warnings.</li>
|
|
12040
12497
|
<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>
|
|
12041
12498
|
</ul>
|
|
12042
12499
|
<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>
|
|
12043
|
-
<h3 id="
|
|
12500
|
+
<h3 id="added-in-v160">Added in v1.6.0<a class="headerlink" href="#added-in-v160" title="Permanent link">¶</a></h3>
|
|
12044
12501
|
<ul>
|
|
12045
12502
|
<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>
|
|
12046
12503
|
</ul>
|
|
12047
|
-
<h3 id="
|
|
12504
|
+
<h3 id="fixed-in-v160">Fixed in v1.6.0<a class="headerlink" href="#fixed-in-v160" title="Permanent link">¶</a></h3>
|
|
12048
12505
|
<ul>
|
|
12049
12506
|
<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>
|
|
12050
12507
|
<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>
|
|
@@ -12053,7 +12510,7 @@
|
|
|
12053
12510
|
<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>
|
|
12054
12511
|
<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>
|
|
12055
12512
|
</ul>
|
|
12056
|
-
<h3 id="
|
|
12513
|
+
<h3 id="dependencies-in-v160">Dependencies in v1.6.0<a class="headerlink" href="#dependencies-in-v160" title="Permanent link">¶</a></h3>
|
|
12057
12514
|
<ul>
|
|
12058
12515
|
<li><a href="https://github.com/nautobot/nautobot/issues/4208">#4208</a> - Updated django-rq to 2.8.1.</li>
|
|
12059
12516
|
<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>
|
|
@@ -12061,12 +12518,12 @@
|
|
|
12061
12518
|
<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>
|
|
12062
12519
|
<li><a href="https://github.com/nautobot/nautobot/issues/4215">#4215</a> - Broadened the range of acceptable <code>packaging</code> dependency versions.</li>
|
|
12063
12520
|
</ul>
|
|
12064
|
-
<h3 id="
|
|
12521
|
+
<h3 id="documentation-in-v160">Documentation in v1.6.0<a class="headerlink" href="#documentation-in-v160" title="Permanent link">¶</a></h3>
|
|
12065
12522
|
<ul>
|
|
12066
12523
|
<li><a href="https://github.com/nautobot/nautobot/issues/4184">#4184</a> - Added documentation detailing rack power utilization calculation.</li>
|
|
12067
12524
|
</ul>
|
|
12068
12525
|
<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>
|
|
12069
|
-
<h3 id="
|
|
12526
|
+
<h3 id="added-in-v160-rc1">Added in v1.6.0-rc.1<a class="headerlink" href="#added-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12070
12527
|
<ul>
|
|
12071
12528
|
<li><a href="https://github.com/nautobot/nautobot/issues/2825">#2825</a> - Added InterfaceRedundancyGroup and related views, forms, filtersets and table.</li>
|
|
12072
12529
|
<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>
|
|
@@ -12081,24 +12538,24 @@
|
|
|
12081
12538
|
<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>
|
|
12082
12539
|
<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>
|
|
12083
12540
|
</ul>
|
|
12084
|
-
<h3 id="
|
|
12541
|
+
<h3 id="changed-in-v160-rc1">Changed in v1.6.0-rc.1<a class="headerlink" href="#changed-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12085
12542
|
<ul>
|
|
12086
12543
|
<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>
|
|
12087
12544
|
<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>
|
|
12088
12545
|
<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>
|
|
12089
12546
|
<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>
|
|
12090
12547
|
</ul>
|
|
12091
|
-
<h3 id="
|
|
12548
|
+
<h3 id="removed-in-v160-rc1">Removed in v1.6.0-rc.1<a class="headerlink" href="#removed-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12092
12549
|
<ul>
|
|
12093
12550
|
<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>
|
|
12094
12551
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Removed direct dependency on <code>importlib-metadata</code>.</li>
|
|
12095
12552
|
<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>
|
|
12096
12553
|
</ul>
|
|
12097
|
-
<h3 id="
|
|
12554
|
+
<h3 id="fixed-in-v160-rc1">Fixed in v1.6.0-rc.1<a class="headerlink" href="#fixed-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12098
12555
|
<ul>
|
|
12099
12556
|
<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>
|
|
12100
12557
|
</ul>
|
|
12101
|
-
<h3 id="
|
|
12558
|
+
<h3 id="dependencies-in-v160-rc1">Dependencies in v1.6.0-rc.1<a class="headerlink" href="#dependencies-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12102
12559
|
<ul>
|
|
12103
12560
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated <code>celery</code> dependency to <code>~5.3.1</code>.</li>
|
|
12104
12561
|
<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>
|
|
@@ -12131,7 +12588,7 @@
|
|
|
12131
12588
|
<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>
|
|
12132
12589
|
<li><a href="https://github.com/nautobot/nautobot/issues/3561">#3561</a> - Updated various development-only dependencies to the latest available versions.</li>
|
|
12133
12590
|
</ul>
|
|
12134
|
-
<h3 id="
|
|
12591
|
+
<h3 id="documentation-in-v160-rc1">Documentation in v1.6.0-rc.1<a class="headerlink" href="#documentation-in-v160-rc1" title="Permanent link">¶</a></h3>
|
|
12135
12592
|
<ul>
|
|
12136
12593
|
<li><a href="https://github.com/nautobot/nautobot/issues/4118">#4118</a> - Added documentation for troubleshooting integration test failures via VNC.</li>
|
|
12137
12594
|
</ul>
|
|
@@ -12281,7 +12738,7 @@
|
|
|
12281
12738
|
<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>
|
|
12282
12739
|
|
|
12283
12740
|
|
|
12284
|
-
<script src="../assets/javascripts/bundle.
|
|
12741
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
12285
12742
|
|
|
12286
12743
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12287
12744
|
|