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
|
|
|
@@ -8699,18 +8741,18 @@
|
|
|
8699
8741
|
<ul class="md-nav__list">
|
|
8700
8742
|
|
|
8701
8743
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#security" class="md-nav__link">
|
|
8744
|
+
<a href="#security-in-v1524" class="md-nav__link">
|
|
8703
8745
|
<span class="md-ellipsis">
|
|
8704
|
-
Security
|
|
8746
|
+
Security in v1.5.24
|
|
8705
8747
|
</span>
|
|
8706
8748
|
</a>
|
|
8707
8749
|
|
|
8708
8750
|
</li>
|
|
8709
8751
|
|
|
8710
8752
|
<li class="md-nav__item">
|
|
8711
|
-
<a href="#fixed" class="md-nav__link">
|
|
8753
|
+
<a href="#fixed-in-v1524" class="md-nav__link">
|
|
8712
8754
|
<span class="md-ellipsis">
|
|
8713
|
-
Fixed
|
|
8755
|
+
Fixed in v1.5.24
|
|
8714
8756
|
</span>
|
|
8715
8757
|
</a>
|
|
8716
8758
|
|
|
@@ -8732,63 +8774,63 @@
|
|
|
8732
8774
|
<ul class="md-nav__list">
|
|
8733
8775
|
|
|
8734
8776
|
<li class="md-nav__item">
|
|
8735
|
-
<a href="#
|
|
8777
|
+
<a href="#security-in-v1523" class="md-nav__link">
|
|
8736
8778
|
<span class="md-ellipsis">
|
|
8737
|
-
Security
|
|
8779
|
+
Security in v1.5.23
|
|
8738
8780
|
</span>
|
|
8739
8781
|
</a>
|
|
8740
8782
|
|
|
8741
8783
|
</li>
|
|
8742
8784
|
|
|
8743
8785
|
<li class="md-nav__item">
|
|
8744
|
-
<a href="#
|
|
8786
|
+
<a href="#added-in-v1523" class="md-nav__link">
|
|
8745
8787
|
<span class="md-ellipsis">
|
|
8746
|
-
Added
|
|
8788
|
+
Added in v1.5.23
|
|
8747
8789
|
</span>
|
|
8748
8790
|
</a>
|
|
8749
8791
|
|
|
8750
8792
|
</li>
|
|
8751
8793
|
|
|
8752
8794
|
<li class="md-nav__item">
|
|
8753
|
-
<a href="#
|
|
8795
|
+
<a href="#changed-in-v1523" class="md-nav__link">
|
|
8754
8796
|
<span class="md-ellipsis">
|
|
8755
|
-
Changed
|
|
8797
|
+
Changed in v1.5.23
|
|
8756
8798
|
</span>
|
|
8757
8799
|
</a>
|
|
8758
8800
|
|
|
8759
8801
|
</li>
|
|
8760
8802
|
|
|
8761
8803
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
8804
|
+
<a href="#fixed-in-v1523" class="md-nav__link">
|
|
8763
8805
|
<span class="md-ellipsis">
|
|
8764
|
-
Fixed
|
|
8806
|
+
Fixed in v1.5.23
|
|
8765
8807
|
</span>
|
|
8766
8808
|
</a>
|
|
8767
8809
|
|
|
8768
8810
|
</li>
|
|
8769
8811
|
|
|
8770
8812
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8813
|
+
<a href="#dependencies-in-v1523" class="md-nav__link">
|
|
8772
8814
|
<span class="md-ellipsis">
|
|
8773
|
-
Dependencies
|
|
8815
|
+
Dependencies in v1.5.23
|
|
8774
8816
|
</span>
|
|
8775
8817
|
</a>
|
|
8776
8818
|
|
|
8777
8819
|
</li>
|
|
8778
8820
|
|
|
8779
8821
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#documentation" class="md-nav__link">
|
|
8822
|
+
<a href="#documentation-in-v1523" class="md-nav__link">
|
|
8781
8823
|
<span class="md-ellipsis">
|
|
8782
|
-
Documentation
|
|
8824
|
+
Documentation in v1.5.23
|
|
8783
8825
|
</span>
|
|
8784
8826
|
</a>
|
|
8785
8827
|
|
|
8786
8828
|
</li>
|
|
8787
8829
|
|
|
8788
8830
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8831
|
+
<a href="#housekeeping-in-v1523" class="md-nav__link">
|
|
8790
8832
|
<span class="md-ellipsis">
|
|
8791
|
-
Housekeeping
|
|
8833
|
+
Housekeeping in v1.5.23
|
|
8792
8834
|
</span>
|
|
8793
8835
|
</a>
|
|
8794
8836
|
|
|
@@ -8810,45 +8852,45 @@
|
|
|
8810
8852
|
<ul class="md-nav__list">
|
|
8811
8853
|
|
|
8812
8854
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#
|
|
8855
|
+
<a href="#security-in-v1522" class="md-nav__link">
|
|
8814
8856
|
<span class="md-ellipsis">
|
|
8815
|
-
Security
|
|
8857
|
+
Security in v1.5.22
|
|
8816
8858
|
</span>
|
|
8817
8859
|
</a>
|
|
8818
8860
|
|
|
8819
8861
|
</li>
|
|
8820
8862
|
|
|
8821
8863
|
<li class="md-nav__item">
|
|
8822
|
-
<a href="#
|
|
8864
|
+
<a href="#added-in-v1522" class="md-nav__link">
|
|
8823
8865
|
<span class="md-ellipsis">
|
|
8824
|
-
Added
|
|
8866
|
+
Added in v1.5.22
|
|
8825
8867
|
</span>
|
|
8826
8868
|
</a>
|
|
8827
8869
|
|
|
8828
8870
|
</li>
|
|
8829
8871
|
|
|
8830
8872
|
<li class="md-nav__item">
|
|
8831
|
-
<a href="#
|
|
8873
|
+
<a href="#fixed-in-v1522" class="md-nav__link">
|
|
8832
8874
|
<span class="md-ellipsis">
|
|
8833
|
-
Fixed
|
|
8875
|
+
Fixed in v1.5.22
|
|
8834
8876
|
</span>
|
|
8835
8877
|
</a>
|
|
8836
8878
|
|
|
8837
8879
|
</li>
|
|
8838
8880
|
|
|
8839
8881
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
8882
|
+
<a href="#documentation-in-v1522" class="md-nav__link">
|
|
8841
8883
|
<span class="md-ellipsis">
|
|
8842
|
-
Documentation
|
|
8884
|
+
Documentation in v1.5.22
|
|
8843
8885
|
</span>
|
|
8844
8886
|
</a>
|
|
8845
8887
|
|
|
8846
8888
|
</li>
|
|
8847
8889
|
|
|
8848
8890
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
8891
|
+
<a href="#housekeeping-in-v1522" class="md-nav__link">
|
|
8850
8892
|
<span class="md-ellipsis">
|
|
8851
|
-
Housekeeping
|
|
8893
|
+
Housekeeping in v1.5.22
|
|
8852
8894
|
</span>
|
|
8853
8895
|
</a>
|
|
8854
8896
|
|
|
@@ -8870,36 +8912,36 @@
|
|
|
8870
8912
|
<ul class="md-nav__list">
|
|
8871
8913
|
|
|
8872
8914
|
<li class="md-nav__item">
|
|
8873
|
-
<a href="#
|
|
8915
|
+
<a href="#added-in-v1521" class="md-nav__link">
|
|
8874
8916
|
<span class="md-ellipsis">
|
|
8875
|
-
Added
|
|
8917
|
+
Added in v1.5.21
|
|
8876
8918
|
</span>
|
|
8877
8919
|
</a>
|
|
8878
8920
|
|
|
8879
8921
|
</li>
|
|
8880
8922
|
|
|
8881
8923
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
8924
|
+
<a href="#fixed-in-v1521" class="md-nav__link">
|
|
8883
8925
|
<span class="md-ellipsis">
|
|
8884
|
-
Fixed
|
|
8926
|
+
Fixed in v1.5.21
|
|
8885
8927
|
</span>
|
|
8886
8928
|
</a>
|
|
8887
8929
|
|
|
8888
8930
|
</li>
|
|
8889
8931
|
|
|
8890
8932
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
8933
|
+
<a href="#dependencies-in-v1521" class="md-nav__link">
|
|
8892
8934
|
<span class="md-ellipsis">
|
|
8893
|
-
Dependencies
|
|
8935
|
+
Dependencies in v1.5.21
|
|
8894
8936
|
</span>
|
|
8895
8937
|
</a>
|
|
8896
8938
|
|
|
8897
8939
|
</li>
|
|
8898
8940
|
|
|
8899
8941
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#
|
|
8942
|
+
<a href="#documentation-in-v1521" class="md-nav__link">
|
|
8901
8943
|
<span class="md-ellipsis">
|
|
8902
|
-
Documentation
|
|
8944
|
+
Documentation in v1.5.21
|
|
8903
8945
|
</span>
|
|
8904
8946
|
</a>
|
|
8905
8947
|
|
|
@@ -8921,27 +8963,27 @@
|
|
|
8921
8963
|
<ul class="md-nav__list">
|
|
8922
8964
|
|
|
8923
8965
|
<li class="md-nav__item">
|
|
8924
|
-
<a href="#
|
|
8966
|
+
<a href="#changed-in-v1520" class="md-nav__link">
|
|
8925
8967
|
<span class="md-ellipsis">
|
|
8926
|
-
Changed
|
|
8968
|
+
Changed in v1.5.20
|
|
8927
8969
|
</span>
|
|
8928
8970
|
</a>
|
|
8929
8971
|
|
|
8930
8972
|
</li>
|
|
8931
8973
|
|
|
8932
8974
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#
|
|
8975
|
+
<a href="#fixed-in-v1520" class="md-nav__link">
|
|
8934
8976
|
<span class="md-ellipsis">
|
|
8935
|
-
Fixed
|
|
8977
|
+
Fixed in v1.5.20
|
|
8936
8978
|
</span>
|
|
8937
8979
|
</a>
|
|
8938
8980
|
|
|
8939
8981
|
</li>
|
|
8940
8982
|
|
|
8941
8983
|
<li class="md-nav__item">
|
|
8942
|
-
<a href="#
|
|
8984
|
+
<a href="#documentation-in-v1520" class="md-nav__link">
|
|
8943
8985
|
<span class="md-ellipsis">
|
|
8944
|
-
Documentation
|
|
8986
|
+
Documentation in v1.5.20
|
|
8945
8987
|
</span>
|
|
8946
8988
|
</a>
|
|
8947
8989
|
|
|
@@ -8963,54 +9005,54 @@
|
|
|
8963
9005
|
<ul class="md-nav__list">
|
|
8964
9006
|
|
|
8965
9007
|
<li class="md-nav__item">
|
|
8966
|
-
<a href="#
|
|
9008
|
+
<a href="#security-in-v1519" class="md-nav__link">
|
|
8967
9009
|
<span class="md-ellipsis">
|
|
8968
|
-
Security
|
|
9010
|
+
Security in v1.5.19
|
|
8969
9011
|
</span>
|
|
8970
9012
|
</a>
|
|
8971
9013
|
|
|
8972
9014
|
</li>
|
|
8973
9015
|
|
|
8974
9016
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9017
|
+
<a href="#changed-in-v1519" class="md-nav__link">
|
|
8976
9018
|
<span class="md-ellipsis">
|
|
8977
|
-
Changed
|
|
9019
|
+
Changed in v1.5.19
|
|
8978
9020
|
</span>
|
|
8979
9021
|
</a>
|
|
8980
9022
|
|
|
8981
9023
|
</li>
|
|
8982
9024
|
|
|
8983
9025
|
<li class="md-nav__item">
|
|
8984
|
-
<a href="#
|
|
9026
|
+
<a href="#fixed-in-v1519" class="md-nav__link">
|
|
8985
9027
|
<span class="md-ellipsis">
|
|
8986
|
-
Fixed
|
|
9028
|
+
Fixed in v1.5.19
|
|
8987
9029
|
</span>
|
|
8988
9030
|
</a>
|
|
8989
9031
|
|
|
8990
9032
|
</li>
|
|
8991
9033
|
|
|
8992
9034
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
9035
|
+
<a href="#dependencies-in-v1519" class="md-nav__link">
|
|
8994
9036
|
<span class="md-ellipsis">
|
|
8995
|
-
Dependencies
|
|
9037
|
+
Dependencies in v1.5.19
|
|
8996
9038
|
</span>
|
|
8997
9039
|
</a>
|
|
8998
9040
|
|
|
8999
9041
|
</li>
|
|
9000
9042
|
|
|
9001
9043
|
<li class="md-nav__item">
|
|
9002
|
-
<a href="#
|
|
9044
|
+
<a href="#documentation-in-v1519" class="md-nav__link">
|
|
9003
9045
|
<span class="md-ellipsis">
|
|
9004
|
-
Documentation
|
|
9046
|
+
Documentation in v1.5.19
|
|
9005
9047
|
</span>
|
|
9006
9048
|
</a>
|
|
9007
9049
|
|
|
9008
9050
|
</li>
|
|
9009
9051
|
|
|
9010
9052
|
<li class="md-nav__item">
|
|
9011
|
-
<a href="#
|
|
9053
|
+
<a href="#housekeeping-in-v1519" class="md-nav__link">
|
|
9012
9054
|
<span class="md-ellipsis">
|
|
9013
|
-
Housekeeping
|
|
9055
|
+
Housekeeping in v1.5.19
|
|
9014
9056
|
</span>
|
|
9015
9057
|
</a>
|
|
9016
9058
|
|
|
@@ -9032,54 +9074,54 @@
|
|
|
9032
9074
|
<ul class="md-nav__list">
|
|
9033
9075
|
|
|
9034
9076
|
<li class="md-nav__item">
|
|
9035
|
-
<a href="#
|
|
9077
|
+
<a href="#security-in-v1518" class="md-nav__link">
|
|
9036
9078
|
<span class="md-ellipsis">
|
|
9037
|
-
Security
|
|
9079
|
+
Security in v1.5.18
|
|
9038
9080
|
</span>
|
|
9039
9081
|
</a>
|
|
9040
9082
|
|
|
9041
9083
|
</li>
|
|
9042
9084
|
|
|
9043
9085
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9086
|
+
<a href="#added-in-v1518" class="md-nav__link">
|
|
9045
9087
|
<span class="md-ellipsis">
|
|
9046
|
-
Added
|
|
9088
|
+
Added in v1.5.18
|
|
9047
9089
|
</span>
|
|
9048
9090
|
</a>
|
|
9049
9091
|
|
|
9050
9092
|
</li>
|
|
9051
9093
|
|
|
9052
9094
|
<li class="md-nav__item">
|
|
9053
|
-
<a href="#
|
|
9095
|
+
<a href="#changed-in-v1518" class="md-nav__link">
|
|
9054
9096
|
<span class="md-ellipsis">
|
|
9055
|
-
Changed
|
|
9097
|
+
Changed in v1.5.18
|
|
9056
9098
|
</span>
|
|
9057
9099
|
</a>
|
|
9058
9100
|
|
|
9059
9101
|
</li>
|
|
9060
9102
|
|
|
9061
9103
|
<li class="md-nav__item">
|
|
9062
|
-
<a href="#
|
|
9104
|
+
<a href="#fixed-in-v1518" class="md-nav__link">
|
|
9063
9105
|
<span class="md-ellipsis">
|
|
9064
|
-
Fixed
|
|
9106
|
+
Fixed in v1.5.18
|
|
9065
9107
|
</span>
|
|
9066
9108
|
</a>
|
|
9067
9109
|
|
|
9068
9110
|
</li>
|
|
9069
9111
|
|
|
9070
9112
|
<li class="md-nav__item">
|
|
9071
|
-
<a href="#
|
|
9113
|
+
<a href="#documentation-in-v1518" class="md-nav__link">
|
|
9072
9114
|
<span class="md-ellipsis">
|
|
9073
|
-
Documentation
|
|
9115
|
+
Documentation in v1.5.18
|
|
9074
9116
|
</span>
|
|
9075
9117
|
</a>
|
|
9076
9118
|
|
|
9077
9119
|
</li>
|
|
9078
9120
|
|
|
9079
9121
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9122
|
+
<a href="#housekeeping-in-v1518" class="md-nav__link">
|
|
9081
9123
|
<span class="md-ellipsis">
|
|
9082
|
-
Housekeeping
|
|
9124
|
+
Housekeeping in v1.5.18
|
|
9083
9125
|
</span>
|
|
9084
9126
|
</a>
|
|
9085
9127
|
|
|
@@ -9101,45 +9143,45 @@
|
|
|
9101
9143
|
<ul class="md-nav__list">
|
|
9102
9144
|
|
|
9103
9145
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9146
|
+
<a href="#added-in-v1517" class="md-nav__link">
|
|
9105
9147
|
<span class="md-ellipsis">
|
|
9106
|
-
Added
|
|
9148
|
+
Added in v1.5.17
|
|
9107
9149
|
</span>
|
|
9108
9150
|
</a>
|
|
9109
9151
|
|
|
9110
9152
|
</li>
|
|
9111
9153
|
|
|
9112
9154
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9155
|
+
<a href="#changed-in-v1517" class="md-nav__link">
|
|
9114
9156
|
<span class="md-ellipsis">
|
|
9115
|
-
Changed
|
|
9157
|
+
Changed in v1.5.17
|
|
9116
9158
|
</span>
|
|
9117
9159
|
</a>
|
|
9118
9160
|
|
|
9119
9161
|
</li>
|
|
9120
9162
|
|
|
9121
9163
|
<li class="md-nav__item">
|
|
9122
|
-
<a href="#
|
|
9164
|
+
<a href="#fixed-in-v1517" class="md-nav__link">
|
|
9123
9165
|
<span class="md-ellipsis">
|
|
9124
|
-
Fixed
|
|
9166
|
+
Fixed in v1.5.17
|
|
9125
9167
|
</span>
|
|
9126
9168
|
</a>
|
|
9127
9169
|
|
|
9128
9170
|
</li>
|
|
9129
9171
|
|
|
9130
9172
|
<li class="md-nav__item">
|
|
9131
|
-
<a href="#
|
|
9173
|
+
<a href="#dependencies-in-v1517" class="md-nav__link">
|
|
9132
9174
|
<span class="md-ellipsis">
|
|
9133
|
-
Dependencies
|
|
9175
|
+
Dependencies in v1.5.17
|
|
9134
9176
|
</span>
|
|
9135
9177
|
</a>
|
|
9136
9178
|
|
|
9137
9179
|
</li>
|
|
9138
9180
|
|
|
9139
9181
|
<li class="md-nav__item">
|
|
9140
|
-
<a href="#
|
|
9182
|
+
<a href="#documentation-in-v1517" class="md-nav__link">
|
|
9141
9183
|
<span class="md-ellipsis">
|
|
9142
|
-
Documentation
|
|
9184
|
+
Documentation in v1.5.17
|
|
9143
9185
|
</span>
|
|
9144
9186
|
</a>
|
|
9145
9187
|
|
|
@@ -9161,27 +9203,27 @@
|
|
|
9161
9203
|
<ul class="md-nav__list">
|
|
9162
9204
|
|
|
9163
9205
|
<li class="md-nav__item">
|
|
9164
|
-
<a href="#
|
|
9206
|
+
<a href="#fixed-in-v1516" class="md-nav__link">
|
|
9165
9207
|
<span class="md-ellipsis">
|
|
9166
|
-
Fixed
|
|
9208
|
+
Fixed in v1.5.16
|
|
9167
9209
|
</span>
|
|
9168
9210
|
</a>
|
|
9169
9211
|
|
|
9170
9212
|
</li>
|
|
9171
9213
|
|
|
9172
9214
|
<li class="md-nav__item">
|
|
9173
|
-
<a href="#
|
|
9215
|
+
<a href="#documentation-in-v1516" class="md-nav__link">
|
|
9174
9216
|
<span class="md-ellipsis">
|
|
9175
|
-
Documentation
|
|
9217
|
+
Documentation in v1.5.16
|
|
9176
9218
|
</span>
|
|
9177
9219
|
</a>
|
|
9178
9220
|
|
|
9179
9221
|
</li>
|
|
9180
9222
|
|
|
9181
9223
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9224
|
+
<a href="#housekeeping-in-v1516" class="md-nav__link">
|
|
9183
9225
|
<span class="md-ellipsis">
|
|
9184
|
-
Housekeeping
|
|
9226
|
+
Housekeeping in v1.5.16
|
|
9185
9227
|
</span>
|
|
9186
9228
|
</a>
|
|
9187
9229
|
|
|
@@ -9203,63 +9245,63 @@
|
|
|
9203
9245
|
<ul class="md-nav__list">
|
|
9204
9246
|
|
|
9205
9247
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9248
|
+
<a href="#security-in-v1515" class="md-nav__link">
|
|
9207
9249
|
<span class="md-ellipsis">
|
|
9208
|
-
Security
|
|
9250
|
+
Security in v1.5.15
|
|
9209
9251
|
</span>
|
|
9210
9252
|
</a>
|
|
9211
9253
|
|
|
9212
9254
|
</li>
|
|
9213
9255
|
|
|
9214
9256
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9257
|
+
<a href="#changed-in-v1515" class="md-nav__link">
|
|
9216
9258
|
<span class="md-ellipsis">
|
|
9217
|
-
Changed
|
|
9259
|
+
Changed in v1.5.15
|
|
9218
9260
|
</span>
|
|
9219
9261
|
</a>
|
|
9220
9262
|
|
|
9221
9263
|
</li>
|
|
9222
9264
|
|
|
9223
9265
|
<li class="md-nav__item">
|
|
9224
|
-
<a href="#removed" class="md-nav__link">
|
|
9266
|
+
<a href="#removed-in-v1515" class="md-nav__link">
|
|
9225
9267
|
<span class="md-ellipsis">
|
|
9226
|
-
Removed
|
|
9268
|
+
Removed in v1.5.15
|
|
9227
9269
|
</span>
|
|
9228
9270
|
</a>
|
|
9229
9271
|
|
|
9230
9272
|
</li>
|
|
9231
9273
|
|
|
9232
9274
|
<li class="md-nav__item">
|
|
9233
|
-
<a href="#
|
|
9275
|
+
<a href="#fixed-in-v1515" class="md-nav__link">
|
|
9234
9276
|
<span class="md-ellipsis">
|
|
9235
|
-
Fixed
|
|
9277
|
+
Fixed in v1.5.15
|
|
9236
9278
|
</span>
|
|
9237
9279
|
</a>
|
|
9238
9280
|
|
|
9239
9281
|
</li>
|
|
9240
9282
|
|
|
9241
9283
|
<li class="md-nav__item">
|
|
9242
|
-
<a href="#
|
|
9284
|
+
<a href="#dependencies-in-v1515" class="md-nav__link">
|
|
9243
9285
|
<span class="md-ellipsis">
|
|
9244
|
-
Dependencies
|
|
9286
|
+
Dependencies in v1.5.15
|
|
9245
9287
|
</span>
|
|
9246
9288
|
</a>
|
|
9247
9289
|
|
|
9248
9290
|
</li>
|
|
9249
9291
|
|
|
9250
9292
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9293
|
+
<a href="#documentation-in-v1515" class="md-nav__link">
|
|
9252
9294
|
<span class="md-ellipsis">
|
|
9253
|
-
Documentation
|
|
9295
|
+
Documentation in v1.5.15
|
|
9254
9296
|
</span>
|
|
9255
9297
|
</a>
|
|
9256
9298
|
|
|
9257
9299
|
</li>
|
|
9258
9300
|
|
|
9259
9301
|
<li class="md-nav__item">
|
|
9260
|
-
<a href="#
|
|
9302
|
+
<a href="#housekeeping-in-v1515" class="md-nav__link">
|
|
9261
9303
|
<span class="md-ellipsis">
|
|
9262
|
-
Housekeeping
|
|
9304
|
+
Housekeeping in v1.5.15
|
|
9263
9305
|
</span>
|
|
9264
9306
|
</a>
|
|
9265
9307
|
|
|
@@ -9281,27 +9323,27 @@
|
|
|
9281
9323
|
<ul class="md-nav__list">
|
|
9282
9324
|
|
|
9283
9325
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9326
|
+
<a href="#added-in-v1514" class="md-nav__link">
|
|
9285
9327
|
<span class="md-ellipsis">
|
|
9286
|
-
Added
|
|
9328
|
+
Added in v1.5.14
|
|
9287
9329
|
</span>
|
|
9288
9330
|
</a>
|
|
9289
9331
|
|
|
9290
9332
|
</li>
|
|
9291
9333
|
|
|
9292
9334
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9335
|
+
<a href="#documentation-in-v1514" class="md-nav__link">
|
|
9294
9336
|
<span class="md-ellipsis">
|
|
9295
|
-
Documentation
|
|
9337
|
+
Documentation in v1.5.14
|
|
9296
9338
|
</span>
|
|
9297
9339
|
</a>
|
|
9298
9340
|
|
|
9299
9341
|
</li>
|
|
9300
9342
|
|
|
9301
9343
|
<li class="md-nav__item">
|
|
9302
|
-
<a href="#
|
|
9344
|
+
<a href="#housekeeping-in-v1514" class="md-nav__link">
|
|
9303
9345
|
<span class="md-ellipsis">
|
|
9304
|
-
Housekeeping
|
|
9346
|
+
Housekeeping in v1.5.14
|
|
9305
9347
|
</span>
|
|
9306
9348
|
</a>
|
|
9307
9349
|
|
|
@@ -9323,54 +9365,54 @@
|
|
|
9323
9365
|
<ul class="md-nav__list">
|
|
9324
9366
|
|
|
9325
9367
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9368
|
+
<a href="#added-in-v1513" class="md-nav__link">
|
|
9327
9369
|
<span class="md-ellipsis">
|
|
9328
|
-
Added
|
|
9370
|
+
Added in v1.5.13
|
|
9329
9371
|
</span>
|
|
9330
9372
|
</a>
|
|
9331
9373
|
|
|
9332
9374
|
</li>
|
|
9333
9375
|
|
|
9334
9376
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9377
|
+
<a href="#changed-in-v1513" class="md-nav__link">
|
|
9336
9378
|
<span class="md-ellipsis">
|
|
9337
|
-
Changed
|
|
9379
|
+
Changed in v1.5.13
|
|
9338
9380
|
</span>
|
|
9339
9381
|
</a>
|
|
9340
9382
|
|
|
9341
9383
|
</li>
|
|
9342
9384
|
|
|
9343
9385
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9386
|
+
<a href="#removed-in-v1513" class="md-nav__link">
|
|
9345
9387
|
<span class="md-ellipsis">
|
|
9346
|
-
Removed
|
|
9388
|
+
Removed in v1.5.13
|
|
9347
9389
|
</span>
|
|
9348
9390
|
</a>
|
|
9349
9391
|
|
|
9350
9392
|
</li>
|
|
9351
9393
|
|
|
9352
9394
|
<li class="md-nav__item">
|
|
9353
|
-
<a href="#
|
|
9395
|
+
<a href="#fixed-in-v1513" class="md-nav__link">
|
|
9354
9396
|
<span class="md-ellipsis">
|
|
9355
|
-
Fixed
|
|
9397
|
+
Fixed in v1.5.13
|
|
9356
9398
|
</span>
|
|
9357
9399
|
</a>
|
|
9358
9400
|
|
|
9359
9401
|
</li>
|
|
9360
9402
|
|
|
9361
9403
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9404
|
+
<a href="#dependencies-in-v1513" class="md-nav__link">
|
|
9363
9405
|
<span class="md-ellipsis">
|
|
9364
|
-
Dependencies
|
|
9406
|
+
Dependencies in v1.5.13
|
|
9365
9407
|
</span>
|
|
9366
9408
|
</a>
|
|
9367
9409
|
|
|
9368
9410
|
</li>
|
|
9369
9411
|
|
|
9370
9412
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9413
|
+
<a href="#documentation-in-v1513" class="md-nav__link">
|
|
9372
9414
|
<span class="md-ellipsis">
|
|
9373
|
-
Documentation
|
|
9415
|
+
Documentation in v1.5.13
|
|
9374
9416
|
</span>
|
|
9375
9417
|
</a>
|
|
9376
9418
|
|
|
@@ -9392,36 +9434,36 @@
|
|
|
9392
9434
|
<ul class="md-nav__list">
|
|
9393
9435
|
|
|
9394
9436
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9437
|
+
<a href="#added-in-v1512" class="md-nav__link">
|
|
9396
9438
|
<span class="md-ellipsis">
|
|
9397
|
-
Added
|
|
9439
|
+
Added in v1.5.12
|
|
9398
9440
|
</span>
|
|
9399
9441
|
</a>
|
|
9400
9442
|
|
|
9401
9443
|
</li>
|
|
9402
9444
|
|
|
9403
9445
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9446
|
+
<a href="#changed-in-v1512" class="md-nav__link">
|
|
9405
9447
|
<span class="md-ellipsis">
|
|
9406
|
-
Changed
|
|
9448
|
+
Changed in v1.5.12
|
|
9407
9449
|
</span>
|
|
9408
9450
|
</a>
|
|
9409
9451
|
|
|
9410
9452
|
</li>
|
|
9411
9453
|
|
|
9412
9454
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9455
|
+
<a href="#fixed-in-v1512" class="md-nav__link">
|
|
9414
9456
|
<span class="md-ellipsis">
|
|
9415
|
-
Fixed
|
|
9457
|
+
Fixed in v1.5.12
|
|
9416
9458
|
</span>
|
|
9417
9459
|
</a>
|
|
9418
9460
|
|
|
9419
9461
|
</li>
|
|
9420
9462
|
|
|
9421
9463
|
<li class="md-nav__item">
|
|
9422
|
-
<a href="#
|
|
9464
|
+
<a href="#dependencies-in-v1512" class="md-nav__link">
|
|
9423
9465
|
<span class="md-ellipsis">
|
|
9424
|
-
Dependencies
|
|
9466
|
+
Dependencies in v1.5.12
|
|
9425
9467
|
</span>
|
|
9426
9468
|
</a>
|
|
9427
9469
|
|
|
@@ -9443,63 +9485,63 @@
|
|
|
9443
9485
|
<ul class="md-nav__list">
|
|
9444
9486
|
|
|
9445
9487
|
<li class="md-nav__item">
|
|
9446
|
-
<a href="#
|
|
9488
|
+
<a href="#security-in-v1511" class="md-nav__link">
|
|
9447
9489
|
<span class="md-ellipsis">
|
|
9448
|
-
Security
|
|
9490
|
+
Security in v1.5.11
|
|
9449
9491
|
</span>
|
|
9450
9492
|
</a>
|
|
9451
9493
|
|
|
9452
9494
|
</li>
|
|
9453
9495
|
|
|
9454
9496
|
<li class="md-nav__item">
|
|
9455
|
-
<a href="#
|
|
9497
|
+
<a href="#added-in-v1511" class="md-nav__link">
|
|
9456
9498
|
<span class="md-ellipsis">
|
|
9457
|
-
Added
|
|
9499
|
+
Added in v1.5.11
|
|
9458
9500
|
</span>
|
|
9459
9501
|
</a>
|
|
9460
9502
|
|
|
9461
9503
|
</li>
|
|
9462
9504
|
|
|
9463
9505
|
<li class="md-nav__item">
|
|
9464
|
-
<a href="#
|
|
9506
|
+
<a href="#changed-in-v1511" class="md-nav__link">
|
|
9465
9507
|
<span class="md-ellipsis">
|
|
9466
|
-
Changed
|
|
9508
|
+
Changed in v1.5.11
|
|
9467
9509
|
</span>
|
|
9468
9510
|
</a>
|
|
9469
9511
|
|
|
9470
9512
|
</li>
|
|
9471
9513
|
|
|
9472
9514
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9515
|
+
<a href="#fixed-in-v1511" class="md-nav__link">
|
|
9474
9516
|
<span class="md-ellipsis">
|
|
9475
|
-
Fixed
|
|
9517
|
+
Fixed in v1.5.11
|
|
9476
9518
|
</span>
|
|
9477
9519
|
</a>
|
|
9478
9520
|
|
|
9479
9521
|
</li>
|
|
9480
9522
|
|
|
9481
9523
|
<li class="md-nav__item">
|
|
9482
|
-
<a href="#
|
|
9524
|
+
<a href="#dependencies-in-v1511" class="md-nav__link">
|
|
9483
9525
|
<span class="md-ellipsis">
|
|
9484
|
-
Dependencies
|
|
9526
|
+
Dependencies in v1.5.11
|
|
9485
9527
|
</span>
|
|
9486
9528
|
</a>
|
|
9487
9529
|
|
|
9488
9530
|
</li>
|
|
9489
9531
|
|
|
9490
9532
|
<li class="md-nav__item">
|
|
9491
|
-
<a href="#
|
|
9533
|
+
<a href="#documentation-in-v1511" class="md-nav__link">
|
|
9492
9534
|
<span class="md-ellipsis">
|
|
9493
|
-
Documentation
|
|
9535
|
+
Documentation in v1.5.11
|
|
9494
9536
|
</span>
|
|
9495
9537
|
</a>
|
|
9496
9538
|
|
|
9497
9539
|
</li>
|
|
9498
9540
|
|
|
9499
9541
|
<li class="md-nav__item">
|
|
9500
|
-
<a href="#
|
|
9542
|
+
<a href="#housekeeping-in-v1511" class="md-nav__link">
|
|
9501
9543
|
<span class="md-ellipsis">
|
|
9502
|
-
Housekeeping
|
|
9544
|
+
Housekeeping in v1.5.11
|
|
9503
9545
|
</span>
|
|
9504
9546
|
</a>
|
|
9505
9547
|
|
|
@@ -9521,45 +9563,45 @@
|
|
|
9521
9563
|
<ul class="md-nav__list">
|
|
9522
9564
|
|
|
9523
9565
|
<li class="md-nav__item">
|
|
9524
|
-
<a href="#
|
|
9566
|
+
<a href="#security-in-v1510" class="md-nav__link">
|
|
9525
9567
|
<span class="md-ellipsis">
|
|
9526
|
-
Security
|
|
9568
|
+
Security in v1.5.10
|
|
9527
9569
|
</span>
|
|
9528
9570
|
</a>
|
|
9529
9571
|
|
|
9530
9572
|
</li>
|
|
9531
9573
|
|
|
9532
9574
|
<li class="md-nav__item">
|
|
9533
|
-
<a href="#
|
|
9575
|
+
<a href="#added-in-v1510" class="md-nav__link">
|
|
9534
9576
|
<span class="md-ellipsis">
|
|
9535
|
-
Added
|
|
9577
|
+
Added in v1.5.10
|
|
9536
9578
|
</span>
|
|
9537
9579
|
</a>
|
|
9538
9580
|
|
|
9539
9581
|
</li>
|
|
9540
9582
|
|
|
9541
9583
|
<li class="md-nav__item">
|
|
9542
|
-
<a href="#
|
|
9584
|
+
<a href="#fixed-in-v1510" class="md-nav__link">
|
|
9543
9585
|
<span class="md-ellipsis">
|
|
9544
|
-
Fixed
|
|
9586
|
+
Fixed in v1.5.10
|
|
9545
9587
|
</span>
|
|
9546
9588
|
</a>
|
|
9547
9589
|
|
|
9548
9590
|
</li>
|
|
9549
9591
|
|
|
9550
9592
|
<li class="md-nav__item">
|
|
9551
|
-
<a href="#
|
|
9593
|
+
<a href="#dependencies-in-v1510" class="md-nav__link">
|
|
9552
9594
|
<span class="md-ellipsis">
|
|
9553
|
-
Dependencies
|
|
9595
|
+
Dependencies in v1.5.10
|
|
9554
9596
|
</span>
|
|
9555
9597
|
</a>
|
|
9556
9598
|
|
|
9557
9599
|
</li>
|
|
9558
9600
|
|
|
9559
9601
|
<li class="md-nav__item">
|
|
9560
|
-
<a href="#
|
|
9602
|
+
<a href="#housekeeping-in-v1510" class="md-nav__link">
|
|
9561
9603
|
<span class="md-ellipsis">
|
|
9562
|
-
Housekeeping
|
|
9604
|
+
Housekeeping in v1.5.10
|
|
9563
9605
|
</span>
|
|
9564
9606
|
</a>
|
|
9565
9607
|
|
|
@@ -9581,36 +9623,36 @@
|
|
|
9581
9623
|
<ul class="md-nav__list">
|
|
9582
9624
|
|
|
9583
9625
|
<li class="md-nav__item">
|
|
9584
|
-
<a href="#
|
|
9626
|
+
<a href="#changed-in-v159" class="md-nav__link">
|
|
9585
9627
|
<span class="md-ellipsis">
|
|
9586
|
-
Changed
|
|
9628
|
+
Changed in v1.5.9
|
|
9587
9629
|
</span>
|
|
9588
9630
|
</a>
|
|
9589
9631
|
|
|
9590
9632
|
</li>
|
|
9591
9633
|
|
|
9592
9634
|
<li class="md-nav__item">
|
|
9593
|
-
<a href="#
|
|
9635
|
+
<a href="#fixed-in-v159" class="md-nav__link">
|
|
9594
9636
|
<span class="md-ellipsis">
|
|
9595
|
-
Fixed
|
|
9637
|
+
Fixed in v1.5.9
|
|
9596
9638
|
</span>
|
|
9597
9639
|
</a>
|
|
9598
9640
|
|
|
9599
9641
|
</li>
|
|
9600
9642
|
|
|
9601
9643
|
<li class="md-nav__item">
|
|
9602
|
-
<a href="#
|
|
9644
|
+
<a href="#dependencies-in-v159" class="md-nav__link">
|
|
9603
9645
|
<span class="md-ellipsis">
|
|
9604
|
-
Dependencies
|
|
9646
|
+
Dependencies in v1.5.9
|
|
9605
9647
|
</span>
|
|
9606
9648
|
</a>
|
|
9607
9649
|
|
|
9608
9650
|
</li>
|
|
9609
9651
|
|
|
9610
9652
|
<li class="md-nav__item">
|
|
9611
|
-
<a href="#
|
|
9653
|
+
<a href="#housekeeping-in-v159" class="md-nav__link">
|
|
9612
9654
|
<span class="md-ellipsis">
|
|
9613
|
-
Housekeeping
|
|
9655
|
+
Housekeeping in v1.5.9
|
|
9614
9656
|
</span>
|
|
9615
9657
|
</a>
|
|
9616
9658
|
|
|
@@ -9632,45 +9674,45 @@
|
|
|
9632
9674
|
<ul class="md-nav__list">
|
|
9633
9675
|
|
|
9634
9676
|
<li class="md-nav__item">
|
|
9635
|
-
<a href="#
|
|
9677
|
+
<a href="#security-in-v158" class="md-nav__link">
|
|
9636
9678
|
<span class="md-ellipsis">
|
|
9637
|
-
Security
|
|
9679
|
+
Security in v1.5.8
|
|
9638
9680
|
</span>
|
|
9639
9681
|
</a>
|
|
9640
9682
|
|
|
9641
9683
|
</li>
|
|
9642
9684
|
|
|
9643
9685
|
<li class="md-nav__item">
|
|
9644
|
-
<a href="#
|
|
9686
|
+
<a href="#changed-in-v158" class="md-nav__link">
|
|
9645
9687
|
<span class="md-ellipsis">
|
|
9646
|
-
Changed
|
|
9688
|
+
Changed in v1.5.8
|
|
9647
9689
|
</span>
|
|
9648
9690
|
</a>
|
|
9649
9691
|
|
|
9650
9692
|
</li>
|
|
9651
9693
|
|
|
9652
9694
|
<li class="md-nav__item">
|
|
9653
|
-
<a href="#
|
|
9695
|
+
<a href="#fixed-in-v158" class="md-nav__link">
|
|
9654
9696
|
<span class="md-ellipsis">
|
|
9655
|
-
Fixed
|
|
9697
|
+
Fixed in v1.5.8
|
|
9656
9698
|
</span>
|
|
9657
9699
|
</a>
|
|
9658
9700
|
|
|
9659
9701
|
</li>
|
|
9660
9702
|
|
|
9661
9703
|
<li class="md-nav__item">
|
|
9662
|
-
<a href="#
|
|
9704
|
+
<a href="#documentation-in-v158" class="md-nav__link">
|
|
9663
9705
|
<span class="md-ellipsis">
|
|
9664
|
-
Documentation
|
|
9706
|
+
Documentation in v1.5.8
|
|
9665
9707
|
</span>
|
|
9666
9708
|
</a>
|
|
9667
9709
|
|
|
9668
9710
|
</li>
|
|
9669
9711
|
|
|
9670
9712
|
<li class="md-nav__item">
|
|
9671
|
-
<a href="#
|
|
9713
|
+
<a href="#housekeeping-in-v158" class="md-nav__link">
|
|
9672
9714
|
<span class="md-ellipsis">
|
|
9673
|
-
Housekeeping
|
|
9715
|
+
Housekeeping in v1.5.8
|
|
9674
9716
|
</span>
|
|
9675
9717
|
</a>
|
|
9676
9718
|
|
|
@@ -9692,18 +9734,18 @@
|
|
|
9692
9734
|
<ul class="md-nav__list">
|
|
9693
9735
|
|
|
9694
9736
|
<li class="md-nav__item">
|
|
9695
|
-
<a href="#
|
|
9737
|
+
<a href="#security-in-v157" class="md-nav__link">
|
|
9696
9738
|
<span class="md-ellipsis">
|
|
9697
|
-
Security
|
|
9739
|
+
Security in v1.5.7
|
|
9698
9740
|
</span>
|
|
9699
9741
|
</a>
|
|
9700
9742
|
|
|
9701
9743
|
</li>
|
|
9702
9744
|
|
|
9703
9745
|
<li class="md-nav__item">
|
|
9704
|
-
<a href="#
|
|
9746
|
+
<a href="#fixed-in-v157" class="md-nav__link">
|
|
9705
9747
|
<span class="md-ellipsis">
|
|
9706
|
-
Fixed
|
|
9748
|
+
Fixed in v1.5.7
|
|
9707
9749
|
</span>
|
|
9708
9750
|
</a>
|
|
9709
9751
|
|
|
@@ -9725,45 +9767,45 @@
|
|
|
9725
9767
|
<ul class="md-nav__list">
|
|
9726
9768
|
|
|
9727
9769
|
<li class="md-nav__item">
|
|
9728
|
-
<a href="#
|
|
9770
|
+
<a href="#added-in-v156" class="md-nav__link">
|
|
9729
9771
|
<span class="md-ellipsis">
|
|
9730
|
-
Added
|
|
9772
|
+
Added in v1.5.6
|
|
9731
9773
|
</span>
|
|
9732
9774
|
</a>
|
|
9733
9775
|
|
|
9734
9776
|
</li>
|
|
9735
9777
|
|
|
9736
9778
|
<li class="md-nav__item">
|
|
9737
|
-
<a href="#
|
|
9779
|
+
<a href="#fixed-in-v156" class="md-nav__link">
|
|
9738
9780
|
<span class="md-ellipsis">
|
|
9739
|
-
Fixed
|
|
9781
|
+
Fixed in v1.5.6
|
|
9740
9782
|
</span>
|
|
9741
9783
|
</a>
|
|
9742
9784
|
|
|
9743
9785
|
</li>
|
|
9744
9786
|
|
|
9745
9787
|
<li class="md-nav__item">
|
|
9746
|
-
<a href="#
|
|
9788
|
+
<a href="#dependencies-in-v156" class="md-nav__link">
|
|
9747
9789
|
<span class="md-ellipsis">
|
|
9748
|
-
Dependencies
|
|
9790
|
+
Dependencies in v1.5.6
|
|
9749
9791
|
</span>
|
|
9750
9792
|
</a>
|
|
9751
9793
|
|
|
9752
9794
|
</li>
|
|
9753
9795
|
|
|
9754
9796
|
<li class="md-nav__item">
|
|
9755
|
-
<a href="#
|
|
9797
|
+
<a href="#documentation-in-v156" class="md-nav__link">
|
|
9756
9798
|
<span class="md-ellipsis">
|
|
9757
|
-
Documentation
|
|
9799
|
+
Documentation in v1.5.6
|
|
9758
9800
|
</span>
|
|
9759
9801
|
</a>
|
|
9760
9802
|
|
|
9761
9803
|
</li>
|
|
9762
9804
|
|
|
9763
9805
|
<li class="md-nav__item">
|
|
9764
|
-
<a href="#
|
|
9806
|
+
<a href="#housekeeping-in-v156" class="md-nav__link">
|
|
9765
9807
|
<span class="md-ellipsis">
|
|
9766
|
-
Housekeeping
|
|
9808
|
+
Housekeeping in v1.5.6
|
|
9767
9809
|
</span>
|
|
9768
9810
|
</a>
|
|
9769
9811
|
|
|
@@ -9785,27 +9827,27 @@
|
|
|
9785
9827
|
<ul class="md-nav__list">
|
|
9786
9828
|
|
|
9787
9829
|
<li class="md-nav__item">
|
|
9788
|
-
<a href="#
|
|
9830
|
+
<a href="#changed-in-v155" class="md-nav__link">
|
|
9789
9831
|
<span class="md-ellipsis">
|
|
9790
|
-
Changed
|
|
9832
|
+
Changed in v1.5.5
|
|
9791
9833
|
</span>
|
|
9792
9834
|
</a>
|
|
9793
9835
|
|
|
9794
9836
|
</li>
|
|
9795
9837
|
|
|
9796
9838
|
<li class="md-nav__item">
|
|
9797
|
-
<a href="#
|
|
9839
|
+
<a href="#fixed-in-v155" class="md-nav__link">
|
|
9798
9840
|
<span class="md-ellipsis">
|
|
9799
|
-
Fixed
|
|
9841
|
+
Fixed in v1.5.5
|
|
9800
9842
|
</span>
|
|
9801
9843
|
</a>
|
|
9802
9844
|
|
|
9803
9845
|
</li>
|
|
9804
9846
|
|
|
9805
9847
|
<li class="md-nav__item">
|
|
9806
|
-
<a href="#
|
|
9848
|
+
<a href="#housekeeping-in-v155" class="md-nav__link">
|
|
9807
9849
|
<span class="md-ellipsis">
|
|
9808
|
-
Housekeeping
|
|
9850
|
+
Housekeeping in v1.5.5
|
|
9809
9851
|
</span>
|
|
9810
9852
|
</a>
|
|
9811
9853
|
|
|
@@ -9827,18 +9869,18 @@
|
|
|
9827
9869
|
<ul class="md-nav__list">
|
|
9828
9870
|
|
|
9829
9871
|
<li class="md-nav__item">
|
|
9830
|
-
<a href="#
|
|
9872
|
+
<a href="#fixed-in-v154" class="md-nav__link">
|
|
9831
9873
|
<span class="md-ellipsis">
|
|
9832
|
-
Fixed
|
|
9874
|
+
Fixed in v1.5.4
|
|
9833
9875
|
</span>
|
|
9834
9876
|
</a>
|
|
9835
9877
|
|
|
9836
9878
|
</li>
|
|
9837
9879
|
|
|
9838
9880
|
<li class="md-nav__item">
|
|
9839
|
-
<a href="#
|
|
9881
|
+
<a href="#documentation-in-v154" class="md-nav__link">
|
|
9840
9882
|
<span class="md-ellipsis">
|
|
9841
|
-
Documentation
|
|
9883
|
+
Documentation in v1.5.4
|
|
9842
9884
|
</span>
|
|
9843
9885
|
</a>
|
|
9844
9886
|
|
|
@@ -9860,9 +9902,9 @@
|
|
|
9860
9902
|
<ul class="md-nav__list">
|
|
9861
9903
|
|
|
9862
9904
|
<li class="md-nav__item">
|
|
9863
|
-
<a href="#
|
|
9905
|
+
<a href="#fixed-in-v153" class="md-nav__link">
|
|
9864
9906
|
<span class="md-ellipsis">
|
|
9865
|
-
Fixed
|
|
9907
|
+
Fixed in v1.5.3
|
|
9866
9908
|
</span>
|
|
9867
9909
|
</a>
|
|
9868
9910
|
|
|
@@ -9884,54 +9926,54 @@
|
|
|
9884
9926
|
<ul class="md-nav__list">
|
|
9885
9927
|
|
|
9886
9928
|
<li class="md-nav__item">
|
|
9887
|
-
<a href="#
|
|
9929
|
+
<a href="#added-in-v152" class="md-nav__link">
|
|
9888
9930
|
<span class="md-ellipsis">
|
|
9889
|
-
Added
|
|
9931
|
+
Added in v1.5.2
|
|
9890
9932
|
</span>
|
|
9891
9933
|
</a>
|
|
9892
9934
|
|
|
9893
9935
|
</li>
|
|
9894
9936
|
|
|
9895
9937
|
<li class="md-nav__item">
|
|
9896
|
-
<a href="#
|
|
9938
|
+
<a href="#changed-in-v152" class="md-nav__link">
|
|
9897
9939
|
<span class="md-ellipsis">
|
|
9898
|
-
Changed
|
|
9940
|
+
Changed in v1.5.2
|
|
9899
9941
|
</span>
|
|
9900
9942
|
</a>
|
|
9901
9943
|
|
|
9902
9944
|
</li>
|
|
9903
9945
|
|
|
9904
9946
|
<li class="md-nav__item">
|
|
9905
|
-
<a href="#
|
|
9947
|
+
<a href="#fixed-in-v152" class="md-nav__link">
|
|
9906
9948
|
<span class="md-ellipsis">
|
|
9907
|
-
Fixed
|
|
9949
|
+
Fixed in v1.5.2
|
|
9908
9950
|
</span>
|
|
9909
9951
|
</a>
|
|
9910
9952
|
|
|
9911
9953
|
</li>
|
|
9912
9954
|
|
|
9913
9955
|
<li class="md-nav__item">
|
|
9914
|
-
<a href="#
|
|
9956
|
+
<a href="#dependencies-in-v152" class="md-nav__link">
|
|
9915
9957
|
<span class="md-ellipsis">
|
|
9916
|
-
Dependencies
|
|
9958
|
+
Dependencies in v1.5.2
|
|
9917
9959
|
</span>
|
|
9918
9960
|
</a>
|
|
9919
9961
|
|
|
9920
9962
|
</li>
|
|
9921
9963
|
|
|
9922
9964
|
<li class="md-nav__item">
|
|
9923
|
-
<a href="#
|
|
9965
|
+
<a href="#documentation-in-v152" class="md-nav__link">
|
|
9924
9966
|
<span class="md-ellipsis">
|
|
9925
|
-
Documentation
|
|
9967
|
+
Documentation in v1.5.2
|
|
9926
9968
|
</span>
|
|
9927
9969
|
</a>
|
|
9928
9970
|
|
|
9929
9971
|
</li>
|
|
9930
9972
|
|
|
9931
9973
|
<li class="md-nav__item">
|
|
9932
|
-
<a href="#
|
|
9974
|
+
<a href="#housekeeping-in-v152" class="md-nav__link">
|
|
9933
9975
|
<span class="md-ellipsis">
|
|
9934
|
-
Housekeeping
|
|
9976
|
+
Housekeeping in v1.5.2
|
|
9935
9977
|
</span>
|
|
9936
9978
|
</a>
|
|
9937
9979
|
|
|
@@ -9953,27 +9995,27 @@
|
|
|
9953
9995
|
<ul class="md-nav__list">
|
|
9954
9996
|
|
|
9955
9997
|
<li class="md-nav__item">
|
|
9956
|
-
<a href="#
|
|
9998
|
+
<a href="#added-in-v151" class="md-nav__link">
|
|
9957
9999
|
<span class="md-ellipsis">
|
|
9958
|
-
Added
|
|
10000
|
+
Added in v1.5.1
|
|
9959
10001
|
</span>
|
|
9960
10002
|
</a>
|
|
9961
10003
|
|
|
9962
10004
|
</li>
|
|
9963
10005
|
|
|
9964
10006
|
<li class="md-nav__item">
|
|
9965
|
-
<a href="#
|
|
10007
|
+
<a href="#fixed-in-v151" class="md-nav__link">
|
|
9966
10008
|
<span class="md-ellipsis">
|
|
9967
|
-
Fixed
|
|
10009
|
+
Fixed in v1.5.1
|
|
9968
10010
|
</span>
|
|
9969
10011
|
</a>
|
|
9970
10012
|
|
|
9971
10013
|
</li>
|
|
9972
10014
|
|
|
9973
10015
|
<li class="md-nav__item">
|
|
9974
|
-
<a href="#
|
|
10016
|
+
<a href="#housekeeping-in-v151" class="md-nav__link">
|
|
9975
10017
|
<span class="md-ellipsis">
|
|
9976
|
-
Housekeeping
|
|
10018
|
+
Housekeeping in v1.5.1
|
|
9977
10019
|
</span>
|
|
9978
10020
|
</a>
|
|
9979
10021
|
|
|
@@ -10004,54 +10046,54 @@
|
|
|
10004
10046
|
<ul class="md-nav__list">
|
|
10005
10047
|
|
|
10006
10048
|
<li class="md-nav__item">
|
|
10007
|
-
<a href="#
|
|
10049
|
+
<a href="#added-in-v150-beta1" class="md-nav__link">
|
|
10008
10050
|
<span class="md-ellipsis">
|
|
10009
|
-
Added
|
|
10051
|
+
Added in v1.5.0-beta.1
|
|
10010
10052
|
</span>
|
|
10011
10053
|
</a>
|
|
10012
10054
|
|
|
10013
10055
|
</li>
|
|
10014
10056
|
|
|
10015
10057
|
<li class="md-nav__item">
|
|
10016
|
-
<a href="#
|
|
10058
|
+
<a href="#changed-in-v150-beta1" class="md-nav__link">
|
|
10017
10059
|
<span class="md-ellipsis">
|
|
10018
|
-
Changed
|
|
10060
|
+
Changed in v1.5.0-beta.1
|
|
10019
10061
|
</span>
|
|
10020
10062
|
</a>
|
|
10021
10063
|
|
|
10022
10064
|
</li>
|
|
10023
10065
|
|
|
10024
10066
|
<li class="md-nav__item">
|
|
10025
|
-
<a href="#
|
|
10067
|
+
<a href="#fixed-in-v150-beta1" class="md-nav__link">
|
|
10026
10068
|
<span class="md-ellipsis">
|
|
10027
|
-
Fixed
|
|
10069
|
+
Fixed in v1.5.0-beta.1
|
|
10028
10070
|
</span>
|
|
10029
10071
|
</a>
|
|
10030
10072
|
|
|
10031
10073
|
</li>
|
|
10032
10074
|
|
|
10033
10075
|
<li class="md-nav__item">
|
|
10034
|
-
<a href="#
|
|
10076
|
+
<a href="#dependencies-in-v150-beta1" class="md-nav__link">
|
|
10035
10077
|
<span class="md-ellipsis">
|
|
10036
|
-
Dependencies
|
|
10078
|
+
Dependencies in v1.5.0-beta.1
|
|
10037
10079
|
</span>
|
|
10038
10080
|
</a>
|
|
10039
10081
|
|
|
10040
10082
|
</li>
|
|
10041
10083
|
|
|
10042
10084
|
<li class="md-nav__item">
|
|
10043
|
-
<a href="#
|
|
10085
|
+
<a href="#documentation-in-v150-beta1" class="md-nav__link">
|
|
10044
10086
|
<span class="md-ellipsis">
|
|
10045
|
-
Documentation
|
|
10087
|
+
Documentation in v1.5.0-beta.1
|
|
10046
10088
|
</span>
|
|
10047
10089
|
</a>
|
|
10048
10090
|
|
|
10049
10091
|
</li>
|
|
10050
10092
|
|
|
10051
10093
|
<li class="md-nav__item">
|
|
10052
|
-
<a href="#
|
|
10094
|
+
<a href="#housekeeping-in-v150-beta1" class="md-nav__link">
|
|
10053
10095
|
<span class="md-ellipsis">
|
|
10054
|
-
Housekeeping
|
|
10096
|
+
Housekeeping in v1.5.0-beta.1
|
|
10055
10097
|
</span>
|
|
10056
10098
|
</a>
|
|
10057
10099
|
|
|
@@ -10693,18 +10735,18 @@
|
|
|
10693
10735
|
<ul class="md-nav__list">
|
|
10694
10736
|
|
|
10695
10737
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#security" class="md-nav__link">
|
|
10738
|
+
<a href="#security-in-v1524" class="md-nav__link">
|
|
10697
10739
|
<span class="md-ellipsis">
|
|
10698
|
-
Security
|
|
10740
|
+
Security in v1.5.24
|
|
10699
10741
|
</span>
|
|
10700
10742
|
</a>
|
|
10701
10743
|
|
|
10702
10744
|
</li>
|
|
10703
10745
|
|
|
10704
10746
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#fixed" class="md-nav__link">
|
|
10747
|
+
<a href="#fixed-in-v1524" class="md-nav__link">
|
|
10706
10748
|
<span class="md-ellipsis">
|
|
10707
|
-
Fixed
|
|
10749
|
+
Fixed in v1.5.24
|
|
10708
10750
|
</span>
|
|
10709
10751
|
</a>
|
|
10710
10752
|
|
|
@@ -10726,63 +10768,63 @@
|
|
|
10726
10768
|
<ul class="md-nav__list">
|
|
10727
10769
|
|
|
10728
10770
|
<li class="md-nav__item">
|
|
10729
|
-
<a href="#
|
|
10771
|
+
<a href="#security-in-v1523" class="md-nav__link">
|
|
10730
10772
|
<span class="md-ellipsis">
|
|
10731
|
-
Security
|
|
10773
|
+
Security in v1.5.23
|
|
10732
10774
|
</span>
|
|
10733
10775
|
</a>
|
|
10734
10776
|
|
|
10735
10777
|
</li>
|
|
10736
10778
|
|
|
10737
10779
|
<li class="md-nav__item">
|
|
10738
|
-
<a href="#
|
|
10780
|
+
<a href="#added-in-v1523" class="md-nav__link">
|
|
10739
10781
|
<span class="md-ellipsis">
|
|
10740
|
-
Added
|
|
10782
|
+
Added in v1.5.23
|
|
10741
10783
|
</span>
|
|
10742
10784
|
</a>
|
|
10743
10785
|
|
|
10744
10786
|
</li>
|
|
10745
10787
|
|
|
10746
10788
|
<li class="md-nav__item">
|
|
10747
|
-
<a href="#
|
|
10789
|
+
<a href="#changed-in-v1523" class="md-nav__link">
|
|
10748
10790
|
<span class="md-ellipsis">
|
|
10749
|
-
Changed
|
|
10791
|
+
Changed in v1.5.23
|
|
10750
10792
|
</span>
|
|
10751
10793
|
</a>
|
|
10752
10794
|
|
|
10753
10795
|
</li>
|
|
10754
10796
|
|
|
10755
10797
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
10798
|
+
<a href="#fixed-in-v1523" class="md-nav__link">
|
|
10757
10799
|
<span class="md-ellipsis">
|
|
10758
|
-
Fixed
|
|
10800
|
+
Fixed in v1.5.23
|
|
10759
10801
|
</span>
|
|
10760
10802
|
</a>
|
|
10761
10803
|
|
|
10762
10804
|
</li>
|
|
10763
10805
|
|
|
10764
10806
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10807
|
+
<a href="#dependencies-in-v1523" class="md-nav__link">
|
|
10766
10808
|
<span class="md-ellipsis">
|
|
10767
|
-
Dependencies
|
|
10809
|
+
Dependencies in v1.5.23
|
|
10768
10810
|
</span>
|
|
10769
10811
|
</a>
|
|
10770
10812
|
|
|
10771
10813
|
</li>
|
|
10772
10814
|
|
|
10773
10815
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#documentation" class="md-nav__link">
|
|
10816
|
+
<a href="#documentation-in-v1523" class="md-nav__link">
|
|
10775
10817
|
<span class="md-ellipsis">
|
|
10776
|
-
Documentation
|
|
10818
|
+
Documentation in v1.5.23
|
|
10777
10819
|
</span>
|
|
10778
10820
|
</a>
|
|
10779
10821
|
|
|
10780
10822
|
</li>
|
|
10781
10823
|
|
|
10782
10824
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10825
|
+
<a href="#housekeeping-in-v1523" class="md-nav__link">
|
|
10784
10826
|
<span class="md-ellipsis">
|
|
10785
|
-
Housekeeping
|
|
10827
|
+
Housekeeping in v1.5.23
|
|
10786
10828
|
</span>
|
|
10787
10829
|
</a>
|
|
10788
10830
|
|
|
@@ -10804,45 +10846,45 @@
|
|
|
10804
10846
|
<ul class="md-nav__list">
|
|
10805
10847
|
|
|
10806
10848
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#
|
|
10849
|
+
<a href="#security-in-v1522" class="md-nav__link">
|
|
10808
10850
|
<span class="md-ellipsis">
|
|
10809
|
-
Security
|
|
10851
|
+
Security in v1.5.22
|
|
10810
10852
|
</span>
|
|
10811
10853
|
</a>
|
|
10812
10854
|
|
|
10813
10855
|
</li>
|
|
10814
10856
|
|
|
10815
10857
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#
|
|
10858
|
+
<a href="#added-in-v1522" class="md-nav__link">
|
|
10817
10859
|
<span class="md-ellipsis">
|
|
10818
|
-
Added
|
|
10860
|
+
Added in v1.5.22
|
|
10819
10861
|
</span>
|
|
10820
10862
|
</a>
|
|
10821
10863
|
|
|
10822
10864
|
</li>
|
|
10823
10865
|
|
|
10824
10866
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
10867
|
+
<a href="#fixed-in-v1522" class="md-nav__link">
|
|
10826
10868
|
<span class="md-ellipsis">
|
|
10827
|
-
Fixed
|
|
10869
|
+
Fixed in v1.5.22
|
|
10828
10870
|
</span>
|
|
10829
10871
|
</a>
|
|
10830
10872
|
|
|
10831
10873
|
</li>
|
|
10832
10874
|
|
|
10833
10875
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
10876
|
+
<a href="#documentation-in-v1522" class="md-nav__link">
|
|
10835
10877
|
<span class="md-ellipsis">
|
|
10836
|
-
Documentation
|
|
10878
|
+
Documentation in v1.5.22
|
|
10837
10879
|
</span>
|
|
10838
10880
|
</a>
|
|
10839
10881
|
|
|
10840
10882
|
</li>
|
|
10841
10883
|
|
|
10842
10884
|
<li class="md-nav__item">
|
|
10843
|
-
<a href="#
|
|
10885
|
+
<a href="#housekeeping-in-v1522" class="md-nav__link">
|
|
10844
10886
|
<span class="md-ellipsis">
|
|
10845
|
-
Housekeeping
|
|
10887
|
+
Housekeeping in v1.5.22
|
|
10846
10888
|
</span>
|
|
10847
10889
|
</a>
|
|
10848
10890
|
|
|
@@ -10864,36 +10906,36 @@
|
|
|
10864
10906
|
<ul class="md-nav__list">
|
|
10865
10907
|
|
|
10866
10908
|
<li class="md-nav__item">
|
|
10867
|
-
<a href="#
|
|
10909
|
+
<a href="#added-in-v1521" class="md-nav__link">
|
|
10868
10910
|
<span class="md-ellipsis">
|
|
10869
|
-
Added
|
|
10911
|
+
Added in v1.5.21
|
|
10870
10912
|
</span>
|
|
10871
10913
|
</a>
|
|
10872
10914
|
|
|
10873
10915
|
</li>
|
|
10874
10916
|
|
|
10875
10917
|
<li class="md-nav__item">
|
|
10876
|
-
<a href="#
|
|
10918
|
+
<a href="#fixed-in-v1521" class="md-nav__link">
|
|
10877
10919
|
<span class="md-ellipsis">
|
|
10878
|
-
Fixed
|
|
10920
|
+
Fixed in v1.5.21
|
|
10879
10921
|
</span>
|
|
10880
10922
|
</a>
|
|
10881
10923
|
|
|
10882
10924
|
</li>
|
|
10883
10925
|
|
|
10884
10926
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
10927
|
+
<a href="#dependencies-in-v1521" class="md-nav__link">
|
|
10886
10928
|
<span class="md-ellipsis">
|
|
10887
|
-
Dependencies
|
|
10929
|
+
Dependencies in v1.5.21
|
|
10888
10930
|
</span>
|
|
10889
10931
|
</a>
|
|
10890
10932
|
|
|
10891
10933
|
</li>
|
|
10892
10934
|
|
|
10893
10935
|
<li class="md-nav__item">
|
|
10894
|
-
<a href="#
|
|
10936
|
+
<a href="#documentation-in-v1521" class="md-nav__link">
|
|
10895
10937
|
<span class="md-ellipsis">
|
|
10896
|
-
Documentation
|
|
10938
|
+
Documentation in v1.5.21
|
|
10897
10939
|
</span>
|
|
10898
10940
|
</a>
|
|
10899
10941
|
|
|
@@ -10915,27 +10957,27 @@
|
|
|
10915
10957
|
<ul class="md-nav__list">
|
|
10916
10958
|
|
|
10917
10959
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
10960
|
+
<a href="#changed-in-v1520" class="md-nav__link">
|
|
10919
10961
|
<span class="md-ellipsis">
|
|
10920
|
-
Changed
|
|
10962
|
+
Changed in v1.5.20
|
|
10921
10963
|
</span>
|
|
10922
10964
|
</a>
|
|
10923
10965
|
|
|
10924
10966
|
</li>
|
|
10925
10967
|
|
|
10926
10968
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
10969
|
+
<a href="#fixed-in-v1520" class="md-nav__link">
|
|
10928
10970
|
<span class="md-ellipsis">
|
|
10929
|
-
Fixed
|
|
10971
|
+
Fixed in v1.5.20
|
|
10930
10972
|
</span>
|
|
10931
10973
|
</a>
|
|
10932
10974
|
|
|
10933
10975
|
</li>
|
|
10934
10976
|
|
|
10935
10977
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
10978
|
+
<a href="#documentation-in-v1520" class="md-nav__link">
|
|
10937
10979
|
<span class="md-ellipsis">
|
|
10938
|
-
Documentation
|
|
10980
|
+
Documentation in v1.5.20
|
|
10939
10981
|
</span>
|
|
10940
10982
|
</a>
|
|
10941
10983
|
|
|
@@ -10957,54 +10999,54 @@
|
|
|
10957
10999
|
<ul class="md-nav__list">
|
|
10958
11000
|
|
|
10959
11001
|
<li class="md-nav__item">
|
|
10960
|
-
<a href="#
|
|
11002
|
+
<a href="#security-in-v1519" class="md-nav__link">
|
|
10961
11003
|
<span class="md-ellipsis">
|
|
10962
|
-
Security
|
|
11004
|
+
Security in v1.5.19
|
|
10963
11005
|
</span>
|
|
10964
11006
|
</a>
|
|
10965
11007
|
|
|
10966
11008
|
</li>
|
|
10967
11009
|
|
|
10968
11010
|
<li class="md-nav__item">
|
|
10969
|
-
<a href="#
|
|
11011
|
+
<a href="#changed-in-v1519" class="md-nav__link">
|
|
10970
11012
|
<span class="md-ellipsis">
|
|
10971
|
-
Changed
|
|
11013
|
+
Changed in v1.5.19
|
|
10972
11014
|
</span>
|
|
10973
11015
|
</a>
|
|
10974
11016
|
|
|
10975
11017
|
</li>
|
|
10976
11018
|
|
|
10977
11019
|
<li class="md-nav__item">
|
|
10978
|
-
<a href="#
|
|
11020
|
+
<a href="#fixed-in-v1519" class="md-nav__link">
|
|
10979
11021
|
<span class="md-ellipsis">
|
|
10980
|
-
Fixed
|
|
11022
|
+
Fixed in v1.5.19
|
|
10981
11023
|
</span>
|
|
10982
11024
|
</a>
|
|
10983
11025
|
|
|
10984
11026
|
</li>
|
|
10985
11027
|
|
|
10986
11028
|
<li class="md-nav__item">
|
|
10987
|
-
<a href="#
|
|
11029
|
+
<a href="#dependencies-in-v1519" class="md-nav__link">
|
|
10988
11030
|
<span class="md-ellipsis">
|
|
10989
|
-
Dependencies
|
|
11031
|
+
Dependencies in v1.5.19
|
|
10990
11032
|
</span>
|
|
10991
11033
|
</a>
|
|
10992
11034
|
|
|
10993
11035
|
</li>
|
|
10994
11036
|
|
|
10995
11037
|
<li class="md-nav__item">
|
|
10996
|
-
<a href="#
|
|
11038
|
+
<a href="#documentation-in-v1519" class="md-nav__link">
|
|
10997
11039
|
<span class="md-ellipsis">
|
|
10998
|
-
Documentation
|
|
11040
|
+
Documentation in v1.5.19
|
|
10999
11041
|
</span>
|
|
11000
11042
|
</a>
|
|
11001
11043
|
|
|
11002
11044
|
</li>
|
|
11003
11045
|
|
|
11004
11046
|
<li class="md-nav__item">
|
|
11005
|
-
<a href="#
|
|
11047
|
+
<a href="#housekeeping-in-v1519" class="md-nav__link">
|
|
11006
11048
|
<span class="md-ellipsis">
|
|
11007
|
-
Housekeeping
|
|
11049
|
+
Housekeeping in v1.5.19
|
|
11008
11050
|
</span>
|
|
11009
11051
|
</a>
|
|
11010
11052
|
|
|
@@ -11026,54 +11068,54 @@
|
|
|
11026
11068
|
<ul class="md-nav__list">
|
|
11027
11069
|
|
|
11028
11070
|
<li class="md-nav__item">
|
|
11029
|
-
<a href="#
|
|
11071
|
+
<a href="#security-in-v1518" class="md-nav__link">
|
|
11030
11072
|
<span class="md-ellipsis">
|
|
11031
|
-
Security
|
|
11073
|
+
Security in v1.5.18
|
|
11032
11074
|
</span>
|
|
11033
11075
|
</a>
|
|
11034
11076
|
|
|
11035
11077
|
</li>
|
|
11036
11078
|
|
|
11037
11079
|
<li class="md-nav__item">
|
|
11038
|
-
<a href="#
|
|
11080
|
+
<a href="#added-in-v1518" class="md-nav__link">
|
|
11039
11081
|
<span class="md-ellipsis">
|
|
11040
|
-
Added
|
|
11082
|
+
Added in v1.5.18
|
|
11041
11083
|
</span>
|
|
11042
11084
|
</a>
|
|
11043
11085
|
|
|
11044
11086
|
</li>
|
|
11045
11087
|
|
|
11046
11088
|
<li class="md-nav__item">
|
|
11047
|
-
<a href="#
|
|
11089
|
+
<a href="#changed-in-v1518" class="md-nav__link">
|
|
11048
11090
|
<span class="md-ellipsis">
|
|
11049
|
-
Changed
|
|
11091
|
+
Changed in v1.5.18
|
|
11050
11092
|
</span>
|
|
11051
11093
|
</a>
|
|
11052
11094
|
|
|
11053
11095
|
</li>
|
|
11054
11096
|
|
|
11055
11097
|
<li class="md-nav__item">
|
|
11056
|
-
<a href="#
|
|
11098
|
+
<a href="#fixed-in-v1518" class="md-nav__link">
|
|
11057
11099
|
<span class="md-ellipsis">
|
|
11058
|
-
Fixed
|
|
11100
|
+
Fixed in v1.5.18
|
|
11059
11101
|
</span>
|
|
11060
11102
|
</a>
|
|
11061
11103
|
|
|
11062
11104
|
</li>
|
|
11063
11105
|
|
|
11064
11106
|
<li class="md-nav__item">
|
|
11065
|
-
<a href="#
|
|
11107
|
+
<a href="#documentation-in-v1518" class="md-nav__link">
|
|
11066
11108
|
<span class="md-ellipsis">
|
|
11067
|
-
Documentation
|
|
11109
|
+
Documentation in v1.5.18
|
|
11068
11110
|
</span>
|
|
11069
11111
|
</a>
|
|
11070
11112
|
|
|
11071
11113
|
</li>
|
|
11072
11114
|
|
|
11073
11115
|
<li class="md-nav__item">
|
|
11074
|
-
<a href="#
|
|
11116
|
+
<a href="#housekeeping-in-v1518" class="md-nav__link">
|
|
11075
11117
|
<span class="md-ellipsis">
|
|
11076
|
-
Housekeeping
|
|
11118
|
+
Housekeeping in v1.5.18
|
|
11077
11119
|
</span>
|
|
11078
11120
|
</a>
|
|
11079
11121
|
|
|
@@ -11095,45 +11137,45 @@
|
|
|
11095
11137
|
<ul class="md-nav__list">
|
|
11096
11138
|
|
|
11097
11139
|
<li class="md-nav__item">
|
|
11098
|
-
<a href="#
|
|
11140
|
+
<a href="#added-in-v1517" class="md-nav__link">
|
|
11099
11141
|
<span class="md-ellipsis">
|
|
11100
|
-
Added
|
|
11142
|
+
Added in v1.5.17
|
|
11101
11143
|
</span>
|
|
11102
11144
|
</a>
|
|
11103
11145
|
|
|
11104
11146
|
</li>
|
|
11105
11147
|
|
|
11106
11148
|
<li class="md-nav__item">
|
|
11107
|
-
<a href="#
|
|
11149
|
+
<a href="#changed-in-v1517" class="md-nav__link">
|
|
11108
11150
|
<span class="md-ellipsis">
|
|
11109
|
-
Changed
|
|
11151
|
+
Changed in v1.5.17
|
|
11110
11152
|
</span>
|
|
11111
11153
|
</a>
|
|
11112
11154
|
|
|
11113
11155
|
</li>
|
|
11114
11156
|
|
|
11115
11157
|
<li class="md-nav__item">
|
|
11116
|
-
<a href="#
|
|
11158
|
+
<a href="#fixed-in-v1517" class="md-nav__link">
|
|
11117
11159
|
<span class="md-ellipsis">
|
|
11118
|
-
Fixed
|
|
11160
|
+
Fixed in v1.5.17
|
|
11119
11161
|
</span>
|
|
11120
11162
|
</a>
|
|
11121
11163
|
|
|
11122
11164
|
</li>
|
|
11123
11165
|
|
|
11124
11166
|
<li class="md-nav__item">
|
|
11125
|
-
<a href="#
|
|
11167
|
+
<a href="#dependencies-in-v1517" class="md-nav__link">
|
|
11126
11168
|
<span class="md-ellipsis">
|
|
11127
|
-
Dependencies
|
|
11169
|
+
Dependencies in v1.5.17
|
|
11128
11170
|
</span>
|
|
11129
11171
|
</a>
|
|
11130
11172
|
|
|
11131
11173
|
</li>
|
|
11132
11174
|
|
|
11133
11175
|
<li class="md-nav__item">
|
|
11134
|
-
<a href="#
|
|
11176
|
+
<a href="#documentation-in-v1517" class="md-nav__link">
|
|
11135
11177
|
<span class="md-ellipsis">
|
|
11136
|
-
Documentation
|
|
11178
|
+
Documentation in v1.5.17
|
|
11137
11179
|
</span>
|
|
11138
11180
|
</a>
|
|
11139
11181
|
|
|
@@ -11155,27 +11197,27 @@
|
|
|
11155
11197
|
<ul class="md-nav__list">
|
|
11156
11198
|
|
|
11157
11199
|
<li class="md-nav__item">
|
|
11158
|
-
<a href="#
|
|
11200
|
+
<a href="#fixed-in-v1516" class="md-nav__link">
|
|
11159
11201
|
<span class="md-ellipsis">
|
|
11160
|
-
Fixed
|
|
11202
|
+
Fixed in v1.5.16
|
|
11161
11203
|
</span>
|
|
11162
11204
|
</a>
|
|
11163
11205
|
|
|
11164
11206
|
</li>
|
|
11165
11207
|
|
|
11166
11208
|
<li class="md-nav__item">
|
|
11167
|
-
<a href="#
|
|
11209
|
+
<a href="#documentation-in-v1516" class="md-nav__link">
|
|
11168
11210
|
<span class="md-ellipsis">
|
|
11169
|
-
Documentation
|
|
11211
|
+
Documentation in v1.5.16
|
|
11170
11212
|
</span>
|
|
11171
11213
|
</a>
|
|
11172
11214
|
|
|
11173
11215
|
</li>
|
|
11174
11216
|
|
|
11175
11217
|
<li class="md-nav__item">
|
|
11176
|
-
<a href="#
|
|
11218
|
+
<a href="#housekeeping-in-v1516" class="md-nav__link">
|
|
11177
11219
|
<span class="md-ellipsis">
|
|
11178
|
-
Housekeeping
|
|
11220
|
+
Housekeeping in v1.5.16
|
|
11179
11221
|
</span>
|
|
11180
11222
|
</a>
|
|
11181
11223
|
|
|
@@ -11197,63 +11239,63 @@
|
|
|
11197
11239
|
<ul class="md-nav__list">
|
|
11198
11240
|
|
|
11199
11241
|
<li class="md-nav__item">
|
|
11200
|
-
<a href="#
|
|
11242
|
+
<a href="#security-in-v1515" class="md-nav__link">
|
|
11201
11243
|
<span class="md-ellipsis">
|
|
11202
|
-
Security
|
|
11244
|
+
Security in v1.5.15
|
|
11203
11245
|
</span>
|
|
11204
11246
|
</a>
|
|
11205
11247
|
|
|
11206
11248
|
</li>
|
|
11207
11249
|
|
|
11208
11250
|
<li class="md-nav__item">
|
|
11209
|
-
<a href="#
|
|
11251
|
+
<a href="#changed-in-v1515" class="md-nav__link">
|
|
11210
11252
|
<span class="md-ellipsis">
|
|
11211
|
-
Changed
|
|
11253
|
+
Changed in v1.5.15
|
|
11212
11254
|
</span>
|
|
11213
11255
|
</a>
|
|
11214
11256
|
|
|
11215
11257
|
</li>
|
|
11216
11258
|
|
|
11217
11259
|
<li class="md-nav__item">
|
|
11218
|
-
<a href="#removed" class="md-nav__link">
|
|
11260
|
+
<a href="#removed-in-v1515" class="md-nav__link">
|
|
11219
11261
|
<span class="md-ellipsis">
|
|
11220
|
-
Removed
|
|
11262
|
+
Removed in v1.5.15
|
|
11221
11263
|
</span>
|
|
11222
11264
|
</a>
|
|
11223
11265
|
|
|
11224
11266
|
</li>
|
|
11225
11267
|
|
|
11226
11268
|
<li class="md-nav__item">
|
|
11227
|
-
<a href="#
|
|
11269
|
+
<a href="#fixed-in-v1515" class="md-nav__link">
|
|
11228
11270
|
<span class="md-ellipsis">
|
|
11229
|
-
Fixed
|
|
11271
|
+
Fixed in v1.5.15
|
|
11230
11272
|
</span>
|
|
11231
11273
|
</a>
|
|
11232
11274
|
|
|
11233
11275
|
</li>
|
|
11234
11276
|
|
|
11235
11277
|
<li class="md-nav__item">
|
|
11236
|
-
<a href="#
|
|
11278
|
+
<a href="#dependencies-in-v1515" class="md-nav__link">
|
|
11237
11279
|
<span class="md-ellipsis">
|
|
11238
|
-
Dependencies
|
|
11280
|
+
Dependencies in v1.5.15
|
|
11239
11281
|
</span>
|
|
11240
11282
|
</a>
|
|
11241
11283
|
|
|
11242
11284
|
</li>
|
|
11243
11285
|
|
|
11244
11286
|
<li class="md-nav__item">
|
|
11245
|
-
<a href="#
|
|
11287
|
+
<a href="#documentation-in-v1515" class="md-nav__link">
|
|
11246
11288
|
<span class="md-ellipsis">
|
|
11247
|
-
Documentation
|
|
11289
|
+
Documentation in v1.5.15
|
|
11248
11290
|
</span>
|
|
11249
11291
|
</a>
|
|
11250
11292
|
|
|
11251
11293
|
</li>
|
|
11252
11294
|
|
|
11253
11295
|
<li class="md-nav__item">
|
|
11254
|
-
<a href="#
|
|
11296
|
+
<a href="#housekeeping-in-v1515" class="md-nav__link">
|
|
11255
11297
|
<span class="md-ellipsis">
|
|
11256
|
-
Housekeeping
|
|
11298
|
+
Housekeeping in v1.5.15
|
|
11257
11299
|
</span>
|
|
11258
11300
|
</a>
|
|
11259
11301
|
|
|
@@ -11275,27 +11317,27 @@
|
|
|
11275
11317
|
<ul class="md-nav__list">
|
|
11276
11318
|
|
|
11277
11319
|
<li class="md-nav__item">
|
|
11278
|
-
<a href="#
|
|
11320
|
+
<a href="#added-in-v1514" class="md-nav__link">
|
|
11279
11321
|
<span class="md-ellipsis">
|
|
11280
|
-
Added
|
|
11322
|
+
Added in v1.5.14
|
|
11281
11323
|
</span>
|
|
11282
11324
|
</a>
|
|
11283
11325
|
|
|
11284
11326
|
</li>
|
|
11285
11327
|
|
|
11286
11328
|
<li class="md-nav__item">
|
|
11287
|
-
<a href="#
|
|
11329
|
+
<a href="#documentation-in-v1514" class="md-nav__link">
|
|
11288
11330
|
<span class="md-ellipsis">
|
|
11289
|
-
Documentation
|
|
11331
|
+
Documentation in v1.5.14
|
|
11290
11332
|
</span>
|
|
11291
11333
|
</a>
|
|
11292
11334
|
|
|
11293
11335
|
</li>
|
|
11294
11336
|
|
|
11295
11337
|
<li class="md-nav__item">
|
|
11296
|
-
<a href="#
|
|
11338
|
+
<a href="#housekeeping-in-v1514" class="md-nav__link">
|
|
11297
11339
|
<span class="md-ellipsis">
|
|
11298
|
-
Housekeeping
|
|
11340
|
+
Housekeeping in v1.5.14
|
|
11299
11341
|
</span>
|
|
11300
11342
|
</a>
|
|
11301
11343
|
|
|
@@ -11317,54 +11359,54 @@
|
|
|
11317
11359
|
<ul class="md-nav__list">
|
|
11318
11360
|
|
|
11319
11361
|
<li class="md-nav__item">
|
|
11320
|
-
<a href="#
|
|
11362
|
+
<a href="#added-in-v1513" class="md-nav__link">
|
|
11321
11363
|
<span class="md-ellipsis">
|
|
11322
|
-
Added
|
|
11364
|
+
Added in v1.5.13
|
|
11323
11365
|
</span>
|
|
11324
11366
|
</a>
|
|
11325
11367
|
|
|
11326
11368
|
</li>
|
|
11327
11369
|
|
|
11328
11370
|
<li class="md-nav__item">
|
|
11329
|
-
<a href="#
|
|
11371
|
+
<a href="#changed-in-v1513" class="md-nav__link">
|
|
11330
11372
|
<span class="md-ellipsis">
|
|
11331
|
-
Changed
|
|
11373
|
+
Changed in v1.5.13
|
|
11332
11374
|
</span>
|
|
11333
11375
|
</a>
|
|
11334
11376
|
|
|
11335
11377
|
</li>
|
|
11336
11378
|
|
|
11337
11379
|
<li class="md-nav__item">
|
|
11338
|
-
<a href="#
|
|
11380
|
+
<a href="#removed-in-v1513" class="md-nav__link">
|
|
11339
11381
|
<span class="md-ellipsis">
|
|
11340
|
-
Removed
|
|
11382
|
+
Removed in v1.5.13
|
|
11341
11383
|
</span>
|
|
11342
11384
|
</a>
|
|
11343
11385
|
|
|
11344
11386
|
</li>
|
|
11345
11387
|
|
|
11346
11388
|
<li class="md-nav__item">
|
|
11347
|
-
<a href="#
|
|
11389
|
+
<a href="#fixed-in-v1513" class="md-nav__link">
|
|
11348
11390
|
<span class="md-ellipsis">
|
|
11349
|
-
Fixed
|
|
11391
|
+
Fixed in v1.5.13
|
|
11350
11392
|
</span>
|
|
11351
11393
|
</a>
|
|
11352
11394
|
|
|
11353
11395
|
</li>
|
|
11354
11396
|
|
|
11355
11397
|
<li class="md-nav__item">
|
|
11356
|
-
<a href="#
|
|
11398
|
+
<a href="#dependencies-in-v1513" class="md-nav__link">
|
|
11357
11399
|
<span class="md-ellipsis">
|
|
11358
|
-
Dependencies
|
|
11400
|
+
Dependencies in v1.5.13
|
|
11359
11401
|
</span>
|
|
11360
11402
|
</a>
|
|
11361
11403
|
|
|
11362
11404
|
</li>
|
|
11363
11405
|
|
|
11364
11406
|
<li class="md-nav__item">
|
|
11365
|
-
<a href="#
|
|
11407
|
+
<a href="#documentation-in-v1513" class="md-nav__link">
|
|
11366
11408
|
<span class="md-ellipsis">
|
|
11367
|
-
Documentation
|
|
11409
|
+
Documentation in v1.5.13
|
|
11368
11410
|
</span>
|
|
11369
11411
|
</a>
|
|
11370
11412
|
|
|
@@ -11386,36 +11428,36 @@
|
|
|
11386
11428
|
<ul class="md-nav__list">
|
|
11387
11429
|
|
|
11388
11430
|
<li class="md-nav__item">
|
|
11389
|
-
<a href="#
|
|
11431
|
+
<a href="#added-in-v1512" class="md-nav__link">
|
|
11390
11432
|
<span class="md-ellipsis">
|
|
11391
|
-
Added
|
|
11433
|
+
Added in v1.5.12
|
|
11392
11434
|
</span>
|
|
11393
11435
|
</a>
|
|
11394
11436
|
|
|
11395
11437
|
</li>
|
|
11396
11438
|
|
|
11397
11439
|
<li class="md-nav__item">
|
|
11398
|
-
<a href="#
|
|
11440
|
+
<a href="#changed-in-v1512" class="md-nav__link">
|
|
11399
11441
|
<span class="md-ellipsis">
|
|
11400
|
-
Changed
|
|
11442
|
+
Changed in v1.5.12
|
|
11401
11443
|
</span>
|
|
11402
11444
|
</a>
|
|
11403
11445
|
|
|
11404
11446
|
</li>
|
|
11405
11447
|
|
|
11406
11448
|
<li class="md-nav__item">
|
|
11407
|
-
<a href="#
|
|
11449
|
+
<a href="#fixed-in-v1512" class="md-nav__link">
|
|
11408
11450
|
<span class="md-ellipsis">
|
|
11409
|
-
Fixed
|
|
11451
|
+
Fixed in v1.5.12
|
|
11410
11452
|
</span>
|
|
11411
11453
|
</a>
|
|
11412
11454
|
|
|
11413
11455
|
</li>
|
|
11414
11456
|
|
|
11415
11457
|
<li class="md-nav__item">
|
|
11416
|
-
<a href="#
|
|
11458
|
+
<a href="#dependencies-in-v1512" class="md-nav__link">
|
|
11417
11459
|
<span class="md-ellipsis">
|
|
11418
|
-
Dependencies
|
|
11460
|
+
Dependencies in v1.5.12
|
|
11419
11461
|
</span>
|
|
11420
11462
|
</a>
|
|
11421
11463
|
|
|
@@ -11437,63 +11479,63 @@
|
|
|
11437
11479
|
<ul class="md-nav__list">
|
|
11438
11480
|
|
|
11439
11481
|
<li class="md-nav__item">
|
|
11440
|
-
<a href="#
|
|
11482
|
+
<a href="#security-in-v1511" class="md-nav__link">
|
|
11441
11483
|
<span class="md-ellipsis">
|
|
11442
|
-
Security
|
|
11484
|
+
Security in v1.5.11
|
|
11443
11485
|
</span>
|
|
11444
11486
|
</a>
|
|
11445
11487
|
|
|
11446
11488
|
</li>
|
|
11447
11489
|
|
|
11448
11490
|
<li class="md-nav__item">
|
|
11449
|
-
<a href="#
|
|
11491
|
+
<a href="#added-in-v1511" class="md-nav__link">
|
|
11450
11492
|
<span class="md-ellipsis">
|
|
11451
|
-
Added
|
|
11493
|
+
Added in v1.5.11
|
|
11452
11494
|
</span>
|
|
11453
11495
|
</a>
|
|
11454
11496
|
|
|
11455
11497
|
</li>
|
|
11456
11498
|
|
|
11457
11499
|
<li class="md-nav__item">
|
|
11458
|
-
<a href="#
|
|
11500
|
+
<a href="#changed-in-v1511" class="md-nav__link">
|
|
11459
11501
|
<span class="md-ellipsis">
|
|
11460
|
-
Changed
|
|
11502
|
+
Changed in v1.5.11
|
|
11461
11503
|
</span>
|
|
11462
11504
|
</a>
|
|
11463
11505
|
|
|
11464
11506
|
</li>
|
|
11465
11507
|
|
|
11466
11508
|
<li class="md-nav__item">
|
|
11467
|
-
<a href="#
|
|
11509
|
+
<a href="#fixed-in-v1511" class="md-nav__link">
|
|
11468
11510
|
<span class="md-ellipsis">
|
|
11469
|
-
Fixed
|
|
11511
|
+
Fixed in v1.5.11
|
|
11470
11512
|
</span>
|
|
11471
11513
|
</a>
|
|
11472
11514
|
|
|
11473
11515
|
</li>
|
|
11474
11516
|
|
|
11475
11517
|
<li class="md-nav__item">
|
|
11476
|
-
<a href="#
|
|
11518
|
+
<a href="#dependencies-in-v1511" class="md-nav__link">
|
|
11477
11519
|
<span class="md-ellipsis">
|
|
11478
|
-
Dependencies
|
|
11520
|
+
Dependencies in v1.5.11
|
|
11479
11521
|
</span>
|
|
11480
11522
|
</a>
|
|
11481
11523
|
|
|
11482
11524
|
</li>
|
|
11483
11525
|
|
|
11484
11526
|
<li class="md-nav__item">
|
|
11485
|
-
<a href="#
|
|
11527
|
+
<a href="#documentation-in-v1511" class="md-nav__link">
|
|
11486
11528
|
<span class="md-ellipsis">
|
|
11487
|
-
Documentation
|
|
11529
|
+
Documentation in v1.5.11
|
|
11488
11530
|
</span>
|
|
11489
11531
|
</a>
|
|
11490
11532
|
|
|
11491
11533
|
</li>
|
|
11492
11534
|
|
|
11493
11535
|
<li class="md-nav__item">
|
|
11494
|
-
<a href="#
|
|
11536
|
+
<a href="#housekeeping-in-v1511" class="md-nav__link">
|
|
11495
11537
|
<span class="md-ellipsis">
|
|
11496
|
-
Housekeeping
|
|
11538
|
+
Housekeeping in v1.5.11
|
|
11497
11539
|
</span>
|
|
11498
11540
|
</a>
|
|
11499
11541
|
|
|
@@ -11515,45 +11557,45 @@
|
|
|
11515
11557
|
<ul class="md-nav__list">
|
|
11516
11558
|
|
|
11517
11559
|
<li class="md-nav__item">
|
|
11518
|
-
<a href="#
|
|
11560
|
+
<a href="#security-in-v1510" class="md-nav__link">
|
|
11519
11561
|
<span class="md-ellipsis">
|
|
11520
|
-
Security
|
|
11562
|
+
Security in v1.5.10
|
|
11521
11563
|
</span>
|
|
11522
11564
|
</a>
|
|
11523
11565
|
|
|
11524
11566
|
</li>
|
|
11525
11567
|
|
|
11526
11568
|
<li class="md-nav__item">
|
|
11527
|
-
<a href="#
|
|
11569
|
+
<a href="#added-in-v1510" class="md-nav__link">
|
|
11528
11570
|
<span class="md-ellipsis">
|
|
11529
|
-
Added
|
|
11571
|
+
Added in v1.5.10
|
|
11530
11572
|
</span>
|
|
11531
11573
|
</a>
|
|
11532
11574
|
|
|
11533
11575
|
</li>
|
|
11534
11576
|
|
|
11535
11577
|
<li class="md-nav__item">
|
|
11536
|
-
<a href="#
|
|
11578
|
+
<a href="#fixed-in-v1510" class="md-nav__link">
|
|
11537
11579
|
<span class="md-ellipsis">
|
|
11538
|
-
Fixed
|
|
11580
|
+
Fixed in v1.5.10
|
|
11539
11581
|
</span>
|
|
11540
11582
|
</a>
|
|
11541
11583
|
|
|
11542
11584
|
</li>
|
|
11543
11585
|
|
|
11544
11586
|
<li class="md-nav__item">
|
|
11545
|
-
<a href="#
|
|
11587
|
+
<a href="#dependencies-in-v1510" class="md-nav__link">
|
|
11546
11588
|
<span class="md-ellipsis">
|
|
11547
|
-
Dependencies
|
|
11589
|
+
Dependencies in v1.5.10
|
|
11548
11590
|
</span>
|
|
11549
11591
|
</a>
|
|
11550
11592
|
|
|
11551
11593
|
</li>
|
|
11552
11594
|
|
|
11553
11595
|
<li class="md-nav__item">
|
|
11554
|
-
<a href="#
|
|
11596
|
+
<a href="#housekeeping-in-v1510" class="md-nav__link">
|
|
11555
11597
|
<span class="md-ellipsis">
|
|
11556
|
-
Housekeeping
|
|
11598
|
+
Housekeeping in v1.5.10
|
|
11557
11599
|
</span>
|
|
11558
11600
|
</a>
|
|
11559
11601
|
|
|
@@ -11575,36 +11617,36 @@
|
|
|
11575
11617
|
<ul class="md-nav__list">
|
|
11576
11618
|
|
|
11577
11619
|
<li class="md-nav__item">
|
|
11578
|
-
<a href="#
|
|
11620
|
+
<a href="#changed-in-v159" class="md-nav__link">
|
|
11579
11621
|
<span class="md-ellipsis">
|
|
11580
|
-
Changed
|
|
11622
|
+
Changed in v1.5.9
|
|
11581
11623
|
</span>
|
|
11582
11624
|
</a>
|
|
11583
11625
|
|
|
11584
11626
|
</li>
|
|
11585
11627
|
|
|
11586
11628
|
<li class="md-nav__item">
|
|
11587
|
-
<a href="#
|
|
11629
|
+
<a href="#fixed-in-v159" class="md-nav__link">
|
|
11588
11630
|
<span class="md-ellipsis">
|
|
11589
|
-
Fixed
|
|
11631
|
+
Fixed in v1.5.9
|
|
11590
11632
|
</span>
|
|
11591
11633
|
</a>
|
|
11592
11634
|
|
|
11593
11635
|
</li>
|
|
11594
11636
|
|
|
11595
11637
|
<li class="md-nav__item">
|
|
11596
|
-
<a href="#
|
|
11638
|
+
<a href="#dependencies-in-v159" class="md-nav__link">
|
|
11597
11639
|
<span class="md-ellipsis">
|
|
11598
|
-
Dependencies
|
|
11640
|
+
Dependencies in v1.5.9
|
|
11599
11641
|
</span>
|
|
11600
11642
|
</a>
|
|
11601
11643
|
|
|
11602
11644
|
</li>
|
|
11603
11645
|
|
|
11604
11646
|
<li class="md-nav__item">
|
|
11605
|
-
<a href="#
|
|
11647
|
+
<a href="#housekeeping-in-v159" class="md-nav__link">
|
|
11606
11648
|
<span class="md-ellipsis">
|
|
11607
|
-
Housekeeping
|
|
11649
|
+
Housekeeping in v1.5.9
|
|
11608
11650
|
</span>
|
|
11609
11651
|
</a>
|
|
11610
11652
|
|
|
@@ -11626,45 +11668,45 @@
|
|
|
11626
11668
|
<ul class="md-nav__list">
|
|
11627
11669
|
|
|
11628
11670
|
<li class="md-nav__item">
|
|
11629
|
-
<a href="#
|
|
11671
|
+
<a href="#security-in-v158" class="md-nav__link">
|
|
11630
11672
|
<span class="md-ellipsis">
|
|
11631
|
-
Security
|
|
11673
|
+
Security in v1.5.8
|
|
11632
11674
|
</span>
|
|
11633
11675
|
</a>
|
|
11634
11676
|
|
|
11635
11677
|
</li>
|
|
11636
11678
|
|
|
11637
11679
|
<li class="md-nav__item">
|
|
11638
|
-
<a href="#
|
|
11680
|
+
<a href="#changed-in-v158" class="md-nav__link">
|
|
11639
11681
|
<span class="md-ellipsis">
|
|
11640
|
-
Changed
|
|
11682
|
+
Changed in v1.5.8
|
|
11641
11683
|
</span>
|
|
11642
11684
|
</a>
|
|
11643
11685
|
|
|
11644
11686
|
</li>
|
|
11645
11687
|
|
|
11646
11688
|
<li class="md-nav__item">
|
|
11647
|
-
<a href="#
|
|
11689
|
+
<a href="#fixed-in-v158" class="md-nav__link">
|
|
11648
11690
|
<span class="md-ellipsis">
|
|
11649
|
-
Fixed
|
|
11691
|
+
Fixed in v1.5.8
|
|
11650
11692
|
</span>
|
|
11651
11693
|
</a>
|
|
11652
11694
|
|
|
11653
11695
|
</li>
|
|
11654
11696
|
|
|
11655
11697
|
<li class="md-nav__item">
|
|
11656
|
-
<a href="#
|
|
11698
|
+
<a href="#documentation-in-v158" class="md-nav__link">
|
|
11657
11699
|
<span class="md-ellipsis">
|
|
11658
|
-
Documentation
|
|
11700
|
+
Documentation in v1.5.8
|
|
11659
11701
|
</span>
|
|
11660
11702
|
</a>
|
|
11661
11703
|
|
|
11662
11704
|
</li>
|
|
11663
11705
|
|
|
11664
11706
|
<li class="md-nav__item">
|
|
11665
|
-
<a href="#
|
|
11707
|
+
<a href="#housekeeping-in-v158" class="md-nav__link">
|
|
11666
11708
|
<span class="md-ellipsis">
|
|
11667
|
-
Housekeeping
|
|
11709
|
+
Housekeeping in v1.5.8
|
|
11668
11710
|
</span>
|
|
11669
11711
|
</a>
|
|
11670
11712
|
|
|
@@ -11686,18 +11728,18 @@
|
|
|
11686
11728
|
<ul class="md-nav__list">
|
|
11687
11729
|
|
|
11688
11730
|
<li class="md-nav__item">
|
|
11689
|
-
<a href="#
|
|
11731
|
+
<a href="#security-in-v157" class="md-nav__link">
|
|
11690
11732
|
<span class="md-ellipsis">
|
|
11691
|
-
Security
|
|
11733
|
+
Security in v1.5.7
|
|
11692
11734
|
</span>
|
|
11693
11735
|
</a>
|
|
11694
11736
|
|
|
11695
11737
|
</li>
|
|
11696
11738
|
|
|
11697
11739
|
<li class="md-nav__item">
|
|
11698
|
-
<a href="#
|
|
11740
|
+
<a href="#fixed-in-v157" class="md-nav__link">
|
|
11699
11741
|
<span class="md-ellipsis">
|
|
11700
|
-
Fixed
|
|
11742
|
+
Fixed in v1.5.7
|
|
11701
11743
|
</span>
|
|
11702
11744
|
</a>
|
|
11703
11745
|
|
|
@@ -11719,45 +11761,45 @@
|
|
|
11719
11761
|
<ul class="md-nav__list">
|
|
11720
11762
|
|
|
11721
11763
|
<li class="md-nav__item">
|
|
11722
|
-
<a href="#
|
|
11764
|
+
<a href="#added-in-v156" class="md-nav__link">
|
|
11723
11765
|
<span class="md-ellipsis">
|
|
11724
|
-
Added
|
|
11766
|
+
Added in v1.5.6
|
|
11725
11767
|
</span>
|
|
11726
11768
|
</a>
|
|
11727
11769
|
|
|
11728
11770
|
</li>
|
|
11729
11771
|
|
|
11730
11772
|
<li class="md-nav__item">
|
|
11731
|
-
<a href="#
|
|
11773
|
+
<a href="#fixed-in-v156" class="md-nav__link">
|
|
11732
11774
|
<span class="md-ellipsis">
|
|
11733
|
-
Fixed
|
|
11775
|
+
Fixed in v1.5.6
|
|
11734
11776
|
</span>
|
|
11735
11777
|
</a>
|
|
11736
11778
|
|
|
11737
11779
|
</li>
|
|
11738
11780
|
|
|
11739
11781
|
<li class="md-nav__item">
|
|
11740
|
-
<a href="#
|
|
11782
|
+
<a href="#dependencies-in-v156" class="md-nav__link">
|
|
11741
11783
|
<span class="md-ellipsis">
|
|
11742
|
-
Dependencies
|
|
11784
|
+
Dependencies in v1.5.6
|
|
11743
11785
|
</span>
|
|
11744
11786
|
</a>
|
|
11745
11787
|
|
|
11746
11788
|
</li>
|
|
11747
11789
|
|
|
11748
11790
|
<li class="md-nav__item">
|
|
11749
|
-
<a href="#
|
|
11791
|
+
<a href="#documentation-in-v156" class="md-nav__link">
|
|
11750
11792
|
<span class="md-ellipsis">
|
|
11751
|
-
Documentation
|
|
11793
|
+
Documentation in v1.5.6
|
|
11752
11794
|
</span>
|
|
11753
11795
|
</a>
|
|
11754
11796
|
|
|
11755
11797
|
</li>
|
|
11756
11798
|
|
|
11757
11799
|
<li class="md-nav__item">
|
|
11758
|
-
<a href="#
|
|
11800
|
+
<a href="#housekeeping-in-v156" class="md-nav__link">
|
|
11759
11801
|
<span class="md-ellipsis">
|
|
11760
|
-
Housekeeping
|
|
11802
|
+
Housekeeping in v1.5.6
|
|
11761
11803
|
</span>
|
|
11762
11804
|
</a>
|
|
11763
11805
|
|
|
@@ -11779,27 +11821,27 @@
|
|
|
11779
11821
|
<ul class="md-nav__list">
|
|
11780
11822
|
|
|
11781
11823
|
<li class="md-nav__item">
|
|
11782
|
-
<a href="#
|
|
11824
|
+
<a href="#changed-in-v155" class="md-nav__link">
|
|
11783
11825
|
<span class="md-ellipsis">
|
|
11784
|
-
Changed
|
|
11826
|
+
Changed in v1.5.5
|
|
11785
11827
|
</span>
|
|
11786
11828
|
</a>
|
|
11787
11829
|
|
|
11788
11830
|
</li>
|
|
11789
11831
|
|
|
11790
11832
|
<li class="md-nav__item">
|
|
11791
|
-
<a href="#
|
|
11833
|
+
<a href="#fixed-in-v155" class="md-nav__link">
|
|
11792
11834
|
<span class="md-ellipsis">
|
|
11793
|
-
Fixed
|
|
11835
|
+
Fixed in v1.5.5
|
|
11794
11836
|
</span>
|
|
11795
11837
|
</a>
|
|
11796
11838
|
|
|
11797
11839
|
</li>
|
|
11798
11840
|
|
|
11799
11841
|
<li class="md-nav__item">
|
|
11800
|
-
<a href="#
|
|
11842
|
+
<a href="#housekeeping-in-v155" class="md-nav__link">
|
|
11801
11843
|
<span class="md-ellipsis">
|
|
11802
|
-
Housekeeping
|
|
11844
|
+
Housekeeping in v1.5.5
|
|
11803
11845
|
</span>
|
|
11804
11846
|
</a>
|
|
11805
11847
|
|
|
@@ -11821,18 +11863,18 @@
|
|
|
11821
11863
|
<ul class="md-nav__list">
|
|
11822
11864
|
|
|
11823
11865
|
<li class="md-nav__item">
|
|
11824
|
-
<a href="#
|
|
11866
|
+
<a href="#fixed-in-v154" class="md-nav__link">
|
|
11825
11867
|
<span class="md-ellipsis">
|
|
11826
|
-
Fixed
|
|
11868
|
+
Fixed in v1.5.4
|
|
11827
11869
|
</span>
|
|
11828
11870
|
</a>
|
|
11829
11871
|
|
|
11830
11872
|
</li>
|
|
11831
11873
|
|
|
11832
11874
|
<li class="md-nav__item">
|
|
11833
|
-
<a href="#
|
|
11875
|
+
<a href="#documentation-in-v154" class="md-nav__link">
|
|
11834
11876
|
<span class="md-ellipsis">
|
|
11835
|
-
Documentation
|
|
11877
|
+
Documentation in v1.5.4
|
|
11836
11878
|
</span>
|
|
11837
11879
|
</a>
|
|
11838
11880
|
|
|
@@ -11854,9 +11896,9 @@
|
|
|
11854
11896
|
<ul class="md-nav__list">
|
|
11855
11897
|
|
|
11856
11898
|
<li class="md-nav__item">
|
|
11857
|
-
<a href="#
|
|
11899
|
+
<a href="#fixed-in-v153" class="md-nav__link">
|
|
11858
11900
|
<span class="md-ellipsis">
|
|
11859
|
-
Fixed
|
|
11901
|
+
Fixed in v1.5.3
|
|
11860
11902
|
</span>
|
|
11861
11903
|
</a>
|
|
11862
11904
|
|
|
@@ -11878,54 +11920,54 @@
|
|
|
11878
11920
|
<ul class="md-nav__list">
|
|
11879
11921
|
|
|
11880
11922
|
<li class="md-nav__item">
|
|
11881
|
-
<a href="#
|
|
11923
|
+
<a href="#added-in-v152" class="md-nav__link">
|
|
11882
11924
|
<span class="md-ellipsis">
|
|
11883
|
-
Added
|
|
11925
|
+
Added in v1.5.2
|
|
11884
11926
|
</span>
|
|
11885
11927
|
</a>
|
|
11886
11928
|
|
|
11887
11929
|
</li>
|
|
11888
11930
|
|
|
11889
11931
|
<li class="md-nav__item">
|
|
11890
|
-
<a href="#
|
|
11932
|
+
<a href="#changed-in-v152" class="md-nav__link">
|
|
11891
11933
|
<span class="md-ellipsis">
|
|
11892
|
-
Changed
|
|
11934
|
+
Changed in v1.5.2
|
|
11893
11935
|
</span>
|
|
11894
11936
|
</a>
|
|
11895
11937
|
|
|
11896
11938
|
</li>
|
|
11897
11939
|
|
|
11898
11940
|
<li class="md-nav__item">
|
|
11899
|
-
<a href="#
|
|
11941
|
+
<a href="#fixed-in-v152" class="md-nav__link">
|
|
11900
11942
|
<span class="md-ellipsis">
|
|
11901
|
-
Fixed
|
|
11943
|
+
Fixed in v1.5.2
|
|
11902
11944
|
</span>
|
|
11903
11945
|
</a>
|
|
11904
11946
|
|
|
11905
11947
|
</li>
|
|
11906
11948
|
|
|
11907
11949
|
<li class="md-nav__item">
|
|
11908
|
-
<a href="#
|
|
11950
|
+
<a href="#dependencies-in-v152" class="md-nav__link">
|
|
11909
11951
|
<span class="md-ellipsis">
|
|
11910
|
-
Dependencies
|
|
11952
|
+
Dependencies in v1.5.2
|
|
11911
11953
|
</span>
|
|
11912
11954
|
</a>
|
|
11913
11955
|
|
|
11914
11956
|
</li>
|
|
11915
11957
|
|
|
11916
11958
|
<li class="md-nav__item">
|
|
11917
|
-
<a href="#
|
|
11959
|
+
<a href="#documentation-in-v152" class="md-nav__link">
|
|
11918
11960
|
<span class="md-ellipsis">
|
|
11919
|
-
Documentation
|
|
11961
|
+
Documentation in v1.5.2
|
|
11920
11962
|
</span>
|
|
11921
11963
|
</a>
|
|
11922
11964
|
|
|
11923
11965
|
</li>
|
|
11924
11966
|
|
|
11925
11967
|
<li class="md-nav__item">
|
|
11926
|
-
<a href="#
|
|
11968
|
+
<a href="#housekeeping-in-v152" class="md-nav__link">
|
|
11927
11969
|
<span class="md-ellipsis">
|
|
11928
|
-
Housekeeping
|
|
11970
|
+
Housekeeping in v1.5.2
|
|
11929
11971
|
</span>
|
|
11930
11972
|
</a>
|
|
11931
11973
|
|
|
@@ -11947,27 +11989,27 @@
|
|
|
11947
11989
|
<ul class="md-nav__list">
|
|
11948
11990
|
|
|
11949
11991
|
<li class="md-nav__item">
|
|
11950
|
-
<a href="#
|
|
11992
|
+
<a href="#added-in-v151" class="md-nav__link">
|
|
11951
11993
|
<span class="md-ellipsis">
|
|
11952
|
-
Added
|
|
11994
|
+
Added in v1.5.1
|
|
11953
11995
|
</span>
|
|
11954
11996
|
</a>
|
|
11955
11997
|
|
|
11956
11998
|
</li>
|
|
11957
11999
|
|
|
11958
12000
|
<li class="md-nav__item">
|
|
11959
|
-
<a href="#
|
|
12001
|
+
<a href="#fixed-in-v151" class="md-nav__link">
|
|
11960
12002
|
<span class="md-ellipsis">
|
|
11961
|
-
Fixed
|
|
12003
|
+
Fixed in v1.5.1
|
|
11962
12004
|
</span>
|
|
11963
12005
|
</a>
|
|
11964
12006
|
|
|
11965
12007
|
</li>
|
|
11966
12008
|
|
|
11967
12009
|
<li class="md-nav__item">
|
|
11968
|
-
<a href="#
|
|
12010
|
+
<a href="#housekeeping-in-v151" class="md-nav__link">
|
|
11969
12011
|
<span class="md-ellipsis">
|
|
11970
|
-
Housekeeping
|
|
12012
|
+
Housekeeping in v1.5.1
|
|
11971
12013
|
</span>
|
|
11972
12014
|
</a>
|
|
11973
12015
|
|
|
@@ -11998,54 +12040,54 @@
|
|
|
11998
12040
|
<ul class="md-nav__list">
|
|
11999
12041
|
|
|
12000
12042
|
<li class="md-nav__item">
|
|
12001
|
-
<a href="#
|
|
12043
|
+
<a href="#added-in-v150-beta1" class="md-nav__link">
|
|
12002
12044
|
<span class="md-ellipsis">
|
|
12003
|
-
Added
|
|
12045
|
+
Added in v1.5.0-beta.1
|
|
12004
12046
|
</span>
|
|
12005
12047
|
</a>
|
|
12006
12048
|
|
|
12007
12049
|
</li>
|
|
12008
12050
|
|
|
12009
12051
|
<li class="md-nav__item">
|
|
12010
|
-
<a href="#
|
|
12052
|
+
<a href="#changed-in-v150-beta1" class="md-nav__link">
|
|
12011
12053
|
<span class="md-ellipsis">
|
|
12012
|
-
Changed
|
|
12054
|
+
Changed in v1.5.0-beta.1
|
|
12013
12055
|
</span>
|
|
12014
12056
|
</a>
|
|
12015
12057
|
|
|
12016
12058
|
</li>
|
|
12017
12059
|
|
|
12018
12060
|
<li class="md-nav__item">
|
|
12019
|
-
<a href="#
|
|
12061
|
+
<a href="#fixed-in-v150-beta1" class="md-nav__link">
|
|
12020
12062
|
<span class="md-ellipsis">
|
|
12021
|
-
Fixed
|
|
12063
|
+
Fixed in v1.5.0-beta.1
|
|
12022
12064
|
</span>
|
|
12023
12065
|
</a>
|
|
12024
12066
|
|
|
12025
12067
|
</li>
|
|
12026
12068
|
|
|
12027
12069
|
<li class="md-nav__item">
|
|
12028
|
-
<a href="#
|
|
12070
|
+
<a href="#dependencies-in-v150-beta1" class="md-nav__link">
|
|
12029
12071
|
<span class="md-ellipsis">
|
|
12030
|
-
Dependencies
|
|
12072
|
+
Dependencies in v1.5.0-beta.1
|
|
12031
12073
|
</span>
|
|
12032
12074
|
</a>
|
|
12033
12075
|
|
|
12034
12076
|
</li>
|
|
12035
12077
|
|
|
12036
12078
|
<li class="md-nav__item">
|
|
12037
|
-
<a href="#
|
|
12079
|
+
<a href="#documentation-in-v150-beta1" class="md-nav__link">
|
|
12038
12080
|
<span class="md-ellipsis">
|
|
12039
|
-
Documentation
|
|
12081
|
+
Documentation in v1.5.0-beta.1
|
|
12040
12082
|
</span>
|
|
12041
12083
|
</a>
|
|
12042
12084
|
|
|
12043
12085
|
</li>
|
|
12044
12086
|
|
|
12045
12087
|
<li class="md-nav__item">
|
|
12046
|
-
<a href="#
|
|
12088
|
+
<a href="#housekeeping-in-v150-beta1" class="md-nav__link">
|
|
12047
12089
|
<span class="md-ellipsis">
|
|
12048
|
-
Housekeeping
|
|
12090
|
+
Housekeeping in v1.5.0-beta.1
|
|
12049
12091
|
</span>
|
|
12050
12092
|
</a>
|
|
12051
12093
|
|
|
@@ -12074,8 +12116,6 @@
|
|
|
12074
12116
|
|
|
12075
12117
|
|
|
12076
12118
|
|
|
12077
|
-
<!-- markdownlint-disable MD024 -->
|
|
12078
|
-
|
|
12079
12119
|
<h1 id="nautobot-v15">Nautobot v1.5<a class="headerlink" href="#nautobot-v15" title="Permanent link">¶</a></h1>
|
|
12080
12120
|
<p>This document describes all new features and changes in Nautobot 1.5.</p>
|
|
12081
12121
|
<p>If you are a user migrating from NetBox to Nautobot, please refer to the <a href="../user-guide/administration/migration/migrating-from-netbox.html">"Migrating from NetBox"</a> documentation.</p>
|
|
@@ -12270,51 +12310,50 @@ relationship:</p>
|
|
|
12270
12310
|
</tr>
|
|
12271
12311
|
</tbody>
|
|
12272
12312
|
</table>
|
|
12273
|
-
<!-- towncrier release notes start -->
|
|
12274
12313
|
<h2 id="v1524-2023-07-24">v1.5.24 (2023-07-24)<a class="headerlink" href="#v1524-2023-07-24" title="Permanent link">¶</a></h2>
|
|
12275
|
-
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12314
|
+
<h3 id="security-in-v1524">Security in v1.5.24<a class="headerlink" href="#security-in-v1524" title="Permanent link">¶</a></h3>
|
|
12276
12315
|
<ul>
|
|
12277
12316
|
<li><a href="https://github.com/nautobot/nautobot/issues/4126">#4126</a> - Updated <code>cryptography</code> to <code>41.0.2</code> due to CVE-2023-38325. 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>
|
|
12278
12317
|
</ul>
|
|
12279
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12318
|
+
<h3 id="fixed-in-v1524">Fixed in v1.5.24<a class="headerlink" href="#fixed-in-v1524" title="Permanent link">¶</a></h3>
|
|
12280
12319
|
<ul>
|
|
12281
12320
|
<li><a href="https://github.com/nautobot/nautobot/issues/3312">#3312</a> - Fixed custom fields not auto-populating when creating objects through the ORM.</li>
|
|
12282
12321
|
<li><a href="https://github.com/nautobot/nautobot/issues/4127">#4127</a> - Fixed JavaScript error with 'Check Secret' button introduced in the previous patch release.</li>
|
|
12283
12322
|
</ul>
|
|
12284
12323
|
<h2 id="v1523-2023-07-10">v1.5.23 (2023-07-10)<a class="headerlink" href="#v1523-2023-07-10" title="Permanent link">¶</a></h2>
|
|
12285
|
-
<h3 id="
|
|
12324
|
+
<h3 id="security-in-v1523">Security in v1.5.23<a class="headerlink" href="#security-in-v1523" title="Permanent link">¶</a></h3>
|
|
12286
12325
|
<ul>
|
|
12287
12326
|
<li><a href="https://github.com/nautobot/nautobot/issues/4064">#4064</a> - Updated <code>Django</code> to <code>3.2.20</code> to address <code>CVE-2023-36053</code>.</li>
|
|
12288
12327
|
</ul>
|
|
12289
|
-
<h3 id="
|
|
12328
|
+
<h3 id="added-in-v1523">Added in v1.5.23<a class="headerlink" href="#added-in-v1523" title="Permanent link">¶</a></h3>
|
|
12290
12329
|
<ul>
|
|
12291
12330
|
<li><a href="https://github.com/nautobot/nautobot/issues/3235">#3235</a> - Added a warning notifying users when the requested <code>per_page</code> on a list page exceeds the <code>MAX_PAGE_SIZE</code> set.</li>
|
|
12292
12331
|
<li><a href="https://github.com/nautobot/nautobot/issues/3937">#3937</a> - Added a Nautobot 2.0 pre-migration management command aptly named <code>pre_migrate</code>.</li>
|
|
12293
12332
|
</ul>
|
|
12294
|
-
<h3 id="
|
|
12333
|
+
<h3 id="changed-in-v1523">Changed in v1.5.23<a class="headerlink" href="#changed-in-v1523" title="Permanent link">¶</a></h3>
|
|
12295
12334
|
<ul>
|
|
12296
12335
|
<li><a href="https://github.com/nautobot/nautobot/issues/1854">#1854</a> - When sorting tables for MPTT models, nesting/indentation of the model name display is disabled as it was misleading.</li>
|
|
12297
12336
|
<li><a href="https://github.com/nautobot/nautobot/issues/1854">#1854</a> - Disabled sorting on TreeNode model tables as TreeNode do not support sorting.</li>
|
|
12298
12337
|
</ul>
|
|
12299
|
-
<h3 id="
|
|
12338
|
+
<h3 id="fixed-in-v1523">Fixed in v1.5.23<a class="headerlink" href="#fixed-in-v1523" title="Permanent link">¶</a></h3>
|
|
12300
12339
|
<ul>
|
|
12301
12340
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Fixed a signal handler that could cause <code>nautobot-server loaddata</code> to abort if certain data is present.</li>
|
|
12302
12341
|
<li><a href="https://github.com/nautobot/nautobot/issues/3109">#3109</a> - Fixed missing trailing slash in NautobotUIViewSet urls.</li>
|
|
12303
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3524">#3524</a> - Fixed the unhandled exception brought on by updating Rack to a new site with a similar device sharing the same name and tenant by catching error in
|
|
12342
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3524">#3524</a> - Fixed the unhandled exception brought on by updating Rack to a new site with a similar device sharing the same name and tenant by catching error in <code>RackForm.clean</code>.</li>
|
|
12304
12343
|
<li><a href="https://github.com/nautobot/nautobot/issues/4021">#4021</a> - Fixed erroneous warning banner on list views when <code>MAX_PAGE_SIZE</code> is set to zero.</li>
|
|
12305
12344
|
<li><a href="https://github.com/nautobot/nautobot/issues/4048">#4048</a> - Fixed broken tab navigation in secrets.</li>
|
|
12306
12345
|
</ul>
|
|
12307
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12346
|
+
<h3 id="dependencies-in-v1523">Dependencies in v1.5.23<a class="headerlink" href="#dependencies-in-v1523" title="Permanent link">¶</a></h3>
|
|
12308
12347
|
<ul>
|
|
12309
12348
|
<li><a href="https://github.com/nautobot/nautobot/issues/4064">#4064</a> - Updated <code>Django</code> to <code>3.2.20</code> to address <code>CVE-2023-36053</code>.</li>
|
|
12310
12349
|
</ul>
|
|
12311
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12350
|
+
<h3 id="documentation-in-v1523">Documentation in v1.5.23<a class="headerlink" href="#documentation-in-v1523" title="Permanent link">¶</a></h3>
|
|
12312
12351
|
<ul>
|
|
12313
12352
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Revised documentation for recommended parameters to use when running <code>nautobot-server dumpdata</code>.</li>
|
|
12314
12353
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Revised documentation around preparing to run <code>nautobot-server loaddata</code>.</li>
|
|
12315
12354
|
<li><a href="https://github.com/nautobot/nautobot/issues/2374">#2374</a> - Added documentation to run <code>nautobot-server trace_paths</code> after <code>nautobot-server loaddata</code>.</li>
|
|
12316
12355
|
</ul>
|
|
12317
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12356
|
+
<h3 id="housekeeping-in-v1523">Housekeeping in v1.5.23<a class="headerlink" href="#housekeeping-in-v1523" title="Permanent link">¶</a></h3>
|
|
12318
12357
|
<ul>
|
|
12319
12358
|
<li><a href="https://github.com/nautobot/nautobot/issues/3422">#3422</a> - Fixed postgres database healthcheck error message in development environment.</li>
|
|
12320
12359
|
<li><a href="https://github.com/nautobot/nautobot/issues/4049">#4049</a> - Restructured non-production dependencies in <code>pyproject.toml</code> to comply with latest Poetry expectations.</li>
|
|
@@ -12322,16 +12361,16 @@ relationship:</p>
|
|
|
12322
12361
|
<li><a href="https://github.com/nautobot/nautobot/issues/4050">#4050</a> - Added <code>develop-1.6</code> to list of target branches to run changelog step in pull request CI workflow.</li>
|
|
12323
12362
|
</ul>
|
|
12324
12363
|
<h2 id="v1522-2023-06-26">v1.5.22 (2023-06-26)<a class="headerlink" href="#v1522-2023-06-26" title="Permanent link">¶</a></h2>
|
|
12325
|
-
<h3 id="
|
|
12364
|
+
<h3 id="security-in-v1522">Security in v1.5.22<a class="headerlink" href="#security-in-v1522" title="Permanent link">¶</a></h3>
|
|
12326
12365
|
<ul>
|
|
12327
12366
|
<li><a href="https://github.com/nautobot/nautobot/issues/3796">#3796</a> - Updated <code>requests</code> to 2.31.0 to address CVE-2023-32681. This is a development dependency and will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
12328
12367
|
<li><a href="https://github.com/nautobot/nautobot/issues/3843">#3843</a> - Updated <code>cryptography</code> to 41.0.0 due to a statically linked version of OpenSSL which contained vulnerability CVE-2023-2650. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12329
12368
|
</ul>
|
|
12330
|
-
<h3 id="
|
|
12369
|
+
<h3 id="added-in-v1522">Added in v1.5.22<a class="headerlink" href="#added-in-v1522" title="Permanent link">¶</a></h3>
|
|
12331
12370
|
<ul>
|
|
12332
12371
|
<li><a href="https://github.com/nautobot/nautobot/issues/3534">#3534</a> - Added optional args and kwargs to <code>BaseModel.validated_save()</code> that pass through to the model's <code>save</code> method.</li>
|
|
12333
12372
|
</ul>
|
|
12334
|
-
<h3 id="
|
|
12373
|
+
<h3 id="fixed-in-v1522">Fixed in v1.5.22<a class="headerlink" href="#fixed-in-v1522" title="Permanent link">¶</a></h3>
|
|
12335
12374
|
<ul>
|
|
12336
12375
|
<li><a href="https://github.com/nautobot/nautobot/issues/3658">#3658</a> - Fixed a typo in the success message when removing a child Device from a Device Bay.</li>
|
|
12337
12376
|
<li><a href="https://github.com/nautobot/nautobot/issues/3739">#3739</a> - Fixed change log entries not being created for some long running requests.</li>
|
|
@@ -12340,245 +12379,245 @@ relationship:</p>
|
|
|
12340
12379
|
<li><a href="https://github.com/nautobot/nautobot/issues/3948">#3948</a> - Fixed device name copy button adding an extra space/return.</li>
|
|
12341
12380
|
<li><a href="https://github.com/nautobot/nautobot/issues/3987">#3987</a> - Fixed issue where download SVG download did not actually download.</li>
|
|
12342
12381
|
</ul>
|
|
12343
|
-
<h3 id="
|
|
12382
|
+
<h3 id="documentation-in-v1522">Documentation in v1.5.22<a class="headerlink" href="#documentation-in-v1522" title="Permanent link">¶</a></h3>
|
|
12344
12383
|
<ul>
|
|
12345
12384
|
<li><a href="https://github.com/nautobot/nautobot/issues/3946">#3946</a> - Added warning note to job scheduling documentation for the attributes that can prevent scheduling.</li>
|
|
12346
12385
|
</ul>
|
|
12347
|
-
<h3 id="
|
|
12386
|
+
<h3 id="housekeeping-in-v1522">Housekeeping in v1.5.22<a class="headerlink" href="#housekeeping-in-v1522" title="Permanent link">¶</a></h3>
|
|
12348
12387
|
<ul>
|
|
12349
12388
|
<li><a href="https://github.com/nautobot/nautobot/issues/3534">#3534</a> - Fixed confusing unit test failure message when trying to run a non-existent test.</li>
|
|
12350
12389
|
<li><a href="https://github.com/nautobot/nautobot/issues/3534">#3534</a> - Fixed unit tests sometimes clearing out the default database.</li>
|
|
12351
12390
|
</ul>
|
|
12352
12391
|
<h2 id="v1521-2023-06-12">v1.5.21 (2023-06-12)<a class="headerlink" href="#v1521-2023-06-12" title="Permanent link">¶</a></h2>
|
|
12353
|
-
<h3 id="
|
|
12392
|
+
<h3 id="added-in-v1521">Added in v1.5.21<a class="headerlink" href="#added-in-v1521" title="Permanent link">¶</a></h3>
|
|
12354
12393
|
<ul>
|
|
12355
12394
|
<li><a href="https://github.com/nautobot/nautobot/issues/3897">#3897</a> - Adds log message when a secrets group for a git repository doesn't yield a token.</li>
|
|
12356
12395
|
</ul>
|
|
12357
|
-
<h3 id="
|
|
12396
|
+
<h3 id="fixed-in-v1521">Fixed in v1.5.21<a class="headerlink" href="#fixed-in-v1521" title="Permanent link">¶</a></h3>
|
|
12358
12397
|
<ul>
|
|
12359
12398
|
<li><a href="https://github.com/nautobot/nautobot/issues/3809">#3809</a> - Fixed a bug that prevented <code>__init__()</code> function of <code>bulk_create_form_class</code> being overridden in NautobotUIViewSet.</li>
|
|
12360
12399
|
</ul>
|
|
12361
|
-
<h3 id="
|
|
12400
|
+
<h3 id="dependencies-in-v1521">Dependencies in v1.5.21<a class="headerlink" href="#dependencies-in-v1521" title="Permanent link">¶</a></h3>
|
|
12362
12401
|
<ul>
|
|
12363
12402
|
<li><a href="https://github.com/nautobot/nautobot/issues/3882">#3882</a> - Removed deprecated distutils dependency.</li>
|
|
12364
12403
|
</ul>
|
|
12365
|
-
<h3 id="
|
|
12404
|
+
<h3 id="documentation-in-v1521">Documentation in v1.5.21<a class="headerlink" href="#documentation-in-v1521" title="Permanent link">¶</a></h3>
|
|
12366
12405
|
<ul>
|
|
12367
12406
|
<li><a href="https://github.com/nautobot/nautobot/issues/3806">#3806</a> - Added instructions and examples for SAML SSO using Okta as the IdP.</li>
|
|
12368
12407
|
<li><a href="https://github.com/nautobot/nautobot/issues/3811">#3811</a> - Added a note that addresses UWSGI buffer size concerns with Azure SSO in <code>nautobot/docs/user-guide/administration/configuration/authentication/sso.md</code>.</li>
|
|
12369
12408
|
<li><a href="https://github.com/nautobot/nautobot/issues/3888">#3888</a> - Changed note for celery concurrency in the docs.</li>
|
|
12370
12409
|
</ul>
|
|
12371
12410
|
<h2 id="v1520-2023-05-30">v1.5.20 (2023-05-30)<a class="headerlink" href="#v1520-2023-05-30" title="Permanent link">¶</a></h2>
|
|
12372
|
-
<h3 id="
|
|
12411
|
+
<h3 id="changed-in-v1520">Changed in v1.5.20<a class="headerlink" href="#changed-in-v1520" title="Permanent link">¶</a></h3>
|
|
12373
12412
|
<ul>
|
|
12374
12413
|
<li><a href="https://github.com/nautobot/nautobot/issues/3680">#3680</a> - Changed device component instantiation to be a separate method.</li>
|
|
12375
12414
|
</ul>
|
|
12376
|
-
<h3 id="
|
|
12415
|
+
<h3 id="fixed-in-v1520">Fixed in v1.5.20<a class="headerlink" href="#fixed-in-v1520" title="Permanent link">¶</a></h3>
|
|
12377
12416
|
<ul>
|
|
12378
12417
|
<li><a href="https://github.com/nautobot/nautobot/issues/3503">#3503</a> - Fixed FieldError when sorting VMs list by primary IP.</li>
|
|
12379
12418
|
<li><a href="https://github.com/nautobot/nautobot/issues/3616">#3616</a> - Fixed <code>location</code> filter on <code>CircuitFilterSet</code> and <code>ProviderFilterSet</code>.</li>
|
|
12380
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/3787">#3787</a> - Fixed MySQL <code>Out of sort memory</code> error on <code>JobListView</code> and <code>JobResultListView</code>.</li>
|
|
12381
12420
|
<li><a href="https://github.com/nautobot/nautobot/issues/3789">#3789</a> - Fixed Exception <code>unsupported operand type(s) for -: 'list' and 'list'</code> for MultiObjectVar with missing UUID.</li>
|
|
12382
12421
|
</ul>
|
|
12383
|
-
<h3 id="
|
|
12422
|
+
<h3 id="documentation-in-v1520">Documentation in v1.5.20<a class="headerlink" href="#documentation-in-v1520" title="Permanent link">¶</a></h3>
|
|
12384
12423
|
<ul>
|
|
12385
12424
|
<li><a href="https://github.com/nautobot/nautobot/issues/3766">#3766</a> - Add troubleshooting steps for Azure AD SSO Group Sync example.</li>
|
|
12386
12425
|
<li><a href="https://github.com/nautobot/nautobot/issues/3400">#3400</a> - Added documentation on how to enable Jobs and Job hooks.</li>
|
|
12387
12426
|
</ul>
|
|
12388
12427
|
<h2 id="v1519-2023-05-16">v1.5.19 (2023-05-16)<a class="headerlink" href="#v1519-2023-05-16" title="Permanent link">¶</a></h2>
|
|
12389
|
-
<h3 id="
|
|
12428
|
+
<h3 id="security-in-v1519">Security in v1.5.19<a class="headerlink" href="#security-in-v1519" title="Permanent link">¶</a></h3>
|
|
12390
12429
|
<ul>
|
|
12391
12430
|
<li><a href="https://github.com/nautobot/nautobot/issues/3698">#3698</a> - Updated <code>lxml</code> to <code>~4.9.2</code> to address <code>CVE-2022-2309</code>. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
12392
12431
|
<li><a href="https://github.com/nautobot/nautobot/issues/3724">#3724</a> - Updated <code>django</code> to <code>~3.2.19</code> due to <code>CVE-2023-31047</code>.</li>
|
|
12393
12432
|
<li><a href="https://github.com/nautobot/nautobot/issues/3753">#3753</a> - Updated indirect dev dependency <code>pymdown-extensions</code> to <code>10.0</code> to address <code>CVE-2023-32309</code>. This should not be installed in a production environment by default but should be updated if you have installed it.</li>
|
|
12394
12433
|
</ul>
|
|
12395
|
-
<h3 id="
|
|
12434
|
+
<h3 id="changed-in-v1519">Changed in v1.5.19<a class="headerlink" href="#changed-in-v1519" title="Permanent link">¶</a></h3>
|
|
12396
12435
|
<ul>
|
|
12397
12436
|
<li><a href="https://github.com/nautobot/nautobot/issues/3617">#3617</a> - SearchForms on Nautobot homepage now redirect users to login page when they are not authenticated.</li>
|
|
12398
12437
|
<li><a href="https://github.com/nautobot/nautobot/issues/3663">#3663</a> - Modified <code>delete_button</code> and <code>edit_button</code> template tags to lookup <code>pk</code> and <code>slug</code> without the need to specify the lookup key.</li>
|
|
12399
12438
|
</ul>
|
|
12400
|
-
<h3 id="
|
|
12439
|
+
<h3 id="fixed-in-v1519">Fixed in v1.5.19<a class="headerlink" href="#fixed-in-v1519" title="Permanent link">¶</a></h3>
|
|
12401
12440
|
<ul>
|
|
12402
12441
|
<li><a href="https://github.com/nautobot/nautobot/issues/3704">#3704</a> - Fixed GitRepository fetching on Home Page when getting repo-based Job's name.</li>
|
|
12403
12442
|
<li><a href="https://github.com/nautobot/nautobot/issues/3726">#3726</a> - Fixed a <code>KeyError</code> when filtering Cables in the UI by <code>termination_a_type</code> or <code>termination_b_type</code>.</li>
|
|
12404
12443
|
</ul>
|
|
12405
|
-
<h3 id="
|
|
12444
|
+
<h3 id="dependencies-in-v1519">Dependencies in v1.5.19<a class="headerlink" href="#dependencies-in-v1519" title="Permanent link">¶</a></h3>
|
|
12406
12445
|
<ul>
|
|
12407
12446
|
<li><a href="https://github.com/nautobot/nautobot/issues/3549">#3549</a> - Updated <code>django</code> to <code>~3.2.19</code> to address <code>CVE-2023-31047</code>.</li>
|
|
12408
12447
|
<li><a href="https://github.com/nautobot/nautobot/issues/3549">#3549</a> - Updated <code>mkdocs</code> to <code>~1.4.3</code>.</li>
|
|
12409
12448
|
<li><a href="https://github.com/nautobot/nautobot/issues/3549">#3549</a> - Updated <code>psycopg2-binary</code> to <code>~2.9.6</code>.</li>
|
|
12410
12449
|
<li><a href="https://github.com/nautobot/nautobot/issues/3698">#3698</a> - Updated <code>social-auth-core</code> to <code>~4.4.0</code> to permit addressing <code>CVE-2022-2309</code>.</li>
|
|
12411
12450
|
</ul>
|
|
12412
|
-
<h3 id="
|
|
12451
|
+
<h3 id="documentation-in-v1519">Documentation in v1.5.19<a class="headerlink" href="#documentation-in-v1519" title="Permanent link">¶</a></h3>
|
|
12413
12452
|
<ul>
|
|
12414
12453
|
<li><a href="https://github.com/nautobot/nautobot/issues/3695">#3695</a> - Added note to documentation about using <code>{{ obj.cf }}</code> to access custom fields in jinja templates.</li>
|
|
12415
12454
|
<li><a href="https://github.com/nautobot/nautobot/issues/3703">#3703</a> - Added generic views documentation to navigation panel.</li>
|
|
12416
12455
|
</ul>
|
|
12417
|
-
<h3 id="
|
|
12456
|
+
<h3 id="housekeeping-in-v1519">Housekeeping in v1.5.19<a class="headerlink" href="#housekeeping-in-v1519" title="Permanent link">¶</a></h3>
|
|
12418
12457
|
<ul>
|
|
12419
12458
|
<li><a href="https://github.com/nautobot/nautobot/issues/3753">#3753</a> - Updated indirect dev dependency <code>pymdown-extensions</code> to <code>10.0</code> to address <code>CVE-2023-32309</code>.</li>
|
|
12420
12459
|
</ul>
|
|
12421
12460
|
<h2 id="v1518-2023-05-01">v1.5.18 (2023-05-01)<a class="headerlink" href="#v1518-2023-05-01" title="Permanent link">¶</a></h2>
|
|
12422
|
-
<h3 id="
|
|
12461
|
+
<h3 id="security-in-v1518">Security in v1.5.18<a class="headerlink" href="#security-in-v1518" title="Permanent link">¶</a></h3>
|
|
12423
12462
|
<ul>
|
|
12424
12463
|
<li><a href="https://github.com/nautobot/nautobot/issues/3642">#3642</a> - Updated <code>sqlparse</code> to <code>0.4.4</code> due to CVE-2023-30608. This is not a direct dependency so it will not auto-update when upgrading Nautobot. Please be sure to update your local environment.</li>
|
|
12425
12464
|
</ul>
|
|
12426
|
-
<h3 id="
|
|
12465
|
+
<h3 id="added-in-v1518">Added in v1.5.18<a class="headerlink" href="#added-in-v1518" title="Permanent link">¶</a></h3>
|
|
12427
12466
|
<ul>
|
|
12428
12467
|
<li><a href="https://github.com/nautobot/nautobot/issues/1526">#1526</a> - Added UI button and REST API to validate a <code>Secret</code> can be retrieved.</li>
|
|
12429
12468
|
<li><a href="https://github.com/nautobot/nautobot/issues/3669">#3669</a> - Added indexes to <code>JobResult</code> across common fields: <code>created</code>, <code>completed</code>, and <code>status</code>.</li>
|
|
12430
12469
|
</ul>
|
|
12431
|
-
<h3 id="
|
|
12470
|
+
<h3 id="changed-in-v1518">Changed in v1.5.18<a class="headerlink" href="#changed-in-v1518" title="Permanent link">¶</a></h3>
|
|
12432
12471
|
<ul>
|
|
12433
12472
|
<li><a href="https://github.com/nautobot/nautobot/issues/3633">#3633</a> - Changed Custom Validator applicator to not require DB query.</li>
|
|
12434
12473
|
</ul>
|
|
12435
|
-
<h3 id="
|
|
12474
|
+
<h3 id="fixed-in-v1518">Fixed in v1.5.18<a class="headerlink" href="#fixed-in-v1518" title="Permanent link">¶</a></h3>
|
|
12436
12475
|
<ul>
|
|
12437
12476
|
<li><a href="https://github.com/nautobot/nautobot/issues/3533">#3533</a> - Fixed an issue where sending a PATCH to <code>/api/dcim/interfaces/(uuid)/</code> might inadvertently reset the interface's status to <code>Active</code>.</li>
|
|
12438
12477
|
<li><a href="https://github.com/nautobot/nautobot/issues/3533">#3533</a> - Fixed an issue where sending a PATCH to <code>/api/users/tokens/(uuid)/</code> might inadvertently change the token's value.</li>
|
|
12439
12478
|
<li><a href="https://github.com/nautobot/nautobot/issues/3612">#3612</a> - Fixed a 500 error when filtering by <code>content_type</code> in Dynamic Groups list view.</li>
|
|
12440
12479
|
<li><a href="https://github.com/nautobot/nautobot/issues/3660">#3660</a> - Fixed an issue where grouped job buttons would always be disabled due to a template rendering issue.</li>
|
|
12441
12480
|
</ul>
|
|
12442
|
-
<h3 id="
|
|
12481
|
+
<h3 id="documentation-in-v1518">Documentation in v1.5.18<a class="headerlink" href="#documentation-in-v1518" title="Permanent link">¶</a></h3>
|
|
12443
12482
|
<ul>
|
|
12444
12483
|
<li><a href="https://github.com/nautobot/nautobot/issues/2800">#2800</a> - Add model documentation to navigation panel.</li>
|
|
12445
12484
|
<li><a href="https://github.com/nautobot/nautobot/issues/3440">#3440</a> - Added warning admonitions for Job Hooks and Job Approvals documentation that setting <code>Meta.approval_required</code> is ignored on <code>JobHookReceiver</code> classes.</li>
|
|
12446
12485
|
</ul>
|
|
12447
|
-
<h3 id="
|
|
12486
|
+
<h3 id="housekeeping-in-v1518">Housekeeping in v1.5.18<a class="headerlink" href="#housekeeping-in-v1518" title="Permanent link">¶</a></h3>
|
|
12448
12487
|
<ul>
|
|
12449
12488
|
<li><a href="https://github.com/nautobot/nautobot/issues/3083">#3083</a> - Fixed an issue where unit tests might fail erroneously when dealing with objects whose name/display contains characters like <code>"<></code>.</li>
|
|
12450
12489
|
<li><a href="https://github.com/nautobot/nautobot/issues/3602">#3602</a> - Updated <code>.gitignore</code> to not track new UI non-source files.</li>
|
|
12451
12490
|
<li><a href="https://github.com/nautobot/nautobot/issues/3621">#3621</a> - Changed development Docker compose commands to not leave temporary containers behind.</li>
|
|
12452
12491
|
</ul>
|
|
12453
12492
|
<h2 id="v1517-2023-04-17">v1.5.17 (2023-04-17)<a class="headerlink" href="#v1517-2023-04-17" title="Permanent link">¶</a></h2>
|
|
12454
|
-
<h3 id="
|
|
12493
|
+
<h3 id="added-in-v1517">Added in v1.5.17<a class="headerlink" href="#added-in-v1517" title="Permanent link">¶</a></h3>
|
|
12455
12494
|
<ul>
|
|
12456
12495
|
<li><a href="https://github.com/nautobot/nautobot/issues/3484">#3484</a> - Added job profiling option to job execution when in DEBUG mode.</li>
|
|
12457
12496
|
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - Added the ability to change the <code>CACHES["default"]["BACKEND"]</code> via an environment variable <code>NAUTOBOT_CACHES_BACKEND</code></li>
|
|
12458
12497
|
</ul>
|
|
12459
|
-
<h3 id="
|
|
12498
|
+
<h3 id="changed-in-v1517">Changed in v1.5.17<a class="headerlink" href="#changed-in-v1517" title="Permanent link">¶</a></h3>
|
|
12460
12499
|
<ul>
|
|
12461
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default database backend if <code>METRICS_ENABLED</code> is <code>True</code> is now "django_prometheus.db.backends.postgresql"</li>
|
|
12462
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default CACHES backend if <code>METRICS_ENABLED</code> is <code>True</code> is now "django_prometheus.cache.backends.redis.RedisCache"</li>
|
|
12500
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default database backend if <code>METRICS_ENABLED</code> is <code>True</code> is now <code>"django_prometheus.db.backends.postgresql"</code></li>
|
|
12501
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3544">#3544</a> - The default CACHES backend if <code>METRICS_ENABLED</code> is <code>True</code> is now <code>"django_prometheus.cache.backends.redis.RedisCache"</code></li>
|
|
12463
12502
|
<li><a href="https://github.com/nautobot/nautobot/issues/3595">#3595</a> - Update the warning provided when a bad reverse entry is not found in serializer to point to correct import location.</li>
|
|
12464
12503
|
</ul>
|
|
12465
|
-
<h3 id="
|
|
12504
|
+
<h3 id="fixed-in-v1517">Fixed in v1.5.17<a class="headerlink" href="#fixed-in-v1517" title="Permanent link">¶</a></h3>
|
|
12466
12505
|
<ul>
|
|
12467
12506
|
<li><a href="https://github.com/nautobot/nautobot/issues/3116">#3116</a> - Fixed JSON comparison of <code>data_scheme</code> keys in <code>assertInstanceEqual</code> tests.</li>
|
|
12468
12507
|
<li><a href="https://github.com/nautobot/nautobot/issues/3573">#3573</a> - Fixed advanced filtering on interface UI list page not working.</li>
|
|
12469
12508
|
<li><a href="https://github.com/nautobot/nautobot/issues/3598">#3598</a> - Fixed default sanitizer patterns to account for strings beginning with <code>i</code> or <code>is</code>.</li>
|
|
12470
12509
|
</ul>
|
|
12471
|
-
<h3 id="
|
|
12510
|
+
<h3 id="dependencies-in-v1517">Dependencies in v1.5.17<a class="headerlink" href="#dependencies-in-v1517" title="Permanent link">¶</a></h3>
|
|
12472
12511
|
<ul>
|
|
12473
12512
|
<li><a href="https://github.com/nautobot/nautobot/issues/3525">#3525</a> - Added explicit dependency on <code>packaging</code> that had been inadvertently omitted.</li>
|
|
12474
12513
|
</ul>
|
|
12475
|
-
<h3 id="
|
|
12514
|
+
<h3 id="documentation-in-v1517">Documentation in v1.5.17<a class="headerlink" href="#documentation-in-v1517" title="Permanent link">¶</a></h3>
|
|
12476
12515
|
<ul>
|
|
12477
12516
|
<li><a href="https://github.com/nautobot/nautobot/issues/3548">#3548</a> - Changed Git Repository docs to include admonition about Github Apps.</li>
|
|
12478
12517
|
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example for case sensitive typos.</li>
|
|
12479
12518
|
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example not including imports.</li>
|
|
12480
12519
|
</ul>
|
|
12481
12520
|
<h2 id="v1516-2023-04-10">v1.5.16 (2023-04-10)<a class="headerlink" href="#v1516-2023-04-10" title="Permanent link">¶</a></h2>
|
|
12482
|
-
<h3 id="
|
|
12521
|
+
<h3 id="fixed-in-v1516">Fixed in v1.5.16<a class="headerlink" href="#fixed-in-v1516" title="Permanent link">¶</a></h3>
|
|
12483
12522
|
<ul>
|
|
12484
12523
|
<li><a href="https://github.com/nautobot/nautobot/issues/2944">#2944</a> - Fixed slow performance of relationships on ObjectListView.</li>
|
|
12485
12524
|
<li><a href="https://github.com/nautobot/nautobot/issues/3345">#3345</a> - Fixed missing Relationships in DynamicFilterForm.</li>
|
|
12486
12525
|
<li><a href="https://github.com/nautobot/nautobot/issues/3550">#3550</a> - Fixed display name of filtered relationships on ObjectListView.</li>
|
|
12487
12526
|
</ul>
|
|
12488
|
-
<h3 id="
|
|
12527
|
+
<h3 id="documentation-in-v1516">Documentation in v1.5.16<a class="headerlink" href="#documentation-in-v1516" title="Permanent link">¶</a></h3>
|
|
12489
12528
|
<ul>
|
|
12490
12529
|
<li><a href="https://github.com/nautobot/nautobot/issues/3477">#3477</a> - Added a note under heading Setting ViewSet Attributes to mention the caveat of not using <code>slug</code> or <code>pk</code>.</li>
|
|
12491
12530
|
<li><a href="https://github.com/nautobot/nautobot/issues/3557">#3557</a> - Added docs page for Circuit Maintenance.</li>
|
|
12492
12531
|
</ul>
|
|
12493
|
-
<h3 id="
|
|
12532
|
+
<h3 id="housekeeping-in-v1516">Housekeeping in v1.5.16<a class="headerlink" href="#housekeeping-in-v1516" title="Permanent link">¶</a></h3>
|
|
12494
12533
|
<ul>
|
|
12495
12534
|
<li><a href="https://github.com/nautobot/nautobot/issues/3502">#3502</a> - Updated upstream workflow to support testing apps <code>next-2.0</code> branches against <code>next</code>.</li>
|
|
12496
12535
|
</ul>
|
|
12497
12536
|
<h2 id="v1515-2023-04-04">v1.5.15 (2023-04-04)<a class="headerlink" href="#v1515-2023-04-04" title="Permanent link">¶</a></h2>
|
|
12498
|
-
<h3 id="
|
|
12537
|
+
<h3 id="security-in-v1515">Security in v1.5.15<a class="headerlink" href="#security-in-v1515" title="Permanent link">¶</a></h3>
|
|
12499
12538
|
<ul>
|
|
12500
12539
|
<li><a href="https://github.com/nautobot/nautobot/issues/3499">#3499</a> - Updated <code>redis</code> to 4.5.4 due to CVE-2023-28858 and CVE-2023-28859. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12501
12540
|
</ul>
|
|
12502
|
-
<h3 id="
|
|
12541
|
+
<h3 id="changed-in-v1515">Changed in v1.5.15<a class="headerlink" href="#changed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12503
12542
|
<ul>
|
|
12504
12543
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Moved extra information stored previously in <code>block sidebar</code> to <code>block header_extra</code> in page templates (<code>aggregate_list.html</code> and <code>objectchange_list.html</code>).</li>
|
|
12505
12544
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Documented <code>block header_extra</code> in <code>docs/development/templates.md</code>.</li>
|
|
12506
12545
|
</ul>
|
|
12507
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12546
|
+
<h3 id="removed-in-v1515">Removed in v1.5.15<a class="headerlink" href="#removed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12508
12547
|
<ul>
|
|
12509
12548
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Removed all remaining instances of <code>block sidebar</code> from page templates (<code>aggregate_list.html</code> and <code>objectchange_list.html</code>).</li>
|
|
12510
12549
|
</ul>
|
|
12511
|
-
<h3 id="
|
|
12550
|
+
<h3 id="fixed-in-v1515">Fixed in v1.5.15<a class="headerlink" href="#fixed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12512
12551
|
<ul>
|
|
12513
12552
|
<li><a href="https://github.com/nautobot/nautobot/issues/3480">#3480</a> - Fixed an error that could be seen in certain cases with IPAddress records.</li>
|
|
12514
12553
|
</ul>
|
|
12515
|
-
<h3 id="
|
|
12554
|
+
<h3 id="dependencies-in-v1515">Dependencies in v1.5.15<a class="headerlink" href="#dependencies-in-v1515" title="Permanent link">¶</a></h3>
|
|
12516
12555
|
<ul>
|
|
12517
12556
|
<li><a href="https://github.com/nautobot/nautobot/issues/3499">#3499</a> - Updated <code>redis</code> to 4.5.4. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
12518
12557
|
</ul>
|
|
12519
|
-
<h3 id="
|
|
12558
|
+
<h3 id="documentation-in-v1515">Documentation in v1.5.15<a class="headerlink" href="#documentation-in-v1515" title="Permanent link">¶</a></h3>
|
|
12520
12559
|
<ul>
|
|
12521
12560
|
<li><a href="https://github.com/nautobot/nautobot/issues/3384">#3384</a> - Removed documentation about <code>block sidebar</code> from <code>docs/development/templates.md</code>.</li>
|
|
12522
12561
|
<li><a href="https://github.com/nautobot/nautobot/issues/3446">#3446</a> - Added documentation links for Device Onboarding and LifeCycle Management plugins to docs.nautobot.com menu.</li>
|
|
12523
12562
|
</ul>
|
|
12524
|
-
<h3 id="
|
|
12563
|
+
<h3 id="housekeeping-in-v1515">Housekeeping in v1.5.15<a class="headerlink" href="#housekeeping-in-v1515" title="Permanent link">¶</a></h3>
|
|
12525
12564
|
<ul>
|
|
12526
12565
|
<li><a href="https://github.com/nautobot/nautobot/issues/3206">#3206</a> - Fixed Docker tag syntax on prerelease workflow.</li>
|
|
12527
12566
|
</ul>
|
|
12528
12567
|
<h2 id="v1514-2023-03-20">v1.5.14 (2023-03-20)<a class="headerlink" href="#v1514-2023-03-20" title="Permanent link">¶</a></h2>
|
|
12529
|
-
<h3 id="
|
|
12568
|
+
<h3 id="added-in-v1514">Added in v1.5.14<a class="headerlink" href="#added-in-v1514" title="Permanent link">¶</a></h3>
|
|
12530
12569
|
<ul>
|
|
12531
12570
|
<li><a href="https://github.com/nautobot/nautobot/issues/3033">#3033</a> - Added <code>JobButton</code> model to create single click execution buttons in the web UI to run jobs based on a single object.</li>
|
|
12532
12571
|
<li><a href="https://github.com/nautobot/nautobot/issues/3377">#3377</a> - Added additional choices for many data types in <code>nautobot.dcim</code>.</li>
|
|
12533
12572
|
</ul>
|
|
12534
|
-
<h3 id="
|
|
12573
|
+
<h3 id="documentation-in-v1514">Documentation in v1.5.14<a class="headerlink" href="#documentation-in-v1514" title="Permanent link">¶</a></h3>
|
|
12535
12574
|
<ul>
|
|
12536
12575
|
<li><a href="https://github.com/nautobot/nautobot/issues/3434">#3434</a> - Changed the recommended exception to raise to end jobs early.</li>
|
|
12537
12576
|
</ul>
|
|
12538
|
-
<h3 id="
|
|
12577
|
+
<h3 id="housekeeping-in-v1514">Housekeeping in v1.5.14<a class="headerlink" href="#housekeeping-in-v1514" title="Permanent link">¶</a></h3>
|
|
12539
12578
|
<ul>
|
|
12540
12579
|
<li><a href="https://github.com/nautobot/nautobot/issues/2618">#2618</a> - Added the ability to stand up a local dev env for SSO using Keycloak.</li>
|
|
12541
12580
|
<li><a href="https://github.com/nautobot/nautobot/issues/3419">#3419</a> - Fixed <code>test_queryset_to_csv</code> to format data fetched from the model.</li>
|
|
12542
12581
|
</ul>
|
|
12543
12582
|
<h2 id="v1513-2023-03-14">v1.5.13 (2023-03-14)<a class="headerlink" href="#v1513-2023-03-14" title="Permanent link">¶</a></h2>
|
|
12544
|
-
<h3 id="
|
|
12583
|
+
<h3 id="added-in-v1513">Added in v1.5.13<a class="headerlink" href="#added-in-v1513" title="Permanent link">¶</a></h3>
|
|
12545
12584
|
<ul>
|
|
12546
12585
|
<li><a href="https://github.com/nautobot/nautobot/issues/766">#766</a> - Added option for apps to extend Nautobot's Prometheus metrics, based on <code>nautobot_capacity_metrics</code>.</li>
|
|
12547
12586
|
<li><a href="https://github.com/nautobot/nautobot/issues/3410">#3410</a> - Added <code>-time</code> index for ObjectChange records.</li>
|
|
12548
12587
|
</ul>
|
|
12549
|
-
<h3 id="
|
|
12588
|
+
<h3 id="changed-in-v1513">Changed in v1.5.13<a class="headerlink" href="#changed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12550
12589
|
<ul>
|
|
12551
12590
|
<li><a href="https://github.com/nautobot/nautobot/issues/3410">#3410</a> - Changed Homepage ObjectChange query to not join User or Content Type tables, use record cache for user entries instead.</li>
|
|
12552
12591
|
</ul>
|
|
12553
|
-
<h3 id="
|
|
12592
|
+
<h3 id="removed-in-v1513">Removed in v1.5.13<a class="headerlink" href="#removed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12554
12593
|
<ul>
|
|
12555
12594
|
<li><a href="https://github.com/nautobot/nautobot/issues/3407">#3407</a> - Removed permission checks for ContentTypeAPIViewSet.</li>
|
|
12556
12595
|
</ul>
|
|
12557
|
-
<h3 id="
|
|
12596
|
+
<h3 id="fixed-in-v1513">Fixed in v1.5.13<a class="headerlink" href="#fixed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12558
12597
|
<ul>
|
|
12559
12598
|
<li><a href="https://github.com/nautobot/nautobot/issues/3347">#3347</a> - Fixed (again) <code>Location.parent</code> not populating correctly in the form when editing an existing Location.</li>
|
|
12560
12599
|
</ul>
|
|
12561
|
-
<h3 id="
|
|
12600
|
+
<h3 id="dependencies-in-v1513">Dependencies in v1.5.13<a class="headerlink" href="#dependencies-in-v1513" title="Permanent link">¶</a></h3>
|
|
12562
12601
|
<ul>
|
|
12563
12602
|
<li><a href="https://github.com/nautobot/nautobot/issues/3405">#3405</a> - Updated version of <code>pyopenssl</code> in Nautobot dev environment and Docker images to 23.0.0 due to an incompatibility between older versions of <code>pyopenssl</code> and version 39.x of <code>cryptography</code>. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
12564
12603
|
<li><a href="https://github.com/nautobot/nautobot/issues/3405">#3405</a> - Updated <code>cryptography</code> to 39.0.2. This is not a direct dependency of Nautobot so it will not auto-update when upgrading. Please update your local environment as needed.</li>
|
|
12565
12604
|
</ul>
|
|
12566
|
-
<h3 id="
|
|
12605
|
+
<h3 id="documentation-in-v1513">Documentation in v1.5.13<a class="headerlink" href="#documentation-in-v1513" title="Permanent link">¶</a></h3>
|
|
12567
12606
|
<ul>
|
|
12568
12607
|
<li><a href="https://github.com/nautobot/nautobot/issues/3416">#3416</a> - Updated Windows development documentation.</li>
|
|
12569
12608
|
</ul>
|
|
12570
12609
|
<h2 id="v1512-2023-03-03">v1.5.12 (2023-03-03)<a class="headerlink" href="#v1512-2023-03-03" title="Permanent link">¶</a></h2>
|
|
12571
|
-
<h3 id="
|
|
12610
|
+
<h3 id="added-in-v1512">Added in v1.5.12<a class="headerlink" href="#added-in-v1512" title="Permanent link">¶</a></h3>
|
|
12572
12611
|
<ul>
|
|
12573
12612
|
<li><a href="https://github.com/nautobot/nautobot/issues/3182">#3182</a> - Added support for assigning Config Context objects via Dynamic Groups.</li>
|
|
12574
12613
|
<li><a href="https://github.com/nautobot/nautobot/issues/3219">#3219</a> - Added support for custom fields to Dynamic Groups.</li>
|
|
12575
12614
|
<li><a href="https://github.com/nautobot/nautobot/issues/3220">#3220</a> - Added support for relationships to Dynamic Groups.</li>
|
|
12576
12615
|
</ul>
|
|
12577
|
-
<h3 id="
|
|
12616
|
+
<h3 id="changed-in-v1512">Changed in v1.5.12<a class="headerlink" href="#changed-in-v1512" title="Permanent link">¶</a></h3>
|
|
12578
12617
|
<ul>
|
|
12579
12618
|
<li><a href="https://github.com/nautobot/nautobot/issues/3369">#3369</a> - Changed <code>RelationshipModelFilterSetMixin</code> to perform a single OR query including <code>select_related</code> for <code>source_type</code> and <code>destination_type</code> vs. two single queries for each source/destination types.</li>
|
|
12580
12619
|
</ul>
|
|
12581
|
-
<h3 id="
|
|
12620
|
+
<h3 id="fixed-in-v1512">Fixed in v1.5.12<a class="headerlink" href="#fixed-in-v1512" title="Permanent link">¶</a></h3>
|
|
12582
12621
|
<ul>
|
|
12583
12622
|
<li><a href="https://github.com/nautobot/nautobot/issues/3295">#3295</a> - Fixed kombu serialization error on <code>User</code> object that arose when <code>CELERY_RESULT_EXTENDED == True</code> or when <code>enqueue_job</code> was called from within an existing <code>Job</code>.</li>
|
|
12584
12623
|
<li><a href="https://github.com/nautobot/nautobot/issues/3318">#3318</a> - Fixed a bug in prefix factory when a /0 ipv6 network is generated by faker.</li>
|
|
@@ -12586,43 +12625,43 @@ relationship:</p>
|
|
|
12586
12625
|
<li><a href="https://github.com/nautobot/nautobot/issues/3353">#3353</a> - Fixed a bug in <code>nautobot.extras.forms.mixins.CustomFieldModelFilterFormMixin</code> where the list of custom field names were not being stored on <code>self.custom_fields</code>.</li>
|
|
12587
12626
|
<li><a href="https://github.com/nautobot/nautobot/issues/3353">#3353</a> - Fixed a bug in <code>nautobot.utilities.filters.MappedPredicatesFilterMixin</code> (from which <code>SearchFilter</code> inherits) that was preventing <code>q</code> fields from being used in Dynamic Group filters.</li>
|
|
12588
12627
|
</ul>
|
|
12589
|
-
<h3 id="
|
|
12628
|
+
<h3 id="dependencies-in-v1512">Dependencies in v1.5.12<a class="headerlink" href="#dependencies-in-v1512" title="Permanent link">¶</a></h3>
|
|
12590
12629
|
<ul>
|
|
12591
12630
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>GitPython</code> to 3.1.31.</li>
|
|
12592
12631
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>drf-yasg</code> to 1.21.5. Note: this is automatic for the Nautobot-provided containers, but because our dependency on it goes away in 2.0, it's an optional update for other installations.</li>
|
|
12593
12632
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>netutils</code> to 1.4.1.</li>
|
|
12594
12633
|
</ul>
|
|
12595
12634
|
<h2 id="v1511-2023-02-18">v1.5.11 (2023-02-18)<a class="headerlink" href="#v1511-2023-02-18" title="Permanent link">¶</a></h2>
|
|
12596
|
-
<h3 id="
|
|
12635
|
+
<h3 id="security-in-v1511">Security in v1.5.11<a class="headerlink" href="#security-in-v1511" title="Permanent link">¶</a></h3>
|
|
12597
12636
|
<ul>
|
|
12598
12637
|
<li><a href="https://github.com/nautobot/nautobot/issues/3251">#3251</a> - Updated <code>oauthlib</code> to 3.2.2 due to CVE-2022-36087. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12599
12638
|
<li><a href="https://github.com/nautobot/nautobot/issues/3258">#3258</a> - Updated <code>cryptography</code> to 39.0.1 due to CVE-2023-0286, CVE-2023-23931. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12600
12639
|
<li><a href="https://github.com/nautobot/nautobot/issues/3320">#3320</a> - Updated <code>django</code> to 3.2.18 due to CVE-2023-24580.</li>
|
|
12601
12640
|
</ul>
|
|
12602
|
-
<h3 id="
|
|
12641
|
+
<h3 id="added-in-v1511">Added in v1.5.11<a class="headerlink" href="#added-in-v1511" title="Permanent link">¶</a></h3>
|
|
12603
12642
|
<ul>
|
|
12604
12643
|
<li><a href="https://github.com/nautobot/nautobot/issues/3168">#3168</a> - Add device name to bulk interface rename header.</li>
|
|
12605
12644
|
</ul>
|
|
12606
|
-
<h3 id="
|
|
12645
|
+
<h3 id="changed-in-v1511">Changed in v1.5.11<a class="headerlink" href="#changed-in-v1511" title="Permanent link">¶</a></h3>
|
|
12607
12646
|
<ul>
|
|
12608
12647
|
<li><a href="https://github.com/nautobot/nautobot/issues/3134">#3134</a> - Migrate ModelMultipleChoiceFilters to NaturalKeyOrPKMultipleChoiceFilter.</li>
|
|
12609
12648
|
<li><a href="https://github.com/nautobot/nautobot/issues/3264">#3264</a> - Changed <code>DynamicGroup.objects.get_for_object()</code> to be a little more efficient.</li>
|
|
12610
12649
|
</ul>
|
|
12611
|
-
<h3 id="
|
|
12650
|
+
<h3 id="fixed-in-v1511">Fixed in v1.5.11<a class="headerlink" href="#fixed-in-v1511" title="Permanent link">¶</a></h3>
|
|
12612
12651
|
<ul>
|
|
12613
12652
|
<li><a href="https://github.com/nautobot/nautobot/issues/3187">#3187</a> - Fixed <code>DynamicModelChoiceField</code>s having a generic default label when one is provided.</li>
|
|
12614
12653
|
<li><a href="https://github.com/nautobot/nautobot/issues/3274">#3274</a> - Fixed ObjectListViewMixin's filtering when exporting objects in NautobotUIViewSet.</li>
|
|
12615
12654
|
<li><a href="https://github.com/nautobot/nautobot/issues/3290">#3290</a> - Fixed an issue preventing the inclusion of <code>netutils</code> functions in Django templates.</li>
|
|
12616
12655
|
<li><a href="https://github.com/nautobot/nautobot/issues/3335">#3335</a> - Fixed inability to change filtering on custom field (selection) once filter is configured.</li>
|
|
12617
12656
|
</ul>
|
|
12618
|
-
<h3 id="
|
|
12657
|
+
<h3 id="dependencies-in-v1511">Dependencies in v1.5.11<a class="headerlink" href="#dependencies-in-v1511" title="Permanent link">¶</a></h3>
|
|
12619
12658
|
<ul>
|
|
12620
12659
|
<li><a href="https://github.com/nautobot/nautobot/issues/3251">#3251</a> - Updated <code>oauthlib</code> to 3.2.2.</li>
|
|
12621
12660
|
<li><a href="https://github.com/nautobot/nautobot/issues/3258">#3258</a> - Updated <code>cryptography</code> to 39.0.1.</li>
|
|
12622
12661
|
<li><a href="https://github.com/nautobot/nautobot/issues/3320">#3320</a> - Updated <code>django</code> to 3.2.18.</li>
|
|
12623
12662
|
<li><a href="https://github.com/nautobot/nautobot/issues/3333">#3333</a> - Updated <code>netutils</code> constraint from ~1.4.0 to ^1.4.0 to permit semver upgrades.</li>
|
|
12624
12663
|
</ul>
|
|
12625
|
-
<h3 id="
|
|
12664
|
+
<h3 id="documentation-in-v1511">Documentation in v1.5.11<a class="headerlink" href="#documentation-in-v1511" title="Permanent link">¶</a></h3>
|
|
12626
12665
|
<ul>
|
|
12627
12666
|
<li><a href="https://github.com/nautobot/nautobot/issues/3184">#3184</a> - Added Git 2.0+ as a mandatory dependency in the installation instructions.</li>
|
|
12628
12667
|
<li><a href="https://github.com/nautobot/nautobot/issues/3224">#3224</a> - Updates to our deprecation policy: Prior-major REST API versions will be dropped upon next-major release.</li>
|
|
@@ -12632,7 +12671,7 @@ relationship:</p>
|
|
|
12632
12671
|
<li><a href="https://github.com/nautobot/nautobot/issues/3327">#3327</a> - Fixed Azure AD tenant configuration documentation.</li>
|
|
12633
12672
|
<li><a href="https://github.com/nautobot/nautobot/issues/3332">#3332</a> - Fixed missing imports in Secrets Providers plugin development documentation.</li>
|
|
12634
12673
|
</ul>
|
|
12635
|
-
<h3 id="
|
|
12674
|
+
<h3 id="housekeeping-in-v1511">Housekeeping in v1.5.11<a class="headerlink" href="#housekeeping-in-v1511" title="Permanent link">¶</a></h3>
|
|
12636
12675
|
<ul>
|
|
12637
12676
|
<li><a href="https://github.com/nautobot/nautobot/issues/2580">#2580</a> - Fixed fragile generic view test.</li>
|
|
12638
12677
|
<li><a href="https://github.com/nautobot/nautobot/issues/3255">#3255</a> - Added <code>--cache-test-fixtures</code> command line argument to Nautobot unit and integration tests.</li>
|
|
@@ -12641,89 +12680,89 @@ relationship:</p>
|
|
|
12641
12680
|
<li><a href="https://github.com/nautobot/nautobot/issues/3314">#3314</a> - Updated pre-commit hook to validate user namespace prefix on branch name.</li>
|
|
12642
12681
|
</ul>
|
|
12643
12682
|
<h2 id="v1510-2023-02-06">v1.5.10 (2023-02-06)<a class="headerlink" href="#v1510-2023-02-06" title="Permanent link">¶</a></h2>
|
|
12644
|
-
<h3 id="
|
|
12683
|
+
<h3 id="security-in-v1510">Security in v1.5.10<a class="headerlink" href="#security-in-v1510" title="Permanent link">¶</a></h3>
|
|
12645
12684
|
<ul>
|
|
12646
12685
|
<li><a href="https://github.com/nautobot/nautobot/issues/3227">#3227</a> - Updated <code>django</code> to 3.2.17 due to CVE-2023-23969.</li>
|
|
12647
12686
|
</ul>
|
|
12648
|
-
<h3 id="
|
|
12687
|
+
<h3 id="added-in-v1510">Added in v1.5.10<a class="headerlink" href="#added-in-v1510" title="Permanent link">¶</a></h3>
|
|
12649
12688
|
<ul>
|
|
12650
12689
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added <code>CELERY_WORKER_PROMETHEUS_PORTS</code> configuration setting</li>
|
|
12651
12690
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added prometheus HTTP server listening on the worker to expose worker metrics</li>
|
|
12652
12691
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added <code>nautobot_job_duration_seconds</code> counter metric that reports on job execution</li>
|
|
12653
12692
|
</ul>
|
|
12654
|
-
<h3 id="
|
|
12693
|
+
<h3 id="fixed-in-v1510">Fixed in v1.5.10<a class="headerlink" href="#fixed-in-v1510" title="Permanent link">¶</a></h3>
|
|
12655
12694
|
<ul>
|
|
12656
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed interface not raising exception when adding a VLAN from a different site in tagged_vlans
|
|
12695
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3126">#3126</a> - Fixed interface not raising exception when adding a VLAN from a different site in <code>tagged_vlans</code>.</li>
|
|
12657
12696
|
</ul>
|
|
12658
|
-
<h3 id="
|
|
12697
|
+
<h3 id="dependencies-in-v1510">Dependencies in v1.5.10<a class="headerlink" href="#dependencies-in-v1510" title="Permanent link">¶</a></h3>
|
|
12659
12698
|
<ul>
|
|
12660
12699
|
<li><a href="https://github.com/nautobot/nautobot/issues/3227">#3227</a> - Updated <code>django</code> to 3.2.17.</li>
|
|
12661
12700
|
</ul>
|
|
12662
|
-
<h3 id="
|
|
12701
|
+
<h3 id="housekeeping-in-v1510">Housekeeping in v1.5.10<a class="headerlink" href="#housekeeping-in-v1510" title="Permanent link">¶</a></h3>
|
|
12663
12702
|
<ul>
|
|
12664
12703
|
<li><a href="https://github.com/nautobot/nautobot/issues/3153">#3153</a> - Made integration test <code>CableConnectFormTestCase.test_js_functionality</code> more resilient and less prone to erroneous failures.</li>
|
|
12665
12704
|
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Updated VLANFactory to generate longer and more "realistic" VLAN names.</li>
|
|
12666
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Fixed a spurious failure in BulkEditObjectsViewTestCase.test_bulk_edit_objects_with_constrained_permission
|
|
12705
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3177">#3177</a> - Fixed a spurious failure in <code>BulkEditObjectsViewTestCase.test_bulk_edit_objects_with_constrained_permission</code>.</li>
|
|
12667
12706
|
<li><a href="https://github.com/nautobot/nautobot/issues/3198">#3198</a> - Added dependencies towncrier section, removed extra newline.</li>
|
|
12668
12707
|
<li><a href="https://github.com/nautobot/nautobot/issues/3200">#3200</a> - Added <code>dependencies</code> to the list of valid change fragment types in the documentation.</li>
|
|
12669
12708
|
</ul>
|
|
12670
12709
|
<h2 id="v159-2023-01-26">v1.5.9 (2023-01-26)<a class="headerlink" href="#v159-2023-01-26" title="Permanent link">¶</a></h2>
|
|
12671
|
-
<h3 id="
|
|
12710
|
+
<h3 id="changed-in-v159">Changed in v1.5.9<a class="headerlink" href="#changed-in-v159" title="Permanent link">¶</a></h3>
|
|
12672
12711
|
<ul>
|
|
12673
12712
|
<li><a href="https://github.com/nautobot/nautobot/issues/3171">#3171</a> - Increased maximum VLAN name length from 64 characters to 255 characters.</li>
|
|
12674
12713
|
</ul>
|
|
12675
|
-
<h3 id="
|
|
12714
|
+
<h3 id="fixed-in-v159">Fixed in v1.5.9<a class="headerlink" href="#fixed-in-v159" title="Permanent link">¶</a></h3>
|
|
12676
12715
|
<ul>
|
|
12677
12716
|
<li><a href="https://github.com/nautobot/nautobot/issues/3114">#3114</a> - Fixed Navbar scroll through top-level menu in low resolution desktop screens.</li>
|
|
12678
12717
|
<li><a href="https://github.com/nautobot/nautobot/issues/3155">#3155</a> - Aligned buttons on device component create page.</li>
|
|
12679
12718
|
<li><a href="https://github.com/nautobot/nautobot/issues/3169">#3169</a> - Fixed data mismatch in <code>ScheduledJob</code> causing celery workers to fail when running scheduled jobs created in versions prior to <code>v1.5.8</code>. ⚠ <strong>NOTE</strong>: If your celery workers are failing on startup after upgrading to <code>v1.5.8</code>, you may need to purge the celery queue with <code>nautobot-server celery purge</code> or <code>nautobot-server celery purge -Q <queues></code> to purge custom queues.</li>
|
|
12680
12719
|
</ul>
|
|
12681
|
-
<h3 id="
|
|
12720
|
+
<h3 id="dependencies-in-v159">Dependencies in v1.5.9<a class="headerlink" href="#dependencies-in-v159" title="Permanent link">¶</a></h3>
|
|
12682
12721
|
<ul>
|
|
12683
12722
|
<li><a href="https://github.com/nautobot/nautobot/issues/3144">#3144</a> - Updated <code>netutils</code> to <code>~1.4.0</code></li>
|
|
12684
12723
|
</ul>
|
|
12685
|
-
<h3 id="
|
|
12724
|
+
<h3 id="housekeeping-in-v159">Housekeeping in v1.5.9<a class="headerlink" href="#housekeeping-in-v159" title="Permanent link">¶</a></h3>
|
|
12686
12725
|
<ul>
|
|
12687
12726
|
<li><a href="https://github.com/nautobot/nautobot/issues/3117">#3117</a> - Update Renovate config to batch lockfile updates to next.</li>
|
|
12688
12727
|
</ul>
|
|
12689
12728
|
<h2 id="v158-2023-01-23">v1.5.8 (2023-01-23)<a class="headerlink" href="#v158-2023-01-23" title="Permanent link">¶</a></h2>
|
|
12690
|
-
<h3 id="
|
|
12729
|
+
<h3 id="security-in-v158">Security in v1.5.8<a class="headerlink" href="#security-in-v158" title="Permanent link">¶</a></h3>
|
|
12691
12730
|
<ul>
|
|
12692
12731
|
<li><a href="https://github.com/nautobot/nautobot/issues/3055">#3055</a> - Updated <code>setuptools</code> to <code>65.5.1</code> to address <code>CVE-2022-40897</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12693
12732
|
<li><a href="https://github.com/nautobot/nautobot/issues/3082">#3082</a> - Updated <code>gitpython</code> to <code>~3.1.30</code> to address <code>CVE-2022-24439</code>.</li>
|
|
12694
12733
|
<li><a href="https://github.com/nautobot/nautobot/issues/3119">#3119</a> - Updated <code>future</code> to <code>0.18.3</code> due to <code>CVE-2022-40899</code>. This is not a direct dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12695
12734
|
</ul>
|
|
12696
|
-
<h3 id="
|
|
12735
|
+
<h3 id="changed-in-v158">Changed in v1.5.8<a class="headerlink" href="#changed-in-v158" title="Permanent link">¶</a></h3>
|
|
12697
12736
|
<ul>
|
|
12698
12737
|
<li><a href="https://github.com/nautobot/nautobot/issues/3112">#3112</a> - Converted eligible <code>prefetch_related()</code> to <code>select_related()</code> queries. Users should note a performance gain from this change, but note that cacheops is no longer recommended in v1.5 and this change will likely result in invalid data responses if cacheops remains enabled in your environment. Cacheops will be removed entirely in a future release.</li>
|
|
12699
12738
|
</ul>
|
|
12700
|
-
<h3 id="
|
|
12739
|
+
<h3 id="fixed-in-v158">Fixed in v1.5.8<a class="headerlink" href="#fixed-in-v158" title="Permanent link">¶</a></h3>
|
|
12701
12740
|
<ul>
|
|
12702
12741
|
<li><a href="https://github.com/nautobot/nautobot/issues/2244">#2244</a> - Fixed an unnecessary and sometimes problematic database access from the Celery worker before it forks off to execute an individual job.</li>
|
|
12703
12742
|
<li><a href="https://github.com/nautobot/nautobot/issues/3097">#3097</a> - Fixed scrolling past select dropdown in modals.</li>
|
|
12704
12743
|
<li><a href="https://github.com/nautobot/nautobot/issues/3104">#3104</a> - Fixed bug preventing filters from being removed from list views.</li>
|
|
12705
12744
|
</ul>
|
|
12706
|
-
<h3 id="
|
|
12745
|
+
<h3 id="documentation-in-v158">Documentation in v1.5.8<a class="headerlink" href="#documentation-in-v158" title="Permanent link">¶</a></h3>
|
|
12707
12746
|
<ul>
|
|
12708
12747
|
<li><a href="https://github.com/nautobot/nautobot/issues/3077">#3077</a> - Updated Nautobot release checklist to reflect current branching and pull request process.</li>
|
|
12709
12748
|
<li><a href="https://github.com/nautobot/nautobot/issues/3103">#3103</a> - Added Redis troubleshooting section to installation docs.</li>
|
|
12710
12749
|
<li><a href="https://github.com/nautobot/nautobot/issues/3121">#3121</a> - Updated Config Contexts documentation to denote support for associating by Device Redundancy Group membership.</li>
|
|
12711
12750
|
</ul>
|
|
12712
|
-
<h3 id="
|
|
12751
|
+
<h3 id="housekeeping-in-v158">Housekeeping in v1.5.8<a class="headerlink" href="#housekeeping-in-v158" title="Permanent link">¶</a></h3>
|
|
12713
12752
|
<ul>
|
|
12714
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3072">#3072</a> - In Nautobot's unit tests, all HTTP requests are now sent with SERVER_NAME set to <code>nautobot.example.com</code> instead of <code>testserver</code> (Django's default) and the test configuration for Nautobot itself sets <code>ALLOWED_HOSTS</code> to expect <code>nautobot.example.com</code>. This is intended to protect against issues such as #3065.</li>
|
|
12753
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/3072">#3072</a> - In Nautobot's unit tests, all HTTP requests are now sent with <code>SERVER_NAME</code> set to <code>nautobot.example.com</code> instead of <code>testserver</code> (Django's default) and the test configuration for Nautobot itself sets <code>ALLOWED_HOSTS</code> to expect <code>nautobot.example.com</code>. This is intended to protect against issues such as #3065.</li>
|
|
12715
12754
|
</ul>
|
|
12716
12755
|
<h2 id="v157-2023-01-04">v1.5.7 (2023-01-04)<a class="headerlink" href="#v157-2023-01-04" title="Permanent link">¶</a></h2>
|
|
12717
|
-
<h3 id="
|
|
12756
|
+
<h3 id="security-in-v157">Security in v1.5.7<a class="headerlink" href="#security-in-v157" title="Permanent link">¶</a></h3>
|
|
12718
12757
|
<ul>
|
|
12719
12758
|
<li><a href="https://github.com/nautobot/nautobot/issues/3074">#3074</a> - Sandboxed rendering of Jinja2 templates is now enforced by default in keeping with <a href="https://jinja.palletsprojects.com/en/3.0.x/sandbox/#sandbox">Jinja2 best practices</a>. To enable template sandboxing in a Nautobot instance without needing to upgrade, add the following value to your <code>nautobot_config.py</code> and restart your Nautobot services: <code>TEMPLATES[1]["OPTIONS"]["environment"] = "jinja2.sandbox.SandboxedEnvironment"</code></li>
|
|
12720
12759
|
</ul>
|
|
12721
|
-
<h3 id="
|
|
12760
|
+
<h3 id="fixed-in-v157">Fixed in v1.5.7<a class="headerlink" href="#fixed-in-v157" title="Permanent link">¶</a></h3>
|
|
12722
12761
|
<ul>
|
|
12723
12762
|
<li><a href="https://github.com/nautobot/nautobot/issues/3065">#3065</a> - Rolled back the changes made in 1.5.6 by #3016 to fix a breaking issue with <code>ALLOWED_HOSTS</code> and change-logging.</li>
|
|
12724
12763
|
</ul>
|
|
12725
12764
|
<h2 id="v156-2022-12-23">v1.5.6 (2022-12-23)<a class="headerlink" href="#v156-2022-12-23" title="Permanent link">¶</a></h2>
|
|
12726
|
-
<h3 id="
|
|
12765
|
+
<h3 id="added-in-v156">Added in v1.5.6<a class="headerlink" href="#added-in-v156" title="Permanent link">¶</a></h3>
|
|
12727
12766
|
<ul>
|
|
12728
12767
|
<li><a href="https://github.com/nautobot/nautobot/issues/1768">#1768</a> - Added the display of half-depth rack items from the rear face.</li>
|
|
12729
12768
|
<li><a href="https://github.com/nautobot/nautobot/issues/2481">#2481</a> - Added <code>clone_fields</code> definition to Custom Field class.</li>
|
|
@@ -12732,7 +12771,7 @@ relationship:</p>
|
|
|
12732
12771
|
<li><a href="https://github.com/nautobot/nautobot/issues/2966">#2966</a> - Added device name to rack elevation with images.</li>
|
|
12733
12772
|
<li><a href="https://github.com/nautobot/nautobot/issues/3014">#3014</a> - Added support for Git repositories to provide config contexts filtered by Location.</li>
|
|
12734
12773
|
</ul>
|
|
12735
|
-
<h3 id="
|
|
12774
|
+
<h3 id="fixed-in-v156">Fixed in v1.5.6<a class="headerlink" href="#fixed-in-v156" title="Permanent link">¶</a></h3>
|
|
12736
12775
|
<ul>
|
|
12737
12776
|
<li><a href="https://github.com/nautobot/nautobot/issues/2898">#2898</a> - Disabled sorting on Computed Field column.</li>
|
|
12738
12777
|
<li><a href="https://github.com/nautobot/nautobot/issues/2967">#2967</a> - Fixed inverted device images in dark mode.</li>
|
|
@@ -12742,60 +12781,60 @@ relationship:</p>
|
|
|
12742
12781
|
<li><a href="https://github.com/nautobot/nautobot/issues/3028">#3028</a> - Fixed filter fields on advanced filter form not being alpha-sorted.</li>
|
|
12743
12782
|
<li><a href="https://github.com/nautobot/nautobot/issues/3036">#3036</a> - Fixed MultiValueUUIDFilter's value input field in ObjectListView Advanced FilterSet Form.</li>
|
|
12744
12783
|
</ul>
|
|
12745
|
-
<h3 id="
|
|
12784
|
+
<h3 id="dependencies-in-v156">Dependencies in v1.5.6<a class="headerlink" href="#dependencies-in-v156" title="Permanent link">¶</a></h3>
|
|
12746
12785
|
<ul>
|
|
12747
12786
|
<li><a href="https://github.com/nautobot/nautobot/issues/2970">#2970</a> - Updated <code>certifi</code> to <code>2022.12.7</code> for <code>CVE-2022-23491</code>. This is a nested dependency so will not auto-update when upgrading. Please be sure to upgrade your local environment.</li>
|
|
12748
12787
|
<li><a href="https://github.com/nautobot/nautobot/issues/2994">#2994</a> - Updated <code>mkdocs-material</code> to <code>8.5.11</code>.</li>
|
|
12749
12788
|
</ul>
|
|
12750
|
-
<h3 id="
|
|
12789
|
+
<h3 id="documentation-in-v156">Documentation in v1.5.6<a class="headerlink" href="#documentation-in-v156" title="Permanent link">¶</a></h3>
|
|
12751
12790
|
<ul>
|
|
12752
12791
|
<li><a href="https://github.com/nautobot/nautobot/issues/2589">#2589</a> - Updated all screenshots on the README.md to gifs.</li>
|
|
12753
12792
|
</ul>
|
|
12754
|
-
<h3 id="
|
|
12793
|
+
<h3 id="housekeeping-in-v156">Housekeeping in v1.5.6<a class="headerlink" href="#housekeeping-in-v156" title="Permanent link">¶</a></h3>
|
|
12755
12794
|
<ul>
|
|
12756
12795
|
<li><a href="https://github.com/nautobot/nautobot/issues/2995">#2995</a> - Updated <code>Poetry</code> lockfile to use new v2 version format (requiring <code>Poetry>=1.3</code>).</li>
|
|
12757
12796
|
<li><a href="https://github.com/nautobot/nautobot/issues/2995">#2995</a> - Updated included <code>poetry</code> version in <code>nautobot-dev</code> container to <code>1.3.1</code>.</li>
|
|
12758
12797
|
<li><a href="https://github.com/nautobot/nautobot/issues/3025">#3025</a> - Added plugin banner test back to ListObjectsViewTestCase and ensured <code>example_plugin</code> installation before running it.</li>
|
|
12759
12798
|
</ul>
|
|
12760
12799
|
<h2 id="v155-2022-12-12">v1.5.5 (2022-12-12)<a class="headerlink" href="#v155-2022-12-12" title="Permanent link">¶</a></h2>
|
|
12761
|
-
<h3 id="
|
|
12800
|
+
<h3 id="changed-in-v155">Changed in v1.5.5<a class="headerlink" href="#changed-in-v155" title="Permanent link">¶</a></h3>
|
|
12762
12801
|
<ul>
|
|
12763
12802
|
<li><a href="https://github.com/nautobot/nautobot/issues/2663">#2663</a> - Changed <code>tags</code> field in ConfigContextForm to <code>DynamicModelMultipleChoiceField</code>.</li>
|
|
12764
12803
|
</ul>
|
|
12765
|
-
<h3 id="
|
|
12804
|
+
<h3 id="fixed-in-v155">Fixed in v1.5.5<a class="headerlink" href="#fixed-in-v155" title="Permanent link">¶</a></h3>
|
|
12766
12805
|
<ul>
|
|
12767
12806
|
<li><a href="https://github.com/nautobot/nautobot/issues/2962">#2962</a> - Fixed an error raised when logging errors about a <code>Secret</code> with an invalid <code>provider</code>.</li>
|
|
12768
12807
|
<li><a href="https://github.com/nautobot/nautobot/issues/2963">#2963</a> - Fixed 500 error when combining filtering on relationships with concrete fields.</li>
|
|
12769
12808
|
</ul>
|
|
12770
|
-
<h3 id="
|
|
12809
|
+
<h3 id="housekeeping-in-v155">Housekeeping in v1.5.5<a class="headerlink" href="#housekeeping-in-v155" title="Permanent link">¶</a></h3>
|
|
12771
12810
|
<ul>
|
|
12772
12811
|
<li><a href="https://github.com/nautobot/nautobot/issues/2948">#2948</a> - Fixed incorrect assumption in test base that <code>example_plugin</code> would always be installed.</li>
|
|
12773
12812
|
</ul>
|
|
12774
12813
|
<h2 id="v154-2022-12-02">v1.5.4 (2022-12-02)<a class="headerlink" href="#v154-2022-12-02" title="Permanent link">¶</a></h2>
|
|
12775
|
-
<h3 id="
|
|
12814
|
+
<h3 id="fixed-in-v154">Fixed in v1.5.4<a class="headerlink" href="#fixed-in-v154" title="Permanent link">¶</a></h3>
|
|
12776
12815
|
<ul>
|
|
12777
12816
|
<li><a href="https://github.com/nautobot/nautobot/issues/2154">#2154</a> - Fixed SwaggerUI use of Authorization Token, API calls in SwaggerUI now use appropriate token pattern and curl command match the correct pattern.</li>
|
|
12778
12817
|
<li><a href="https://github.com/nautobot/nautobot/issues/2931">#2931</a> - Fixed title and breadcrumb rendering in NautobotUIViewSet list views.</li>
|
|
12779
12818
|
<li><a href="https://github.com/nautobot/nautobot/issues/2936">#2936</a> - Fixed NautobotUIViewSet views not being able to delete objects.</li>
|
|
12780
12819
|
</ul>
|
|
12781
|
-
<h3 id="
|
|
12820
|
+
<h3 id="documentation-in-v154">Documentation in v1.5.4<a class="headerlink" href="#documentation-in-v154" title="Permanent link">¶</a></h3>
|
|
12782
12821
|
<ul>
|
|
12783
12822
|
<li><a href="https://github.com/nautobot/nautobot/issues/86">#86</a> - Added user-guide for relationships and S3 storage backends.</li>
|
|
12784
12823
|
</ul>
|
|
12785
12824
|
<h2 id="v153-2022-11-29">v1.5.3 (2022-11-29)<a class="headerlink" href="#v153-2022-11-29" title="Permanent link">¶</a></h2>
|
|
12786
|
-
<h3 id="
|
|
12825
|
+
<h3 id="fixed-in-v153">Fixed in v1.5.3<a class="headerlink" href="#fixed-in-v153" title="Permanent link">¶</a></h3>
|
|
12787
12826
|
<ul>
|
|
12788
12827
|
<li><a href="https://github.com/nautobot/nautobot/issues/2924">#2924</a> - Fix deprecation warning flag check throwing error on startup with plugins installed.</li>
|
|
12789
12828
|
</ul>
|
|
12790
12829
|
<h2 id="v152-2022-11-28">v1.5.2 (2022-11-28)<a class="headerlink" href="#v152-2022-11-28" title="Permanent link">¶</a></h2>
|
|
12791
|
-
<h3 id="
|
|
12830
|
+
<h3 id="added-in-v152">Added in v1.5.2<a class="headerlink" href="#added-in-v152" title="Permanent link">¶</a></h3>
|
|
12792
12831
|
<ul>
|
|
12793
12832
|
<li><a href="https://github.com/nautobot/nautobot/issues/2473">#2473</a> - Added <code>multipart/form-data</code> support to Job run API.</li>
|
|
12794
12833
|
<li><a href="https://github.com/nautobot/nautobot/issues/2723">#2723</a> - Added <code>nautobot.apps</code> module to provide a central location for code that is recommended for use by Nautobot apps (plugins).</li>
|
|
12795
12834
|
<li><a href="https://github.com/nautobot/nautobot/issues/2759">#2759</a> - Add prometheus metrics for health check results</li>
|
|
12796
12835
|
<li><a href="https://github.com/nautobot/nautobot/issues/2798">#2798</a> - Added <code>LOG_DEPRECATION_WARNINGS</code> configuration variable and corresponding environment-variable support.</li>
|
|
12797
12836
|
</ul>
|
|
12798
|
-
<h3 id="
|
|
12837
|
+
<h3 id="changed-in-v152">Changed in v1.5.2<a class="headerlink" href="#changed-in-v152" title="Permanent link">¶</a></h3>
|
|
12799
12838
|
<ul>
|
|
12800
12839
|
<li><a href="https://github.com/nautobot/nautobot/issues/2644">#2644</a> - Changed published accepted content types for REST API to remove unsupported types.</li>
|
|
12801
12840
|
<li><a href="https://github.com/nautobot/nautobot/issues/2779">#2779</a> - Renamed many mixin classes for clarity and consistency. Aliases remain but will raise <code>DeprecationWarning</code>.</li>
|
|
@@ -12804,21 +12843,21 @@ relationship:</p>
|
|
|
12804
12843
|
<li><a href="https://github.com/nautobot/nautobot/issues/2838">#2838</a> - Fixed filter selection box colors in dark mode.</li>
|
|
12805
12844
|
<li><a href="https://github.com/nautobot/nautobot/issues/2878">#2878</a> - Changed Upstream Workflow Job to continue on error for group, not each specific job.</li>
|
|
12806
12845
|
</ul>
|
|
12807
|
-
<h3 id="
|
|
12846
|
+
<h3 id="fixed-in-v152">Fixed in v1.5.2<a class="headerlink" href="#fixed-in-v152" title="Permanent link">¶</a></h3>
|
|
12808
12847
|
<ul>
|
|
12809
12848
|
<li><a href="https://github.com/nautobot/nautobot/issues/1519">#1519</a> - Extending the model table columns that need to display copy button when hovered over.</li>
|
|
12810
12849
|
<li><a href="https://github.com/nautobot/nautobot/issues/2477">#2477</a> - Fixed last login time being updated during maintenance mode when remote user authentication is used.</li>
|
|
12811
12850
|
<li><a href="https://github.com/nautobot/nautobot/issues/2744">#2744</a> - Enforced required Relationships when bulk editing or creating objects that have required relationships. Bulk edit via API or UI. Bulk create via API.</li>
|
|
12812
12851
|
<li><a href="https://github.com/nautobot/nautobot/issues/2795">#2795</a> - Fixed changelog diff data to fall back to <code>object_data</code> when <code>object_data_v2</code> is not present for both <code>ObjectChange</code> instances.</li>
|
|
12813
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/2816">#2816</a> - Fixed issue where changing the interface mode first required removing tagged_vlans in a different request.</li>
|
|
12852
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2816">#2816</a> - Fixed issue where changing the interface mode first required removing <code>tagged_vlans</code> in a different request.</li>
|
|
12814
12853
|
<li><a href="https://github.com/nautobot/nautobot/issues/2833">#2833</a> - Fixed plugin banner issue and breadcrumb rendering issue in NautobotHTMLRenderer.</li>
|
|
12815
12854
|
<li><a href="https://github.com/nautobot/nautobot/issues/2837">#2837</a> - Fixed incorrect logic in <code>nautobot.utilities.utils.is_single_choice_field</code> that was causing valid filters to report as invalid.</li>
|
|
12816
12855
|
</ul>
|
|
12817
|
-
<h3 id="
|
|
12856
|
+
<h3 id="dependencies-in-v152">Dependencies in v1.5.2<a class="headerlink" href="#dependencies-in-v152" title="Permanent link">¶</a></h3>
|
|
12818
12857
|
<ul>
|
|
12819
12858
|
<li><a href="https://github.com/nautobot/nautobot/issues/2814">#2814</a> - Update dependency <code>netutils</code> to <code>~1.3.0</code>.</li>
|
|
12820
12859
|
</ul>
|
|
12821
|
-
<h3 id="
|
|
12860
|
+
<h3 id="documentation-in-v152">Documentation in v1.5.2<a class="headerlink" href="#documentation-in-v152" title="Permanent link">¶</a></h3>
|
|
12822
12861
|
<ul>
|
|
12823
12862
|
<li><a href="https://github.com/nautobot/nautobot/issues/1273">#1273</a> - Added section "VS Code Remote Debugging Configuration" to development chapter in documentation.</li>
|
|
12824
12863
|
<li><a href="https://github.com/nautobot/nautobot/issues/2723">#2723</a> - Added code reference documentation for the <code>nautobot.apps</code> module.</li>
|
|
@@ -12826,18 +12865,18 @@ relationship:</p>
|
|
|
12826
12865
|
<li><a href="https://github.com/nautobot/nautobot/issues/2723">#2723</a> - Revised "plugin" development documentation to refer to "apps" instead where appropriate.</li>
|
|
12827
12866
|
<li><a href="https://github.com/nautobot/nautobot/issues/2817">#2817</a> - Update docs to not indicate prompt, makes for better use of copy code snippet feature of MkDocs</li>
|
|
12828
12867
|
</ul>
|
|
12829
|
-
<h3 id="
|
|
12868
|
+
<h3 id="housekeeping-in-v152">Housekeeping in v1.5.2<a class="headerlink" href="#housekeeping-in-v152" title="Permanent link">¶</a></h3>
|
|
12830
12869
|
<ul>
|
|
12831
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/2774">#2774</a> - Fixed SiteFactory time_zone attribute to use only <code>pytz.common_timezones</code>.</li>
|
|
12870
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/2774">#2774</a> - Fixed SiteFactory <code>time_zone</code> attribute to use only <code>pytz.common_timezones</code>.</li>
|
|
12832
12871
|
<li><a href="https://github.com/nautobot/nautobot/issues/2819">#2819</a> - Adds appropriate invoke task for running docs locally and adds how to run manually.</li>
|
|
12833
12872
|
</ul>
|
|
12834
12873
|
<h2 id="v151-2022-11-14">v1.5.1 (2022-11-14)<a class="headerlink" href="#v151-2022-11-14" title="Permanent link">¶</a></h2>
|
|
12835
|
-
<h3 id="
|
|
12874
|
+
<h3 id="added-in-v151">Added in v1.5.1<a class="headerlink" href="#added-in-v151" title="Permanent link">¶</a></h3>
|
|
12836
12875
|
<ul>
|
|
12837
12876
|
<li><a href="https://github.com/nautobot/nautobot/issues/2500">#2500</a> - Added <code>try/except</code> block to catch <code>NoReverseMatch</code> exception in NotesSerializerMixin and return helpful message.</li>
|
|
12838
12877
|
<li><a href="https://github.com/nautobot/nautobot/issues/2740">#2740</a> - Added ObjectChangeLogView and ObjectNotesView Viewset mixins and routes.</li>
|
|
12839
12878
|
</ul>
|
|
12840
|
-
<h3 id="
|
|
12879
|
+
<h3 id="fixed-in-v151">Fixed in v1.5.1<a class="headerlink" href="#fixed-in-v151" title="Permanent link">¶</a></h3>
|
|
12841
12880
|
<ul>
|
|
12842
12881
|
<li><a href="https://github.com/nautobot/nautobot/issues/2470">#2470</a> - Fixed incorrect automatic generation of Location slugs in the UI.</li>
|
|
12843
12882
|
<li><a href="https://github.com/nautobot/nautobot/issues/2757">#2757</a> - Fixed filters on default filter form replaces filters on dynamic filter form on submit</li>
|
|
@@ -12845,15 +12884,15 @@ relationship:</p>
|
|
|
12845
12884
|
<li><a href="https://github.com/nautobot/nautobot/issues/2789">#2789</a> - Fixed web UI footer margin and swagger UI authorization box size.</li>
|
|
12846
12885
|
<li><a href="https://github.com/nautobot/nautobot/issues/2824">#2824</a> - Fixed an issue when filtering on nested related fields for Dynamic Groups.</li>
|
|
12847
12886
|
</ul>
|
|
12848
|
-
<h3 id="
|
|
12887
|
+
<h3 id="housekeeping-in-v151">Housekeeping in v1.5.1<a class="headerlink" href="#housekeeping-in-v151" title="Permanent link">¶</a></h3>
|
|
12849
12888
|
<ul>
|
|
12850
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/1813">#1813</a> - Updated
|
|
12889
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1813">#1813</a> - Updated Example Plugin to use NautobotUIViewSet.</li>
|
|
12851
12890
|
<li><a href="https://github.com/nautobot/nautobot/issues/2556">#2556</a> - Revised TODO/FIXME comments for more clarity.</li>
|
|
12852
12891
|
</ul>
|
|
12853
12892
|
<h2 id="v150-2022-11-08">v1.5.0 (2022-11-08)<a class="headerlink" href="#v150-2022-11-08" title="Permanent link">¶</a></h2>
|
|
12854
12893
|
<p>Unchanged from v1.5.0-beta.1.</p>
|
|
12855
12894
|
<h2 id="v150-beta1-2022-11-07">v1.5.0-beta.1 (2022-11-07)<a class="headerlink" href="#v150-beta1-2022-11-07" title="Permanent link">¶</a></h2>
|
|
12856
|
-
<h3 id="
|
|
12895
|
+
<h3 id="added-in-v150-beta1">Added in v1.5.0-beta.1<a class="headerlink" href="#added-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12857
12896
|
<ul>
|
|
12858
12897
|
<li><a href="https://github.com/nautobot/nautobot/issues/873">#873</a> - Made it possible to require Relationships to be included when editing or creating the related models.</li>
|
|
12859
12898
|
<li><a href="https://github.com/nautobot/nautobot/issues/899">#899</a> - Added support for grouping of Custom Fields.</li>
|
|
@@ -12868,7 +12907,7 @@ relationship:</p>
|
|
|
12868
12907
|
<li><a href="https://github.com/nautobot/nautobot/issues/2608">#2608</a> - Added the option for certain LocationTypes to be nestable (similar to Regions).</li>
|
|
12869
12908
|
<li><a href="https://github.com/nautobot/nautobot/issues/2617">#2617</a> - Added dynamic filter form support to specialized list views.</li>
|
|
12870
12909
|
</ul>
|
|
12871
|
-
<h3 id="
|
|
12910
|
+
<h3 id="changed-in-v150-beta1">Changed in v1.5.0-beta.1<a class="headerlink" href="#changed-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12872
12911
|
<ul>
|
|
12873
12912
|
<li><a href="https://github.com/nautobot/nautobot/issues/1892">#1892</a> - Updated <code>Device</code> to have <code>device_redundancy_group</code> relationship, <code>device_redundancy_group_priority</code> numeric property.</li>
|
|
12874
12913
|
<li><a href="https://github.com/nautobot/nautobot/issues/1892">#1892</a> - Updated <code>ConfigContext</code> to have <code>ManyToManyField</code> to <code>dcim.DeviceRedundancyGroup</code> for the purposes of applying a <code>ConfigContext</code> based upon a <code>Device</code>s <code>DeviceRedundancyGroup</code> membership.</li>
|
|
@@ -12877,7 +12916,7 @@ relationship:</p>
|
|
|
12877
12916
|
<li><a href="https://github.com/nautobot/nautobot/issues/2615">#2615</a> - Changed <code>ConfigContextFilterForm</code>s <code>schema</code> filter form field to support added filter field on <code>ConfigContextFilterSet</code>.</li>
|
|
12878
12917
|
<li><a href="https://github.com/nautobot/nautobot/issues/2615">#2615</a> - Changed <code>BaseNetworkQuerySet</code> and <code>IPAddressQuerySet</code> to search both IPv6 and IPv4 when given search string is ambiguous.</li>
|
|
12879
12918
|
</ul>
|
|
12880
|
-
<h3 id="
|
|
12919
|
+
<h3 id="fixed-in-v150-beta1">Fixed in v1.5.0-beta.1<a class="headerlink" href="#fixed-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12881
12920
|
<ul>
|
|
12882
12921
|
<li><a href="https://github.com/nautobot/nautobot/issues/2266">#2266</a> - Fixed navbar floating over main viewport scrollbar.</li>
|
|
12883
12922
|
<li><a href="https://github.com/nautobot/nautobot/issues/2388">#2388</a> - Return "—" instead of "None" when relationship column is empty.</li>
|
|
@@ -12886,7 +12925,7 @@ relationship:</p>
|
|
|
12886
12925
|
<li><a href="https://github.com/nautobot/nautobot/issues/2615">#2615</a> - Fixed <code>BaseNetworkQuerySet</code> and <code>IPAddressQuerySet</code> only searching non-abbreviated first hextet IPv6 addresses.</li>
|
|
12887
12926
|
<li><a href="https://github.com/nautobot/nautobot/issues/2746">#2746</a> - Fixed Site <code>latitude</code>, <code>longitude</code> clean method for when valid string value entered.</li>
|
|
12888
12927
|
</ul>
|
|
12889
|
-
<h3 id="
|
|
12928
|
+
<h3 id="dependencies-in-v150-beta1">Dependencies in v1.5.0-beta.1<a class="headerlink" href="#dependencies-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12890
12929
|
<ul>
|
|
12891
12930
|
<li><a href="https://github.com/nautobot/nautobot/issues/1983">#1983</a> - Updated <code>django-taggit</code> dependency to 3.0.0.</li>
|
|
12892
12931
|
<li><a href="https://github.com/nautobot/nautobot/issues/2170">#2170</a> - Updated <code>django-constance</code> dependency to 2.9.1; updated <code>Jinja2</code> dependency to 3.1.2; updated <code>black</code> development dependency to 22.8.0.</li>
|
|
@@ -12897,11 +12936,11 @@ relationship:</p>
|
|
|
12897
12936
|
<li><a href="https://github.com/nautobot/nautobot/issues/2710">#2710</a> - Updated <code>pyuwsgi</code> minimum version from 2.0.20 to 2.0.21.</li>
|
|
12898
12937
|
<li><a href="https://github.com/nautobot/nautobot/issues/2711">#2711</a> - Updated <code>Pillow</code> package dependency from 9.2.0 to 9.3.0.</li>
|
|
12899
12938
|
</ul>
|
|
12900
|
-
<h3 id="
|
|
12939
|
+
<h3 id="documentation-in-v150-beta1">Documentation in v1.5.0-beta.1<a class="headerlink" href="#documentation-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12901
12940
|
<ul>
|
|
12902
12941
|
<li><a href="https://github.com/nautobot/nautobot/issues/270">#270</a> - Added custom fields user guide to documentation.</li>
|
|
12903
12942
|
</ul>
|
|
12904
|
-
<h3 id="
|
|
12943
|
+
<h3 id="housekeeping-in-v150-beta1">Housekeeping in v1.5.0-beta.1<a class="headerlink" href="#housekeeping-in-v150-beta1" title="Permanent link">¶</a></h3>
|
|
12905
12944
|
<ul>
|
|
12906
12945
|
<li><a href="https://github.com/nautobot/nautobot/issues/192">#192</a> - Eliminated Unit Test noisy output.</li>
|
|
12907
12946
|
<li><a href="https://github.com/nautobot/nautobot/issues/2227">#2227</a> - Added generating performance report options to 'invoke unittest'.</li>
|
|
@@ -13081,7 +13120,7 @@ relationship:</p>
|
|
|
13081
13120
|
<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>
|
|
13082
13121
|
|
|
13083
13122
|
|
|
13084
|
-
<script src="../assets/javascripts/bundle.
|
|
13123
|
+
<script src="../assets/javascripts/bundle.88dd0f4e.min.js"></script>
|
|
13085
13124
|
|
|
13086
13125
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
13087
13126
|
|