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