nautobot 2.4.0b1__py3-none-any.whl → 2.4.2__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/tests/integration/test_circuits_bulk_operations.py +43 -0
- nautobot/circuits/tests/integration/test_relationships.py +1 -1
- 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/apps/__init__.py +0 -5
- 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/generic/object_bulk_destroy.html +1 -1
- 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 +514 -5
- 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 +492 -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/git.py +7 -2
- 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 +136 -41
- nautobot/core/views/renderers.py +6 -6
- nautobot/core/views/utils.py +2 -2
- 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 +48 -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 +9 -6
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/cable.html +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/base.html +1 -1
- nautobot/dcim/templates/dcim/device.html +3 -11
- nautobot/dcim/templates/dcim/device_component.html +1 -1
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/devicetype.html +1 -1
- nautobot/dcim/templates/dcim/location.html +2 -10
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +1 -1
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +1 -1
- nautobot/dcim/templates/dcim/manufacturer.html +1 -1
- nautobot/dcim/templates/dcim/platform.html +1 -1
- nautobot/dcim/templates/dcim/powerfeed.html +1 -1
- nautobot/dcim/templates/dcim/powerpanel.html +1 -1
- nautobot/dcim/templates/dcim/rack.html +2 -10
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackgroup.html +1 -1
- nautobot/dcim/templates/dcim/rackreservation.html +3 -11
- nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
- 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_operations.py +30 -0
- nautobot/dcim/tests/integration/test_location_bulk_operations.py +43 -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 +30 -84
- nautobot/dcim/views.py +13 -28
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +123 -85
- nautobot/extras/api/views.py +33 -30
- nautobot/extras/constants.py +3 -0
- nautobot/extras/datasources/git.py +125 -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/migrations/0122_add_graphqlquery_owner_content_type.py +34 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +41 -23
- nautobot/extras/models/datasources.py +85 -0
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +17 -2
- nautobot/extras/models/relationships.py +17 -5
- 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/signals.py +15 -1
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/computedfield.html +1 -1
- nautobot/extras/templates/extras/configcontext.html +1 -1
- nautobot/extras/templates/extras/configcontextschema.html +1 -1
- nautobot/extras/templates/extras/customfield.html +1 -1
- nautobot/extras/templates/extras/customlink.html +1 -1
- nautobot/extras/templates/extras/dynamicgroup.html +2 -10
- nautobot/extras/templates/extras/exporttemplate.html +1 -1
- nautobot/extras/templates/extras/gitrepository.html +1 -1
- nautobot/extras/templates/extras/graphqlquery.html +1 -1
- nautobot/extras/templates/extras/job_detail.html +17 -1
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobbutton_retrieve.html +1 -1
- nautobot/extras/templates/extras/jobhook.html +1 -1
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/jobresult.html +1 -1
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/objectchange.html +1 -1
- nautobot/extras/templates/extras/plugin_detail.html +33 -16
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templates/extras/relationship.html +1 -63
- nautobot/extras/templates/extras/role_retrieve.html +1 -1
- nautobot/extras/templates/extras/scheduledjob.html +1 -1
- nautobot/extras/templates/extras/secret.html +1 -1
- nautobot/extras/templates/extras/secretsgroup.html +1 -1
- nautobot/extras/templates/extras/status.html +1 -1
- nautobot/extras/templates/extras/tag.html +1 -1
- nautobot/extras/templates/extras/webhook.html +1 -1
- 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/git_data/01-valid-files/graphql_queries/device_interfaces.gql +8 -0
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_names.gql +5 -0
- nautobot/extras/tests/git_data/02-invalid-files/graphql_queries/bad_device_names.gql +5 -0
- nautobot/extras/tests/git_helper.py +9 -1
- nautobot/extras/tests/integration/__init__.py +29 -16
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +19 -13
- nautobot/extras/tests/test_customfields.py +50 -52
- nautobot/extras/tests/test_datasources.py +29 -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 +299 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_utils.py +22 -1
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +20 -10
- nautobot/extras/views.py +85 -110
- 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 +74 -18
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +25 -9
- nautobot/ipam/templates/ipam/ipaddress.html +2 -10
- 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 +2 -10
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/rir.html +1 -1
- nautobot/ipam/templates/ipam/routetarget.html +1 -1
- nautobot/ipam/templates/ipam/service.html +1 -1
- nautobot/ipam/templates/ipam/vlan.html +2 -10
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlangroup.html +1 -1
- nautobot/ipam/templates/ipam/vrf.html +1 -1
- 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 +119 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_utils.py +41 -2
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +54 -17
- 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 +131 -14
- nautobot/project-static/docs/apps/index.html +131 -14
- nautobot/project-static/docs/apps/nautobot-apps.html +132 -16
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.60a45f97.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.60a45f97.min.js.map} +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js → search.f8cc74c7.min.js} +1 -1
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js.map → search.f8cc74c7.min.js.map} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css → main.a40c8224.min.css} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +147 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +459 -132
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +175 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +180 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +138 -16
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +137 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +164 -27
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +187 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +193 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +216 -48
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +324 -75
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +666 -175
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +194 -46
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +538 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +578 -221
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +145 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +156 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +492 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +705 -215
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +943 -422
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +619 -200
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +474 -159
- nautobot/project-static/docs/development/apps/api/configuration-view.html +131 -14
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/global-search.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/graphql.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +153 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +131 -14
- nautobot/project-static/docs/development/apps/api/prometheus.html +131 -14
- nautobot/project-static/docs/development/apps/api/setup.html +131 -14
- nautobot/project-static/docs/development/apps/api/testing.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/base-template.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/notes.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +137 -16
- nautobot/project-static/docs/development/apps/api/views/urls.html +131 -14
- nautobot/project-static/docs/development/apps/index.html +131 -14
- nautobot/project-static/docs/development/apps/migration/code-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/from-v1.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +135 -18
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +297 -25
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +131 -14
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +131 -14
- nautobot/project-static/docs/development/core/application-registry.html +131 -14
- nautobot/project-static/docs/development/core/best-practices.html +131 -14
- nautobot/project-static/docs/development/core/bootstrap-ui.html +131 -14
- nautobot/project-static/docs/development/core/caching.html +131 -14
- nautobot/project-static/docs/development/core/controllers.html +131 -14
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +158 -84
- nautobot/project-static/docs/development/core/generic-views.html +131 -14
- nautobot/project-static/docs/development/core/getting-started.html +334 -234
- nautobot/project-static/docs/development/core/homepage.html +134 -17
- nautobot/project-static/docs/development/core/index.html +131 -14
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9829 -0
- nautobot/project-static/docs/development/core/model-checklist.html +141 -22
- nautobot/project-static/docs/development/core/model-features.html +131 -14
- nautobot/project-static/docs/development/core/natural-keys.html +131 -14
- nautobot/project-static/docs/development/core/navigation-menu.html +131 -14
- nautobot/project-static/docs/development/core/release-checklist.html +134 -17
- nautobot/project-static/docs/development/core/role-internals.html +131 -14
- nautobot/project-static/docs/development/core/settings.html +131 -14
- nautobot/project-static/docs/development/core/style-guide.html +134 -17
- nautobot/project-static/docs/development/core/templates.html +132 -15
- nautobot/project-static/docs/development/core/testing.html +131 -14
- nautobot/project-static/docs/development/core/ui-component-framework.html +454 -283
- nautobot/project-static/docs/development/core/user-preferences.html +131 -14
- nautobot/project-static/docs/development/index.html +131 -14
- nautobot/project-static/docs/development/jobs/index.html +301 -132
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +131 -14
- nautobot/project-static/docs/index.html +139 -33
- 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 +132 -17
- nautobot/project-static/docs/overview/design_philosophy.html +131 -14
- nautobot/project-static/docs/release-notes/index.html +137 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +319 -203
- nautobot/project-static/docs/release-notes/version-1.1.html +316 -200
- nautobot/project-static/docs/release-notes/version-1.2.html +391 -275
- nautobot/project-static/docs/release-notes/version-1.3.html +417 -301
- nautobot/project-static/docs/release-notes/version-1.4.html +502 -387
- nautobot/project-static/docs/release-notes/version-1.5.html +690 -576
- nautobot/project-static/docs/release-notes/version-1.6.html +989 -457
- nautobot/project-static/docs/release-notes/version-2.0.html +613 -499
- nautobot/project-static/docs/release-notes/version-2.1.html +448 -334
- nautobot/project-static/docs/release-notes/version-2.2.html +441 -327
- nautobot/project-static/docs/release-notes/version-2.3.html +1171 -451
- nautobot/project-static/docs/release-notes/version-2.4.html +800 -111
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +303 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +133 -16
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +195 -18
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +134 -17
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +133 -16
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +151 -18
- nautobot/project-static/docs/user-guide/administration/installation/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +132 -15
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/services.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +131 -14
- nautobot/project-static/docs/user-guide/administration/security/index.html +9420 -0
- nautobot/project-static/docs/user-guide/administration/security/notices.html +9843 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +131 -14
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +134 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +135 -22
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +134 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +134 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +236 -34
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +131 -14
- 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 +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +134 -17
- nautobot/project-static/docs/{development/core/local-k8s.html → user-guide/feature-guides/wireless-networks-and-controllers.html} +632 -566
- nautobot/project-static/docs/user-guide/index.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +135 -18
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +451 -16
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +135 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +134 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9797 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +132 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +179 -35
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +159 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +131 -14
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/templates/tenancy/tenant.html +1 -2
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- 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.html +1 -1
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/clustergroup.html +1 -1
- nautobot/virtualization/templates/virtualization/clustertype.html +1 -1
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -10
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/templates/virtualization/vminterface.html +1 -1
- 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.2.dist-info}/METADATA +9 -9
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/RECORD +667 -610
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- /nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css.map → main.a40c8224.min.css.map} +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.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.50">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../assets/stylesheets/main.a40c8224.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
41
|
+
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1"/></svg>');}</style>
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
218
218
|
<div class="md-source__icon md-icon">
|
|
219
219
|
|
|
220
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
220
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
221
221
|
</div>
|
|
222
222
|
<div class="md-source__repository">
|
|
223
223
|
GitHub
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
378
378
|
<div class="md-source__icon md-icon">
|
|
379
379
|
|
|
380
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
380
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
|
|
381
381
|
</div>
|
|
382
382
|
<div class="md-source__repository">
|
|
383
383
|
GitHub
|
|
@@ -1697,6 +1697,81 @@
|
|
|
1697
1697
|
|
|
1698
1698
|
|
|
1699
1699
|
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_7" >
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
<div class="md-nav__link md-nav__container">
|
|
1722
|
+
<a href="../user-guide/administration/security/index.html" class="md-nav__link ">
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
<span class="md-ellipsis">
|
|
1726
|
+
Security
|
|
1727
|
+
</span>
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
</a>
|
|
1731
|
+
|
|
1732
|
+
|
|
1733
|
+
<label class="md-nav__link " for="__nav_2_1_7" id="__nav_2_1_7_label" tabindex="0">
|
|
1734
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1735
|
+
</label>
|
|
1736
|
+
|
|
1737
|
+
</div>
|
|
1738
|
+
|
|
1739
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_7_label" aria-expanded="false">
|
|
1740
|
+
<label class="md-nav__title" for="__nav_2_1_7">
|
|
1741
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1742
|
+
Security
|
|
1743
|
+
</label>
|
|
1744
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1745
|
+
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
<li class="md-nav__item">
|
|
1753
|
+
<a href="../user-guide/administration/security/notices.html" class="md-nav__link">
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
<span class="md-ellipsis">
|
|
1757
|
+
Notices
|
|
1758
|
+
</span>
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
</a>
|
|
1762
|
+
</li>
|
|
1763
|
+
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
</ul>
|
|
1768
|
+
</nav>
|
|
1769
|
+
|
|
1770
|
+
</li>
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
|
|
1700
1775
|
</ul>
|
|
1701
1776
|
</nav>
|
|
1702
1777
|
|
|
@@ -2112,6 +2187,27 @@
|
|
|
2112
2187
|
|
|
2113
2188
|
|
|
2114
2189
|
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
<li class="md-nav__item">
|
|
2197
|
+
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2198
|
+
|
|
2199
|
+
|
|
2200
|
+
<span class="md-ellipsis">
|
|
2201
|
+
Wireless Networks and Controllers
|
|
2202
|
+
</span>
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
</a>
|
|
2206
|
+
</li>
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2115
2211
|
</ul>
|
|
2116
2212
|
</nav>
|
|
2117
2213
|
|
|
@@ -5131,6 +5227,27 @@
|
|
|
5131
5227
|
|
|
5132
5228
|
|
|
5133
5229
|
|
|
5230
|
+
<li class="md-nav__item">
|
|
5231
|
+
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5232
|
+
|
|
5233
|
+
|
|
5234
|
+
<span class="md-ellipsis">
|
|
5235
|
+
Kubernetes Job Support
|
|
5236
|
+
</span>
|
|
5237
|
+
|
|
5238
|
+
|
|
5239
|
+
</a>
|
|
5240
|
+
</li>
|
|
5241
|
+
|
|
5242
|
+
|
|
5243
|
+
|
|
5244
|
+
|
|
5245
|
+
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
|
|
5249
|
+
|
|
5250
|
+
|
|
5134
5251
|
<li class="md-nav__item">
|
|
5135
5252
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5253
|
|
|
@@ -8055,11 +8172,11 @@
|
|
|
8055
8172
|
|
|
8056
8173
|
|
|
8057
8174
|
<li class="md-nav__item">
|
|
8058
|
-
<a href="../development/core/
|
|
8175
|
+
<a href="../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
8059
8176
|
|
|
8060
8177
|
|
|
8061
8178
|
<span class="md-ellipsis">
|
|
8062
|
-
|
|
8179
|
+
Minikube Dev Environment for K8s Jobs
|
|
8063
8180
|
</span>
|
|
8064
8181
|
|
|
8065
8182
|
|
|
@@ -8699,18 +8816,18 @@
|
|
|
8699
8816
|
<ul class="md-nav__list">
|
|
8700
8817
|
|
|
8701
8818
|
<li class="md-nav__item">
|
|
8702
|
-
<a href="#security" class="md-nav__link">
|
|
8819
|
+
<a href="#security-in-v1524" class="md-nav__link">
|
|
8703
8820
|
<span class="md-ellipsis">
|
|
8704
|
-
Security
|
|
8821
|
+
Security in v1.5.24
|
|
8705
8822
|
</span>
|
|
8706
8823
|
</a>
|
|
8707
8824
|
|
|
8708
8825
|
</li>
|
|
8709
8826
|
|
|
8710
8827
|
<li class="md-nav__item">
|
|
8711
|
-
<a href="#fixed" class="md-nav__link">
|
|
8828
|
+
<a href="#fixed-in-v1524" class="md-nav__link">
|
|
8712
8829
|
<span class="md-ellipsis">
|
|
8713
|
-
Fixed
|
|
8830
|
+
Fixed in v1.5.24
|
|
8714
8831
|
</span>
|
|
8715
8832
|
</a>
|
|
8716
8833
|
|
|
@@ -8732,63 +8849,63 @@
|
|
|
8732
8849
|
<ul class="md-nav__list">
|
|
8733
8850
|
|
|
8734
8851
|
<li class="md-nav__item">
|
|
8735
|
-
<a href="#
|
|
8852
|
+
<a href="#security-in-v1523" class="md-nav__link">
|
|
8736
8853
|
<span class="md-ellipsis">
|
|
8737
|
-
Security
|
|
8854
|
+
Security in v1.5.23
|
|
8738
8855
|
</span>
|
|
8739
8856
|
</a>
|
|
8740
8857
|
|
|
8741
8858
|
</li>
|
|
8742
8859
|
|
|
8743
8860
|
<li class="md-nav__item">
|
|
8744
|
-
<a href="#
|
|
8861
|
+
<a href="#added-in-v1523" class="md-nav__link">
|
|
8745
8862
|
<span class="md-ellipsis">
|
|
8746
|
-
Added
|
|
8863
|
+
Added in v1.5.23
|
|
8747
8864
|
</span>
|
|
8748
8865
|
</a>
|
|
8749
8866
|
|
|
8750
8867
|
</li>
|
|
8751
8868
|
|
|
8752
8869
|
<li class="md-nav__item">
|
|
8753
|
-
<a href="#
|
|
8870
|
+
<a href="#changed-in-v1523" class="md-nav__link">
|
|
8754
8871
|
<span class="md-ellipsis">
|
|
8755
|
-
Changed
|
|
8872
|
+
Changed in v1.5.23
|
|
8756
8873
|
</span>
|
|
8757
8874
|
</a>
|
|
8758
8875
|
|
|
8759
8876
|
</li>
|
|
8760
8877
|
|
|
8761
8878
|
<li class="md-nav__item">
|
|
8762
|
-
<a href="#
|
|
8879
|
+
<a href="#fixed-in-v1523" class="md-nav__link">
|
|
8763
8880
|
<span class="md-ellipsis">
|
|
8764
|
-
Fixed
|
|
8881
|
+
Fixed in v1.5.23
|
|
8765
8882
|
</span>
|
|
8766
8883
|
</a>
|
|
8767
8884
|
|
|
8768
8885
|
</li>
|
|
8769
8886
|
|
|
8770
8887
|
<li class="md-nav__item">
|
|
8771
|
-
<a href="#dependencies" class="md-nav__link">
|
|
8888
|
+
<a href="#dependencies-in-v1523" class="md-nav__link">
|
|
8772
8889
|
<span class="md-ellipsis">
|
|
8773
|
-
Dependencies
|
|
8890
|
+
Dependencies in v1.5.23
|
|
8774
8891
|
</span>
|
|
8775
8892
|
</a>
|
|
8776
8893
|
|
|
8777
8894
|
</li>
|
|
8778
8895
|
|
|
8779
8896
|
<li class="md-nav__item">
|
|
8780
|
-
<a href="#documentation" class="md-nav__link">
|
|
8897
|
+
<a href="#documentation-in-v1523" class="md-nav__link">
|
|
8781
8898
|
<span class="md-ellipsis">
|
|
8782
|
-
Documentation
|
|
8899
|
+
Documentation in v1.5.23
|
|
8783
8900
|
</span>
|
|
8784
8901
|
</a>
|
|
8785
8902
|
|
|
8786
8903
|
</li>
|
|
8787
8904
|
|
|
8788
8905
|
<li class="md-nav__item">
|
|
8789
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
8906
|
+
<a href="#housekeeping-in-v1523" class="md-nav__link">
|
|
8790
8907
|
<span class="md-ellipsis">
|
|
8791
|
-
Housekeeping
|
|
8908
|
+
Housekeeping in v1.5.23
|
|
8792
8909
|
</span>
|
|
8793
8910
|
</a>
|
|
8794
8911
|
|
|
@@ -8810,45 +8927,45 @@
|
|
|
8810
8927
|
<ul class="md-nav__list">
|
|
8811
8928
|
|
|
8812
8929
|
<li class="md-nav__item">
|
|
8813
|
-
<a href="#
|
|
8930
|
+
<a href="#security-in-v1522" class="md-nav__link">
|
|
8814
8931
|
<span class="md-ellipsis">
|
|
8815
|
-
Security
|
|
8932
|
+
Security in v1.5.22
|
|
8816
8933
|
</span>
|
|
8817
8934
|
</a>
|
|
8818
8935
|
|
|
8819
8936
|
</li>
|
|
8820
8937
|
|
|
8821
8938
|
<li class="md-nav__item">
|
|
8822
|
-
<a href="#
|
|
8939
|
+
<a href="#added-in-v1522" class="md-nav__link">
|
|
8823
8940
|
<span class="md-ellipsis">
|
|
8824
|
-
Added
|
|
8941
|
+
Added in v1.5.22
|
|
8825
8942
|
</span>
|
|
8826
8943
|
</a>
|
|
8827
8944
|
|
|
8828
8945
|
</li>
|
|
8829
8946
|
|
|
8830
8947
|
<li class="md-nav__item">
|
|
8831
|
-
<a href="#
|
|
8948
|
+
<a href="#fixed-in-v1522" class="md-nav__link">
|
|
8832
8949
|
<span class="md-ellipsis">
|
|
8833
|
-
Fixed
|
|
8950
|
+
Fixed in v1.5.22
|
|
8834
8951
|
</span>
|
|
8835
8952
|
</a>
|
|
8836
8953
|
|
|
8837
8954
|
</li>
|
|
8838
8955
|
|
|
8839
8956
|
<li class="md-nav__item">
|
|
8840
|
-
<a href="#
|
|
8957
|
+
<a href="#documentation-in-v1522" class="md-nav__link">
|
|
8841
8958
|
<span class="md-ellipsis">
|
|
8842
|
-
Documentation
|
|
8959
|
+
Documentation in v1.5.22
|
|
8843
8960
|
</span>
|
|
8844
8961
|
</a>
|
|
8845
8962
|
|
|
8846
8963
|
</li>
|
|
8847
8964
|
|
|
8848
8965
|
<li class="md-nav__item">
|
|
8849
|
-
<a href="#
|
|
8966
|
+
<a href="#housekeeping-in-v1522" class="md-nav__link">
|
|
8850
8967
|
<span class="md-ellipsis">
|
|
8851
|
-
Housekeeping
|
|
8968
|
+
Housekeeping in v1.5.22
|
|
8852
8969
|
</span>
|
|
8853
8970
|
</a>
|
|
8854
8971
|
|
|
@@ -8870,36 +8987,36 @@
|
|
|
8870
8987
|
<ul class="md-nav__list">
|
|
8871
8988
|
|
|
8872
8989
|
<li class="md-nav__item">
|
|
8873
|
-
<a href="#
|
|
8990
|
+
<a href="#added-in-v1521" class="md-nav__link">
|
|
8874
8991
|
<span class="md-ellipsis">
|
|
8875
|
-
Added
|
|
8992
|
+
Added in v1.5.21
|
|
8876
8993
|
</span>
|
|
8877
8994
|
</a>
|
|
8878
8995
|
|
|
8879
8996
|
</li>
|
|
8880
8997
|
|
|
8881
8998
|
<li class="md-nav__item">
|
|
8882
|
-
<a href="#
|
|
8999
|
+
<a href="#fixed-in-v1521" class="md-nav__link">
|
|
8883
9000
|
<span class="md-ellipsis">
|
|
8884
|
-
Fixed
|
|
9001
|
+
Fixed in v1.5.21
|
|
8885
9002
|
</span>
|
|
8886
9003
|
</a>
|
|
8887
9004
|
|
|
8888
9005
|
</li>
|
|
8889
9006
|
|
|
8890
9007
|
<li class="md-nav__item">
|
|
8891
|
-
<a href="#
|
|
9008
|
+
<a href="#dependencies-in-v1521" class="md-nav__link">
|
|
8892
9009
|
<span class="md-ellipsis">
|
|
8893
|
-
Dependencies
|
|
9010
|
+
Dependencies in v1.5.21
|
|
8894
9011
|
</span>
|
|
8895
9012
|
</a>
|
|
8896
9013
|
|
|
8897
9014
|
</li>
|
|
8898
9015
|
|
|
8899
9016
|
<li class="md-nav__item">
|
|
8900
|
-
<a href="#
|
|
9017
|
+
<a href="#documentation-in-v1521" class="md-nav__link">
|
|
8901
9018
|
<span class="md-ellipsis">
|
|
8902
|
-
Documentation
|
|
9019
|
+
Documentation in v1.5.21
|
|
8903
9020
|
</span>
|
|
8904
9021
|
</a>
|
|
8905
9022
|
|
|
@@ -8921,27 +9038,27 @@
|
|
|
8921
9038
|
<ul class="md-nav__list">
|
|
8922
9039
|
|
|
8923
9040
|
<li class="md-nav__item">
|
|
8924
|
-
<a href="#
|
|
9041
|
+
<a href="#changed-in-v1520" class="md-nav__link">
|
|
8925
9042
|
<span class="md-ellipsis">
|
|
8926
|
-
Changed
|
|
9043
|
+
Changed in v1.5.20
|
|
8927
9044
|
</span>
|
|
8928
9045
|
</a>
|
|
8929
9046
|
|
|
8930
9047
|
</li>
|
|
8931
9048
|
|
|
8932
9049
|
<li class="md-nav__item">
|
|
8933
|
-
<a href="#
|
|
9050
|
+
<a href="#fixed-in-v1520" class="md-nav__link">
|
|
8934
9051
|
<span class="md-ellipsis">
|
|
8935
|
-
Fixed
|
|
9052
|
+
Fixed in v1.5.20
|
|
8936
9053
|
</span>
|
|
8937
9054
|
</a>
|
|
8938
9055
|
|
|
8939
9056
|
</li>
|
|
8940
9057
|
|
|
8941
9058
|
<li class="md-nav__item">
|
|
8942
|
-
<a href="#
|
|
9059
|
+
<a href="#documentation-in-v1520" class="md-nav__link">
|
|
8943
9060
|
<span class="md-ellipsis">
|
|
8944
|
-
Documentation
|
|
9061
|
+
Documentation in v1.5.20
|
|
8945
9062
|
</span>
|
|
8946
9063
|
</a>
|
|
8947
9064
|
|
|
@@ -8963,54 +9080,54 @@
|
|
|
8963
9080
|
<ul class="md-nav__list">
|
|
8964
9081
|
|
|
8965
9082
|
<li class="md-nav__item">
|
|
8966
|
-
<a href="#
|
|
9083
|
+
<a href="#security-in-v1519" class="md-nav__link">
|
|
8967
9084
|
<span class="md-ellipsis">
|
|
8968
|
-
Security
|
|
9085
|
+
Security in v1.5.19
|
|
8969
9086
|
</span>
|
|
8970
9087
|
</a>
|
|
8971
9088
|
|
|
8972
9089
|
</li>
|
|
8973
9090
|
|
|
8974
9091
|
<li class="md-nav__item">
|
|
8975
|
-
<a href="#
|
|
9092
|
+
<a href="#changed-in-v1519" class="md-nav__link">
|
|
8976
9093
|
<span class="md-ellipsis">
|
|
8977
|
-
Changed
|
|
9094
|
+
Changed in v1.5.19
|
|
8978
9095
|
</span>
|
|
8979
9096
|
</a>
|
|
8980
9097
|
|
|
8981
9098
|
</li>
|
|
8982
9099
|
|
|
8983
9100
|
<li class="md-nav__item">
|
|
8984
|
-
<a href="#
|
|
9101
|
+
<a href="#fixed-in-v1519" class="md-nav__link">
|
|
8985
9102
|
<span class="md-ellipsis">
|
|
8986
|
-
Fixed
|
|
9103
|
+
Fixed in v1.5.19
|
|
8987
9104
|
</span>
|
|
8988
9105
|
</a>
|
|
8989
9106
|
|
|
8990
9107
|
</li>
|
|
8991
9108
|
|
|
8992
9109
|
<li class="md-nav__item">
|
|
8993
|
-
<a href="#
|
|
9110
|
+
<a href="#dependencies-in-v1519" class="md-nav__link">
|
|
8994
9111
|
<span class="md-ellipsis">
|
|
8995
|
-
Dependencies
|
|
9112
|
+
Dependencies in v1.5.19
|
|
8996
9113
|
</span>
|
|
8997
9114
|
</a>
|
|
8998
9115
|
|
|
8999
9116
|
</li>
|
|
9000
9117
|
|
|
9001
9118
|
<li class="md-nav__item">
|
|
9002
|
-
<a href="#
|
|
9119
|
+
<a href="#documentation-in-v1519" class="md-nav__link">
|
|
9003
9120
|
<span class="md-ellipsis">
|
|
9004
|
-
Documentation
|
|
9121
|
+
Documentation in v1.5.19
|
|
9005
9122
|
</span>
|
|
9006
9123
|
</a>
|
|
9007
9124
|
|
|
9008
9125
|
</li>
|
|
9009
9126
|
|
|
9010
9127
|
<li class="md-nav__item">
|
|
9011
|
-
<a href="#
|
|
9128
|
+
<a href="#housekeeping-in-v1519" class="md-nav__link">
|
|
9012
9129
|
<span class="md-ellipsis">
|
|
9013
|
-
Housekeeping
|
|
9130
|
+
Housekeeping in v1.5.19
|
|
9014
9131
|
</span>
|
|
9015
9132
|
</a>
|
|
9016
9133
|
|
|
@@ -9032,54 +9149,54 @@
|
|
|
9032
9149
|
<ul class="md-nav__list">
|
|
9033
9150
|
|
|
9034
9151
|
<li class="md-nav__item">
|
|
9035
|
-
<a href="#
|
|
9152
|
+
<a href="#security-in-v1518" class="md-nav__link">
|
|
9036
9153
|
<span class="md-ellipsis">
|
|
9037
|
-
Security
|
|
9154
|
+
Security in v1.5.18
|
|
9038
9155
|
</span>
|
|
9039
9156
|
</a>
|
|
9040
9157
|
|
|
9041
9158
|
</li>
|
|
9042
9159
|
|
|
9043
9160
|
<li class="md-nav__item">
|
|
9044
|
-
<a href="#
|
|
9161
|
+
<a href="#added-in-v1518" class="md-nav__link">
|
|
9045
9162
|
<span class="md-ellipsis">
|
|
9046
|
-
Added
|
|
9163
|
+
Added in v1.5.18
|
|
9047
9164
|
</span>
|
|
9048
9165
|
</a>
|
|
9049
9166
|
|
|
9050
9167
|
</li>
|
|
9051
9168
|
|
|
9052
9169
|
<li class="md-nav__item">
|
|
9053
|
-
<a href="#
|
|
9170
|
+
<a href="#changed-in-v1518" class="md-nav__link">
|
|
9054
9171
|
<span class="md-ellipsis">
|
|
9055
|
-
Changed
|
|
9172
|
+
Changed in v1.5.18
|
|
9056
9173
|
</span>
|
|
9057
9174
|
</a>
|
|
9058
9175
|
|
|
9059
9176
|
</li>
|
|
9060
9177
|
|
|
9061
9178
|
<li class="md-nav__item">
|
|
9062
|
-
<a href="#
|
|
9179
|
+
<a href="#fixed-in-v1518" class="md-nav__link">
|
|
9063
9180
|
<span class="md-ellipsis">
|
|
9064
|
-
Fixed
|
|
9181
|
+
Fixed in v1.5.18
|
|
9065
9182
|
</span>
|
|
9066
9183
|
</a>
|
|
9067
9184
|
|
|
9068
9185
|
</li>
|
|
9069
9186
|
|
|
9070
9187
|
<li class="md-nav__item">
|
|
9071
|
-
<a href="#
|
|
9188
|
+
<a href="#documentation-in-v1518" class="md-nav__link">
|
|
9072
9189
|
<span class="md-ellipsis">
|
|
9073
|
-
Documentation
|
|
9190
|
+
Documentation in v1.5.18
|
|
9074
9191
|
</span>
|
|
9075
9192
|
</a>
|
|
9076
9193
|
|
|
9077
9194
|
</li>
|
|
9078
9195
|
|
|
9079
9196
|
<li class="md-nav__item">
|
|
9080
|
-
<a href="#
|
|
9197
|
+
<a href="#housekeeping-in-v1518" class="md-nav__link">
|
|
9081
9198
|
<span class="md-ellipsis">
|
|
9082
|
-
Housekeeping
|
|
9199
|
+
Housekeeping in v1.5.18
|
|
9083
9200
|
</span>
|
|
9084
9201
|
</a>
|
|
9085
9202
|
|
|
@@ -9101,45 +9218,45 @@
|
|
|
9101
9218
|
<ul class="md-nav__list">
|
|
9102
9219
|
|
|
9103
9220
|
<li class="md-nav__item">
|
|
9104
|
-
<a href="#
|
|
9221
|
+
<a href="#added-in-v1517" class="md-nav__link">
|
|
9105
9222
|
<span class="md-ellipsis">
|
|
9106
|
-
Added
|
|
9223
|
+
Added in v1.5.17
|
|
9107
9224
|
</span>
|
|
9108
9225
|
</a>
|
|
9109
9226
|
|
|
9110
9227
|
</li>
|
|
9111
9228
|
|
|
9112
9229
|
<li class="md-nav__item">
|
|
9113
|
-
<a href="#
|
|
9230
|
+
<a href="#changed-in-v1517" class="md-nav__link">
|
|
9114
9231
|
<span class="md-ellipsis">
|
|
9115
|
-
Changed
|
|
9232
|
+
Changed in v1.5.17
|
|
9116
9233
|
</span>
|
|
9117
9234
|
</a>
|
|
9118
9235
|
|
|
9119
9236
|
</li>
|
|
9120
9237
|
|
|
9121
9238
|
<li class="md-nav__item">
|
|
9122
|
-
<a href="#
|
|
9239
|
+
<a href="#fixed-in-v1517" class="md-nav__link">
|
|
9123
9240
|
<span class="md-ellipsis">
|
|
9124
|
-
Fixed
|
|
9241
|
+
Fixed in v1.5.17
|
|
9125
9242
|
</span>
|
|
9126
9243
|
</a>
|
|
9127
9244
|
|
|
9128
9245
|
</li>
|
|
9129
9246
|
|
|
9130
9247
|
<li class="md-nav__item">
|
|
9131
|
-
<a href="#
|
|
9248
|
+
<a href="#dependencies-in-v1517" class="md-nav__link">
|
|
9132
9249
|
<span class="md-ellipsis">
|
|
9133
|
-
Dependencies
|
|
9250
|
+
Dependencies in v1.5.17
|
|
9134
9251
|
</span>
|
|
9135
9252
|
</a>
|
|
9136
9253
|
|
|
9137
9254
|
</li>
|
|
9138
9255
|
|
|
9139
9256
|
<li class="md-nav__item">
|
|
9140
|
-
<a href="#
|
|
9257
|
+
<a href="#documentation-in-v1517" class="md-nav__link">
|
|
9141
9258
|
<span class="md-ellipsis">
|
|
9142
|
-
Documentation
|
|
9259
|
+
Documentation in v1.5.17
|
|
9143
9260
|
</span>
|
|
9144
9261
|
</a>
|
|
9145
9262
|
|
|
@@ -9161,27 +9278,27 @@
|
|
|
9161
9278
|
<ul class="md-nav__list">
|
|
9162
9279
|
|
|
9163
9280
|
<li class="md-nav__item">
|
|
9164
|
-
<a href="#
|
|
9281
|
+
<a href="#fixed-in-v1516" class="md-nav__link">
|
|
9165
9282
|
<span class="md-ellipsis">
|
|
9166
|
-
Fixed
|
|
9283
|
+
Fixed in v1.5.16
|
|
9167
9284
|
</span>
|
|
9168
9285
|
</a>
|
|
9169
9286
|
|
|
9170
9287
|
</li>
|
|
9171
9288
|
|
|
9172
9289
|
<li class="md-nav__item">
|
|
9173
|
-
<a href="#
|
|
9290
|
+
<a href="#documentation-in-v1516" class="md-nav__link">
|
|
9174
9291
|
<span class="md-ellipsis">
|
|
9175
|
-
Documentation
|
|
9292
|
+
Documentation in v1.5.16
|
|
9176
9293
|
</span>
|
|
9177
9294
|
</a>
|
|
9178
9295
|
|
|
9179
9296
|
</li>
|
|
9180
9297
|
|
|
9181
9298
|
<li class="md-nav__item">
|
|
9182
|
-
<a href="#
|
|
9299
|
+
<a href="#housekeeping-in-v1516" class="md-nav__link">
|
|
9183
9300
|
<span class="md-ellipsis">
|
|
9184
|
-
Housekeeping
|
|
9301
|
+
Housekeeping in v1.5.16
|
|
9185
9302
|
</span>
|
|
9186
9303
|
</a>
|
|
9187
9304
|
|
|
@@ -9203,63 +9320,63 @@
|
|
|
9203
9320
|
<ul class="md-nav__list">
|
|
9204
9321
|
|
|
9205
9322
|
<li class="md-nav__item">
|
|
9206
|
-
<a href="#
|
|
9323
|
+
<a href="#security-in-v1515" class="md-nav__link">
|
|
9207
9324
|
<span class="md-ellipsis">
|
|
9208
|
-
Security
|
|
9325
|
+
Security in v1.5.15
|
|
9209
9326
|
</span>
|
|
9210
9327
|
</a>
|
|
9211
9328
|
|
|
9212
9329
|
</li>
|
|
9213
9330
|
|
|
9214
9331
|
<li class="md-nav__item">
|
|
9215
|
-
<a href="#
|
|
9332
|
+
<a href="#changed-in-v1515" class="md-nav__link">
|
|
9216
9333
|
<span class="md-ellipsis">
|
|
9217
|
-
Changed
|
|
9334
|
+
Changed in v1.5.15
|
|
9218
9335
|
</span>
|
|
9219
9336
|
</a>
|
|
9220
9337
|
|
|
9221
9338
|
</li>
|
|
9222
9339
|
|
|
9223
9340
|
<li class="md-nav__item">
|
|
9224
|
-
<a href="#removed" class="md-nav__link">
|
|
9341
|
+
<a href="#removed-in-v1515" class="md-nav__link">
|
|
9225
9342
|
<span class="md-ellipsis">
|
|
9226
|
-
Removed
|
|
9343
|
+
Removed in v1.5.15
|
|
9227
9344
|
</span>
|
|
9228
9345
|
</a>
|
|
9229
9346
|
|
|
9230
9347
|
</li>
|
|
9231
9348
|
|
|
9232
9349
|
<li class="md-nav__item">
|
|
9233
|
-
<a href="#
|
|
9350
|
+
<a href="#fixed-in-v1515" class="md-nav__link">
|
|
9234
9351
|
<span class="md-ellipsis">
|
|
9235
|
-
Fixed
|
|
9352
|
+
Fixed in v1.5.15
|
|
9236
9353
|
</span>
|
|
9237
9354
|
</a>
|
|
9238
9355
|
|
|
9239
9356
|
</li>
|
|
9240
9357
|
|
|
9241
9358
|
<li class="md-nav__item">
|
|
9242
|
-
<a href="#
|
|
9359
|
+
<a href="#dependencies-in-v1515" class="md-nav__link">
|
|
9243
9360
|
<span class="md-ellipsis">
|
|
9244
|
-
Dependencies
|
|
9361
|
+
Dependencies in v1.5.15
|
|
9245
9362
|
</span>
|
|
9246
9363
|
</a>
|
|
9247
9364
|
|
|
9248
9365
|
</li>
|
|
9249
9366
|
|
|
9250
9367
|
<li class="md-nav__item">
|
|
9251
|
-
<a href="#
|
|
9368
|
+
<a href="#documentation-in-v1515" class="md-nav__link">
|
|
9252
9369
|
<span class="md-ellipsis">
|
|
9253
|
-
Documentation
|
|
9370
|
+
Documentation in v1.5.15
|
|
9254
9371
|
</span>
|
|
9255
9372
|
</a>
|
|
9256
9373
|
|
|
9257
9374
|
</li>
|
|
9258
9375
|
|
|
9259
9376
|
<li class="md-nav__item">
|
|
9260
|
-
<a href="#
|
|
9377
|
+
<a href="#housekeeping-in-v1515" class="md-nav__link">
|
|
9261
9378
|
<span class="md-ellipsis">
|
|
9262
|
-
Housekeeping
|
|
9379
|
+
Housekeeping in v1.5.15
|
|
9263
9380
|
</span>
|
|
9264
9381
|
</a>
|
|
9265
9382
|
|
|
@@ -9281,27 +9398,27 @@
|
|
|
9281
9398
|
<ul class="md-nav__list">
|
|
9282
9399
|
|
|
9283
9400
|
<li class="md-nav__item">
|
|
9284
|
-
<a href="#
|
|
9401
|
+
<a href="#added-in-v1514" class="md-nav__link">
|
|
9285
9402
|
<span class="md-ellipsis">
|
|
9286
|
-
Added
|
|
9403
|
+
Added in v1.5.14
|
|
9287
9404
|
</span>
|
|
9288
9405
|
</a>
|
|
9289
9406
|
|
|
9290
9407
|
</li>
|
|
9291
9408
|
|
|
9292
9409
|
<li class="md-nav__item">
|
|
9293
|
-
<a href="#
|
|
9410
|
+
<a href="#documentation-in-v1514" class="md-nav__link">
|
|
9294
9411
|
<span class="md-ellipsis">
|
|
9295
|
-
Documentation
|
|
9412
|
+
Documentation in v1.5.14
|
|
9296
9413
|
</span>
|
|
9297
9414
|
</a>
|
|
9298
9415
|
|
|
9299
9416
|
</li>
|
|
9300
9417
|
|
|
9301
9418
|
<li class="md-nav__item">
|
|
9302
|
-
<a href="#
|
|
9419
|
+
<a href="#housekeeping-in-v1514" class="md-nav__link">
|
|
9303
9420
|
<span class="md-ellipsis">
|
|
9304
|
-
Housekeeping
|
|
9421
|
+
Housekeeping in v1.5.14
|
|
9305
9422
|
</span>
|
|
9306
9423
|
</a>
|
|
9307
9424
|
|
|
@@ -9323,54 +9440,54 @@
|
|
|
9323
9440
|
<ul class="md-nav__list">
|
|
9324
9441
|
|
|
9325
9442
|
<li class="md-nav__item">
|
|
9326
|
-
<a href="#
|
|
9443
|
+
<a href="#added-in-v1513" class="md-nav__link">
|
|
9327
9444
|
<span class="md-ellipsis">
|
|
9328
|
-
Added
|
|
9445
|
+
Added in v1.5.13
|
|
9329
9446
|
</span>
|
|
9330
9447
|
</a>
|
|
9331
9448
|
|
|
9332
9449
|
</li>
|
|
9333
9450
|
|
|
9334
9451
|
<li class="md-nav__item">
|
|
9335
|
-
<a href="#
|
|
9452
|
+
<a href="#changed-in-v1513" class="md-nav__link">
|
|
9336
9453
|
<span class="md-ellipsis">
|
|
9337
|
-
Changed
|
|
9454
|
+
Changed in v1.5.13
|
|
9338
9455
|
</span>
|
|
9339
9456
|
</a>
|
|
9340
9457
|
|
|
9341
9458
|
</li>
|
|
9342
9459
|
|
|
9343
9460
|
<li class="md-nav__item">
|
|
9344
|
-
<a href="#
|
|
9461
|
+
<a href="#removed-in-v1513" class="md-nav__link">
|
|
9345
9462
|
<span class="md-ellipsis">
|
|
9346
|
-
Removed
|
|
9463
|
+
Removed in v1.5.13
|
|
9347
9464
|
</span>
|
|
9348
9465
|
</a>
|
|
9349
9466
|
|
|
9350
9467
|
</li>
|
|
9351
9468
|
|
|
9352
9469
|
<li class="md-nav__item">
|
|
9353
|
-
<a href="#
|
|
9470
|
+
<a href="#fixed-in-v1513" class="md-nav__link">
|
|
9354
9471
|
<span class="md-ellipsis">
|
|
9355
|
-
Fixed
|
|
9472
|
+
Fixed in v1.5.13
|
|
9356
9473
|
</span>
|
|
9357
9474
|
</a>
|
|
9358
9475
|
|
|
9359
9476
|
</li>
|
|
9360
9477
|
|
|
9361
9478
|
<li class="md-nav__item">
|
|
9362
|
-
<a href="#
|
|
9479
|
+
<a href="#dependencies-in-v1513" class="md-nav__link">
|
|
9363
9480
|
<span class="md-ellipsis">
|
|
9364
|
-
Dependencies
|
|
9481
|
+
Dependencies in v1.5.13
|
|
9365
9482
|
</span>
|
|
9366
9483
|
</a>
|
|
9367
9484
|
|
|
9368
9485
|
</li>
|
|
9369
9486
|
|
|
9370
9487
|
<li class="md-nav__item">
|
|
9371
|
-
<a href="#
|
|
9488
|
+
<a href="#documentation-in-v1513" class="md-nav__link">
|
|
9372
9489
|
<span class="md-ellipsis">
|
|
9373
|
-
Documentation
|
|
9490
|
+
Documentation in v1.5.13
|
|
9374
9491
|
</span>
|
|
9375
9492
|
</a>
|
|
9376
9493
|
|
|
@@ -9392,36 +9509,36 @@
|
|
|
9392
9509
|
<ul class="md-nav__list">
|
|
9393
9510
|
|
|
9394
9511
|
<li class="md-nav__item">
|
|
9395
|
-
<a href="#
|
|
9512
|
+
<a href="#added-in-v1512" class="md-nav__link">
|
|
9396
9513
|
<span class="md-ellipsis">
|
|
9397
|
-
Added
|
|
9514
|
+
Added in v1.5.12
|
|
9398
9515
|
</span>
|
|
9399
9516
|
</a>
|
|
9400
9517
|
|
|
9401
9518
|
</li>
|
|
9402
9519
|
|
|
9403
9520
|
<li class="md-nav__item">
|
|
9404
|
-
<a href="#
|
|
9521
|
+
<a href="#changed-in-v1512" class="md-nav__link">
|
|
9405
9522
|
<span class="md-ellipsis">
|
|
9406
|
-
Changed
|
|
9523
|
+
Changed in v1.5.12
|
|
9407
9524
|
</span>
|
|
9408
9525
|
</a>
|
|
9409
9526
|
|
|
9410
9527
|
</li>
|
|
9411
9528
|
|
|
9412
9529
|
<li class="md-nav__item">
|
|
9413
|
-
<a href="#
|
|
9530
|
+
<a href="#fixed-in-v1512" class="md-nav__link">
|
|
9414
9531
|
<span class="md-ellipsis">
|
|
9415
|
-
Fixed
|
|
9532
|
+
Fixed in v1.5.12
|
|
9416
9533
|
</span>
|
|
9417
9534
|
</a>
|
|
9418
9535
|
|
|
9419
9536
|
</li>
|
|
9420
9537
|
|
|
9421
9538
|
<li class="md-nav__item">
|
|
9422
|
-
<a href="#
|
|
9539
|
+
<a href="#dependencies-in-v1512" class="md-nav__link">
|
|
9423
9540
|
<span class="md-ellipsis">
|
|
9424
|
-
Dependencies
|
|
9541
|
+
Dependencies in v1.5.12
|
|
9425
9542
|
</span>
|
|
9426
9543
|
</a>
|
|
9427
9544
|
|
|
@@ -9443,63 +9560,63 @@
|
|
|
9443
9560
|
<ul class="md-nav__list">
|
|
9444
9561
|
|
|
9445
9562
|
<li class="md-nav__item">
|
|
9446
|
-
<a href="#
|
|
9563
|
+
<a href="#security-in-v1511" class="md-nav__link">
|
|
9447
9564
|
<span class="md-ellipsis">
|
|
9448
|
-
Security
|
|
9565
|
+
Security in v1.5.11
|
|
9449
9566
|
</span>
|
|
9450
9567
|
</a>
|
|
9451
9568
|
|
|
9452
9569
|
</li>
|
|
9453
9570
|
|
|
9454
9571
|
<li class="md-nav__item">
|
|
9455
|
-
<a href="#
|
|
9572
|
+
<a href="#added-in-v1511" class="md-nav__link">
|
|
9456
9573
|
<span class="md-ellipsis">
|
|
9457
|
-
Added
|
|
9574
|
+
Added in v1.5.11
|
|
9458
9575
|
</span>
|
|
9459
9576
|
</a>
|
|
9460
9577
|
|
|
9461
9578
|
</li>
|
|
9462
9579
|
|
|
9463
9580
|
<li class="md-nav__item">
|
|
9464
|
-
<a href="#
|
|
9581
|
+
<a href="#changed-in-v1511" class="md-nav__link">
|
|
9465
9582
|
<span class="md-ellipsis">
|
|
9466
|
-
Changed
|
|
9583
|
+
Changed in v1.5.11
|
|
9467
9584
|
</span>
|
|
9468
9585
|
</a>
|
|
9469
9586
|
|
|
9470
9587
|
</li>
|
|
9471
9588
|
|
|
9472
9589
|
<li class="md-nav__item">
|
|
9473
|
-
<a href="#
|
|
9590
|
+
<a href="#fixed-in-v1511" class="md-nav__link">
|
|
9474
9591
|
<span class="md-ellipsis">
|
|
9475
|
-
Fixed
|
|
9592
|
+
Fixed in v1.5.11
|
|
9476
9593
|
</span>
|
|
9477
9594
|
</a>
|
|
9478
9595
|
|
|
9479
9596
|
</li>
|
|
9480
9597
|
|
|
9481
9598
|
<li class="md-nav__item">
|
|
9482
|
-
<a href="#
|
|
9599
|
+
<a href="#dependencies-in-v1511" class="md-nav__link">
|
|
9483
9600
|
<span class="md-ellipsis">
|
|
9484
|
-
Dependencies
|
|
9601
|
+
Dependencies in v1.5.11
|
|
9485
9602
|
</span>
|
|
9486
9603
|
</a>
|
|
9487
9604
|
|
|
9488
9605
|
</li>
|
|
9489
9606
|
|
|
9490
9607
|
<li class="md-nav__item">
|
|
9491
|
-
<a href="#
|
|
9608
|
+
<a href="#documentation-in-v1511" class="md-nav__link">
|
|
9492
9609
|
<span class="md-ellipsis">
|
|
9493
|
-
Documentation
|
|
9610
|
+
Documentation in v1.5.11
|
|
9494
9611
|
</span>
|
|
9495
9612
|
</a>
|
|
9496
9613
|
|
|
9497
9614
|
</li>
|
|
9498
9615
|
|
|
9499
9616
|
<li class="md-nav__item">
|
|
9500
|
-
<a href="#
|
|
9617
|
+
<a href="#housekeeping-in-v1511" class="md-nav__link">
|
|
9501
9618
|
<span class="md-ellipsis">
|
|
9502
|
-
Housekeeping
|
|
9619
|
+
Housekeeping in v1.5.11
|
|
9503
9620
|
</span>
|
|
9504
9621
|
</a>
|
|
9505
9622
|
|
|
@@ -9521,45 +9638,45 @@
|
|
|
9521
9638
|
<ul class="md-nav__list">
|
|
9522
9639
|
|
|
9523
9640
|
<li class="md-nav__item">
|
|
9524
|
-
<a href="#
|
|
9641
|
+
<a href="#security-in-v1510" class="md-nav__link">
|
|
9525
9642
|
<span class="md-ellipsis">
|
|
9526
|
-
Security
|
|
9643
|
+
Security in v1.5.10
|
|
9527
9644
|
</span>
|
|
9528
9645
|
</a>
|
|
9529
9646
|
|
|
9530
9647
|
</li>
|
|
9531
9648
|
|
|
9532
9649
|
<li class="md-nav__item">
|
|
9533
|
-
<a href="#
|
|
9650
|
+
<a href="#added-in-v1510" class="md-nav__link">
|
|
9534
9651
|
<span class="md-ellipsis">
|
|
9535
|
-
Added
|
|
9652
|
+
Added in v1.5.10
|
|
9536
9653
|
</span>
|
|
9537
9654
|
</a>
|
|
9538
9655
|
|
|
9539
9656
|
</li>
|
|
9540
9657
|
|
|
9541
9658
|
<li class="md-nav__item">
|
|
9542
|
-
<a href="#
|
|
9659
|
+
<a href="#fixed-in-v1510" class="md-nav__link">
|
|
9543
9660
|
<span class="md-ellipsis">
|
|
9544
|
-
Fixed
|
|
9661
|
+
Fixed in v1.5.10
|
|
9545
9662
|
</span>
|
|
9546
9663
|
</a>
|
|
9547
9664
|
|
|
9548
9665
|
</li>
|
|
9549
9666
|
|
|
9550
9667
|
<li class="md-nav__item">
|
|
9551
|
-
<a href="#
|
|
9668
|
+
<a href="#dependencies-in-v1510" class="md-nav__link">
|
|
9552
9669
|
<span class="md-ellipsis">
|
|
9553
|
-
Dependencies
|
|
9670
|
+
Dependencies in v1.5.10
|
|
9554
9671
|
</span>
|
|
9555
9672
|
</a>
|
|
9556
9673
|
|
|
9557
9674
|
</li>
|
|
9558
9675
|
|
|
9559
9676
|
<li class="md-nav__item">
|
|
9560
|
-
<a href="#
|
|
9677
|
+
<a href="#housekeeping-in-v1510" class="md-nav__link">
|
|
9561
9678
|
<span class="md-ellipsis">
|
|
9562
|
-
Housekeeping
|
|
9679
|
+
Housekeeping in v1.5.10
|
|
9563
9680
|
</span>
|
|
9564
9681
|
</a>
|
|
9565
9682
|
|
|
@@ -9581,36 +9698,36 @@
|
|
|
9581
9698
|
<ul class="md-nav__list">
|
|
9582
9699
|
|
|
9583
9700
|
<li class="md-nav__item">
|
|
9584
|
-
<a href="#
|
|
9701
|
+
<a href="#changed-in-v159" class="md-nav__link">
|
|
9585
9702
|
<span class="md-ellipsis">
|
|
9586
|
-
Changed
|
|
9703
|
+
Changed in v1.5.9
|
|
9587
9704
|
</span>
|
|
9588
9705
|
</a>
|
|
9589
9706
|
|
|
9590
9707
|
</li>
|
|
9591
9708
|
|
|
9592
9709
|
<li class="md-nav__item">
|
|
9593
|
-
<a href="#
|
|
9710
|
+
<a href="#fixed-in-v159" class="md-nav__link">
|
|
9594
9711
|
<span class="md-ellipsis">
|
|
9595
|
-
Fixed
|
|
9712
|
+
Fixed in v1.5.9
|
|
9596
9713
|
</span>
|
|
9597
9714
|
</a>
|
|
9598
9715
|
|
|
9599
9716
|
</li>
|
|
9600
9717
|
|
|
9601
9718
|
<li class="md-nav__item">
|
|
9602
|
-
<a href="#
|
|
9719
|
+
<a href="#dependencies-in-v159" class="md-nav__link">
|
|
9603
9720
|
<span class="md-ellipsis">
|
|
9604
|
-
Dependencies
|
|
9721
|
+
Dependencies in v1.5.9
|
|
9605
9722
|
</span>
|
|
9606
9723
|
</a>
|
|
9607
9724
|
|
|
9608
9725
|
</li>
|
|
9609
9726
|
|
|
9610
9727
|
<li class="md-nav__item">
|
|
9611
|
-
<a href="#
|
|
9728
|
+
<a href="#housekeeping-in-v159" class="md-nav__link">
|
|
9612
9729
|
<span class="md-ellipsis">
|
|
9613
|
-
Housekeeping
|
|
9730
|
+
Housekeeping in v1.5.9
|
|
9614
9731
|
</span>
|
|
9615
9732
|
</a>
|
|
9616
9733
|
|
|
@@ -9632,45 +9749,45 @@
|
|
|
9632
9749
|
<ul class="md-nav__list">
|
|
9633
9750
|
|
|
9634
9751
|
<li class="md-nav__item">
|
|
9635
|
-
<a href="#
|
|
9752
|
+
<a href="#security-in-v158" class="md-nav__link">
|
|
9636
9753
|
<span class="md-ellipsis">
|
|
9637
|
-
Security
|
|
9754
|
+
Security in v1.5.8
|
|
9638
9755
|
</span>
|
|
9639
9756
|
</a>
|
|
9640
9757
|
|
|
9641
9758
|
</li>
|
|
9642
9759
|
|
|
9643
9760
|
<li class="md-nav__item">
|
|
9644
|
-
<a href="#
|
|
9761
|
+
<a href="#changed-in-v158" class="md-nav__link">
|
|
9645
9762
|
<span class="md-ellipsis">
|
|
9646
|
-
Changed
|
|
9763
|
+
Changed in v1.5.8
|
|
9647
9764
|
</span>
|
|
9648
9765
|
</a>
|
|
9649
9766
|
|
|
9650
9767
|
</li>
|
|
9651
9768
|
|
|
9652
9769
|
<li class="md-nav__item">
|
|
9653
|
-
<a href="#
|
|
9770
|
+
<a href="#fixed-in-v158" class="md-nav__link">
|
|
9654
9771
|
<span class="md-ellipsis">
|
|
9655
|
-
Fixed
|
|
9772
|
+
Fixed in v1.5.8
|
|
9656
9773
|
</span>
|
|
9657
9774
|
</a>
|
|
9658
9775
|
|
|
9659
9776
|
</li>
|
|
9660
9777
|
|
|
9661
9778
|
<li class="md-nav__item">
|
|
9662
|
-
<a href="#
|
|
9779
|
+
<a href="#documentation-in-v158" class="md-nav__link">
|
|
9663
9780
|
<span class="md-ellipsis">
|
|
9664
|
-
Documentation
|
|
9781
|
+
Documentation in v1.5.8
|
|
9665
9782
|
</span>
|
|
9666
9783
|
</a>
|
|
9667
9784
|
|
|
9668
9785
|
</li>
|
|
9669
9786
|
|
|
9670
9787
|
<li class="md-nav__item">
|
|
9671
|
-
<a href="#
|
|
9788
|
+
<a href="#housekeeping-in-v158" class="md-nav__link">
|
|
9672
9789
|
<span class="md-ellipsis">
|
|
9673
|
-
Housekeeping
|
|
9790
|
+
Housekeeping in v1.5.8
|
|
9674
9791
|
</span>
|
|
9675
9792
|
</a>
|
|
9676
9793
|
|
|
@@ -9692,18 +9809,18 @@
|
|
|
9692
9809
|
<ul class="md-nav__list">
|
|
9693
9810
|
|
|
9694
9811
|
<li class="md-nav__item">
|
|
9695
|
-
<a href="#
|
|
9812
|
+
<a href="#security-in-v157" class="md-nav__link">
|
|
9696
9813
|
<span class="md-ellipsis">
|
|
9697
|
-
Security
|
|
9814
|
+
Security in v1.5.7
|
|
9698
9815
|
</span>
|
|
9699
9816
|
</a>
|
|
9700
9817
|
|
|
9701
9818
|
</li>
|
|
9702
9819
|
|
|
9703
9820
|
<li class="md-nav__item">
|
|
9704
|
-
<a href="#
|
|
9821
|
+
<a href="#fixed-in-v157" class="md-nav__link">
|
|
9705
9822
|
<span class="md-ellipsis">
|
|
9706
|
-
Fixed
|
|
9823
|
+
Fixed in v1.5.7
|
|
9707
9824
|
</span>
|
|
9708
9825
|
</a>
|
|
9709
9826
|
|
|
@@ -9725,45 +9842,45 @@
|
|
|
9725
9842
|
<ul class="md-nav__list">
|
|
9726
9843
|
|
|
9727
9844
|
<li class="md-nav__item">
|
|
9728
|
-
<a href="#
|
|
9845
|
+
<a href="#added-in-v156" class="md-nav__link">
|
|
9729
9846
|
<span class="md-ellipsis">
|
|
9730
|
-
Added
|
|
9847
|
+
Added in v1.5.6
|
|
9731
9848
|
</span>
|
|
9732
9849
|
</a>
|
|
9733
9850
|
|
|
9734
9851
|
</li>
|
|
9735
9852
|
|
|
9736
9853
|
<li class="md-nav__item">
|
|
9737
|
-
<a href="#
|
|
9854
|
+
<a href="#fixed-in-v156" class="md-nav__link">
|
|
9738
9855
|
<span class="md-ellipsis">
|
|
9739
|
-
Fixed
|
|
9856
|
+
Fixed in v1.5.6
|
|
9740
9857
|
</span>
|
|
9741
9858
|
</a>
|
|
9742
9859
|
|
|
9743
9860
|
</li>
|
|
9744
9861
|
|
|
9745
9862
|
<li class="md-nav__item">
|
|
9746
|
-
<a href="#
|
|
9863
|
+
<a href="#dependencies-in-v156" class="md-nav__link">
|
|
9747
9864
|
<span class="md-ellipsis">
|
|
9748
|
-
Dependencies
|
|
9865
|
+
Dependencies in v1.5.6
|
|
9749
9866
|
</span>
|
|
9750
9867
|
</a>
|
|
9751
9868
|
|
|
9752
9869
|
</li>
|
|
9753
9870
|
|
|
9754
9871
|
<li class="md-nav__item">
|
|
9755
|
-
<a href="#
|
|
9872
|
+
<a href="#documentation-in-v156" class="md-nav__link">
|
|
9756
9873
|
<span class="md-ellipsis">
|
|
9757
|
-
Documentation
|
|
9874
|
+
Documentation in v1.5.6
|
|
9758
9875
|
</span>
|
|
9759
9876
|
</a>
|
|
9760
9877
|
|
|
9761
9878
|
</li>
|
|
9762
9879
|
|
|
9763
9880
|
<li class="md-nav__item">
|
|
9764
|
-
<a href="#
|
|
9881
|
+
<a href="#housekeeping-in-v156" class="md-nav__link">
|
|
9765
9882
|
<span class="md-ellipsis">
|
|
9766
|
-
Housekeeping
|
|
9883
|
+
Housekeeping in v1.5.6
|
|
9767
9884
|
</span>
|
|
9768
9885
|
</a>
|
|
9769
9886
|
|
|
@@ -9785,27 +9902,27 @@
|
|
|
9785
9902
|
<ul class="md-nav__list">
|
|
9786
9903
|
|
|
9787
9904
|
<li class="md-nav__item">
|
|
9788
|
-
<a href="#
|
|
9905
|
+
<a href="#changed-in-v155" class="md-nav__link">
|
|
9789
9906
|
<span class="md-ellipsis">
|
|
9790
|
-
Changed
|
|
9907
|
+
Changed in v1.5.5
|
|
9791
9908
|
</span>
|
|
9792
9909
|
</a>
|
|
9793
9910
|
|
|
9794
9911
|
</li>
|
|
9795
9912
|
|
|
9796
9913
|
<li class="md-nav__item">
|
|
9797
|
-
<a href="#
|
|
9914
|
+
<a href="#fixed-in-v155" class="md-nav__link">
|
|
9798
9915
|
<span class="md-ellipsis">
|
|
9799
|
-
Fixed
|
|
9916
|
+
Fixed in v1.5.5
|
|
9800
9917
|
</span>
|
|
9801
9918
|
</a>
|
|
9802
9919
|
|
|
9803
9920
|
</li>
|
|
9804
9921
|
|
|
9805
9922
|
<li class="md-nav__item">
|
|
9806
|
-
<a href="#
|
|
9923
|
+
<a href="#housekeeping-in-v155" class="md-nav__link">
|
|
9807
9924
|
<span class="md-ellipsis">
|
|
9808
|
-
Housekeeping
|
|
9925
|
+
Housekeeping in v1.5.5
|
|
9809
9926
|
</span>
|
|
9810
9927
|
</a>
|
|
9811
9928
|
|
|
@@ -9827,18 +9944,18 @@
|
|
|
9827
9944
|
<ul class="md-nav__list">
|
|
9828
9945
|
|
|
9829
9946
|
<li class="md-nav__item">
|
|
9830
|
-
<a href="#
|
|
9947
|
+
<a href="#fixed-in-v154" class="md-nav__link">
|
|
9831
9948
|
<span class="md-ellipsis">
|
|
9832
|
-
Fixed
|
|
9949
|
+
Fixed in v1.5.4
|
|
9833
9950
|
</span>
|
|
9834
9951
|
</a>
|
|
9835
9952
|
|
|
9836
9953
|
</li>
|
|
9837
9954
|
|
|
9838
9955
|
<li class="md-nav__item">
|
|
9839
|
-
<a href="#
|
|
9956
|
+
<a href="#documentation-in-v154" class="md-nav__link">
|
|
9840
9957
|
<span class="md-ellipsis">
|
|
9841
|
-
Documentation
|
|
9958
|
+
Documentation in v1.5.4
|
|
9842
9959
|
</span>
|
|
9843
9960
|
</a>
|
|
9844
9961
|
|
|
@@ -9860,9 +9977,9 @@
|
|
|
9860
9977
|
<ul class="md-nav__list">
|
|
9861
9978
|
|
|
9862
9979
|
<li class="md-nav__item">
|
|
9863
|
-
<a href="#
|
|
9980
|
+
<a href="#fixed-in-v153" class="md-nav__link">
|
|
9864
9981
|
<span class="md-ellipsis">
|
|
9865
|
-
Fixed
|
|
9982
|
+
Fixed in v1.5.3
|
|
9866
9983
|
</span>
|
|
9867
9984
|
</a>
|
|
9868
9985
|
|
|
@@ -9884,54 +10001,54 @@
|
|
|
9884
10001
|
<ul class="md-nav__list">
|
|
9885
10002
|
|
|
9886
10003
|
<li class="md-nav__item">
|
|
9887
|
-
<a href="#
|
|
10004
|
+
<a href="#added-in-v152" class="md-nav__link">
|
|
9888
10005
|
<span class="md-ellipsis">
|
|
9889
|
-
Added
|
|
10006
|
+
Added in v1.5.2
|
|
9890
10007
|
</span>
|
|
9891
10008
|
</a>
|
|
9892
10009
|
|
|
9893
10010
|
</li>
|
|
9894
10011
|
|
|
9895
10012
|
<li class="md-nav__item">
|
|
9896
|
-
<a href="#
|
|
10013
|
+
<a href="#changed-in-v152" class="md-nav__link">
|
|
9897
10014
|
<span class="md-ellipsis">
|
|
9898
|
-
Changed
|
|
10015
|
+
Changed in v1.5.2
|
|
9899
10016
|
</span>
|
|
9900
10017
|
</a>
|
|
9901
10018
|
|
|
9902
10019
|
</li>
|
|
9903
10020
|
|
|
9904
10021
|
<li class="md-nav__item">
|
|
9905
|
-
<a href="#
|
|
10022
|
+
<a href="#fixed-in-v152" class="md-nav__link">
|
|
9906
10023
|
<span class="md-ellipsis">
|
|
9907
|
-
Fixed
|
|
10024
|
+
Fixed in v1.5.2
|
|
9908
10025
|
</span>
|
|
9909
10026
|
</a>
|
|
9910
10027
|
|
|
9911
10028
|
</li>
|
|
9912
10029
|
|
|
9913
10030
|
<li class="md-nav__item">
|
|
9914
|
-
<a href="#
|
|
10031
|
+
<a href="#dependencies-in-v152" class="md-nav__link">
|
|
9915
10032
|
<span class="md-ellipsis">
|
|
9916
|
-
Dependencies
|
|
10033
|
+
Dependencies in v1.5.2
|
|
9917
10034
|
</span>
|
|
9918
10035
|
</a>
|
|
9919
10036
|
|
|
9920
10037
|
</li>
|
|
9921
10038
|
|
|
9922
10039
|
<li class="md-nav__item">
|
|
9923
|
-
<a href="#
|
|
10040
|
+
<a href="#documentation-in-v152" class="md-nav__link">
|
|
9924
10041
|
<span class="md-ellipsis">
|
|
9925
|
-
Documentation
|
|
10042
|
+
Documentation in v1.5.2
|
|
9926
10043
|
</span>
|
|
9927
10044
|
</a>
|
|
9928
10045
|
|
|
9929
10046
|
</li>
|
|
9930
10047
|
|
|
9931
10048
|
<li class="md-nav__item">
|
|
9932
|
-
<a href="#
|
|
10049
|
+
<a href="#housekeeping-in-v152" class="md-nav__link">
|
|
9933
10050
|
<span class="md-ellipsis">
|
|
9934
|
-
Housekeeping
|
|
10051
|
+
Housekeeping in v1.5.2
|
|
9935
10052
|
</span>
|
|
9936
10053
|
</a>
|
|
9937
10054
|
|
|
@@ -9953,27 +10070,27 @@
|
|
|
9953
10070
|
<ul class="md-nav__list">
|
|
9954
10071
|
|
|
9955
10072
|
<li class="md-nav__item">
|
|
9956
|
-
<a href="#
|
|
10073
|
+
<a href="#added-in-v151" class="md-nav__link">
|
|
9957
10074
|
<span class="md-ellipsis">
|
|
9958
|
-
Added
|
|
10075
|
+
Added in v1.5.1
|
|
9959
10076
|
</span>
|
|
9960
10077
|
</a>
|
|
9961
10078
|
|
|
9962
10079
|
</li>
|
|
9963
10080
|
|
|
9964
10081
|
<li class="md-nav__item">
|
|
9965
|
-
<a href="#
|
|
10082
|
+
<a href="#fixed-in-v151" class="md-nav__link">
|
|
9966
10083
|
<span class="md-ellipsis">
|
|
9967
|
-
Fixed
|
|
10084
|
+
Fixed in v1.5.1
|
|
9968
10085
|
</span>
|
|
9969
10086
|
</a>
|
|
9970
10087
|
|
|
9971
10088
|
</li>
|
|
9972
10089
|
|
|
9973
10090
|
<li class="md-nav__item">
|
|
9974
|
-
<a href="#
|
|
10091
|
+
<a href="#housekeeping-in-v151" class="md-nav__link">
|
|
9975
10092
|
<span class="md-ellipsis">
|
|
9976
|
-
Housekeeping
|
|
10093
|
+
Housekeeping in v1.5.1
|
|
9977
10094
|
</span>
|
|
9978
10095
|
</a>
|
|
9979
10096
|
|
|
@@ -10004,54 +10121,54 @@
|
|
|
10004
10121
|
<ul class="md-nav__list">
|
|
10005
10122
|
|
|
10006
10123
|
<li class="md-nav__item">
|
|
10007
|
-
<a href="#
|
|
10124
|
+
<a href="#added-in-v150-beta1" class="md-nav__link">
|
|
10008
10125
|
<span class="md-ellipsis">
|
|
10009
|
-
Added
|
|
10126
|
+
Added in v1.5.0-beta.1
|
|
10010
10127
|
</span>
|
|
10011
10128
|
</a>
|
|
10012
10129
|
|
|
10013
10130
|
</li>
|
|
10014
10131
|
|
|
10015
10132
|
<li class="md-nav__item">
|
|
10016
|
-
<a href="#
|
|
10133
|
+
<a href="#changed-in-v150-beta1" class="md-nav__link">
|
|
10017
10134
|
<span class="md-ellipsis">
|
|
10018
|
-
Changed
|
|
10135
|
+
Changed in v1.5.0-beta.1
|
|
10019
10136
|
</span>
|
|
10020
10137
|
</a>
|
|
10021
10138
|
|
|
10022
10139
|
</li>
|
|
10023
10140
|
|
|
10024
10141
|
<li class="md-nav__item">
|
|
10025
|
-
<a href="#
|
|
10142
|
+
<a href="#fixed-in-v150-beta1" class="md-nav__link">
|
|
10026
10143
|
<span class="md-ellipsis">
|
|
10027
|
-
Fixed
|
|
10144
|
+
Fixed in v1.5.0-beta.1
|
|
10028
10145
|
</span>
|
|
10029
10146
|
</a>
|
|
10030
10147
|
|
|
10031
10148
|
</li>
|
|
10032
10149
|
|
|
10033
10150
|
<li class="md-nav__item">
|
|
10034
|
-
<a href="#
|
|
10151
|
+
<a href="#dependencies-in-v150-beta1" class="md-nav__link">
|
|
10035
10152
|
<span class="md-ellipsis">
|
|
10036
|
-
Dependencies
|
|
10153
|
+
Dependencies in v1.5.0-beta.1
|
|
10037
10154
|
</span>
|
|
10038
10155
|
</a>
|
|
10039
10156
|
|
|
10040
10157
|
</li>
|
|
10041
10158
|
|
|
10042
10159
|
<li class="md-nav__item">
|
|
10043
|
-
<a href="#
|
|
10160
|
+
<a href="#documentation-in-v150-beta1" class="md-nav__link">
|
|
10044
10161
|
<span class="md-ellipsis">
|
|
10045
|
-
Documentation
|
|
10162
|
+
Documentation in v1.5.0-beta.1
|
|
10046
10163
|
</span>
|
|
10047
10164
|
</a>
|
|
10048
10165
|
|
|
10049
10166
|
</li>
|
|
10050
10167
|
|
|
10051
10168
|
<li class="md-nav__item">
|
|
10052
|
-
<a href="#
|
|
10169
|
+
<a href="#housekeeping-in-v150-beta1" class="md-nav__link">
|
|
10053
10170
|
<span class="md-ellipsis">
|
|
10054
|
-
Housekeeping
|
|
10171
|
+
Housekeeping in v1.5.0-beta.1
|
|
10055
10172
|
</span>
|
|
10056
10173
|
</a>
|
|
10057
10174
|
|
|
@@ -10693,18 +10810,18 @@
|
|
|
10693
10810
|
<ul class="md-nav__list">
|
|
10694
10811
|
|
|
10695
10812
|
<li class="md-nav__item">
|
|
10696
|
-
<a href="#security" class="md-nav__link">
|
|
10813
|
+
<a href="#security-in-v1524" class="md-nav__link">
|
|
10697
10814
|
<span class="md-ellipsis">
|
|
10698
|
-
Security
|
|
10815
|
+
Security in v1.5.24
|
|
10699
10816
|
</span>
|
|
10700
10817
|
</a>
|
|
10701
10818
|
|
|
10702
10819
|
</li>
|
|
10703
10820
|
|
|
10704
10821
|
<li class="md-nav__item">
|
|
10705
|
-
<a href="#fixed" class="md-nav__link">
|
|
10822
|
+
<a href="#fixed-in-v1524" class="md-nav__link">
|
|
10706
10823
|
<span class="md-ellipsis">
|
|
10707
|
-
Fixed
|
|
10824
|
+
Fixed in v1.5.24
|
|
10708
10825
|
</span>
|
|
10709
10826
|
</a>
|
|
10710
10827
|
|
|
@@ -10726,63 +10843,63 @@
|
|
|
10726
10843
|
<ul class="md-nav__list">
|
|
10727
10844
|
|
|
10728
10845
|
<li class="md-nav__item">
|
|
10729
|
-
<a href="#
|
|
10846
|
+
<a href="#security-in-v1523" class="md-nav__link">
|
|
10730
10847
|
<span class="md-ellipsis">
|
|
10731
|
-
Security
|
|
10848
|
+
Security in v1.5.23
|
|
10732
10849
|
</span>
|
|
10733
10850
|
</a>
|
|
10734
10851
|
|
|
10735
10852
|
</li>
|
|
10736
10853
|
|
|
10737
10854
|
<li class="md-nav__item">
|
|
10738
|
-
<a href="#
|
|
10855
|
+
<a href="#added-in-v1523" class="md-nav__link">
|
|
10739
10856
|
<span class="md-ellipsis">
|
|
10740
|
-
Added
|
|
10857
|
+
Added in v1.5.23
|
|
10741
10858
|
</span>
|
|
10742
10859
|
</a>
|
|
10743
10860
|
|
|
10744
10861
|
</li>
|
|
10745
10862
|
|
|
10746
10863
|
<li class="md-nav__item">
|
|
10747
|
-
<a href="#
|
|
10864
|
+
<a href="#changed-in-v1523" class="md-nav__link">
|
|
10748
10865
|
<span class="md-ellipsis">
|
|
10749
|
-
Changed
|
|
10866
|
+
Changed in v1.5.23
|
|
10750
10867
|
</span>
|
|
10751
10868
|
</a>
|
|
10752
10869
|
|
|
10753
10870
|
</li>
|
|
10754
10871
|
|
|
10755
10872
|
<li class="md-nav__item">
|
|
10756
|
-
<a href="#
|
|
10873
|
+
<a href="#fixed-in-v1523" class="md-nav__link">
|
|
10757
10874
|
<span class="md-ellipsis">
|
|
10758
|
-
Fixed
|
|
10875
|
+
Fixed in v1.5.23
|
|
10759
10876
|
</span>
|
|
10760
10877
|
</a>
|
|
10761
10878
|
|
|
10762
10879
|
</li>
|
|
10763
10880
|
|
|
10764
10881
|
<li class="md-nav__item">
|
|
10765
|
-
<a href="#dependencies" class="md-nav__link">
|
|
10882
|
+
<a href="#dependencies-in-v1523" class="md-nav__link">
|
|
10766
10883
|
<span class="md-ellipsis">
|
|
10767
|
-
Dependencies
|
|
10884
|
+
Dependencies in v1.5.23
|
|
10768
10885
|
</span>
|
|
10769
10886
|
</a>
|
|
10770
10887
|
|
|
10771
10888
|
</li>
|
|
10772
10889
|
|
|
10773
10890
|
<li class="md-nav__item">
|
|
10774
|
-
<a href="#documentation" class="md-nav__link">
|
|
10891
|
+
<a href="#documentation-in-v1523" class="md-nav__link">
|
|
10775
10892
|
<span class="md-ellipsis">
|
|
10776
|
-
Documentation
|
|
10893
|
+
Documentation in v1.5.23
|
|
10777
10894
|
</span>
|
|
10778
10895
|
</a>
|
|
10779
10896
|
|
|
10780
10897
|
</li>
|
|
10781
10898
|
|
|
10782
10899
|
<li class="md-nav__item">
|
|
10783
|
-
<a href="#housekeeping" class="md-nav__link">
|
|
10900
|
+
<a href="#housekeeping-in-v1523" class="md-nav__link">
|
|
10784
10901
|
<span class="md-ellipsis">
|
|
10785
|
-
Housekeeping
|
|
10902
|
+
Housekeeping in v1.5.23
|
|
10786
10903
|
</span>
|
|
10787
10904
|
</a>
|
|
10788
10905
|
|
|
@@ -10804,45 +10921,45 @@
|
|
|
10804
10921
|
<ul class="md-nav__list">
|
|
10805
10922
|
|
|
10806
10923
|
<li class="md-nav__item">
|
|
10807
|
-
<a href="#
|
|
10924
|
+
<a href="#security-in-v1522" class="md-nav__link">
|
|
10808
10925
|
<span class="md-ellipsis">
|
|
10809
|
-
Security
|
|
10926
|
+
Security in v1.5.22
|
|
10810
10927
|
</span>
|
|
10811
10928
|
</a>
|
|
10812
10929
|
|
|
10813
10930
|
</li>
|
|
10814
10931
|
|
|
10815
10932
|
<li class="md-nav__item">
|
|
10816
|
-
<a href="#
|
|
10933
|
+
<a href="#added-in-v1522" class="md-nav__link">
|
|
10817
10934
|
<span class="md-ellipsis">
|
|
10818
|
-
Added
|
|
10935
|
+
Added in v1.5.22
|
|
10819
10936
|
</span>
|
|
10820
10937
|
</a>
|
|
10821
10938
|
|
|
10822
10939
|
</li>
|
|
10823
10940
|
|
|
10824
10941
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
10942
|
+
<a href="#fixed-in-v1522" class="md-nav__link">
|
|
10826
10943
|
<span class="md-ellipsis">
|
|
10827
|
-
Fixed
|
|
10944
|
+
Fixed in v1.5.22
|
|
10828
10945
|
</span>
|
|
10829
10946
|
</a>
|
|
10830
10947
|
|
|
10831
10948
|
</li>
|
|
10832
10949
|
|
|
10833
10950
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#
|
|
10951
|
+
<a href="#documentation-in-v1522" class="md-nav__link">
|
|
10835
10952
|
<span class="md-ellipsis">
|
|
10836
|
-
Documentation
|
|
10953
|
+
Documentation in v1.5.22
|
|
10837
10954
|
</span>
|
|
10838
10955
|
</a>
|
|
10839
10956
|
|
|
10840
10957
|
</li>
|
|
10841
10958
|
|
|
10842
10959
|
<li class="md-nav__item">
|
|
10843
|
-
<a href="#
|
|
10960
|
+
<a href="#housekeeping-in-v1522" class="md-nav__link">
|
|
10844
10961
|
<span class="md-ellipsis">
|
|
10845
|
-
Housekeeping
|
|
10962
|
+
Housekeeping in v1.5.22
|
|
10846
10963
|
</span>
|
|
10847
10964
|
</a>
|
|
10848
10965
|
|
|
@@ -10864,36 +10981,36 @@
|
|
|
10864
10981
|
<ul class="md-nav__list">
|
|
10865
10982
|
|
|
10866
10983
|
<li class="md-nav__item">
|
|
10867
|
-
<a href="#
|
|
10984
|
+
<a href="#added-in-v1521" class="md-nav__link">
|
|
10868
10985
|
<span class="md-ellipsis">
|
|
10869
|
-
Added
|
|
10986
|
+
Added in v1.5.21
|
|
10870
10987
|
</span>
|
|
10871
10988
|
</a>
|
|
10872
10989
|
|
|
10873
10990
|
</li>
|
|
10874
10991
|
|
|
10875
10992
|
<li class="md-nav__item">
|
|
10876
|
-
<a href="#
|
|
10993
|
+
<a href="#fixed-in-v1521" class="md-nav__link">
|
|
10877
10994
|
<span class="md-ellipsis">
|
|
10878
|
-
Fixed
|
|
10995
|
+
Fixed in v1.5.21
|
|
10879
10996
|
</span>
|
|
10880
10997
|
</a>
|
|
10881
10998
|
|
|
10882
10999
|
</li>
|
|
10883
11000
|
|
|
10884
11001
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
11002
|
+
<a href="#dependencies-in-v1521" class="md-nav__link">
|
|
10886
11003
|
<span class="md-ellipsis">
|
|
10887
|
-
Dependencies
|
|
11004
|
+
Dependencies in v1.5.21
|
|
10888
11005
|
</span>
|
|
10889
11006
|
</a>
|
|
10890
11007
|
|
|
10891
11008
|
</li>
|
|
10892
11009
|
|
|
10893
11010
|
<li class="md-nav__item">
|
|
10894
|
-
<a href="#
|
|
11011
|
+
<a href="#documentation-in-v1521" class="md-nav__link">
|
|
10895
11012
|
<span class="md-ellipsis">
|
|
10896
|
-
Documentation
|
|
11013
|
+
Documentation in v1.5.21
|
|
10897
11014
|
</span>
|
|
10898
11015
|
</a>
|
|
10899
11016
|
|
|
@@ -10915,27 +11032,27 @@
|
|
|
10915
11032
|
<ul class="md-nav__list">
|
|
10916
11033
|
|
|
10917
11034
|
<li class="md-nav__item">
|
|
10918
|
-
<a href="#
|
|
11035
|
+
<a href="#changed-in-v1520" class="md-nav__link">
|
|
10919
11036
|
<span class="md-ellipsis">
|
|
10920
|
-
Changed
|
|
11037
|
+
Changed in v1.5.20
|
|
10921
11038
|
</span>
|
|
10922
11039
|
</a>
|
|
10923
11040
|
|
|
10924
11041
|
</li>
|
|
10925
11042
|
|
|
10926
11043
|
<li class="md-nav__item">
|
|
10927
|
-
<a href="#
|
|
11044
|
+
<a href="#fixed-in-v1520" class="md-nav__link">
|
|
10928
11045
|
<span class="md-ellipsis">
|
|
10929
|
-
Fixed
|
|
11046
|
+
Fixed in v1.5.20
|
|
10930
11047
|
</span>
|
|
10931
11048
|
</a>
|
|
10932
11049
|
|
|
10933
11050
|
</li>
|
|
10934
11051
|
|
|
10935
11052
|
<li class="md-nav__item">
|
|
10936
|
-
<a href="#
|
|
11053
|
+
<a href="#documentation-in-v1520" class="md-nav__link">
|
|
10937
11054
|
<span class="md-ellipsis">
|
|
10938
|
-
Documentation
|
|
11055
|
+
Documentation in v1.5.20
|
|
10939
11056
|
</span>
|
|
10940
11057
|
</a>
|
|
10941
11058
|
|
|
@@ -10957,54 +11074,54 @@
|
|
|
10957
11074
|
<ul class="md-nav__list">
|
|
10958
11075
|
|
|
10959
11076
|
<li class="md-nav__item">
|
|
10960
|
-
<a href="#
|
|
11077
|
+
<a href="#security-in-v1519" class="md-nav__link">
|
|
10961
11078
|
<span class="md-ellipsis">
|
|
10962
|
-
Security
|
|
11079
|
+
Security in v1.5.19
|
|
10963
11080
|
</span>
|
|
10964
11081
|
</a>
|
|
10965
11082
|
|
|
10966
11083
|
</li>
|
|
10967
11084
|
|
|
10968
11085
|
<li class="md-nav__item">
|
|
10969
|
-
<a href="#
|
|
11086
|
+
<a href="#changed-in-v1519" class="md-nav__link">
|
|
10970
11087
|
<span class="md-ellipsis">
|
|
10971
|
-
Changed
|
|
11088
|
+
Changed in v1.5.19
|
|
10972
11089
|
</span>
|
|
10973
11090
|
</a>
|
|
10974
11091
|
|
|
10975
11092
|
</li>
|
|
10976
11093
|
|
|
10977
11094
|
<li class="md-nav__item">
|
|
10978
|
-
<a href="#
|
|
11095
|
+
<a href="#fixed-in-v1519" class="md-nav__link">
|
|
10979
11096
|
<span class="md-ellipsis">
|
|
10980
|
-
Fixed
|
|
11097
|
+
Fixed in v1.5.19
|
|
10981
11098
|
</span>
|
|
10982
11099
|
</a>
|
|
10983
11100
|
|
|
10984
11101
|
</li>
|
|
10985
11102
|
|
|
10986
11103
|
<li class="md-nav__item">
|
|
10987
|
-
<a href="#
|
|
11104
|
+
<a href="#dependencies-in-v1519" class="md-nav__link">
|
|
10988
11105
|
<span class="md-ellipsis">
|
|
10989
|
-
Dependencies
|
|
11106
|
+
Dependencies in v1.5.19
|
|
10990
11107
|
</span>
|
|
10991
11108
|
</a>
|
|
10992
11109
|
|
|
10993
11110
|
</li>
|
|
10994
11111
|
|
|
10995
11112
|
<li class="md-nav__item">
|
|
10996
|
-
<a href="#
|
|
11113
|
+
<a href="#documentation-in-v1519" class="md-nav__link">
|
|
10997
11114
|
<span class="md-ellipsis">
|
|
10998
|
-
Documentation
|
|
11115
|
+
Documentation in v1.5.19
|
|
10999
11116
|
</span>
|
|
11000
11117
|
</a>
|
|
11001
11118
|
|
|
11002
11119
|
</li>
|
|
11003
11120
|
|
|
11004
11121
|
<li class="md-nav__item">
|
|
11005
|
-
<a href="#
|
|
11122
|
+
<a href="#housekeeping-in-v1519" class="md-nav__link">
|
|
11006
11123
|
<span class="md-ellipsis">
|
|
11007
|
-
Housekeeping
|
|
11124
|
+
Housekeeping in v1.5.19
|
|
11008
11125
|
</span>
|
|
11009
11126
|
</a>
|
|
11010
11127
|
|
|
@@ -11026,54 +11143,54 @@
|
|
|
11026
11143
|
<ul class="md-nav__list">
|
|
11027
11144
|
|
|
11028
11145
|
<li class="md-nav__item">
|
|
11029
|
-
<a href="#
|
|
11146
|
+
<a href="#security-in-v1518" class="md-nav__link">
|
|
11030
11147
|
<span class="md-ellipsis">
|
|
11031
|
-
Security
|
|
11148
|
+
Security in v1.5.18
|
|
11032
11149
|
</span>
|
|
11033
11150
|
</a>
|
|
11034
11151
|
|
|
11035
11152
|
</li>
|
|
11036
11153
|
|
|
11037
11154
|
<li class="md-nav__item">
|
|
11038
|
-
<a href="#
|
|
11155
|
+
<a href="#added-in-v1518" class="md-nav__link">
|
|
11039
11156
|
<span class="md-ellipsis">
|
|
11040
|
-
Added
|
|
11157
|
+
Added in v1.5.18
|
|
11041
11158
|
</span>
|
|
11042
11159
|
</a>
|
|
11043
11160
|
|
|
11044
11161
|
</li>
|
|
11045
11162
|
|
|
11046
11163
|
<li class="md-nav__item">
|
|
11047
|
-
<a href="#
|
|
11164
|
+
<a href="#changed-in-v1518" class="md-nav__link">
|
|
11048
11165
|
<span class="md-ellipsis">
|
|
11049
|
-
Changed
|
|
11166
|
+
Changed in v1.5.18
|
|
11050
11167
|
</span>
|
|
11051
11168
|
</a>
|
|
11052
11169
|
|
|
11053
11170
|
</li>
|
|
11054
11171
|
|
|
11055
11172
|
<li class="md-nav__item">
|
|
11056
|
-
<a href="#
|
|
11173
|
+
<a href="#fixed-in-v1518" class="md-nav__link">
|
|
11057
11174
|
<span class="md-ellipsis">
|
|
11058
|
-
Fixed
|
|
11175
|
+
Fixed in v1.5.18
|
|
11059
11176
|
</span>
|
|
11060
11177
|
</a>
|
|
11061
11178
|
|
|
11062
11179
|
</li>
|
|
11063
11180
|
|
|
11064
11181
|
<li class="md-nav__item">
|
|
11065
|
-
<a href="#
|
|
11182
|
+
<a href="#documentation-in-v1518" class="md-nav__link">
|
|
11066
11183
|
<span class="md-ellipsis">
|
|
11067
|
-
Documentation
|
|
11184
|
+
Documentation in v1.5.18
|
|
11068
11185
|
</span>
|
|
11069
11186
|
</a>
|
|
11070
11187
|
|
|
11071
11188
|
</li>
|
|
11072
11189
|
|
|
11073
11190
|
<li class="md-nav__item">
|
|
11074
|
-
<a href="#
|
|
11191
|
+
<a href="#housekeeping-in-v1518" class="md-nav__link">
|
|
11075
11192
|
<span class="md-ellipsis">
|
|
11076
|
-
Housekeeping
|
|
11193
|
+
Housekeeping in v1.5.18
|
|
11077
11194
|
</span>
|
|
11078
11195
|
</a>
|
|
11079
11196
|
|
|
@@ -11095,45 +11212,45 @@
|
|
|
11095
11212
|
<ul class="md-nav__list">
|
|
11096
11213
|
|
|
11097
11214
|
<li class="md-nav__item">
|
|
11098
|
-
<a href="#
|
|
11215
|
+
<a href="#added-in-v1517" class="md-nav__link">
|
|
11099
11216
|
<span class="md-ellipsis">
|
|
11100
|
-
Added
|
|
11217
|
+
Added in v1.5.17
|
|
11101
11218
|
</span>
|
|
11102
11219
|
</a>
|
|
11103
11220
|
|
|
11104
11221
|
</li>
|
|
11105
11222
|
|
|
11106
11223
|
<li class="md-nav__item">
|
|
11107
|
-
<a href="#
|
|
11224
|
+
<a href="#changed-in-v1517" class="md-nav__link">
|
|
11108
11225
|
<span class="md-ellipsis">
|
|
11109
|
-
Changed
|
|
11226
|
+
Changed in v1.5.17
|
|
11110
11227
|
</span>
|
|
11111
11228
|
</a>
|
|
11112
11229
|
|
|
11113
11230
|
</li>
|
|
11114
11231
|
|
|
11115
11232
|
<li class="md-nav__item">
|
|
11116
|
-
<a href="#
|
|
11233
|
+
<a href="#fixed-in-v1517" class="md-nav__link">
|
|
11117
11234
|
<span class="md-ellipsis">
|
|
11118
|
-
Fixed
|
|
11235
|
+
Fixed in v1.5.17
|
|
11119
11236
|
</span>
|
|
11120
11237
|
</a>
|
|
11121
11238
|
|
|
11122
11239
|
</li>
|
|
11123
11240
|
|
|
11124
11241
|
<li class="md-nav__item">
|
|
11125
|
-
<a href="#
|
|
11242
|
+
<a href="#dependencies-in-v1517" class="md-nav__link">
|
|
11126
11243
|
<span class="md-ellipsis">
|
|
11127
|
-
Dependencies
|
|
11244
|
+
Dependencies in v1.5.17
|
|
11128
11245
|
</span>
|
|
11129
11246
|
</a>
|
|
11130
11247
|
|
|
11131
11248
|
</li>
|
|
11132
11249
|
|
|
11133
11250
|
<li class="md-nav__item">
|
|
11134
|
-
<a href="#
|
|
11251
|
+
<a href="#documentation-in-v1517" class="md-nav__link">
|
|
11135
11252
|
<span class="md-ellipsis">
|
|
11136
|
-
Documentation
|
|
11253
|
+
Documentation in v1.5.17
|
|
11137
11254
|
</span>
|
|
11138
11255
|
</a>
|
|
11139
11256
|
|
|
@@ -11155,27 +11272,27 @@
|
|
|
11155
11272
|
<ul class="md-nav__list">
|
|
11156
11273
|
|
|
11157
11274
|
<li class="md-nav__item">
|
|
11158
|
-
<a href="#
|
|
11275
|
+
<a href="#fixed-in-v1516" class="md-nav__link">
|
|
11159
11276
|
<span class="md-ellipsis">
|
|
11160
|
-
Fixed
|
|
11277
|
+
Fixed in v1.5.16
|
|
11161
11278
|
</span>
|
|
11162
11279
|
</a>
|
|
11163
11280
|
|
|
11164
11281
|
</li>
|
|
11165
11282
|
|
|
11166
11283
|
<li class="md-nav__item">
|
|
11167
|
-
<a href="#
|
|
11284
|
+
<a href="#documentation-in-v1516" class="md-nav__link">
|
|
11168
11285
|
<span class="md-ellipsis">
|
|
11169
|
-
Documentation
|
|
11286
|
+
Documentation in v1.5.16
|
|
11170
11287
|
</span>
|
|
11171
11288
|
</a>
|
|
11172
11289
|
|
|
11173
11290
|
</li>
|
|
11174
11291
|
|
|
11175
11292
|
<li class="md-nav__item">
|
|
11176
|
-
<a href="#
|
|
11293
|
+
<a href="#housekeeping-in-v1516" class="md-nav__link">
|
|
11177
11294
|
<span class="md-ellipsis">
|
|
11178
|
-
Housekeeping
|
|
11295
|
+
Housekeeping in v1.5.16
|
|
11179
11296
|
</span>
|
|
11180
11297
|
</a>
|
|
11181
11298
|
|
|
@@ -11197,63 +11314,63 @@
|
|
|
11197
11314
|
<ul class="md-nav__list">
|
|
11198
11315
|
|
|
11199
11316
|
<li class="md-nav__item">
|
|
11200
|
-
<a href="#
|
|
11317
|
+
<a href="#security-in-v1515" class="md-nav__link">
|
|
11201
11318
|
<span class="md-ellipsis">
|
|
11202
|
-
Security
|
|
11319
|
+
Security in v1.5.15
|
|
11203
11320
|
</span>
|
|
11204
11321
|
</a>
|
|
11205
11322
|
|
|
11206
11323
|
</li>
|
|
11207
11324
|
|
|
11208
11325
|
<li class="md-nav__item">
|
|
11209
|
-
<a href="#
|
|
11326
|
+
<a href="#changed-in-v1515" class="md-nav__link">
|
|
11210
11327
|
<span class="md-ellipsis">
|
|
11211
|
-
Changed
|
|
11328
|
+
Changed in v1.5.15
|
|
11212
11329
|
</span>
|
|
11213
11330
|
</a>
|
|
11214
11331
|
|
|
11215
11332
|
</li>
|
|
11216
11333
|
|
|
11217
11334
|
<li class="md-nav__item">
|
|
11218
|
-
<a href="#removed" class="md-nav__link">
|
|
11335
|
+
<a href="#removed-in-v1515" class="md-nav__link">
|
|
11219
11336
|
<span class="md-ellipsis">
|
|
11220
|
-
Removed
|
|
11337
|
+
Removed in v1.5.15
|
|
11221
11338
|
</span>
|
|
11222
11339
|
</a>
|
|
11223
11340
|
|
|
11224
11341
|
</li>
|
|
11225
11342
|
|
|
11226
11343
|
<li class="md-nav__item">
|
|
11227
|
-
<a href="#
|
|
11344
|
+
<a href="#fixed-in-v1515" class="md-nav__link">
|
|
11228
11345
|
<span class="md-ellipsis">
|
|
11229
|
-
Fixed
|
|
11346
|
+
Fixed in v1.5.15
|
|
11230
11347
|
</span>
|
|
11231
11348
|
</a>
|
|
11232
11349
|
|
|
11233
11350
|
</li>
|
|
11234
11351
|
|
|
11235
11352
|
<li class="md-nav__item">
|
|
11236
|
-
<a href="#
|
|
11353
|
+
<a href="#dependencies-in-v1515" class="md-nav__link">
|
|
11237
11354
|
<span class="md-ellipsis">
|
|
11238
|
-
Dependencies
|
|
11355
|
+
Dependencies in v1.5.15
|
|
11239
11356
|
</span>
|
|
11240
11357
|
</a>
|
|
11241
11358
|
|
|
11242
11359
|
</li>
|
|
11243
11360
|
|
|
11244
11361
|
<li class="md-nav__item">
|
|
11245
|
-
<a href="#
|
|
11362
|
+
<a href="#documentation-in-v1515" class="md-nav__link">
|
|
11246
11363
|
<span class="md-ellipsis">
|
|
11247
|
-
Documentation
|
|
11364
|
+
Documentation in v1.5.15
|
|
11248
11365
|
</span>
|
|
11249
11366
|
</a>
|
|
11250
11367
|
|
|
11251
11368
|
</li>
|
|
11252
11369
|
|
|
11253
11370
|
<li class="md-nav__item">
|
|
11254
|
-
<a href="#
|
|
11371
|
+
<a href="#housekeeping-in-v1515" class="md-nav__link">
|
|
11255
11372
|
<span class="md-ellipsis">
|
|
11256
|
-
Housekeeping
|
|
11373
|
+
Housekeeping in v1.5.15
|
|
11257
11374
|
</span>
|
|
11258
11375
|
</a>
|
|
11259
11376
|
|
|
@@ -11275,27 +11392,27 @@
|
|
|
11275
11392
|
<ul class="md-nav__list">
|
|
11276
11393
|
|
|
11277
11394
|
<li class="md-nav__item">
|
|
11278
|
-
<a href="#
|
|
11395
|
+
<a href="#added-in-v1514" class="md-nav__link">
|
|
11279
11396
|
<span class="md-ellipsis">
|
|
11280
|
-
Added
|
|
11397
|
+
Added in v1.5.14
|
|
11281
11398
|
</span>
|
|
11282
11399
|
</a>
|
|
11283
11400
|
|
|
11284
11401
|
</li>
|
|
11285
11402
|
|
|
11286
11403
|
<li class="md-nav__item">
|
|
11287
|
-
<a href="#
|
|
11404
|
+
<a href="#documentation-in-v1514" class="md-nav__link">
|
|
11288
11405
|
<span class="md-ellipsis">
|
|
11289
|
-
Documentation
|
|
11406
|
+
Documentation in v1.5.14
|
|
11290
11407
|
</span>
|
|
11291
11408
|
</a>
|
|
11292
11409
|
|
|
11293
11410
|
</li>
|
|
11294
11411
|
|
|
11295
11412
|
<li class="md-nav__item">
|
|
11296
|
-
<a href="#
|
|
11413
|
+
<a href="#housekeeping-in-v1514" class="md-nav__link">
|
|
11297
11414
|
<span class="md-ellipsis">
|
|
11298
|
-
Housekeeping
|
|
11415
|
+
Housekeeping in v1.5.14
|
|
11299
11416
|
</span>
|
|
11300
11417
|
</a>
|
|
11301
11418
|
|
|
@@ -11317,54 +11434,54 @@
|
|
|
11317
11434
|
<ul class="md-nav__list">
|
|
11318
11435
|
|
|
11319
11436
|
<li class="md-nav__item">
|
|
11320
|
-
<a href="#
|
|
11437
|
+
<a href="#added-in-v1513" class="md-nav__link">
|
|
11321
11438
|
<span class="md-ellipsis">
|
|
11322
|
-
Added
|
|
11439
|
+
Added in v1.5.13
|
|
11323
11440
|
</span>
|
|
11324
11441
|
</a>
|
|
11325
11442
|
|
|
11326
11443
|
</li>
|
|
11327
11444
|
|
|
11328
11445
|
<li class="md-nav__item">
|
|
11329
|
-
<a href="#
|
|
11446
|
+
<a href="#changed-in-v1513" class="md-nav__link">
|
|
11330
11447
|
<span class="md-ellipsis">
|
|
11331
|
-
Changed
|
|
11448
|
+
Changed in v1.5.13
|
|
11332
11449
|
</span>
|
|
11333
11450
|
</a>
|
|
11334
11451
|
|
|
11335
11452
|
</li>
|
|
11336
11453
|
|
|
11337
11454
|
<li class="md-nav__item">
|
|
11338
|
-
<a href="#
|
|
11455
|
+
<a href="#removed-in-v1513" class="md-nav__link">
|
|
11339
11456
|
<span class="md-ellipsis">
|
|
11340
|
-
Removed
|
|
11457
|
+
Removed in v1.5.13
|
|
11341
11458
|
</span>
|
|
11342
11459
|
</a>
|
|
11343
11460
|
|
|
11344
11461
|
</li>
|
|
11345
11462
|
|
|
11346
11463
|
<li class="md-nav__item">
|
|
11347
|
-
<a href="#
|
|
11464
|
+
<a href="#fixed-in-v1513" class="md-nav__link">
|
|
11348
11465
|
<span class="md-ellipsis">
|
|
11349
|
-
Fixed
|
|
11466
|
+
Fixed in v1.5.13
|
|
11350
11467
|
</span>
|
|
11351
11468
|
</a>
|
|
11352
11469
|
|
|
11353
11470
|
</li>
|
|
11354
11471
|
|
|
11355
11472
|
<li class="md-nav__item">
|
|
11356
|
-
<a href="#
|
|
11473
|
+
<a href="#dependencies-in-v1513" class="md-nav__link">
|
|
11357
11474
|
<span class="md-ellipsis">
|
|
11358
|
-
Dependencies
|
|
11475
|
+
Dependencies in v1.5.13
|
|
11359
11476
|
</span>
|
|
11360
11477
|
</a>
|
|
11361
11478
|
|
|
11362
11479
|
</li>
|
|
11363
11480
|
|
|
11364
11481
|
<li class="md-nav__item">
|
|
11365
|
-
<a href="#
|
|
11482
|
+
<a href="#documentation-in-v1513" class="md-nav__link">
|
|
11366
11483
|
<span class="md-ellipsis">
|
|
11367
|
-
Documentation
|
|
11484
|
+
Documentation in v1.5.13
|
|
11368
11485
|
</span>
|
|
11369
11486
|
</a>
|
|
11370
11487
|
|
|
@@ -11386,36 +11503,36 @@
|
|
|
11386
11503
|
<ul class="md-nav__list">
|
|
11387
11504
|
|
|
11388
11505
|
<li class="md-nav__item">
|
|
11389
|
-
<a href="#
|
|
11506
|
+
<a href="#added-in-v1512" class="md-nav__link">
|
|
11390
11507
|
<span class="md-ellipsis">
|
|
11391
|
-
Added
|
|
11508
|
+
Added in v1.5.12
|
|
11392
11509
|
</span>
|
|
11393
11510
|
</a>
|
|
11394
11511
|
|
|
11395
11512
|
</li>
|
|
11396
11513
|
|
|
11397
11514
|
<li class="md-nav__item">
|
|
11398
|
-
<a href="#
|
|
11515
|
+
<a href="#changed-in-v1512" class="md-nav__link">
|
|
11399
11516
|
<span class="md-ellipsis">
|
|
11400
|
-
Changed
|
|
11517
|
+
Changed in v1.5.12
|
|
11401
11518
|
</span>
|
|
11402
11519
|
</a>
|
|
11403
11520
|
|
|
11404
11521
|
</li>
|
|
11405
11522
|
|
|
11406
11523
|
<li class="md-nav__item">
|
|
11407
|
-
<a href="#
|
|
11524
|
+
<a href="#fixed-in-v1512" class="md-nav__link">
|
|
11408
11525
|
<span class="md-ellipsis">
|
|
11409
|
-
Fixed
|
|
11526
|
+
Fixed in v1.5.12
|
|
11410
11527
|
</span>
|
|
11411
11528
|
</a>
|
|
11412
11529
|
|
|
11413
11530
|
</li>
|
|
11414
11531
|
|
|
11415
11532
|
<li class="md-nav__item">
|
|
11416
|
-
<a href="#
|
|
11533
|
+
<a href="#dependencies-in-v1512" class="md-nav__link">
|
|
11417
11534
|
<span class="md-ellipsis">
|
|
11418
|
-
Dependencies
|
|
11535
|
+
Dependencies in v1.5.12
|
|
11419
11536
|
</span>
|
|
11420
11537
|
</a>
|
|
11421
11538
|
|
|
@@ -11437,63 +11554,63 @@
|
|
|
11437
11554
|
<ul class="md-nav__list">
|
|
11438
11555
|
|
|
11439
11556
|
<li class="md-nav__item">
|
|
11440
|
-
<a href="#
|
|
11557
|
+
<a href="#security-in-v1511" class="md-nav__link">
|
|
11441
11558
|
<span class="md-ellipsis">
|
|
11442
|
-
Security
|
|
11559
|
+
Security in v1.5.11
|
|
11443
11560
|
</span>
|
|
11444
11561
|
</a>
|
|
11445
11562
|
|
|
11446
11563
|
</li>
|
|
11447
11564
|
|
|
11448
11565
|
<li class="md-nav__item">
|
|
11449
|
-
<a href="#
|
|
11566
|
+
<a href="#added-in-v1511" class="md-nav__link">
|
|
11450
11567
|
<span class="md-ellipsis">
|
|
11451
|
-
Added
|
|
11568
|
+
Added in v1.5.11
|
|
11452
11569
|
</span>
|
|
11453
11570
|
</a>
|
|
11454
11571
|
|
|
11455
11572
|
</li>
|
|
11456
11573
|
|
|
11457
11574
|
<li class="md-nav__item">
|
|
11458
|
-
<a href="#
|
|
11575
|
+
<a href="#changed-in-v1511" class="md-nav__link">
|
|
11459
11576
|
<span class="md-ellipsis">
|
|
11460
|
-
Changed
|
|
11577
|
+
Changed in v1.5.11
|
|
11461
11578
|
</span>
|
|
11462
11579
|
</a>
|
|
11463
11580
|
|
|
11464
11581
|
</li>
|
|
11465
11582
|
|
|
11466
11583
|
<li class="md-nav__item">
|
|
11467
|
-
<a href="#
|
|
11584
|
+
<a href="#fixed-in-v1511" class="md-nav__link">
|
|
11468
11585
|
<span class="md-ellipsis">
|
|
11469
|
-
Fixed
|
|
11586
|
+
Fixed in v1.5.11
|
|
11470
11587
|
</span>
|
|
11471
11588
|
</a>
|
|
11472
11589
|
|
|
11473
11590
|
</li>
|
|
11474
11591
|
|
|
11475
11592
|
<li class="md-nav__item">
|
|
11476
|
-
<a href="#
|
|
11593
|
+
<a href="#dependencies-in-v1511" class="md-nav__link">
|
|
11477
11594
|
<span class="md-ellipsis">
|
|
11478
|
-
Dependencies
|
|
11595
|
+
Dependencies in v1.5.11
|
|
11479
11596
|
</span>
|
|
11480
11597
|
</a>
|
|
11481
11598
|
|
|
11482
11599
|
</li>
|
|
11483
11600
|
|
|
11484
11601
|
<li class="md-nav__item">
|
|
11485
|
-
<a href="#
|
|
11602
|
+
<a href="#documentation-in-v1511" class="md-nav__link">
|
|
11486
11603
|
<span class="md-ellipsis">
|
|
11487
|
-
Documentation
|
|
11604
|
+
Documentation in v1.5.11
|
|
11488
11605
|
</span>
|
|
11489
11606
|
</a>
|
|
11490
11607
|
|
|
11491
11608
|
</li>
|
|
11492
11609
|
|
|
11493
11610
|
<li class="md-nav__item">
|
|
11494
|
-
<a href="#
|
|
11611
|
+
<a href="#housekeeping-in-v1511" class="md-nav__link">
|
|
11495
11612
|
<span class="md-ellipsis">
|
|
11496
|
-
Housekeeping
|
|
11613
|
+
Housekeeping in v1.5.11
|
|
11497
11614
|
</span>
|
|
11498
11615
|
</a>
|
|
11499
11616
|
|
|
@@ -11515,45 +11632,45 @@
|
|
|
11515
11632
|
<ul class="md-nav__list">
|
|
11516
11633
|
|
|
11517
11634
|
<li class="md-nav__item">
|
|
11518
|
-
<a href="#
|
|
11635
|
+
<a href="#security-in-v1510" class="md-nav__link">
|
|
11519
11636
|
<span class="md-ellipsis">
|
|
11520
|
-
Security
|
|
11637
|
+
Security in v1.5.10
|
|
11521
11638
|
</span>
|
|
11522
11639
|
</a>
|
|
11523
11640
|
|
|
11524
11641
|
</li>
|
|
11525
11642
|
|
|
11526
11643
|
<li class="md-nav__item">
|
|
11527
|
-
<a href="#
|
|
11644
|
+
<a href="#added-in-v1510" class="md-nav__link">
|
|
11528
11645
|
<span class="md-ellipsis">
|
|
11529
|
-
Added
|
|
11646
|
+
Added in v1.5.10
|
|
11530
11647
|
</span>
|
|
11531
11648
|
</a>
|
|
11532
11649
|
|
|
11533
11650
|
</li>
|
|
11534
11651
|
|
|
11535
11652
|
<li class="md-nav__item">
|
|
11536
|
-
<a href="#
|
|
11653
|
+
<a href="#fixed-in-v1510" class="md-nav__link">
|
|
11537
11654
|
<span class="md-ellipsis">
|
|
11538
|
-
Fixed
|
|
11655
|
+
Fixed in v1.5.10
|
|
11539
11656
|
</span>
|
|
11540
11657
|
</a>
|
|
11541
11658
|
|
|
11542
11659
|
</li>
|
|
11543
11660
|
|
|
11544
11661
|
<li class="md-nav__item">
|
|
11545
|
-
<a href="#
|
|
11662
|
+
<a href="#dependencies-in-v1510" class="md-nav__link">
|
|
11546
11663
|
<span class="md-ellipsis">
|
|
11547
|
-
Dependencies
|
|
11664
|
+
Dependencies in v1.5.10
|
|
11548
11665
|
</span>
|
|
11549
11666
|
</a>
|
|
11550
11667
|
|
|
11551
11668
|
</li>
|
|
11552
11669
|
|
|
11553
11670
|
<li class="md-nav__item">
|
|
11554
|
-
<a href="#
|
|
11671
|
+
<a href="#housekeeping-in-v1510" class="md-nav__link">
|
|
11555
11672
|
<span class="md-ellipsis">
|
|
11556
|
-
Housekeeping
|
|
11673
|
+
Housekeeping in v1.5.10
|
|
11557
11674
|
</span>
|
|
11558
11675
|
</a>
|
|
11559
11676
|
|
|
@@ -11575,36 +11692,36 @@
|
|
|
11575
11692
|
<ul class="md-nav__list">
|
|
11576
11693
|
|
|
11577
11694
|
<li class="md-nav__item">
|
|
11578
|
-
<a href="#
|
|
11695
|
+
<a href="#changed-in-v159" class="md-nav__link">
|
|
11579
11696
|
<span class="md-ellipsis">
|
|
11580
|
-
Changed
|
|
11697
|
+
Changed in v1.5.9
|
|
11581
11698
|
</span>
|
|
11582
11699
|
</a>
|
|
11583
11700
|
|
|
11584
11701
|
</li>
|
|
11585
11702
|
|
|
11586
11703
|
<li class="md-nav__item">
|
|
11587
|
-
<a href="#
|
|
11704
|
+
<a href="#fixed-in-v159" class="md-nav__link">
|
|
11588
11705
|
<span class="md-ellipsis">
|
|
11589
|
-
Fixed
|
|
11706
|
+
Fixed in v1.5.9
|
|
11590
11707
|
</span>
|
|
11591
11708
|
</a>
|
|
11592
11709
|
|
|
11593
11710
|
</li>
|
|
11594
11711
|
|
|
11595
11712
|
<li class="md-nav__item">
|
|
11596
|
-
<a href="#
|
|
11713
|
+
<a href="#dependencies-in-v159" class="md-nav__link">
|
|
11597
11714
|
<span class="md-ellipsis">
|
|
11598
|
-
Dependencies
|
|
11715
|
+
Dependencies in v1.5.9
|
|
11599
11716
|
</span>
|
|
11600
11717
|
</a>
|
|
11601
11718
|
|
|
11602
11719
|
</li>
|
|
11603
11720
|
|
|
11604
11721
|
<li class="md-nav__item">
|
|
11605
|
-
<a href="#
|
|
11722
|
+
<a href="#housekeeping-in-v159" class="md-nav__link">
|
|
11606
11723
|
<span class="md-ellipsis">
|
|
11607
|
-
Housekeeping
|
|
11724
|
+
Housekeeping in v1.5.9
|
|
11608
11725
|
</span>
|
|
11609
11726
|
</a>
|
|
11610
11727
|
|
|
@@ -11626,45 +11743,45 @@
|
|
|
11626
11743
|
<ul class="md-nav__list">
|
|
11627
11744
|
|
|
11628
11745
|
<li class="md-nav__item">
|
|
11629
|
-
<a href="#
|
|
11746
|
+
<a href="#security-in-v158" class="md-nav__link">
|
|
11630
11747
|
<span class="md-ellipsis">
|
|
11631
|
-
Security
|
|
11748
|
+
Security in v1.5.8
|
|
11632
11749
|
</span>
|
|
11633
11750
|
</a>
|
|
11634
11751
|
|
|
11635
11752
|
</li>
|
|
11636
11753
|
|
|
11637
11754
|
<li class="md-nav__item">
|
|
11638
|
-
<a href="#
|
|
11755
|
+
<a href="#changed-in-v158" class="md-nav__link">
|
|
11639
11756
|
<span class="md-ellipsis">
|
|
11640
|
-
Changed
|
|
11757
|
+
Changed in v1.5.8
|
|
11641
11758
|
</span>
|
|
11642
11759
|
</a>
|
|
11643
11760
|
|
|
11644
11761
|
</li>
|
|
11645
11762
|
|
|
11646
11763
|
<li class="md-nav__item">
|
|
11647
|
-
<a href="#
|
|
11764
|
+
<a href="#fixed-in-v158" class="md-nav__link">
|
|
11648
11765
|
<span class="md-ellipsis">
|
|
11649
|
-
Fixed
|
|
11766
|
+
Fixed in v1.5.8
|
|
11650
11767
|
</span>
|
|
11651
11768
|
</a>
|
|
11652
11769
|
|
|
11653
11770
|
</li>
|
|
11654
11771
|
|
|
11655
11772
|
<li class="md-nav__item">
|
|
11656
|
-
<a href="#
|
|
11773
|
+
<a href="#documentation-in-v158" class="md-nav__link">
|
|
11657
11774
|
<span class="md-ellipsis">
|
|
11658
|
-
Documentation
|
|
11775
|
+
Documentation in v1.5.8
|
|
11659
11776
|
</span>
|
|
11660
11777
|
</a>
|
|
11661
11778
|
|
|
11662
11779
|
</li>
|
|
11663
11780
|
|
|
11664
11781
|
<li class="md-nav__item">
|
|
11665
|
-
<a href="#
|
|
11782
|
+
<a href="#housekeeping-in-v158" class="md-nav__link">
|
|
11666
11783
|
<span class="md-ellipsis">
|
|
11667
|
-
Housekeeping
|
|
11784
|
+
Housekeeping in v1.5.8
|
|
11668
11785
|
</span>
|
|
11669
11786
|
</a>
|
|
11670
11787
|
|
|
@@ -11686,18 +11803,18 @@
|
|
|
11686
11803
|
<ul class="md-nav__list">
|
|
11687
11804
|
|
|
11688
11805
|
<li class="md-nav__item">
|
|
11689
|
-
<a href="#
|
|
11806
|
+
<a href="#security-in-v157" class="md-nav__link">
|
|
11690
11807
|
<span class="md-ellipsis">
|
|
11691
|
-
Security
|
|
11808
|
+
Security in v1.5.7
|
|
11692
11809
|
</span>
|
|
11693
11810
|
</a>
|
|
11694
11811
|
|
|
11695
11812
|
</li>
|
|
11696
11813
|
|
|
11697
11814
|
<li class="md-nav__item">
|
|
11698
|
-
<a href="#
|
|
11815
|
+
<a href="#fixed-in-v157" class="md-nav__link">
|
|
11699
11816
|
<span class="md-ellipsis">
|
|
11700
|
-
Fixed
|
|
11817
|
+
Fixed in v1.5.7
|
|
11701
11818
|
</span>
|
|
11702
11819
|
</a>
|
|
11703
11820
|
|
|
@@ -11719,45 +11836,45 @@
|
|
|
11719
11836
|
<ul class="md-nav__list">
|
|
11720
11837
|
|
|
11721
11838
|
<li class="md-nav__item">
|
|
11722
|
-
<a href="#
|
|
11839
|
+
<a href="#added-in-v156" class="md-nav__link">
|
|
11723
11840
|
<span class="md-ellipsis">
|
|
11724
|
-
Added
|
|
11841
|
+
Added in v1.5.6
|
|
11725
11842
|
</span>
|
|
11726
11843
|
</a>
|
|
11727
11844
|
|
|
11728
11845
|
</li>
|
|
11729
11846
|
|
|
11730
11847
|
<li class="md-nav__item">
|
|
11731
|
-
<a href="#
|
|
11848
|
+
<a href="#fixed-in-v156" class="md-nav__link">
|
|
11732
11849
|
<span class="md-ellipsis">
|
|
11733
|
-
Fixed
|
|
11850
|
+
Fixed in v1.5.6
|
|
11734
11851
|
</span>
|
|
11735
11852
|
</a>
|
|
11736
11853
|
|
|
11737
11854
|
</li>
|
|
11738
11855
|
|
|
11739
11856
|
<li class="md-nav__item">
|
|
11740
|
-
<a href="#
|
|
11857
|
+
<a href="#dependencies-in-v156" class="md-nav__link">
|
|
11741
11858
|
<span class="md-ellipsis">
|
|
11742
|
-
Dependencies
|
|
11859
|
+
Dependencies in v1.5.6
|
|
11743
11860
|
</span>
|
|
11744
11861
|
</a>
|
|
11745
11862
|
|
|
11746
11863
|
</li>
|
|
11747
11864
|
|
|
11748
11865
|
<li class="md-nav__item">
|
|
11749
|
-
<a href="#
|
|
11866
|
+
<a href="#documentation-in-v156" class="md-nav__link">
|
|
11750
11867
|
<span class="md-ellipsis">
|
|
11751
|
-
Documentation
|
|
11868
|
+
Documentation in v1.5.6
|
|
11752
11869
|
</span>
|
|
11753
11870
|
</a>
|
|
11754
11871
|
|
|
11755
11872
|
</li>
|
|
11756
11873
|
|
|
11757
11874
|
<li class="md-nav__item">
|
|
11758
|
-
<a href="#
|
|
11875
|
+
<a href="#housekeeping-in-v156" class="md-nav__link">
|
|
11759
11876
|
<span class="md-ellipsis">
|
|
11760
|
-
Housekeeping
|
|
11877
|
+
Housekeeping in v1.5.6
|
|
11761
11878
|
</span>
|
|
11762
11879
|
</a>
|
|
11763
11880
|
|
|
@@ -11779,27 +11896,27 @@
|
|
|
11779
11896
|
<ul class="md-nav__list">
|
|
11780
11897
|
|
|
11781
11898
|
<li class="md-nav__item">
|
|
11782
|
-
<a href="#
|
|
11899
|
+
<a href="#changed-in-v155" class="md-nav__link">
|
|
11783
11900
|
<span class="md-ellipsis">
|
|
11784
|
-
Changed
|
|
11901
|
+
Changed in v1.5.5
|
|
11785
11902
|
</span>
|
|
11786
11903
|
</a>
|
|
11787
11904
|
|
|
11788
11905
|
</li>
|
|
11789
11906
|
|
|
11790
11907
|
<li class="md-nav__item">
|
|
11791
|
-
<a href="#
|
|
11908
|
+
<a href="#fixed-in-v155" class="md-nav__link">
|
|
11792
11909
|
<span class="md-ellipsis">
|
|
11793
|
-
Fixed
|
|
11910
|
+
Fixed in v1.5.5
|
|
11794
11911
|
</span>
|
|
11795
11912
|
</a>
|
|
11796
11913
|
|
|
11797
11914
|
</li>
|
|
11798
11915
|
|
|
11799
11916
|
<li class="md-nav__item">
|
|
11800
|
-
<a href="#
|
|
11917
|
+
<a href="#housekeeping-in-v155" class="md-nav__link">
|
|
11801
11918
|
<span class="md-ellipsis">
|
|
11802
|
-
Housekeeping
|
|
11919
|
+
Housekeeping in v1.5.5
|
|
11803
11920
|
</span>
|
|
11804
11921
|
</a>
|
|
11805
11922
|
|
|
@@ -11821,18 +11938,18 @@
|
|
|
11821
11938
|
<ul class="md-nav__list">
|
|
11822
11939
|
|
|
11823
11940
|
<li class="md-nav__item">
|
|
11824
|
-
<a href="#
|
|
11941
|
+
<a href="#fixed-in-v154" class="md-nav__link">
|
|
11825
11942
|
<span class="md-ellipsis">
|
|
11826
|
-
Fixed
|
|
11943
|
+
Fixed in v1.5.4
|
|
11827
11944
|
</span>
|
|
11828
11945
|
</a>
|
|
11829
11946
|
|
|
11830
11947
|
</li>
|
|
11831
11948
|
|
|
11832
11949
|
<li class="md-nav__item">
|
|
11833
|
-
<a href="#
|
|
11950
|
+
<a href="#documentation-in-v154" class="md-nav__link">
|
|
11834
11951
|
<span class="md-ellipsis">
|
|
11835
|
-
Documentation
|
|
11952
|
+
Documentation in v1.5.4
|
|
11836
11953
|
</span>
|
|
11837
11954
|
</a>
|
|
11838
11955
|
|
|
@@ -11854,9 +11971,9 @@
|
|
|
11854
11971
|
<ul class="md-nav__list">
|
|
11855
11972
|
|
|
11856
11973
|
<li class="md-nav__item">
|
|
11857
|
-
<a href="#
|
|
11974
|
+
<a href="#fixed-in-v153" class="md-nav__link">
|
|
11858
11975
|
<span class="md-ellipsis">
|
|
11859
|
-
Fixed
|
|
11976
|
+
Fixed in v1.5.3
|
|
11860
11977
|
</span>
|
|
11861
11978
|
</a>
|
|
11862
11979
|
|
|
@@ -11878,54 +11995,54 @@
|
|
|
11878
11995
|
<ul class="md-nav__list">
|
|
11879
11996
|
|
|
11880
11997
|
<li class="md-nav__item">
|
|
11881
|
-
<a href="#
|
|
11998
|
+
<a href="#added-in-v152" class="md-nav__link">
|
|
11882
11999
|
<span class="md-ellipsis">
|
|
11883
|
-
Added
|
|
12000
|
+
Added in v1.5.2
|
|
11884
12001
|
</span>
|
|
11885
12002
|
</a>
|
|
11886
12003
|
|
|
11887
12004
|
</li>
|
|
11888
12005
|
|
|
11889
12006
|
<li class="md-nav__item">
|
|
11890
|
-
<a href="#
|
|
12007
|
+
<a href="#changed-in-v152" class="md-nav__link">
|
|
11891
12008
|
<span class="md-ellipsis">
|
|
11892
|
-
Changed
|
|
12009
|
+
Changed in v1.5.2
|
|
11893
12010
|
</span>
|
|
11894
12011
|
</a>
|
|
11895
12012
|
|
|
11896
12013
|
</li>
|
|
11897
12014
|
|
|
11898
12015
|
<li class="md-nav__item">
|
|
11899
|
-
<a href="#
|
|
12016
|
+
<a href="#fixed-in-v152" class="md-nav__link">
|
|
11900
12017
|
<span class="md-ellipsis">
|
|
11901
|
-
Fixed
|
|
12018
|
+
Fixed in v1.5.2
|
|
11902
12019
|
</span>
|
|
11903
12020
|
</a>
|
|
11904
12021
|
|
|
11905
12022
|
</li>
|
|
11906
12023
|
|
|
11907
12024
|
<li class="md-nav__item">
|
|
11908
|
-
<a href="#
|
|
12025
|
+
<a href="#dependencies-in-v152" class="md-nav__link">
|
|
11909
12026
|
<span class="md-ellipsis">
|
|
11910
|
-
Dependencies
|
|
12027
|
+
Dependencies in v1.5.2
|
|
11911
12028
|
</span>
|
|
11912
12029
|
</a>
|
|
11913
12030
|
|
|
11914
12031
|
</li>
|
|
11915
12032
|
|
|
11916
12033
|
<li class="md-nav__item">
|
|
11917
|
-
<a href="#
|
|
12034
|
+
<a href="#documentation-in-v152" class="md-nav__link">
|
|
11918
12035
|
<span class="md-ellipsis">
|
|
11919
|
-
Documentation
|
|
12036
|
+
Documentation in v1.5.2
|
|
11920
12037
|
</span>
|
|
11921
12038
|
</a>
|
|
11922
12039
|
|
|
11923
12040
|
</li>
|
|
11924
12041
|
|
|
11925
12042
|
<li class="md-nav__item">
|
|
11926
|
-
<a href="#
|
|
12043
|
+
<a href="#housekeeping-in-v152" class="md-nav__link">
|
|
11927
12044
|
<span class="md-ellipsis">
|
|
11928
|
-
Housekeeping
|
|
12045
|
+
Housekeeping in v1.5.2
|
|
11929
12046
|
</span>
|
|
11930
12047
|
</a>
|
|
11931
12048
|
|
|
@@ -11947,27 +12064,27 @@
|
|
|
11947
12064
|
<ul class="md-nav__list">
|
|
11948
12065
|
|
|
11949
12066
|
<li class="md-nav__item">
|
|
11950
|
-
<a href="#
|
|
12067
|
+
<a href="#added-in-v151" class="md-nav__link">
|
|
11951
12068
|
<span class="md-ellipsis">
|
|
11952
|
-
Added
|
|
12069
|
+
Added in v1.5.1
|
|
11953
12070
|
</span>
|
|
11954
12071
|
</a>
|
|
11955
12072
|
|
|
11956
12073
|
</li>
|
|
11957
12074
|
|
|
11958
12075
|
<li class="md-nav__item">
|
|
11959
|
-
<a href="#
|
|
12076
|
+
<a href="#fixed-in-v151" class="md-nav__link">
|
|
11960
12077
|
<span class="md-ellipsis">
|
|
11961
|
-
Fixed
|
|
12078
|
+
Fixed in v1.5.1
|
|
11962
12079
|
</span>
|
|
11963
12080
|
</a>
|
|
11964
12081
|
|
|
11965
12082
|
</li>
|
|
11966
12083
|
|
|
11967
12084
|
<li class="md-nav__item">
|
|
11968
|
-
<a href="#
|
|
12085
|
+
<a href="#housekeeping-in-v151" class="md-nav__link">
|
|
11969
12086
|
<span class="md-ellipsis">
|
|
11970
|
-
Housekeeping
|
|
12087
|
+
Housekeeping in v1.5.1
|
|
11971
12088
|
</span>
|
|
11972
12089
|
</a>
|
|
11973
12090
|
|
|
@@ -11998,54 +12115,54 @@
|
|
|
11998
12115
|
<ul class="md-nav__list">
|
|
11999
12116
|
|
|
12000
12117
|
<li class="md-nav__item">
|
|
12001
|
-
<a href="#
|
|
12118
|
+
<a href="#added-in-v150-beta1" class="md-nav__link">
|
|
12002
12119
|
<span class="md-ellipsis">
|
|
12003
|
-
Added
|
|
12120
|
+
Added in v1.5.0-beta.1
|
|
12004
12121
|
</span>
|
|
12005
12122
|
</a>
|
|
12006
12123
|
|
|
12007
12124
|
</li>
|
|
12008
12125
|
|
|
12009
12126
|
<li class="md-nav__item">
|
|
12010
|
-
<a href="#
|
|
12127
|
+
<a href="#changed-in-v150-beta1" class="md-nav__link">
|
|
12011
12128
|
<span class="md-ellipsis">
|
|
12012
|
-
Changed
|
|
12129
|
+
Changed in v1.5.0-beta.1
|
|
12013
12130
|
</span>
|
|
12014
12131
|
</a>
|
|
12015
12132
|
|
|
12016
12133
|
</li>
|
|
12017
12134
|
|
|
12018
12135
|
<li class="md-nav__item">
|
|
12019
|
-
<a href="#
|
|
12136
|
+
<a href="#fixed-in-v150-beta1" class="md-nav__link">
|
|
12020
12137
|
<span class="md-ellipsis">
|
|
12021
|
-
Fixed
|
|
12138
|
+
Fixed in v1.5.0-beta.1
|
|
12022
12139
|
</span>
|
|
12023
12140
|
</a>
|
|
12024
12141
|
|
|
12025
12142
|
</li>
|
|
12026
12143
|
|
|
12027
12144
|
<li class="md-nav__item">
|
|
12028
|
-
<a href="#
|
|
12145
|
+
<a href="#dependencies-in-v150-beta1" class="md-nav__link">
|
|
12029
12146
|
<span class="md-ellipsis">
|
|
12030
|
-
Dependencies
|
|
12147
|
+
Dependencies in v1.5.0-beta.1
|
|
12031
12148
|
</span>
|
|
12032
12149
|
</a>
|
|
12033
12150
|
|
|
12034
12151
|
</li>
|
|
12035
12152
|
|
|
12036
12153
|
<li class="md-nav__item">
|
|
12037
|
-
<a href="#
|
|
12154
|
+
<a href="#documentation-in-v150-beta1" class="md-nav__link">
|
|
12038
12155
|
<span class="md-ellipsis">
|
|
12039
|
-
Documentation
|
|
12156
|
+
Documentation in v1.5.0-beta.1
|
|
12040
12157
|
</span>
|
|
12041
12158
|
</a>
|
|
12042
12159
|
|
|
12043
12160
|
</li>
|
|
12044
12161
|
|
|
12045
12162
|
<li class="md-nav__item">
|
|
12046
|
-
<a href="#
|
|
12163
|
+
<a href="#housekeeping-in-v150-beta1" class="md-nav__link">
|
|
12047
12164
|
<span class="md-ellipsis">
|
|
12048
|
-
Housekeeping
|
|
12165
|
+
Housekeeping in v1.5.0-beta.1
|
|
12049
12166
|
</span>
|
|
12050
12167
|
</a>
|
|
12051
12168
|
|
|
@@ -12074,8 +12191,6 @@
|
|
|
12074
12191
|
|
|
12075
12192
|
|
|
12076
12193
|
|
|
12077
|
-
<!-- markdownlint-disable MD024 -->
|
|
12078
|
-
|
|
12079
12194
|
<h1 id="nautobot-v15">Nautobot v1.5<a class="headerlink" href="#nautobot-v15" title="Permanent link">¶</a></h1>
|
|
12080
12195
|
<p>This document describes all new features and changes in Nautobot 1.5.</p>
|
|
12081
12196
|
<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 +12385,50 @@ relationship:</p>
|
|
|
12270
12385
|
</tr>
|
|
12271
12386
|
</tbody>
|
|
12272
12387
|
</table>
|
|
12273
|
-
<!-- towncrier release notes start -->
|
|
12274
12388
|
<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>
|
|
12389
|
+
<h3 id="security-in-v1524">Security in v1.5.24<a class="headerlink" href="#security-in-v1524" title="Permanent link">¶</a></h3>
|
|
12276
12390
|
<ul>
|
|
12277
12391
|
<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
12392
|
</ul>
|
|
12279
|
-
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
12393
|
+
<h3 id="fixed-in-v1524">Fixed in v1.5.24<a class="headerlink" href="#fixed-in-v1524" title="Permanent link">¶</a></h3>
|
|
12280
12394
|
<ul>
|
|
12281
12395
|
<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
12396
|
<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
12397
|
</ul>
|
|
12284
12398
|
<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="
|
|
12399
|
+
<h3 id="security-in-v1523">Security in v1.5.23<a class="headerlink" href="#security-in-v1523" title="Permanent link">¶</a></h3>
|
|
12286
12400
|
<ul>
|
|
12287
12401
|
<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
12402
|
</ul>
|
|
12289
|
-
<h3 id="
|
|
12403
|
+
<h3 id="added-in-v1523">Added in v1.5.23<a class="headerlink" href="#added-in-v1523" title="Permanent link">¶</a></h3>
|
|
12290
12404
|
<ul>
|
|
12291
12405
|
<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
12406
|
<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
12407
|
</ul>
|
|
12294
|
-
<h3 id="
|
|
12408
|
+
<h3 id="changed-in-v1523">Changed in v1.5.23<a class="headerlink" href="#changed-in-v1523" title="Permanent link">¶</a></h3>
|
|
12295
12409
|
<ul>
|
|
12296
12410
|
<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
12411
|
<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
12412
|
</ul>
|
|
12299
|
-
<h3 id="
|
|
12413
|
+
<h3 id="fixed-in-v1523">Fixed in v1.5.23<a class="headerlink" href="#fixed-in-v1523" title="Permanent link">¶</a></h3>
|
|
12300
12414
|
<ul>
|
|
12301
12415
|
<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
12416
|
<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
|
|
12417
|
+
<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
12418
|
<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
12419
|
<li><a href="https://github.com/nautobot/nautobot/issues/4048">#4048</a> - Fixed broken tab navigation in secrets.</li>
|
|
12306
12420
|
</ul>
|
|
12307
|
-
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
12421
|
+
<h3 id="dependencies-in-v1523">Dependencies in v1.5.23<a class="headerlink" href="#dependencies-in-v1523" title="Permanent link">¶</a></h3>
|
|
12308
12422
|
<ul>
|
|
12309
12423
|
<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
12424
|
</ul>
|
|
12311
|
-
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
12425
|
+
<h3 id="documentation-in-v1523">Documentation in v1.5.23<a class="headerlink" href="#documentation-in-v1523" title="Permanent link">¶</a></h3>
|
|
12312
12426
|
<ul>
|
|
12313
12427
|
<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
12428
|
<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
12429
|
<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
12430
|
</ul>
|
|
12317
|
-
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
12431
|
+
<h3 id="housekeeping-in-v1523">Housekeeping in v1.5.23<a class="headerlink" href="#housekeeping-in-v1523" title="Permanent link">¶</a></h3>
|
|
12318
12432
|
<ul>
|
|
12319
12433
|
<li><a href="https://github.com/nautobot/nautobot/issues/3422">#3422</a> - Fixed postgres database healthcheck error message in development environment.</li>
|
|
12320
12434
|
<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 +12436,16 @@ relationship:</p>
|
|
|
12322
12436
|
<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
12437
|
</ul>
|
|
12324
12438
|
<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="
|
|
12439
|
+
<h3 id="security-in-v1522">Security in v1.5.22<a class="headerlink" href="#security-in-v1522" title="Permanent link">¶</a></h3>
|
|
12326
12440
|
<ul>
|
|
12327
12441
|
<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
12442
|
<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
12443
|
</ul>
|
|
12330
|
-
<h3 id="
|
|
12444
|
+
<h3 id="added-in-v1522">Added in v1.5.22<a class="headerlink" href="#added-in-v1522" title="Permanent link">¶</a></h3>
|
|
12331
12445
|
<ul>
|
|
12332
12446
|
<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
12447
|
</ul>
|
|
12334
|
-
<h3 id="
|
|
12448
|
+
<h3 id="fixed-in-v1522">Fixed in v1.5.22<a class="headerlink" href="#fixed-in-v1522" title="Permanent link">¶</a></h3>
|
|
12335
12449
|
<ul>
|
|
12336
12450
|
<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
12451
|
<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 +12454,245 @@ relationship:</p>
|
|
|
12340
12454
|
<li><a href="https://github.com/nautobot/nautobot/issues/3948">#3948</a> - Fixed device name copy button adding an extra space/return.</li>
|
|
12341
12455
|
<li><a href="https://github.com/nautobot/nautobot/issues/3987">#3987</a> - Fixed issue where download SVG download did not actually download.</li>
|
|
12342
12456
|
</ul>
|
|
12343
|
-
<h3 id="
|
|
12457
|
+
<h3 id="documentation-in-v1522">Documentation in v1.5.22<a class="headerlink" href="#documentation-in-v1522" title="Permanent link">¶</a></h3>
|
|
12344
12458
|
<ul>
|
|
12345
12459
|
<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
12460
|
</ul>
|
|
12347
|
-
<h3 id="
|
|
12461
|
+
<h3 id="housekeeping-in-v1522">Housekeeping in v1.5.22<a class="headerlink" href="#housekeeping-in-v1522" title="Permanent link">¶</a></h3>
|
|
12348
12462
|
<ul>
|
|
12349
12463
|
<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
12464
|
<li><a href="https://github.com/nautobot/nautobot/issues/3534">#3534</a> - Fixed unit tests sometimes clearing out the default database.</li>
|
|
12351
12465
|
</ul>
|
|
12352
12466
|
<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="
|
|
12467
|
+
<h3 id="added-in-v1521">Added in v1.5.21<a class="headerlink" href="#added-in-v1521" title="Permanent link">¶</a></h3>
|
|
12354
12468
|
<ul>
|
|
12355
12469
|
<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
12470
|
</ul>
|
|
12357
|
-
<h3 id="
|
|
12471
|
+
<h3 id="fixed-in-v1521">Fixed in v1.5.21<a class="headerlink" href="#fixed-in-v1521" title="Permanent link">¶</a></h3>
|
|
12358
12472
|
<ul>
|
|
12359
12473
|
<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
12474
|
</ul>
|
|
12361
|
-
<h3 id="
|
|
12475
|
+
<h3 id="dependencies-in-v1521">Dependencies in v1.5.21<a class="headerlink" href="#dependencies-in-v1521" title="Permanent link">¶</a></h3>
|
|
12362
12476
|
<ul>
|
|
12363
12477
|
<li><a href="https://github.com/nautobot/nautobot/issues/3882">#3882</a> - Removed deprecated distutils dependency.</li>
|
|
12364
12478
|
</ul>
|
|
12365
|
-
<h3 id="
|
|
12479
|
+
<h3 id="documentation-in-v1521">Documentation in v1.5.21<a class="headerlink" href="#documentation-in-v1521" title="Permanent link">¶</a></h3>
|
|
12366
12480
|
<ul>
|
|
12367
12481
|
<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
12482
|
<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
12483
|
<li><a href="https://github.com/nautobot/nautobot/issues/3888">#3888</a> - Changed note for celery concurrency in the docs.</li>
|
|
12370
12484
|
</ul>
|
|
12371
12485
|
<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="
|
|
12486
|
+
<h3 id="changed-in-v1520">Changed in v1.5.20<a class="headerlink" href="#changed-in-v1520" title="Permanent link">¶</a></h3>
|
|
12373
12487
|
<ul>
|
|
12374
12488
|
<li><a href="https://github.com/nautobot/nautobot/issues/3680">#3680</a> - Changed device component instantiation to be a separate method.</li>
|
|
12375
12489
|
</ul>
|
|
12376
|
-
<h3 id="
|
|
12490
|
+
<h3 id="fixed-in-v1520">Fixed in v1.5.20<a class="headerlink" href="#fixed-in-v1520" title="Permanent link">¶</a></h3>
|
|
12377
12491
|
<ul>
|
|
12378
12492
|
<li><a href="https://github.com/nautobot/nautobot/issues/3503">#3503</a> - Fixed FieldError when sorting VMs list by primary IP.</li>
|
|
12379
12493
|
<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
12494
|
<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
12495
|
<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
12496
|
</ul>
|
|
12383
|
-
<h3 id="
|
|
12497
|
+
<h3 id="documentation-in-v1520">Documentation in v1.5.20<a class="headerlink" href="#documentation-in-v1520" title="Permanent link">¶</a></h3>
|
|
12384
12498
|
<ul>
|
|
12385
12499
|
<li><a href="https://github.com/nautobot/nautobot/issues/3766">#3766</a> - Add troubleshooting steps for Azure AD SSO Group Sync example.</li>
|
|
12386
12500
|
<li><a href="https://github.com/nautobot/nautobot/issues/3400">#3400</a> - Added documentation on how to enable Jobs and Job hooks.</li>
|
|
12387
12501
|
</ul>
|
|
12388
12502
|
<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="
|
|
12503
|
+
<h3 id="security-in-v1519">Security in v1.5.19<a class="headerlink" href="#security-in-v1519" title="Permanent link">¶</a></h3>
|
|
12390
12504
|
<ul>
|
|
12391
12505
|
<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
12506
|
<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
12507
|
<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
12508
|
</ul>
|
|
12395
|
-
<h3 id="
|
|
12509
|
+
<h3 id="changed-in-v1519">Changed in v1.5.19<a class="headerlink" href="#changed-in-v1519" title="Permanent link">¶</a></h3>
|
|
12396
12510
|
<ul>
|
|
12397
12511
|
<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
12512
|
<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
12513
|
</ul>
|
|
12400
|
-
<h3 id="
|
|
12514
|
+
<h3 id="fixed-in-v1519">Fixed in v1.5.19<a class="headerlink" href="#fixed-in-v1519" title="Permanent link">¶</a></h3>
|
|
12401
12515
|
<ul>
|
|
12402
12516
|
<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
12517
|
<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
12518
|
</ul>
|
|
12405
|
-
<h3 id="
|
|
12519
|
+
<h3 id="dependencies-in-v1519">Dependencies in v1.5.19<a class="headerlink" href="#dependencies-in-v1519" title="Permanent link">¶</a></h3>
|
|
12406
12520
|
<ul>
|
|
12407
12521
|
<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
12522
|
<li><a href="https://github.com/nautobot/nautobot/issues/3549">#3549</a> - Updated <code>mkdocs</code> to <code>~1.4.3</code>.</li>
|
|
12409
12523
|
<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
12524
|
<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
12525
|
</ul>
|
|
12412
|
-
<h3 id="
|
|
12526
|
+
<h3 id="documentation-in-v1519">Documentation in v1.5.19<a class="headerlink" href="#documentation-in-v1519" title="Permanent link">¶</a></h3>
|
|
12413
12527
|
<ul>
|
|
12414
12528
|
<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
12529
|
<li><a href="https://github.com/nautobot/nautobot/issues/3703">#3703</a> - Added generic views documentation to navigation panel.</li>
|
|
12416
12530
|
</ul>
|
|
12417
|
-
<h3 id="
|
|
12531
|
+
<h3 id="housekeeping-in-v1519">Housekeeping in v1.5.19<a class="headerlink" href="#housekeeping-in-v1519" title="Permanent link">¶</a></h3>
|
|
12418
12532
|
<ul>
|
|
12419
12533
|
<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
12534
|
</ul>
|
|
12421
12535
|
<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="
|
|
12536
|
+
<h3 id="security-in-v1518">Security in v1.5.18<a class="headerlink" href="#security-in-v1518" title="Permanent link">¶</a></h3>
|
|
12423
12537
|
<ul>
|
|
12424
12538
|
<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
12539
|
</ul>
|
|
12426
|
-
<h3 id="
|
|
12540
|
+
<h3 id="added-in-v1518">Added in v1.5.18<a class="headerlink" href="#added-in-v1518" title="Permanent link">¶</a></h3>
|
|
12427
12541
|
<ul>
|
|
12428
12542
|
<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
12543
|
<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
12544
|
</ul>
|
|
12431
|
-
<h3 id="
|
|
12545
|
+
<h3 id="changed-in-v1518">Changed in v1.5.18<a class="headerlink" href="#changed-in-v1518" title="Permanent link">¶</a></h3>
|
|
12432
12546
|
<ul>
|
|
12433
12547
|
<li><a href="https://github.com/nautobot/nautobot/issues/3633">#3633</a> - Changed Custom Validator applicator to not require DB query.</li>
|
|
12434
12548
|
</ul>
|
|
12435
|
-
<h3 id="
|
|
12549
|
+
<h3 id="fixed-in-v1518">Fixed in v1.5.18<a class="headerlink" href="#fixed-in-v1518" title="Permanent link">¶</a></h3>
|
|
12436
12550
|
<ul>
|
|
12437
12551
|
<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
12552
|
<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
12553
|
<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
12554
|
<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
12555
|
</ul>
|
|
12442
|
-
<h3 id="
|
|
12556
|
+
<h3 id="documentation-in-v1518">Documentation in v1.5.18<a class="headerlink" href="#documentation-in-v1518" title="Permanent link">¶</a></h3>
|
|
12443
12557
|
<ul>
|
|
12444
12558
|
<li><a href="https://github.com/nautobot/nautobot/issues/2800">#2800</a> - Add model documentation to navigation panel.</li>
|
|
12445
12559
|
<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
12560
|
</ul>
|
|
12447
|
-
<h3 id="
|
|
12561
|
+
<h3 id="housekeeping-in-v1518">Housekeeping in v1.5.18<a class="headerlink" href="#housekeeping-in-v1518" title="Permanent link">¶</a></h3>
|
|
12448
12562
|
<ul>
|
|
12449
12563
|
<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
12564
|
<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
12565
|
<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
12566
|
</ul>
|
|
12453
12567
|
<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="
|
|
12568
|
+
<h3 id="added-in-v1517">Added in v1.5.17<a class="headerlink" href="#added-in-v1517" title="Permanent link">¶</a></h3>
|
|
12455
12569
|
<ul>
|
|
12456
12570
|
<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
12571
|
<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
12572
|
</ul>
|
|
12459
|
-
<h3 id="
|
|
12573
|
+
<h3 id="changed-in-v1517">Changed in v1.5.17<a class="headerlink" href="#changed-in-v1517" title="Permanent link">¶</a></h3>
|
|
12460
12574
|
<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>
|
|
12575
|
+
<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>
|
|
12576
|
+
<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
12577
|
<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
12578
|
</ul>
|
|
12465
|
-
<h3 id="
|
|
12579
|
+
<h3 id="fixed-in-v1517">Fixed in v1.5.17<a class="headerlink" href="#fixed-in-v1517" title="Permanent link">¶</a></h3>
|
|
12466
12580
|
<ul>
|
|
12467
12581
|
<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
12582
|
<li><a href="https://github.com/nautobot/nautobot/issues/3573">#3573</a> - Fixed advanced filtering on interface UI list page not working.</li>
|
|
12469
12583
|
<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
12584
|
</ul>
|
|
12471
|
-
<h3 id="
|
|
12585
|
+
<h3 id="dependencies-in-v1517">Dependencies in v1.5.17<a class="headerlink" href="#dependencies-in-v1517" title="Permanent link">¶</a></h3>
|
|
12472
12586
|
<ul>
|
|
12473
12587
|
<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
12588
|
</ul>
|
|
12475
|
-
<h3 id="
|
|
12589
|
+
<h3 id="documentation-in-v1517">Documentation in v1.5.17<a class="headerlink" href="#documentation-in-v1517" title="Permanent link">¶</a></h3>
|
|
12476
12590
|
<ul>
|
|
12477
12591
|
<li><a href="https://github.com/nautobot/nautobot/issues/3548">#3548</a> - Changed Git Repository docs to include admonition about Github Apps.</li>
|
|
12478
12592
|
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example for case sensitive typos.</li>
|
|
12479
12593
|
<li><a href="https://github.com/nautobot/nautobot/issues/3577">#3577</a> - Fixed <code>NautobotUIViewSet</code> documentation example not including imports.</li>
|
|
12480
12594
|
</ul>
|
|
12481
12595
|
<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="
|
|
12596
|
+
<h3 id="fixed-in-v1516">Fixed in v1.5.16<a class="headerlink" href="#fixed-in-v1516" title="Permanent link">¶</a></h3>
|
|
12483
12597
|
<ul>
|
|
12484
12598
|
<li><a href="https://github.com/nautobot/nautobot/issues/2944">#2944</a> - Fixed slow performance of relationships on ObjectListView.</li>
|
|
12485
12599
|
<li><a href="https://github.com/nautobot/nautobot/issues/3345">#3345</a> - Fixed missing Relationships in DynamicFilterForm.</li>
|
|
12486
12600
|
<li><a href="https://github.com/nautobot/nautobot/issues/3550">#3550</a> - Fixed display name of filtered relationships on ObjectListView.</li>
|
|
12487
12601
|
</ul>
|
|
12488
|
-
<h3 id="
|
|
12602
|
+
<h3 id="documentation-in-v1516">Documentation in v1.5.16<a class="headerlink" href="#documentation-in-v1516" title="Permanent link">¶</a></h3>
|
|
12489
12603
|
<ul>
|
|
12490
12604
|
<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
12605
|
<li><a href="https://github.com/nautobot/nautobot/issues/3557">#3557</a> - Added docs page for Circuit Maintenance.</li>
|
|
12492
12606
|
</ul>
|
|
12493
|
-
<h3 id="
|
|
12607
|
+
<h3 id="housekeeping-in-v1516">Housekeeping in v1.5.16<a class="headerlink" href="#housekeeping-in-v1516" title="Permanent link">¶</a></h3>
|
|
12494
12608
|
<ul>
|
|
12495
12609
|
<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
12610
|
</ul>
|
|
12497
12611
|
<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="
|
|
12612
|
+
<h3 id="security-in-v1515">Security in v1.5.15<a class="headerlink" href="#security-in-v1515" title="Permanent link">¶</a></h3>
|
|
12499
12613
|
<ul>
|
|
12500
12614
|
<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
12615
|
</ul>
|
|
12502
|
-
<h3 id="
|
|
12616
|
+
<h3 id="changed-in-v1515">Changed in v1.5.15<a class="headerlink" href="#changed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12503
12617
|
<ul>
|
|
12504
12618
|
<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
12619
|
<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
12620
|
</ul>
|
|
12507
|
-
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12621
|
+
<h3 id="removed-in-v1515">Removed in v1.5.15<a class="headerlink" href="#removed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12508
12622
|
<ul>
|
|
12509
12623
|
<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
12624
|
</ul>
|
|
12511
|
-
<h3 id="
|
|
12625
|
+
<h3 id="fixed-in-v1515">Fixed in v1.5.15<a class="headerlink" href="#fixed-in-v1515" title="Permanent link">¶</a></h3>
|
|
12512
12626
|
<ul>
|
|
12513
12627
|
<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
12628
|
</ul>
|
|
12515
|
-
<h3 id="
|
|
12629
|
+
<h3 id="dependencies-in-v1515">Dependencies in v1.5.15<a class="headerlink" href="#dependencies-in-v1515" title="Permanent link">¶</a></h3>
|
|
12516
12630
|
<ul>
|
|
12517
12631
|
<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
12632
|
</ul>
|
|
12519
|
-
<h3 id="
|
|
12633
|
+
<h3 id="documentation-in-v1515">Documentation in v1.5.15<a class="headerlink" href="#documentation-in-v1515" title="Permanent link">¶</a></h3>
|
|
12520
12634
|
<ul>
|
|
12521
12635
|
<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
12636
|
<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
12637
|
</ul>
|
|
12524
|
-
<h3 id="
|
|
12638
|
+
<h3 id="housekeeping-in-v1515">Housekeeping in v1.5.15<a class="headerlink" href="#housekeeping-in-v1515" title="Permanent link">¶</a></h3>
|
|
12525
12639
|
<ul>
|
|
12526
12640
|
<li><a href="https://github.com/nautobot/nautobot/issues/3206">#3206</a> - Fixed Docker tag syntax on prerelease workflow.</li>
|
|
12527
12641
|
</ul>
|
|
12528
12642
|
<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="
|
|
12643
|
+
<h3 id="added-in-v1514">Added in v1.5.14<a class="headerlink" href="#added-in-v1514" title="Permanent link">¶</a></h3>
|
|
12530
12644
|
<ul>
|
|
12531
12645
|
<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
12646
|
<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
12647
|
</ul>
|
|
12534
|
-
<h3 id="
|
|
12648
|
+
<h3 id="documentation-in-v1514">Documentation in v1.5.14<a class="headerlink" href="#documentation-in-v1514" title="Permanent link">¶</a></h3>
|
|
12535
12649
|
<ul>
|
|
12536
12650
|
<li><a href="https://github.com/nautobot/nautobot/issues/3434">#3434</a> - Changed the recommended exception to raise to end jobs early.</li>
|
|
12537
12651
|
</ul>
|
|
12538
|
-
<h3 id="
|
|
12652
|
+
<h3 id="housekeeping-in-v1514">Housekeeping in v1.5.14<a class="headerlink" href="#housekeeping-in-v1514" title="Permanent link">¶</a></h3>
|
|
12539
12653
|
<ul>
|
|
12540
12654
|
<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
12655
|
<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
12656
|
</ul>
|
|
12543
12657
|
<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="
|
|
12658
|
+
<h3 id="added-in-v1513">Added in v1.5.13<a class="headerlink" href="#added-in-v1513" title="Permanent link">¶</a></h3>
|
|
12545
12659
|
<ul>
|
|
12546
12660
|
<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
12661
|
<li><a href="https://github.com/nautobot/nautobot/issues/3410">#3410</a> - Added <code>-time</code> index for ObjectChange records.</li>
|
|
12548
12662
|
</ul>
|
|
12549
|
-
<h3 id="
|
|
12663
|
+
<h3 id="changed-in-v1513">Changed in v1.5.13<a class="headerlink" href="#changed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12550
12664
|
<ul>
|
|
12551
12665
|
<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
12666
|
</ul>
|
|
12553
|
-
<h3 id="
|
|
12667
|
+
<h3 id="removed-in-v1513">Removed in v1.5.13<a class="headerlink" href="#removed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12554
12668
|
<ul>
|
|
12555
12669
|
<li><a href="https://github.com/nautobot/nautobot/issues/3407">#3407</a> - Removed permission checks for ContentTypeAPIViewSet.</li>
|
|
12556
12670
|
</ul>
|
|
12557
|
-
<h3 id="
|
|
12671
|
+
<h3 id="fixed-in-v1513">Fixed in v1.5.13<a class="headerlink" href="#fixed-in-v1513" title="Permanent link">¶</a></h3>
|
|
12558
12672
|
<ul>
|
|
12559
12673
|
<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
12674
|
</ul>
|
|
12561
|
-
<h3 id="
|
|
12675
|
+
<h3 id="dependencies-in-v1513">Dependencies in v1.5.13<a class="headerlink" href="#dependencies-in-v1513" title="Permanent link">¶</a></h3>
|
|
12562
12676
|
<ul>
|
|
12563
12677
|
<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
12678
|
<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
12679
|
</ul>
|
|
12566
|
-
<h3 id="
|
|
12680
|
+
<h3 id="documentation-in-v1513">Documentation in v1.5.13<a class="headerlink" href="#documentation-in-v1513" title="Permanent link">¶</a></h3>
|
|
12567
12681
|
<ul>
|
|
12568
12682
|
<li><a href="https://github.com/nautobot/nautobot/issues/3416">#3416</a> - Updated Windows development documentation.</li>
|
|
12569
12683
|
</ul>
|
|
12570
12684
|
<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="
|
|
12685
|
+
<h3 id="added-in-v1512">Added in v1.5.12<a class="headerlink" href="#added-in-v1512" title="Permanent link">¶</a></h3>
|
|
12572
12686
|
<ul>
|
|
12573
12687
|
<li><a href="https://github.com/nautobot/nautobot/issues/3182">#3182</a> - Added support for assigning Config Context objects via Dynamic Groups.</li>
|
|
12574
12688
|
<li><a href="https://github.com/nautobot/nautobot/issues/3219">#3219</a> - Added support for custom fields to Dynamic Groups.</li>
|
|
12575
12689
|
<li><a href="https://github.com/nautobot/nautobot/issues/3220">#3220</a> - Added support for relationships to Dynamic Groups.</li>
|
|
12576
12690
|
</ul>
|
|
12577
|
-
<h3 id="
|
|
12691
|
+
<h3 id="changed-in-v1512">Changed in v1.5.12<a class="headerlink" href="#changed-in-v1512" title="Permanent link">¶</a></h3>
|
|
12578
12692
|
<ul>
|
|
12579
12693
|
<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
12694
|
</ul>
|
|
12581
|
-
<h3 id="
|
|
12695
|
+
<h3 id="fixed-in-v1512">Fixed in v1.5.12<a class="headerlink" href="#fixed-in-v1512" title="Permanent link">¶</a></h3>
|
|
12582
12696
|
<ul>
|
|
12583
12697
|
<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
12698
|
<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 +12700,43 @@ relationship:</p>
|
|
|
12586
12700
|
<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
12701
|
<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
12702
|
</ul>
|
|
12589
|
-
<h3 id="
|
|
12703
|
+
<h3 id="dependencies-in-v1512">Dependencies in v1.5.12<a class="headerlink" href="#dependencies-in-v1512" title="Permanent link">¶</a></h3>
|
|
12590
12704
|
<ul>
|
|
12591
12705
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>GitPython</code> to 3.1.31.</li>
|
|
12592
12706
|
<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
12707
|
<li><a href="https://github.com/nautobot/nautobot/issues/3388">#3388</a> - Updated <code>netutils</code> to 1.4.1.</li>
|
|
12594
12708
|
</ul>
|
|
12595
12709
|
<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="
|
|
12710
|
+
<h3 id="security-in-v1511">Security in v1.5.11<a class="headerlink" href="#security-in-v1511" title="Permanent link">¶</a></h3>
|
|
12597
12711
|
<ul>
|
|
12598
12712
|
<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
12713
|
<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
12714
|
<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
12715
|
</ul>
|
|
12602
|
-
<h3 id="
|
|
12716
|
+
<h3 id="added-in-v1511">Added in v1.5.11<a class="headerlink" href="#added-in-v1511" title="Permanent link">¶</a></h3>
|
|
12603
12717
|
<ul>
|
|
12604
12718
|
<li><a href="https://github.com/nautobot/nautobot/issues/3168">#3168</a> - Add device name to bulk interface rename header.</li>
|
|
12605
12719
|
</ul>
|
|
12606
|
-
<h3 id="
|
|
12720
|
+
<h3 id="changed-in-v1511">Changed in v1.5.11<a class="headerlink" href="#changed-in-v1511" title="Permanent link">¶</a></h3>
|
|
12607
12721
|
<ul>
|
|
12608
12722
|
<li><a href="https://github.com/nautobot/nautobot/issues/3134">#3134</a> - Migrate ModelMultipleChoiceFilters to NaturalKeyOrPKMultipleChoiceFilter.</li>
|
|
12609
12723
|
<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
12724
|
</ul>
|
|
12611
|
-
<h3 id="
|
|
12725
|
+
<h3 id="fixed-in-v1511">Fixed in v1.5.11<a class="headerlink" href="#fixed-in-v1511" title="Permanent link">¶</a></h3>
|
|
12612
12726
|
<ul>
|
|
12613
12727
|
<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
12728
|
<li><a href="https://github.com/nautobot/nautobot/issues/3274">#3274</a> - Fixed ObjectListViewMixin's filtering when exporting objects in NautobotUIViewSet.</li>
|
|
12615
12729
|
<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
12730
|
<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
12731
|
</ul>
|
|
12618
|
-
<h3 id="
|
|
12732
|
+
<h3 id="dependencies-in-v1511">Dependencies in v1.5.11<a class="headerlink" href="#dependencies-in-v1511" title="Permanent link">¶</a></h3>
|
|
12619
12733
|
<ul>
|
|
12620
12734
|
<li><a href="https://github.com/nautobot/nautobot/issues/3251">#3251</a> - Updated <code>oauthlib</code> to 3.2.2.</li>
|
|
12621
12735
|
<li><a href="https://github.com/nautobot/nautobot/issues/3258">#3258</a> - Updated <code>cryptography</code> to 39.0.1.</li>
|
|
12622
12736
|
<li><a href="https://github.com/nautobot/nautobot/issues/3320">#3320</a> - Updated <code>django</code> to 3.2.18.</li>
|
|
12623
12737
|
<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
12738
|
</ul>
|
|
12625
|
-
<h3 id="
|
|
12739
|
+
<h3 id="documentation-in-v1511">Documentation in v1.5.11<a class="headerlink" href="#documentation-in-v1511" title="Permanent link">¶</a></h3>
|
|
12626
12740
|
<ul>
|
|
12627
12741
|
<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
12742
|
<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 +12746,7 @@ relationship:</p>
|
|
|
12632
12746
|
<li><a href="https://github.com/nautobot/nautobot/issues/3327">#3327</a> - Fixed Azure AD tenant configuration documentation.</li>
|
|
12633
12747
|
<li><a href="https://github.com/nautobot/nautobot/issues/3332">#3332</a> - Fixed missing imports in Secrets Providers plugin development documentation.</li>
|
|
12634
12748
|
</ul>
|
|
12635
|
-
<h3 id="
|
|
12749
|
+
<h3 id="housekeeping-in-v1511">Housekeeping in v1.5.11<a class="headerlink" href="#housekeeping-in-v1511" title="Permanent link">¶</a></h3>
|
|
12636
12750
|
<ul>
|
|
12637
12751
|
<li><a href="https://github.com/nautobot/nautobot/issues/2580">#2580</a> - Fixed fragile generic view test.</li>
|
|
12638
12752
|
<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 +12755,89 @@ relationship:</p>
|
|
|
12641
12755
|
<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
12756
|
</ul>
|
|
12643
12757
|
<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="
|
|
12758
|
+
<h3 id="security-in-v1510">Security in v1.5.10<a class="headerlink" href="#security-in-v1510" title="Permanent link">¶</a></h3>
|
|
12645
12759
|
<ul>
|
|
12646
12760
|
<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
12761
|
</ul>
|
|
12648
|
-
<h3 id="
|
|
12762
|
+
<h3 id="added-in-v1510">Added in v1.5.10<a class="headerlink" href="#added-in-v1510" title="Permanent link">¶</a></h3>
|
|
12649
12763
|
<ul>
|
|
12650
12764
|
<li><a href="https://github.com/nautobot/nautobot/issues/3013">#3013</a> - Added <code>CELERY_WORKER_PROMETHEUS_PORTS</code> configuration setting</li>
|
|
12651
12765
|
<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
12766
|
<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
12767
|
</ul>
|
|
12654
|
-
<h3 id="
|
|
12768
|
+
<h3 id="fixed-in-v1510">Fixed in v1.5.10<a class="headerlink" href="#fixed-in-v1510" title="Permanent link">¶</a></h3>
|
|
12655
12769
|
<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
|
|
12770
|
+
<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
12771
|
</ul>
|
|
12658
|
-
<h3 id="
|
|
12772
|
+
<h3 id="dependencies-in-v1510">Dependencies in v1.5.10<a class="headerlink" href="#dependencies-in-v1510" title="Permanent link">¶</a></h3>
|
|
12659
12773
|
<ul>
|
|
12660
12774
|
<li><a href="https://github.com/nautobot/nautobot/issues/3227">#3227</a> - Updated <code>django</code> to 3.2.17.</li>
|
|
12661
12775
|
</ul>
|
|
12662
|
-
<h3 id="
|
|
12776
|
+
<h3 id="housekeeping-in-v1510">Housekeeping in v1.5.10<a class="headerlink" href="#housekeeping-in-v1510" title="Permanent link">¶</a></h3>
|
|
12663
12777
|
<ul>
|
|
12664
12778
|
<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
12779
|
<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
|
|
12780
|
+
<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
12781
|
<li><a href="https://github.com/nautobot/nautobot/issues/3198">#3198</a> - Added dependencies towncrier section, removed extra newline.</li>
|
|
12668
12782
|
<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
12783
|
</ul>
|
|
12670
12784
|
<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="
|
|
12785
|
+
<h3 id="changed-in-v159">Changed in v1.5.9<a class="headerlink" href="#changed-in-v159" title="Permanent link">¶</a></h3>
|
|
12672
12786
|
<ul>
|
|
12673
12787
|
<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
12788
|
</ul>
|
|
12675
|
-
<h3 id="
|
|
12789
|
+
<h3 id="fixed-in-v159">Fixed in v1.5.9<a class="headerlink" href="#fixed-in-v159" title="Permanent link">¶</a></h3>
|
|
12676
12790
|
<ul>
|
|
12677
12791
|
<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
12792
|
<li><a href="https://github.com/nautobot/nautobot/issues/3155">#3155</a> - Aligned buttons on device component create page.</li>
|
|
12679
12793
|
<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
12794
|
</ul>
|
|
12681
|
-
<h3 id="
|
|
12795
|
+
<h3 id="dependencies-in-v159">Dependencies in v1.5.9<a class="headerlink" href="#dependencies-in-v159" title="Permanent link">¶</a></h3>
|
|
12682
12796
|
<ul>
|
|
12683
12797
|
<li><a href="https://github.com/nautobot/nautobot/issues/3144">#3144</a> - Updated <code>netutils</code> to <code>~1.4.0</code></li>
|
|
12684
12798
|
</ul>
|
|
12685
|
-
<h3 id="
|
|
12799
|
+
<h3 id="housekeeping-in-v159">Housekeeping in v1.5.9<a class="headerlink" href="#housekeeping-in-v159" title="Permanent link">¶</a></h3>
|
|
12686
12800
|
<ul>
|
|
12687
12801
|
<li><a href="https://github.com/nautobot/nautobot/issues/3117">#3117</a> - Update Renovate config to batch lockfile updates to next.</li>
|
|
12688
12802
|
</ul>
|
|
12689
12803
|
<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="
|
|
12804
|
+
<h3 id="security-in-v158">Security in v1.5.8<a class="headerlink" href="#security-in-v158" title="Permanent link">¶</a></h3>
|
|
12691
12805
|
<ul>
|
|
12692
12806
|
<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
12807
|
<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
12808
|
<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
12809
|
</ul>
|
|
12696
|
-
<h3 id="
|
|
12810
|
+
<h3 id="changed-in-v158">Changed in v1.5.8<a class="headerlink" href="#changed-in-v158" title="Permanent link">¶</a></h3>
|
|
12697
12811
|
<ul>
|
|
12698
12812
|
<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
12813
|
</ul>
|
|
12700
|
-
<h3 id="
|
|
12814
|
+
<h3 id="fixed-in-v158">Fixed in v1.5.8<a class="headerlink" href="#fixed-in-v158" title="Permanent link">¶</a></h3>
|
|
12701
12815
|
<ul>
|
|
12702
12816
|
<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
12817
|
<li><a href="https://github.com/nautobot/nautobot/issues/3097">#3097</a> - Fixed scrolling past select dropdown in modals.</li>
|
|
12704
12818
|
<li><a href="https://github.com/nautobot/nautobot/issues/3104">#3104</a> - Fixed bug preventing filters from being removed from list views.</li>
|
|
12705
12819
|
</ul>
|
|
12706
|
-
<h3 id="
|
|
12820
|
+
<h3 id="documentation-in-v158">Documentation in v1.5.8<a class="headerlink" href="#documentation-in-v158" title="Permanent link">¶</a></h3>
|
|
12707
12821
|
<ul>
|
|
12708
12822
|
<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
12823
|
<li><a href="https://github.com/nautobot/nautobot/issues/3103">#3103</a> - Added Redis troubleshooting section to installation docs.</li>
|
|
12710
12824
|
<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
12825
|
</ul>
|
|
12712
|
-
<h3 id="
|
|
12826
|
+
<h3 id="housekeeping-in-v158">Housekeeping in v1.5.8<a class="headerlink" href="#housekeeping-in-v158" title="Permanent link">¶</a></h3>
|
|
12713
12827
|
<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>
|
|
12828
|
+
<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
12829
|
</ul>
|
|
12716
12830
|
<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="
|
|
12831
|
+
<h3 id="security-in-v157">Security in v1.5.7<a class="headerlink" href="#security-in-v157" title="Permanent link">¶</a></h3>
|
|
12718
12832
|
<ul>
|
|
12719
12833
|
<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
12834
|
</ul>
|
|
12721
|
-
<h3 id="
|
|
12835
|
+
<h3 id="fixed-in-v157">Fixed in v1.5.7<a class="headerlink" href="#fixed-in-v157" title="Permanent link">¶</a></h3>
|
|
12722
12836
|
<ul>
|
|
12723
12837
|
<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
12838
|
</ul>
|
|
12725
12839
|
<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="
|
|
12840
|
+
<h3 id="added-in-v156">Added in v1.5.6<a class="headerlink" href="#added-in-v156" title="Permanent link">¶</a></h3>
|
|
12727
12841
|
<ul>
|
|
12728
12842
|
<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
12843
|
<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 +12846,7 @@ relationship:</p>
|
|
|
12732
12846
|
<li><a href="https://github.com/nautobot/nautobot/issues/2966">#2966</a> - Added device name to rack elevation with images.</li>
|
|
12733
12847
|
<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
12848
|
</ul>
|
|
12735
|
-
<h3 id="
|
|
12849
|
+
<h3 id="fixed-in-v156">Fixed in v1.5.6<a class="headerlink" href="#fixed-in-v156" title="Permanent link">¶</a></h3>
|
|
12736
12850
|
<ul>
|
|
12737
12851
|
<li><a href="https://github.com/nautobot/nautobot/issues/2898">#2898</a> - Disabled sorting on Computed Field column.</li>
|
|
12738
12852
|
<li><a href="https://github.com/nautobot/nautobot/issues/2967">#2967</a> - Fixed inverted device images in dark mode.</li>
|
|
@@ -12742,60 +12856,60 @@ relationship:</p>
|
|
|
12742
12856
|
<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
12857
|
<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
12858
|
</ul>
|
|
12745
|
-
<h3 id="
|
|
12859
|
+
<h3 id="dependencies-in-v156">Dependencies in v1.5.6<a class="headerlink" href="#dependencies-in-v156" title="Permanent link">¶</a></h3>
|
|
12746
12860
|
<ul>
|
|
12747
12861
|
<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
12862
|
<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
12863
|
</ul>
|
|
12750
|
-
<h3 id="
|
|
12864
|
+
<h3 id="documentation-in-v156">Documentation in v1.5.6<a class="headerlink" href="#documentation-in-v156" title="Permanent link">¶</a></h3>
|
|
12751
12865
|
<ul>
|
|
12752
12866
|
<li><a href="https://github.com/nautobot/nautobot/issues/2589">#2589</a> - Updated all screenshots on the README.md to gifs.</li>
|
|
12753
12867
|
</ul>
|
|
12754
|
-
<h3 id="
|
|
12868
|
+
<h3 id="housekeeping-in-v156">Housekeeping in v1.5.6<a class="headerlink" href="#housekeeping-in-v156" title="Permanent link">¶</a></h3>
|
|
12755
12869
|
<ul>
|
|
12756
12870
|
<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
12871
|
<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
12872
|
<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
12873
|
</ul>
|
|
12760
12874
|
<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="
|
|
12875
|
+
<h3 id="changed-in-v155">Changed in v1.5.5<a class="headerlink" href="#changed-in-v155" title="Permanent link">¶</a></h3>
|
|
12762
12876
|
<ul>
|
|
12763
12877
|
<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
12878
|
</ul>
|
|
12765
|
-
<h3 id="
|
|
12879
|
+
<h3 id="fixed-in-v155">Fixed in v1.5.5<a class="headerlink" href="#fixed-in-v155" title="Permanent link">¶</a></h3>
|
|
12766
12880
|
<ul>
|
|
12767
12881
|
<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
12882
|
<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
12883
|
</ul>
|
|
12770
|
-
<h3 id="
|
|
12884
|
+
<h3 id="housekeeping-in-v155">Housekeeping in v1.5.5<a class="headerlink" href="#housekeeping-in-v155" title="Permanent link">¶</a></h3>
|
|
12771
12885
|
<ul>
|
|
12772
12886
|
<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
12887
|
</ul>
|
|
12774
12888
|
<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="
|
|
12889
|
+
<h3 id="fixed-in-v154">Fixed in v1.5.4<a class="headerlink" href="#fixed-in-v154" title="Permanent link">¶</a></h3>
|
|
12776
12890
|
<ul>
|
|
12777
12891
|
<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
12892
|
<li><a href="https://github.com/nautobot/nautobot/issues/2931">#2931</a> - Fixed title and breadcrumb rendering in NautobotUIViewSet list views.</li>
|
|
12779
12893
|
<li><a href="https://github.com/nautobot/nautobot/issues/2936">#2936</a> - Fixed NautobotUIViewSet views not being able to delete objects.</li>
|
|
12780
12894
|
</ul>
|
|
12781
|
-
<h3 id="
|
|
12895
|
+
<h3 id="documentation-in-v154">Documentation in v1.5.4<a class="headerlink" href="#documentation-in-v154" title="Permanent link">¶</a></h3>
|
|
12782
12896
|
<ul>
|
|
12783
12897
|
<li><a href="https://github.com/nautobot/nautobot/issues/86">#86</a> - Added user-guide for relationships and S3 storage backends.</li>
|
|
12784
12898
|
</ul>
|
|
12785
12899
|
<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="
|
|
12900
|
+
<h3 id="fixed-in-v153">Fixed in v1.5.3<a class="headerlink" href="#fixed-in-v153" title="Permanent link">¶</a></h3>
|
|
12787
12901
|
<ul>
|
|
12788
12902
|
<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
12903
|
</ul>
|
|
12790
12904
|
<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="
|
|
12905
|
+
<h3 id="added-in-v152">Added in v1.5.2<a class="headerlink" href="#added-in-v152" title="Permanent link">¶</a></h3>
|
|
12792
12906
|
<ul>
|
|
12793
12907
|
<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
12908
|
<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
12909
|
<li><a href="https://github.com/nautobot/nautobot/issues/2759">#2759</a> - Add prometheus metrics for health check results</li>
|
|
12796
12910
|
<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
12911
|
</ul>
|
|
12798
|
-
<h3 id="
|
|
12912
|
+
<h3 id="changed-in-v152">Changed in v1.5.2<a class="headerlink" href="#changed-in-v152" title="Permanent link">¶</a></h3>
|
|
12799
12913
|
<ul>
|
|
12800
12914
|
<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
12915
|
<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 +12918,21 @@ relationship:</p>
|
|
|
12804
12918
|
<li><a href="https://github.com/nautobot/nautobot/issues/2838">#2838</a> - Fixed filter selection box colors in dark mode.</li>
|
|
12805
12919
|
<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
12920
|
</ul>
|
|
12807
|
-
<h3 id="
|
|
12921
|
+
<h3 id="fixed-in-v152">Fixed in v1.5.2<a class="headerlink" href="#fixed-in-v152" title="Permanent link">¶</a></h3>
|
|
12808
12922
|
<ul>
|
|
12809
12923
|
<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
12924
|
<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
12925
|
<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
12926
|
<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>
|
|
12927
|
+
<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
12928
|
<li><a href="https://github.com/nautobot/nautobot/issues/2833">#2833</a> - Fixed plugin banner issue and breadcrumb rendering issue in NautobotHTMLRenderer.</li>
|
|
12815
12929
|
<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
12930
|
</ul>
|
|
12817
|
-
<h3 id="
|
|
12931
|
+
<h3 id="dependencies-in-v152">Dependencies in v1.5.2<a class="headerlink" href="#dependencies-in-v152" title="Permanent link">¶</a></h3>
|
|
12818
12932
|
<ul>
|
|
12819
12933
|
<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
12934
|
</ul>
|
|
12821
|
-
<h3 id="
|
|
12935
|
+
<h3 id="documentation-in-v152">Documentation in v1.5.2<a class="headerlink" href="#documentation-in-v152" title="Permanent link">¶</a></h3>
|
|
12822
12936
|
<ul>
|
|
12823
12937
|
<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
12938
|
<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 +12940,18 @@ relationship:</p>
|
|
|
12826
12940
|
<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
12941
|
<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
12942
|
</ul>
|
|
12829
|
-
<h3 id="
|
|
12943
|
+
<h3 id="housekeeping-in-v152">Housekeeping in v1.5.2<a class="headerlink" href="#housekeeping-in-v152" title="Permanent link">¶</a></h3>
|
|
12830
12944
|
<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>
|
|
12945
|
+
<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
12946
|
<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
12947
|
</ul>
|
|
12834
12948
|
<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="
|
|
12949
|
+
<h3 id="added-in-v151">Added in v1.5.1<a class="headerlink" href="#added-in-v151" title="Permanent link">¶</a></h3>
|
|
12836
12950
|
<ul>
|
|
12837
12951
|
<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
12952
|
<li><a href="https://github.com/nautobot/nautobot/issues/2740">#2740</a> - Added ObjectChangeLogView and ObjectNotesView Viewset mixins and routes.</li>
|
|
12839
12953
|
</ul>
|
|
12840
|
-
<h3 id="
|
|
12954
|
+
<h3 id="fixed-in-v151">Fixed in v1.5.1<a class="headerlink" href="#fixed-in-v151" title="Permanent link">¶</a></h3>
|
|
12841
12955
|
<ul>
|
|
12842
12956
|
<li><a href="https://github.com/nautobot/nautobot/issues/2470">#2470</a> - Fixed incorrect automatic generation of Location slugs in the UI.</li>
|
|
12843
12957
|
<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 +12959,15 @@ relationship:</p>
|
|
|
12845
12959
|
<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
12960
|
<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
12961
|
</ul>
|
|
12848
|
-
<h3 id="
|
|
12962
|
+
<h3 id="housekeeping-in-v151">Housekeeping in v1.5.1<a class="headerlink" href="#housekeeping-in-v151" title="Permanent link">¶</a></h3>
|
|
12849
12963
|
<ul>
|
|
12850
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/1813">#1813</a> - Updated
|
|
12964
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/1813">#1813</a> - Updated Example Plugin to use NautobotUIViewSet.</li>
|
|
12851
12965
|
<li><a href="https://github.com/nautobot/nautobot/issues/2556">#2556</a> - Revised TODO/FIXME comments for more clarity.</li>
|
|
12852
12966
|
</ul>
|
|
12853
12967
|
<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
12968
|
<p>Unchanged from v1.5.0-beta.1.</p>
|
|
12855
12969
|
<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="
|
|
12970
|
+
<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
12971
|
<ul>
|
|
12858
12972
|
<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
12973
|
<li><a href="https://github.com/nautobot/nautobot/issues/899">#899</a> - Added support for grouping of Custom Fields.</li>
|
|
@@ -12868,7 +12982,7 @@ relationship:</p>
|
|
|
12868
12982
|
<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
12983
|
<li><a href="https://github.com/nautobot/nautobot/issues/2617">#2617</a> - Added dynamic filter form support to specialized list views.</li>
|
|
12870
12984
|
</ul>
|
|
12871
|
-
<h3 id="
|
|
12985
|
+
<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
12986
|
<ul>
|
|
12873
12987
|
<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
12988
|
<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 +12991,7 @@ relationship:</p>
|
|
|
12877
12991
|
<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
12992
|
<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
12993
|
</ul>
|
|
12880
|
-
<h3 id="
|
|
12994
|
+
<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
12995
|
<ul>
|
|
12882
12996
|
<li><a href="https://github.com/nautobot/nautobot/issues/2266">#2266</a> - Fixed navbar floating over main viewport scrollbar.</li>
|
|
12883
12997
|
<li><a href="https://github.com/nautobot/nautobot/issues/2388">#2388</a> - Return "—" instead of "None" when relationship column is empty.</li>
|
|
@@ -12886,7 +13000,7 @@ relationship:</p>
|
|
|
12886
13000
|
<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
13001
|
<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
13002
|
</ul>
|
|
12889
|
-
<h3 id="
|
|
13003
|
+
<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
13004
|
<ul>
|
|
12891
13005
|
<li><a href="https://github.com/nautobot/nautobot/issues/1983">#1983</a> - Updated <code>django-taggit</code> dependency to 3.0.0.</li>
|
|
12892
13006
|
<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 +13011,11 @@ relationship:</p>
|
|
|
12897
13011
|
<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
13012
|
<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
13013
|
</ul>
|
|
12900
|
-
<h3 id="
|
|
13014
|
+
<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
13015
|
<ul>
|
|
12902
13016
|
<li><a href="https://github.com/nautobot/nautobot/issues/270">#270</a> - Added custom fields user guide to documentation.</li>
|
|
12903
13017
|
</ul>
|
|
12904
|
-
<h3 id="
|
|
13018
|
+
<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
13019
|
<ul>
|
|
12906
13020
|
<li><a href="https://github.com/nautobot/nautobot/issues/192">#192</a> - Eliminated Unit Test noisy output.</li>
|
|
12907
13021
|
<li><a href="https://github.com/nautobot/nautobot/issues/2227">#2227</a> - Added generating performance report options to 'invoke unittest'.</li>
|
|
@@ -13031,7 +13145,7 @@ relationship:</p>
|
|
|
13031
13145
|
|
|
13032
13146
|
|
|
13033
13147
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
13034
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
13148
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
|
|
13035
13149
|
</a>
|
|
13036
13150
|
|
|
13037
13151
|
|
|
@@ -13039,7 +13153,7 @@ relationship:</p>
|
|
|
13039
13153
|
|
|
13040
13154
|
|
|
13041
13155
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
13042
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.
|
|
13156
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
|
|
13043
13157
|
</a>
|
|
13044
13158
|
|
|
13045
13159
|
|
|
@@ -13047,7 +13161,7 @@ relationship:</p>
|
|
|
13047
13161
|
|
|
13048
13162
|
|
|
13049
13163
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
13050
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
13164
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1s21.16-47.06 47.06-47.06h47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
|
|
13051
13165
|
</a>
|
|
13052
13166
|
|
|
13053
13167
|
|
|
@@ -13055,7 +13169,7 @@ relationship:</p>
|
|
|
13055
13169
|
|
|
13056
13170
|
|
|
13057
13171
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
13058
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.
|
|
13172
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
|
|
13059
13173
|
</a>
|
|
13060
13174
|
|
|
13061
13175
|
|
|
@@ -13063,7 +13177,7 @@ relationship:</p>
|
|
|
13063
13177
|
|
|
13064
13178
|
|
|
13065
13179
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
13066
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.
|
|
13180
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253"/></svg>
|
|
13067
13181
|
</a>
|
|
13068
13182
|
|
|
13069
13183
|
</div>
|
|
@@ -13078,10 +13192,10 @@ relationship:</p>
|
|
|
13078
13192
|
</div>
|
|
13079
13193
|
|
|
13080
13194
|
|
|
13081
|
-
<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.
|
|
13195
|
+
<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.f8cc74c7.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
13196
|
|
|
13083
13197
|
|
|
13084
|
-
<script src="../assets/javascripts/bundle.
|
|
13198
|
+
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
13085
13199
|
|
|
13086
13200
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
13087
13201
|
|