nautobot 2.4.0__py3-none-any.whl → 2.4.0b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +0 -1
- nautobot/circuits/api/views.py +8 -4
- nautobot/circuits/tables.py +1 -2
- nautobot/circuits/templates/circuits/circuit_create.html +7 -1
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +10 -6
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +16 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +9 -3
- nautobot/core/api/schema.py +2 -13
- nautobot/core/api/serializers.py +34 -40
- nautobot/core/api/views.py +4 -56
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +1 -1
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +16 -21
- nautobot/core/fixtures/user-data.json +59 -0
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +11 -14
- nautobot/core/forms/forms.py +2 -33
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +7 -28
- nautobot/core/jobs/cleanup.py +12 -48
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +1 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +3 -6
- nautobot/core/settings.py +2 -29
- nautobot/core/settings.yaml +0 -21
- nautobot/core/tables.py +60 -74
- nautobot/core/templates/inc/media.html +0 -3
- nautobot/core/templates/inc/nav_menu.html +0 -1
- nautobot/core/templates/nautobot_config.py.j2 +0 -13
- nautobot/core/templates/search.html +0 -7
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +0 -7
- nautobot/core/templatetags/helpers.py +2 -11
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +15 -170
- nautobot/core/testing/filters.py +2 -25
- nautobot/core/testing/forms.py +0 -2
- nautobot/core/testing/mixins.py +2 -7
- nautobot/core/testing/views.py +29 -44
- nautobot/core/tests/integration/test_app_home.py +1 -0
- nautobot/core/tests/integration/test_app_navbar.py +1 -0
- nautobot/core/tests/integration/test_filters.py +2 -0
- nautobot/core/tests/integration/test_home.py +1 -0
- nautobot/core/tests/integration/test_navbar.py +1 -0
- nautobot/core/tests/integration/test_view_authentication.py +0 -1
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +1 -98
- nautobot/core/tests/test_csv.py +3 -25
- nautobot/core/tests/test_forms.py +0 -1
- nautobot/core/tests/test_jobs.py +1 -303
- nautobot/core/tests/test_settings_schema.py +0 -7
- nautobot/core/tests/test_tables.py +0 -100
- nautobot/core/tests/test_utils.py +1 -63
- nautobot/core/tests/test_views.py +3 -30
- nautobot/core/ui/nav.py +0 -1
- nautobot/core/ui/object_detail.py +1 -15
- nautobot/core/urls.py +0 -11
- nautobot/core/utils/lookup.py +8 -11
- nautobot/core/utils/requests.py +9 -24
- nautobot/core/views/__init__.py +0 -42
- nautobot/core/views/generic.py +176 -78
- nautobot/core/views/mixins.py +34 -94
- nautobot/core/views/renderers.py +6 -6
- nautobot/dcim/api/serializers.py +62 -54
- nautobot/dcim/api/views.py +113 -47
- nautobot/dcim/filters/__init__.py +2 -31
- nautobot/dcim/forms.py +17 -36
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +20 -22
- nautobot/dcim/models/devices.py +1 -10
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +5 -6
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +5 -7
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +7 -1
- nautobot/dcim/templates/dcim/controller_retrieve.html +9 -1
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +0 -2
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +0 -5
- nautobot/dcim/templates/dcim/device.html +9 -1
- nautobot/dcim/templates/dcim/device_edit.html +37 -36
- nautobot/dcim/templates/dcim/location.html +9 -1
- nautobot/dcim/templates/dcim/location_edit.html +7 -1
- nautobot/dcim/templates/dcim/rack.html +9 -1
- nautobot/dcim/templates/dcim/rack_edit.html +7 -1
- nautobot/dcim/templates/dcim/rackreservation.html +9 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +9 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +7 -1
- nautobot/dcim/tests/test_api.py +3 -16
- nautobot/dcim/tests/test_filters.py +0 -33
- nautobot/dcim/tests/test_forms.py +2 -51
- nautobot/dcim/tests/test_graphql.py +0 -52
- nautobot/dcim/tests/test_models.py +5 -34
- nautobot/dcim/tests/test_views.py +83 -21
- nautobot/dcim/views.py +13 -1
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +85 -90
- nautobot/extras/api/views.py +27 -22
- nautobot/extras/constants.py +0 -2
- nautobot/extras/filters/__init__.py +6 -8
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +31 -139
- nautobot/extras/forms/mixins.py +5 -13
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +2 -1
- nautobot/extras/jobs.py +12 -70
- nautobot/extras/managers.py +1 -3
- nautobot/extras/migrations/0018_joblog_data_migration.py +9 -7
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +11 -12
- nautobot/extras/models/groups.py +9 -11
- nautobot/extras/models/jobs.py +4 -23
- nautobot/extras/models/models.py +2 -2
- nautobot/extras/plugins/__init__.py +2 -13
- nautobot/extras/plugins/marketplace_manifest.yml +79 -84
- nautobot/extras/plugins/tables.py +14 -16
- nautobot/extras/plugins/views.py +69 -65
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/tables.py +5 -7
- nautobot/extras/templates/extras/dynamicgroup.html +9 -1
- nautobot/extras/templates/extras/job_detail.html +0 -16
- nautobot/extras/templates/extras/job_edit.html +0 -1
- nautobot/extras/templates/extras/jobqueue_retrieve.html +9 -1
- nautobot/extras/templates/extras/marketplace.html +11 -29
- nautobot/extras/templates/extras/plugin_detail.html +15 -32
- nautobot/extras/templates/extras/plugins_tiles.html +10 -21
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +1 -3
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/integration/test_plugin_banner.py +2 -0
- nautobot/extras/tests/test_api.py +13 -13
- nautobot/extras/tests/test_customfields.py +1 -1
- nautobot/extras/tests/test_datasources.py +1 -2
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +1 -20
- nautobot/extras/tests/test_jobs.py +19 -160
- nautobot/extras/tests/test_models.py +10 -10
- nautobot/extras/tests/test_plugins.py +9 -62
- nautobot/extras/tests/test_relationships.py +9 -120
- nautobot/extras/tests/test_views.py +191 -52
- nautobot/extras/utils.py +2 -3
- nautobot/extras/views.py +98 -30
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +33 -41
- nautobot/ipam/api/views.py +117 -68
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +2 -3
- nautobot/ipam/lookups.py +62 -101
- nautobot/ipam/models.py +16 -66
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +7 -23
- nautobot/ipam/templates/ipam/ipaddress.html +9 -1
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +7 -1
- nautobot/ipam/templates/ipam/ipaddress_edit.html +7 -1
- nautobot/ipam/templates/ipam/prefix.html +9 -1
- nautobot/ipam/templates/ipam/prefix_edit.html +7 -1
- nautobot/ipam/templates/ipam/vlan.html +9 -1
- nautobot/ipam/templates/ipam/vlan_edit.html +7 -1
- nautobot/ipam/templates/ipam/vrf_edit.html +7 -1
- nautobot/ipam/tests/test_api.py +3 -416
- nautobot/ipam/tests/test_forms.py +47 -49
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +34 -95
- nautobot/ipam/tests/test_querysets.py +1 -63
- nautobot/ipam/tests/test_views.py +0 -3
- nautobot/ipam/utils/__init__.py +6 -36
- nautobot/ipam/views.py +87 -61
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +2 -40
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/docs/404.html +4 -46
- nautobot/project-static/docs/apps/index.html +4 -46
- nautobot/project-static/docs/apps/nautobot-apps.html +6 -47
- nautobot/project-static/docs/assets/_mkdocstrings.css +1 -25
- nautobot/project-static/docs/assets/javascripts/{bundle.88dd0f4e.min.js → bundle.83f73b43.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.88dd0f4e.min.js.map → bundle.83f73b43.min.js.map} +2 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +10 -62
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +7 -59
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +122 -374
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +18 -90
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +21 -95
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +6 -53
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +5 -52
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +17 -79
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +28 -102
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +21 -108
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +38 -131
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +65 -239
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +165 -581
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +36 -109
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +167 -453
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +211 -493
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +8 -60
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +15 -71
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +55 -407
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +205 -585
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +412 -858
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +7 -59
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +186 -448
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +147 -365
- nautobot/project-static/docs/development/apps/api/configuration-view.html +4 -46
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/global-search.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/graphql.html +4 -46
- nautobot/project-static/docs/development/apps/api/models/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +4 -46
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +7 -68
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +4 -46
- nautobot/project-static/docs/development/apps/api/prometheus.html +4 -46
- nautobot/project-static/docs/development/apps/api/setup.html +4 -46
- nautobot/project-static/docs/development/apps/api/testing.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +4 -46
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/base-template.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/index.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/notes.html +4 -46
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +6 -52
- nautobot/project-static/docs/development/apps/api/views/urls.html +4 -46
- nautobot/project-static/docs/development/apps/index.html +4 -46
- nautobot/project-static/docs/development/apps/migration/code-updates.html +4 -46
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +4 -46
- nautobot/project-static/docs/development/apps/migration/from-v1.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +4 -46
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +4 -46
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +8 -50
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +4 -46
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +14 -211
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +4 -46
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +4 -46
- nautobot/project-static/docs/development/core/application-registry.html +4 -46
- nautobot/project-static/docs/development/core/best-practices.html +4 -46
- nautobot/project-static/docs/development/core/bootstrap-ui.html +4 -46
- nautobot/project-static/docs/development/core/caching.html +4 -46
- nautobot/project-static/docs/development/core/controllers.html +4 -46
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +74 -73
- nautobot/project-static/docs/development/core/generic-views.html +4 -46
- nautobot/project-static/docs/development/core/getting-started.html +224 -249
- nautobot/project-static/docs/development/core/homepage.html +7 -49
- nautobot/project-static/docs/development/core/index.html +4 -46
- nautobot/project-static/docs/development/core/{minikube-dev-environment-for-k8s-jobs.html → local-k8s.html} +168 -469
- nautobot/project-static/docs/development/core/model-checklist.html +12 -56
- nautobot/project-static/docs/development/core/model-features.html +4 -46
- nautobot/project-static/docs/development/core/natural-keys.html +4 -46
- nautobot/project-static/docs/development/core/navigation-menu.html +4 -46
- nautobot/project-static/docs/development/core/release-checklist.html +7 -49
- nautobot/project-static/docs/development/core/role-internals.html +4 -46
- nautobot/project-static/docs/development/core/settings.html +4 -46
- nautobot/project-static/docs/development/core/style-guide.html +7 -49
- nautobot/project-static/docs/development/core/templates.html +4 -46
- nautobot/project-static/docs/development/core/testing.html +4 -46
- nautobot/project-static/docs/development/core/ui-component-framework.html +273 -369
- nautobot/project-static/docs/development/core/user-preferences.html +4 -46
- nautobot/project-static/docs/development/index.html +4 -46
- nautobot/project-static/docs/development/jobs/index.html +122 -216
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +4 -46
- nautobot/project-static/docs/index.html +23 -54
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +7 -47
- nautobot/project-static/docs/overview/design_philosophy.html +4 -46
- nautobot/project-static/docs/release-notes/index.html +12 -52
- nautobot/project-static/docs/release-notes/version-1.0.html +193 -234
- nautobot/project-static/docs/release-notes/version-1.1.html +190 -231
- nautobot/project-static/docs/release-notes/version-1.2.html +265 -306
- nautobot/project-static/docs/release-notes/version-1.3.html +291 -332
- nautobot/project-static/docs/release-notes/version-1.4.html +377 -417
- nautobot/project-static/docs/release-notes/version-1.5.html +566 -605
- nautobot/project-static/docs/release-notes/version-1.6.html +447 -904
- nautobot/project-static/docs/release-notes/version-2.0.html +489 -528
- nautobot/project-static/docs/release-notes/version-2.1.html +324 -363
- nautobot/project-static/docs/release-notes/version-2.2.html +317 -356
- nautobot/project-static/docs/release-notes/version-2.3.html +352 -997
- nautobot/project-static/docs/release-notes/version-2.4.html +101 -417
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +287 -295
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +6 -48
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +4 -46
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +8 -110
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +4 -46
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +6 -48
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +8 -66
- nautobot/project-static/docs/user-guide/administration/installation/index.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +5 -47
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +4 -46
- nautobot/project-static/docs/user-guide/administration/installation/services.html +4 -46
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +4 -46
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +4 -46
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +4 -46
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +8 -49
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +4 -46
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +12 -50
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +7 -49
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +4 -46
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +7 -51
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +4 -46
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +7 -49
- nautobot/project-static/docs/user-guide/index.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +8 -50
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +7 -50
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +7 -49
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +5 -47
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +25 -94
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +5 -74
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +4 -46
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +4 -46
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +13 -9
- nautobot/tenancy/views.py +2 -4
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +4 -5
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +24 -5
- nautobot/virtualization/filters.py +3 -20
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster_edit.html +7 -1
- nautobot/virtualization/templates/virtualization/virtualmachine.html +9 -1
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +8 -2
- nautobot/virtualization/tests/test_filters.py +0 -17
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +9 -1
- nautobot/wireless/tests/test_filters.py +1 -29
- nautobot/wireless/views.py +10 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/METADATA +6 -6
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/RECORD +543 -591
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/WHEEL +1 -1
- nautobot/core/api/constants.py +0 -11
- nautobot/core/jobs/bulk_actions.py +0 -248
- nautobot/core/templates/about.html +0 -67
- nautobot/core/templates/inc/tenancy_form_panel.html +0 -9
- nautobot/core/templates/inc/tenant_table_row.html +0 -11
- nautobot/core/utils/querysets.py +0 -64
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +0 -25
- nautobot/dcim/tests/integration/test_controller.py +0 -62
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +0 -71
- nautobot/dcim/tests/test_jobs.py +0 -118
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +0 -22
- nautobot/extras/migrations/0121_alter_team_contacts.py +0 -17
- nautobot/extras/test_jobs/singleton.py +0 -16
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +0 -9444
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +0 -9722
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +0 -42
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0.dist-info → nautobot-2.4.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.46">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -2112,27 +2112,6 @@
|
|
|
2112
2112
|
|
|
2113
2113
|
|
|
2114
2114
|
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
<li class="md-nav__item">
|
|
2122
|
-
<a href="../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
<span class="md-ellipsis">
|
|
2126
|
-
Wireless Networks and Controllers
|
|
2127
|
-
</span>
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
</a>
|
|
2131
|
-
</li>
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
2115
|
</ul>
|
|
2137
2116
|
</nav>
|
|
2138
2117
|
|
|
@@ -5152,27 +5131,6 @@
|
|
|
5152
5131
|
|
|
5153
5132
|
|
|
5154
5133
|
|
|
5155
|
-
<li class="md-nav__item">
|
|
5156
|
-
<a href="../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
<span class="md-ellipsis">
|
|
5160
|
-
Kubernetes Job Support
|
|
5161
|
-
</span>
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
</a>
|
|
5165
|
-
</li>
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
5134
|
<li class="md-nav__item">
|
|
5177
5135
|
<a href="../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5178
5136
|
|
|
@@ -8097,11 +8055,11 @@
|
|
|
8097
8055
|
|
|
8098
8056
|
|
|
8099
8057
|
<li class="md-nav__item">
|
|
8100
|
-
<a href="../development/core/
|
|
8058
|
+
<a href="../development/core/local-k8s.html" class="md-nav__link">
|
|
8101
8059
|
|
|
8102
8060
|
|
|
8103
8061
|
<span class="md-ellipsis">
|
|
8104
|
-
|
|
8062
|
+
Local Kubernetes Cluster
|
|
8105
8063
|
</span>
|
|
8106
8064
|
|
|
8107
8065
|
|
|
@@ -8698,246 +8656,6 @@
|
|
|
8698
8656
|
</ul>
|
|
8699
8657
|
</nav>
|
|
8700
8658
|
|
|
8701
|
-
</li>
|
|
8702
|
-
|
|
8703
|
-
<li class="md-nav__item">
|
|
8704
|
-
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
8705
|
-
<span class="md-ellipsis">
|
|
8706
|
-
v2.3.16 (2025-01-06)
|
|
8707
|
-
</span>
|
|
8708
|
-
</a>
|
|
8709
|
-
|
|
8710
|
-
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
8711
|
-
<ul class="md-nav__list">
|
|
8712
|
-
|
|
8713
|
-
<li class="md-nav__item">
|
|
8714
|
-
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
8715
|
-
<span class="md-ellipsis">
|
|
8716
|
-
Fixed in v2.3.16
|
|
8717
|
-
</span>
|
|
8718
|
-
</a>
|
|
8719
|
-
|
|
8720
|
-
</li>
|
|
8721
|
-
|
|
8722
|
-
<li class="md-nav__item">
|
|
8723
|
-
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
8724
|
-
<span class="md-ellipsis">
|
|
8725
|
-
Housekeeping in v2.3.16
|
|
8726
|
-
</span>
|
|
8727
|
-
</a>
|
|
8728
|
-
|
|
8729
|
-
</li>
|
|
8730
|
-
|
|
8731
|
-
</ul>
|
|
8732
|
-
</nav>
|
|
8733
|
-
|
|
8734
|
-
</li>
|
|
8735
|
-
|
|
8736
|
-
<li class="md-nav__item">
|
|
8737
|
-
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
8738
|
-
<span class="md-ellipsis">
|
|
8739
|
-
v2.3.15 (2025-01-02)
|
|
8740
|
-
</span>
|
|
8741
|
-
</a>
|
|
8742
|
-
|
|
8743
|
-
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
8744
|
-
<ul class="md-nav__list">
|
|
8745
|
-
|
|
8746
|
-
<li class="md-nav__item">
|
|
8747
|
-
<a href="#security-in-v2315" class="md-nav__link">
|
|
8748
|
-
<span class="md-ellipsis">
|
|
8749
|
-
Security in v2.3.15
|
|
8750
|
-
</span>
|
|
8751
|
-
</a>
|
|
8752
|
-
|
|
8753
|
-
</li>
|
|
8754
|
-
|
|
8755
|
-
<li class="md-nav__item">
|
|
8756
|
-
<a href="#added-in-v2315" class="md-nav__link">
|
|
8757
|
-
<span class="md-ellipsis">
|
|
8758
|
-
Added in v2.3.15
|
|
8759
|
-
</span>
|
|
8760
|
-
</a>
|
|
8761
|
-
|
|
8762
|
-
</li>
|
|
8763
|
-
|
|
8764
|
-
<li class="md-nav__item">
|
|
8765
|
-
<a href="#changed-in-v2315" class="md-nav__link">
|
|
8766
|
-
<span class="md-ellipsis">
|
|
8767
|
-
Changed in v2.3.15
|
|
8768
|
-
</span>
|
|
8769
|
-
</a>
|
|
8770
|
-
|
|
8771
|
-
</li>
|
|
8772
|
-
|
|
8773
|
-
<li class="md-nav__item">
|
|
8774
|
-
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
8775
|
-
<span class="md-ellipsis">
|
|
8776
|
-
Fixed in v2.3.15
|
|
8777
|
-
</span>
|
|
8778
|
-
</a>
|
|
8779
|
-
|
|
8780
|
-
</li>
|
|
8781
|
-
|
|
8782
|
-
<li class="md-nav__item">
|
|
8783
|
-
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
8784
|
-
<span class="md-ellipsis">
|
|
8785
|
-
Dependencies in v2.3.15
|
|
8786
|
-
</span>
|
|
8787
|
-
</a>
|
|
8788
|
-
|
|
8789
|
-
</li>
|
|
8790
|
-
|
|
8791
|
-
<li class="md-nav__item">
|
|
8792
|
-
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
8793
|
-
<span class="md-ellipsis">
|
|
8794
|
-
Housekeeping in v2.3.15
|
|
8795
|
-
</span>
|
|
8796
|
-
</a>
|
|
8797
|
-
|
|
8798
|
-
</li>
|
|
8799
|
-
|
|
8800
|
-
</ul>
|
|
8801
|
-
</nav>
|
|
8802
|
-
|
|
8803
|
-
</li>
|
|
8804
|
-
|
|
8805
|
-
<li class="md-nav__item">
|
|
8806
|
-
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
8807
|
-
<span class="md-ellipsis">
|
|
8808
|
-
v2.3.14 (2024-12-19)
|
|
8809
|
-
</span>
|
|
8810
|
-
</a>
|
|
8811
|
-
|
|
8812
|
-
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
8813
|
-
<ul class="md-nav__list">
|
|
8814
|
-
|
|
8815
|
-
<li class="md-nav__item">
|
|
8816
|
-
<a href="#added-in-v2314" class="md-nav__link">
|
|
8817
|
-
<span class="md-ellipsis">
|
|
8818
|
-
Added in v2.3.14
|
|
8819
|
-
</span>
|
|
8820
|
-
</a>
|
|
8821
|
-
|
|
8822
|
-
</li>
|
|
8823
|
-
|
|
8824
|
-
<li class="md-nav__item">
|
|
8825
|
-
<a href="#changed-in-v2314" class="md-nav__link">
|
|
8826
|
-
<span class="md-ellipsis">
|
|
8827
|
-
Changed in v2.3.14
|
|
8828
|
-
</span>
|
|
8829
|
-
</a>
|
|
8830
|
-
|
|
8831
|
-
</li>
|
|
8832
|
-
|
|
8833
|
-
<li class="md-nav__item">
|
|
8834
|
-
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
8835
|
-
<span class="md-ellipsis">
|
|
8836
|
-
Fixed in v2.3.14
|
|
8837
|
-
</span>
|
|
8838
|
-
</a>
|
|
8839
|
-
|
|
8840
|
-
</li>
|
|
8841
|
-
|
|
8842
|
-
<li class="md-nav__item">
|
|
8843
|
-
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
8844
|
-
<span class="md-ellipsis">
|
|
8845
|
-
Documentation in v2.3.14
|
|
8846
|
-
</span>
|
|
8847
|
-
</a>
|
|
8848
|
-
|
|
8849
|
-
</li>
|
|
8850
|
-
|
|
8851
|
-
<li class="md-nav__item">
|
|
8852
|
-
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
8853
|
-
<span class="md-ellipsis">
|
|
8854
|
-
Housekeeping in v2.3.14
|
|
8855
|
-
</span>
|
|
8856
|
-
</a>
|
|
8857
|
-
|
|
8858
|
-
</li>
|
|
8859
|
-
|
|
8860
|
-
</ul>
|
|
8861
|
-
</nav>
|
|
8862
|
-
|
|
8863
|
-
</li>
|
|
8864
|
-
|
|
8865
|
-
<li class="md-nav__item">
|
|
8866
|
-
<a href="#v2313-2024-12-10" class="md-nav__link">
|
|
8867
|
-
<span class="md-ellipsis">
|
|
8868
|
-
v2.3.13 (2024-12-10)
|
|
8869
|
-
</span>
|
|
8870
|
-
</a>
|
|
8871
|
-
|
|
8872
|
-
<nav class="md-nav" aria-label="v2.3.13 (2024-12-10)">
|
|
8873
|
-
<ul class="md-nav__list">
|
|
8874
|
-
|
|
8875
|
-
<li class="md-nav__item">
|
|
8876
|
-
<a href="#security-in-v2313" class="md-nav__link">
|
|
8877
|
-
<span class="md-ellipsis">
|
|
8878
|
-
Security in v2.3.13
|
|
8879
|
-
</span>
|
|
8880
|
-
</a>
|
|
8881
|
-
|
|
8882
|
-
</li>
|
|
8883
|
-
|
|
8884
|
-
<li class="md-nav__item">
|
|
8885
|
-
<a href="#added-in-v2313" class="md-nav__link">
|
|
8886
|
-
<span class="md-ellipsis">
|
|
8887
|
-
Added in v2.3.13
|
|
8888
|
-
</span>
|
|
8889
|
-
</a>
|
|
8890
|
-
|
|
8891
|
-
</li>
|
|
8892
|
-
|
|
8893
|
-
<li class="md-nav__item">
|
|
8894
|
-
<a href="#changed-in-v2313" class="md-nav__link">
|
|
8895
|
-
<span class="md-ellipsis">
|
|
8896
|
-
Changed in v2.3.13
|
|
8897
|
-
</span>
|
|
8898
|
-
</a>
|
|
8899
|
-
|
|
8900
|
-
</li>
|
|
8901
|
-
|
|
8902
|
-
<li class="md-nav__item">
|
|
8903
|
-
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
8904
|
-
<span class="md-ellipsis">
|
|
8905
|
-
Fixed in v2.3.13
|
|
8906
|
-
</span>
|
|
8907
|
-
</a>
|
|
8908
|
-
|
|
8909
|
-
</li>
|
|
8910
|
-
|
|
8911
|
-
<li class="md-nav__item">
|
|
8912
|
-
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
8913
|
-
<span class="md-ellipsis">
|
|
8914
|
-
Dependencies in v2.3.13
|
|
8915
|
-
</span>
|
|
8916
|
-
</a>
|
|
8917
|
-
|
|
8918
|
-
</li>
|
|
8919
|
-
|
|
8920
|
-
<li class="md-nav__item">
|
|
8921
|
-
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
8922
|
-
<span class="md-ellipsis">
|
|
8923
|
-
Documentation in v2.3.13
|
|
8924
|
-
</span>
|
|
8925
|
-
</a>
|
|
8926
|
-
|
|
8927
|
-
</li>
|
|
8928
|
-
|
|
8929
|
-
<li class="md-nav__item">
|
|
8930
|
-
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
8931
|
-
<span class="md-ellipsis">
|
|
8932
|
-
Housekeeping in v2.3.13
|
|
8933
|
-
</span>
|
|
8934
|
-
</a>
|
|
8935
|
-
|
|
8936
|
-
</li>
|
|
8937
|
-
|
|
8938
|
-
</ul>
|
|
8939
|
-
</nav>
|
|
8940
|
-
|
|
8941
8659
|
</li>
|
|
8942
8660
|
|
|
8943
8661
|
<li class="md-nav__item">
|
|
@@ -8951,45 +8669,45 @@
|
|
|
8951
8669
|
<ul class="md-nav__list">
|
|
8952
8670
|
|
|
8953
8671
|
<li class="md-nav__item">
|
|
8954
|
-
<a href="#
|
|
8672
|
+
<a href="#added_1" class="md-nav__link">
|
|
8955
8673
|
<span class="md-ellipsis">
|
|
8956
|
-
Added
|
|
8674
|
+
Added
|
|
8957
8675
|
</span>
|
|
8958
8676
|
</a>
|
|
8959
8677
|
|
|
8960
8678
|
</li>
|
|
8961
8679
|
|
|
8962
8680
|
<li class="md-nav__item">
|
|
8963
|
-
<a href="#fixed
|
|
8681
|
+
<a href="#fixed" class="md-nav__link">
|
|
8964
8682
|
<span class="md-ellipsis">
|
|
8965
|
-
Fixed
|
|
8683
|
+
Fixed
|
|
8966
8684
|
</span>
|
|
8967
8685
|
</a>
|
|
8968
8686
|
|
|
8969
8687
|
</li>
|
|
8970
8688
|
|
|
8971
8689
|
<li class="md-nav__item">
|
|
8972
|
-
<a href="#
|
|
8690
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
8973
8691
|
<span class="md-ellipsis">
|
|
8974
|
-
Dependencies
|
|
8692
|
+
Dependencies
|
|
8975
8693
|
</span>
|
|
8976
8694
|
</a>
|
|
8977
8695
|
|
|
8978
8696
|
</li>
|
|
8979
8697
|
|
|
8980
8698
|
<li class="md-nav__item">
|
|
8981
|
-
<a href="#documentation
|
|
8699
|
+
<a href="#documentation" class="md-nav__link">
|
|
8982
8700
|
<span class="md-ellipsis">
|
|
8983
|
-
Documentation
|
|
8701
|
+
Documentation
|
|
8984
8702
|
</span>
|
|
8985
8703
|
</a>
|
|
8986
8704
|
|
|
8987
8705
|
</li>
|
|
8988
8706
|
|
|
8989
8707
|
<li class="md-nav__item">
|
|
8990
|
-
<a href="#housekeeping
|
|
8708
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
8991
8709
|
<span class="md-ellipsis">
|
|
8992
|
-
Housekeeping
|
|
8710
|
+
Housekeeping
|
|
8993
8711
|
</span>
|
|
8994
8712
|
</a>
|
|
8995
8713
|
|
|
@@ -9011,45 +8729,45 @@
|
|
|
9011
8729
|
<ul class="md-nav__list">
|
|
9012
8730
|
|
|
9013
8731
|
<li class="md-nav__item">
|
|
9014
|
-
<a href="#
|
|
8732
|
+
<a href="#added_2" class="md-nav__link">
|
|
9015
8733
|
<span class="md-ellipsis">
|
|
9016
|
-
Added
|
|
8734
|
+
Added
|
|
9017
8735
|
</span>
|
|
9018
8736
|
</a>
|
|
9019
8737
|
|
|
9020
8738
|
</li>
|
|
9021
8739
|
|
|
9022
8740
|
<li class="md-nav__item">
|
|
9023
|
-
<a href="#
|
|
8741
|
+
<a href="#changed_1" class="md-nav__link">
|
|
9024
8742
|
<span class="md-ellipsis">
|
|
9025
|
-
Changed
|
|
8743
|
+
Changed
|
|
9026
8744
|
</span>
|
|
9027
8745
|
</a>
|
|
9028
8746
|
|
|
9029
8747
|
</li>
|
|
9030
8748
|
|
|
9031
8749
|
<li class="md-nav__item">
|
|
9032
|
-
<a href="#
|
|
8750
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
9033
8751
|
<span class="md-ellipsis">
|
|
9034
|
-
Fixed
|
|
8752
|
+
Fixed
|
|
9035
8753
|
</span>
|
|
9036
8754
|
</a>
|
|
9037
8755
|
|
|
9038
8756
|
</li>
|
|
9039
8757
|
|
|
9040
8758
|
<li class="md-nav__item">
|
|
9041
|
-
<a href="#
|
|
8759
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
9042
8760
|
<span class="md-ellipsis">
|
|
9043
|
-
Documentation
|
|
8761
|
+
Documentation
|
|
9044
8762
|
</span>
|
|
9045
8763
|
</a>
|
|
9046
8764
|
|
|
9047
8765
|
</li>
|
|
9048
8766
|
|
|
9049
8767
|
<li class="md-nav__item">
|
|
9050
|
-
<a href="#
|
|
8768
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
9051
8769
|
<span class="md-ellipsis">
|
|
9052
|
-
Housekeeping
|
|
8770
|
+
Housekeeping
|
|
9053
8771
|
</span>
|
|
9054
8772
|
</a>
|
|
9055
8773
|
|
|
@@ -9071,45 +8789,45 @@
|
|
|
9071
8789
|
<ul class="md-nav__list">
|
|
9072
8790
|
|
|
9073
8791
|
<li class="md-nav__item">
|
|
9074
|
-
<a href="#
|
|
8792
|
+
<a href="#added_3" class="md-nav__link">
|
|
9075
8793
|
<span class="md-ellipsis">
|
|
9076
|
-
Added
|
|
8794
|
+
Added
|
|
9077
8795
|
</span>
|
|
9078
8796
|
</a>
|
|
9079
8797
|
|
|
9080
8798
|
</li>
|
|
9081
8799
|
|
|
9082
8800
|
<li class="md-nav__item">
|
|
9083
|
-
<a href="#
|
|
8801
|
+
<a href="#changed_2" class="md-nav__link">
|
|
9084
8802
|
<span class="md-ellipsis">
|
|
9085
|
-
Changed
|
|
8803
|
+
Changed
|
|
9086
8804
|
</span>
|
|
9087
8805
|
</a>
|
|
9088
8806
|
|
|
9089
8807
|
</li>
|
|
9090
8808
|
|
|
9091
8809
|
<li class="md-nav__item">
|
|
9092
|
-
<a href="#
|
|
8810
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
9093
8811
|
<span class="md-ellipsis">
|
|
9094
|
-
Fixed
|
|
8812
|
+
Fixed
|
|
9095
8813
|
</span>
|
|
9096
8814
|
</a>
|
|
9097
8815
|
|
|
9098
8816
|
</li>
|
|
9099
8817
|
|
|
9100
8818
|
<li class="md-nav__item">
|
|
9101
|
-
<a href="#
|
|
8819
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
9102
8820
|
<span class="md-ellipsis">
|
|
9103
|
-
Dependencies
|
|
8821
|
+
Dependencies
|
|
9104
8822
|
</span>
|
|
9105
8823
|
</a>
|
|
9106
8824
|
|
|
9107
8825
|
</li>
|
|
9108
8826
|
|
|
9109
8827
|
<li class="md-nav__item">
|
|
9110
|
-
<a href="#
|
|
8828
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
9111
8829
|
<span class="md-ellipsis">
|
|
9112
|
-
Housekeeping
|
|
8830
|
+
Housekeeping
|
|
9113
8831
|
</span>
|
|
9114
8832
|
</a>
|
|
9115
8833
|
|
|
@@ -9131,45 +8849,45 @@
|
|
|
9131
8849
|
<ul class="md-nav__list">
|
|
9132
8850
|
|
|
9133
8851
|
<li class="md-nav__item">
|
|
9134
|
-
<a href="#
|
|
8852
|
+
<a href="#added_4" class="md-nav__link">
|
|
9135
8853
|
<span class="md-ellipsis">
|
|
9136
|
-
Added
|
|
8854
|
+
Added
|
|
9137
8855
|
</span>
|
|
9138
8856
|
</a>
|
|
9139
8857
|
|
|
9140
8858
|
</li>
|
|
9141
8859
|
|
|
9142
8860
|
<li class="md-nav__item">
|
|
9143
|
-
<a href="#
|
|
8861
|
+
<a href="#changed_3" class="md-nav__link">
|
|
9144
8862
|
<span class="md-ellipsis">
|
|
9145
|
-
Changed
|
|
8863
|
+
Changed
|
|
9146
8864
|
</span>
|
|
9147
8865
|
</a>
|
|
9148
8866
|
|
|
9149
8867
|
</li>
|
|
9150
8868
|
|
|
9151
8869
|
<li class="md-nav__item">
|
|
9152
|
-
<a href="#
|
|
8870
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
9153
8871
|
<span class="md-ellipsis">
|
|
9154
|
-
Fixed
|
|
8872
|
+
Fixed
|
|
9155
8873
|
</span>
|
|
9156
8874
|
</a>
|
|
9157
8875
|
|
|
9158
8876
|
</li>
|
|
9159
8877
|
|
|
9160
8878
|
<li class="md-nav__item">
|
|
9161
|
-
<a href="#
|
|
8879
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
9162
8880
|
<span class="md-ellipsis">
|
|
9163
|
-
Dependencies
|
|
8881
|
+
Dependencies
|
|
9164
8882
|
</span>
|
|
9165
8883
|
</a>
|
|
9166
8884
|
|
|
9167
8885
|
</li>
|
|
9168
8886
|
|
|
9169
8887
|
<li class="md-nav__item">
|
|
9170
|
-
<a href="#
|
|
8888
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
9171
8889
|
<span class="md-ellipsis">
|
|
9172
|
-
Housekeeping
|
|
8890
|
+
Housekeeping
|
|
9173
8891
|
</span>
|
|
9174
8892
|
</a>
|
|
9175
8893
|
|
|
@@ -9191,9 +8909,9 @@
|
|
|
9191
8909
|
<ul class="md-nav__list">
|
|
9192
8910
|
|
|
9193
8911
|
<li class="md-nav__item">
|
|
9194
|
-
<a href="#
|
|
8912
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
9195
8913
|
<span class="md-ellipsis">
|
|
9196
|
-
Fixed
|
|
8914
|
+
Fixed
|
|
9197
8915
|
</span>
|
|
9198
8916
|
</a>
|
|
9199
8917
|
|
|
@@ -9215,45 +8933,45 @@
|
|
|
9215
8933
|
<ul class="md-nav__list">
|
|
9216
8934
|
|
|
9217
8935
|
<li class="md-nav__item">
|
|
9218
|
-
<a href="#
|
|
8936
|
+
<a href="#added_5" class="md-nav__link">
|
|
9219
8937
|
<span class="md-ellipsis">
|
|
9220
|
-
Added
|
|
8938
|
+
Added
|
|
9221
8939
|
</span>
|
|
9222
8940
|
</a>
|
|
9223
8941
|
|
|
9224
8942
|
</li>
|
|
9225
8943
|
|
|
9226
8944
|
<li class="md-nav__item">
|
|
9227
|
-
<a href="#
|
|
8945
|
+
<a href="#changed_4" class="md-nav__link">
|
|
9228
8946
|
<span class="md-ellipsis">
|
|
9229
|
-
Changed
|
|
8947
|
+
Changed
|
|
9230
8948
|
</span>
|
|
9231
8949
|
</a>
|
|
9232
8950
|
|
|
9233
8951
|
</li>
|
|
9234
8952
|
|
|
9235
8953
|
<li class="md-nav__item">
|
|
9236
|
-
<a href="#
|
|
8954
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
9237
8955
|
<span class="md-ellipsis">
|
|
9238
|
-
Fixed
|
|
8956
|
+
Fixed
|
|
9239
8957
|
</span>
|
|
9240
8958
|
</a>
|
|
9241
8959
|
|
|
9242
8960
|
</li>
|
|
9243
8961
|
|
|
9244
8962
|
<li class="md-nav__item">
|
|
9245
|
-
<a href="#
|
|
8963
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
9246
8964
|
<span class="md-ellipsis">
|
|
9247
|
-
Dependencies
|
|
8965
|
+
Dependencies
|
|
9248
8966
|
</span>
|
|
9249
8967
|
</a>
|
|
9250
8968
|
|
|
9251
8969
|
</li>
|
|
9252
8970
|
|
|
9253
8971
|
<li class="md-nav__item">
|
|
9254
|
-
<a href="#
|
|
8972
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
9255
8973
|
<span class="md-ellipsis">
|
|
9256
|
-
Housekeeping
|
|
8974
|
+
Housekeeping
|
|
9257
8975
|
</span>
|
|
9258
8976
|
</a>
|
|
9259
8977
|
|
|
@@ -9275,36 +8993,36 @@
|
|
|
9275
8993
|
<ul class="md-nav__list">
|
|
9276
8994
|
|
|
9277
8995
|
<li class="md-nav__item">
|
|
9278
|
-
<a href="#
|
|
8996
|
+
<a href="#added_6" class="md-nav__link">
|
|
9279
8997
|
<span class="md-ellipsis">
|
|
9280
|
-
Added
|
|
8998
|
+
Added
|
|
9281
8999
|
</span>
|
|
9282
9000
|
</a>
|
|
9283
9001
|
|
|
9284
9002
|
</li>
|
|
9285
9003
|
|
|
9286
9004
|
<li class="md-nav__item">
|
|
9287
|
-
<a href="#
|
|
9005
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
9288
9006
|
<span class="md-ellipsis">
|
|
9289
|
-
Fixed
|
|
9007
|
+
Fixed
|
|
9290
9008
|
</span>
|
|
9291
9009
|
</a>
|
|
9292
9010
|
|
|
9293
9011
|
</li>
|
|
9294
9012
|
|
|
9295
9013
|
<li class="md-nav__item">
|
|
9296
|
-
<a href="#
|
|
9014
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
9297
9015
|
<span class="md-ellipsis">
|
|
9298
|
-
Documentation
|
|
9016
|
+
Documentation
|
|
9299
9017
|
</span>
|
|
9300
9018
|
</a>
|
|
9301
9019
|
|
|
9302
9020
|
</li>
|
|
9303
9021
|
|
|
9304
9022
|
<li class="md-nav__item">
|
|
9305
|
-
<a href="#
|
|
9023
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
9306
9024
|
<span class="md-ellipsis">
|
|
9307
|
-
Housekeeping
|
|
9025
|
+
Housekeeping
|
|
9308
9026
|
</span>
|
|
9309
9027
|
</a>
|
|
9310
9028
|
|
|
@@ -9326,54 +9044,54 @@
|
|
|
9326
9044
|
<ul class="md-nav__list">
|
|
9327
9045
|
|
|
9328
9046
|
<li class="md-nav__item">
|
|
9329
|
-
<a href="#
|
|
9047
|
+
<a href="#added_7" class="md-nav__link">
|
|
9330
9048
|
<span class="md-ellipsis">
|
|
9331
|
-
Added
|
|
9049
|
+
Added
|
|
9332
9050
|
</span>
|
|
9333
9051
|
</a>
|
|
9334
9052
|
|
|
9335
9053
|
</li>
|
|
9336
9054
|
|
|
9337
9055
|
<li class="md-nav__item">
|
|
9338
|
-
<a href="#
|
|
9056
|
+
<a href="#changed_5" class="md-nav__link">
|
|
9339
9057
|
<span class="md-ellipsis">
|
|
9340
|
-
Changed
|
|
9058
|
+
Changed
|
|
9341
9059
|
</span>
|
|
9342
9060
|
</a>
|
|
9343
9061
|
|
|
9344
9062
|
</li>
|
|
9345
9063
|
|
|
9346
9064
|
<li class="md-nav__item">
|
|
9347
|
-
<a href="#
|
|
9065
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
9348
9066
|
<span class="md-ellipsis">
|
|
9349
|
-
Fixed
|
|
9067
|
+
Fixed
|
|
9350
9068
|
</span>
|
|
9351
9069
|
</a>
|
|
9352
9070
|
|
|
9353
9071
|
</li>
|
|
9354
9072
|
|
|
9355
9073
|
<li class="md-nav__item">
|
|
9356
|
-
<a href="#
|
|
9074
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
9357
9075
|
<span class="md-ellipsis">
|
|
9358
|
-
Dependencies
|
|
9076
|
+
Dependencies
|
|
9359
9077
|
</span>
|
|
9360
9078
|
</a>
|
|
9361
9079
|
|
|
9362
9080
|
</li>
|
|
9363
9081
|
|
|
9364
9082
|
<li class="md-nav__item">
|
|
9365
|
-
<a href="#
|
|
9083
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
9366
9084
|
<span class="md-ellipsis">
|
|
9367
|
-
Documentation
|
|
9085
|
+
Documentation
|
|
9368
9086
|
</span>
|
|
9369
9087
|
</a>
|
|
9370
9088
|
|
|
9371
9089
|
</li>
|
|
9372
9090
|
|
|
9373
9091
|
<li class="md-nav__item">
|
|
9374
|
-
<a href="#
|
|
9092
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
9375
9093
|
<span class="md-ellipsis">
|
|
9376
|
-
Housekeeping
|
|
9094
|
+
Housekeeping
|
|
9377
9095
|
</span>
|
|
9378
9096
|
</a>
|
|
9379
9097
|
|
|
@@ -9395,45 +9113,45 @@
|
|
|
9395
9113
|
<ul class="md-nav__list">
|
|
9396
9114
|
|
|
9397
9115
|
<li class="md-nav__item">
|
|
9398
|
-
<a href="#
|
|
9116
|
+
<a href="#added_8" class="md-nav__link">
|
|
9399
9117
|
<span class="md-ellipsis">
|
|
9400
|
-
Added
|
|
9118
|
+
Added
|
|
9401
9119
|
</span>
|
|
9402
9120
|
</a>
|
|
9403
9121
|
|
|
9404
9122
|
</li>
|
|
9405
9123
|
|
|
9406
9124
|
<li class="md-nav__item">
|
|
9407
|
-
<a href="#
|
|
9125
|
+
<a href="#changed_6" class="md-nav__link">
|
|
9408
9126
|
<span class="md-ellipsis">
|
|
9409
|
-
Changed
|
|
9127
|
+
Changed
|
|
9410
9128
|
</span>
|
|
9411
9129
|
</a>
|
|
9412
9130
|
|
|
9413
9131
|
</li>
|
|
9414
9132
|
|
|
9415
9133
|
<li class="md-nav__item">
|
|
9416
|
-
<a href="#
|
|
9134
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
9417
9135
|
<span class="md-ellipsis">
|
|
9418
|
-
Fixed
|
|
9136
|
+
Fixed
|
|
9419
9137
|
</span>
|
|
9420
9138
|
</a>
|
|
9421
9139
|
|
|
9422
9140
|
</li>
|
|
9423
9141
|
|
|
9424
9142
|
<li class="md-nav__item">
|
|
9425
|
-
<a href="#
|
|
9143
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
9426
9144
|
<span class="md-ellipsis">
|
|
9427
|
-
Documentation
|
|
9145
|
+
Documentation
|
|
9428
9146
|
</span>
|
|
9429
9147
|
</a>
|
|
9430
9148
|
|
|
9431
9149
|
</li>
|
|
9432
9150
|
|
|
9433
9151
|
<li class="md-nav__item">
|
|
9434
|
-
<a href="#
|
|
9152
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
9435
9153
|
<span class="md-ellipsis">
|
|
9436
|
-
Housekeeping
|
|
9154
|
+
Housekeeping
|
|
9437
9155
|
</span>
|
|
9438
9156
|
</a>
|
|
9439
9157
|
|
|
@@ -9455,36 +9173,36 @@
|
|
|
9455
9173
|
<ul class="md-nav__list">
|
|
9456
9174
|
|
|
9457
9175
|
<li class="md-nav__item">
|
|
9458
|
-
<a href="#security
|
|
9176
|
+
<a href="#security" class="md-nav__link">
|
|
9459
9177
|
<span class="md-ellipsis">
|
|
9460
|
-
Security
|
|
9178
|
+
Security
|
|
9461
9179
|
</span>
|
|
9462
9180
|
</a>
|
|
9463
9181
|
|
|
9464
9182
|
</li>
|
|
9465
9183
|
|
|
9466
9184
|
<li class="md-nav__item">
|
|
9467
|
-
<a href="#
|
|
9185
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
9468
9186
|
<span class="md-ellipsis">
|
|
9469
|
-
Fixed
|
|
9187
|
+
Fixed
|
|
9470
9188
|
</span>
|
|
9471
9189
|
</a>
|
|
9472
9190
|
|
|
9473
9191
|
</li>
|
|
9474
9192
|
|
|
9475
9193
|
<li class="md-nav__item">
|
|
9476
|
-
<a href="#
|
|
9194
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
9477
9195
|
<span class="md-ellipsis">
|
|
9478
|
-
Dependencies
|
|
9196
|
+
Dependencies
|
|
9479
9197
|
</span>
|
|
9480
9198
|
</a>
|
|
9481
9199
|
|
|
9482
9200
|
</li>
|
|
9483
9201
|
|
|
9484
9202
|
<li class="md-nav__item">
|
|
9485
|
-
<a href="#
|
|
9203
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
9486
9204
|
<span class="md-ellipsis">
|
|
9487
|
-
Housekeeping
|
|
9205
|
+
Housekeeping
|
|
9488
9206
|
</span>
|
|
9489
9207
|
</a>
|
|
9490
9208
|
|
|
@@ -9506,36 +9224,36 @@
|
|
|
9506
9224
|
<ul class="md-nav__list">
|
|
9507
9225
|
|
|
9508
9226
|
<li class="md-nav__item">
|
|
9509
|
-
<a href="#
|
|
9227
|
+
<a href="#security_1" class="md-nav__link">
|
|
9510
9228
|
<span class="md-ellipsis">
|
|
9511
|
-
Security
|
|
9229
|
+
Security
|
|
9512
9230
|
</span>
|
|
9513
9231
|
</a>
|
|
9514
9232
|
|
|
9515
9233
|
</li>
|
|
9516
9234
|
|
|
9517
9235
|
<li class="md-nav__item">
|
|
9518
|
-
<a href="#
|
|
9236
|
+
<a href="#added_9" class="md-nav__link">
|
|
9519
9237
|
<span class="md-ellipsis">
|
|
9520
|
-
Added
|
|
9238
|
+
Added
|
|
9521
9239
|
</span>
|
|
9522
9240
|
</a>
|
|
9523
9241
|
|
|
9524
9242
|
</li>
|
|
9525
9243
|
|
|
9526
9244
|
<li class="md-nav__item">
|
|
9527
|
-
<a href="#
|
|
9245
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
9528
9246
|
<span class="md-ellipsis">
|
|
9529
|
-
Fixed
|
|
9247
|
+
Fixed
|
|
9530
9248
|
</span>
|
|
9531
9249
|
</a>
|
|
9532
9250
|
|
|
9533
9251
|
</li>
|
|
9534
9252
|
|
|
9535
9253
|
<li class="md-nav__item">
|
|
9536
|
-
<a href="#
|
|
9254
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
9537
9255
|
<span class="md-ellipsis">
|
|
9538
|
-
Housekeeping
|
|
9256
|
+
Housekeeping
|
|
9539
9257
|
</span>
|
|
9540
9258
|
</a>
|
|
9541
9259
|
|
|
@@ -9557,36 +9275,36 @@
|
|
|
9557
9275
|
<ul class="md-nav__list">
|
|
9558
9276
|
|
|
9559
9277
|
<li class="md-nav__item">
|
|
9560
|
-
<a href="#
|
|
9278
|
+
<a href="#added_10" class="md-nav__link">
|
|
9561
9279
|
<span class="md-ellipsis">
|
|
9562
|
-
Added
|
|
9280
|
+
Added
|
|
9563
9281
|
</span>
|
|
9564
9282
|
</a>
|
|
9565
9283
|
|
|
9566
9284
|
</li>
|
|
9567
9285
|
|
|
9568
9286
|
<li class="md-nav__item">
|
|
9569
|
-
<a href="#
|
|
9287
|
+
<a href="#changed_7" class="md-nav__link">
|
|
9570
9288
|
<span class="md-ellipsis">
|
|
9571
|
-
Changed
|
|
9289
|
+
Changed
|
|
9572
9290
|
</span>
|
|
9573
9291
|
</a>
|
|
9574
9292
|
|
|
9575
9293
|
</li>
|
|
9576
9294
|
|
|
9577
9295
|
<li class="md-nav__item">
|
|
9578
|
-
<a href="#
|
|
9296
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
9579
9297
|
<span class="md-ellipsis">
|
|
9580
|
-
Fixed
|
|
9298
|
+
Fixed
|
|
9581
9299
|
</span>
|
|
9582
9300
|
</a>
|
|
9583
9301
|
|
|
9584
9302
|
</li>
|
|
9585
9303
|
|
|
9586
9304
|
<li class="md-nav__item">
|
|
9587
|
-
<a href="#
|
|
9305
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
9588
9306
|
<span class="md-ellipsis">
|
|
9589
|
-
Housekeeping
|
|
9307
|
+
Housekeeping
|
|
9590
9308
|
</span>
|
|
9591
9309
|
</a>
|
|
9592
9310
|
|
|
@@ -9608,63 +9326,63 @@
|
|
|
9608
9326
|
<ul class="md-nav__list">
|
|
9609
9327
|
|
|
9610
9328
|
<li class="md-nav__item">
|
|
9611
|
-
<a href="#
|
|
9329
|
+
<a href="#security_2" class="md-nav__link">
|
|
9612
9330
|
<span class="md-ellipsis">
|
|
9613
|
-
Security
|
|
9331
|
+
Security
|
|
9614
9332
|
</span>
|
|
9615
9333
|
</a>
|
|
9616
9334
|
|
|
9617
9335
|
</li>
|
|
9618
9336
|
|
|
9619
9337
|
<li class="md-nav__item">
|
|
9620
|
-
<a href="#
|
|
9338
|
+
<a href="#added_11" class="md-nav__link">
|
|
9621
9339
|
<span class="md-ellipsis">
|
|
9622
|
-
Added
|
|
9340
|
+
Added
|
|
9623
9341
|
</span>
|
|
9624
9342
|
</a>
|
|
9625
9343
|
|
|
9626
9344
|
</li>
|
|
9627
9345
|
|
|
9628
9346
|
<li class="md-nav__item">
|
|
9629
|
-
<a href="#
|
|
9347
|
+
<a href="#changed_8" class="md-nav__link">
|
|
9630
9348
|
<span class="md-ellipsis">
|
|
9631
|
-
Changed
|
|
9349
|
+
Changed
|
|
9632
9350
|
</span>
|
|
9633
9351
|
</a>
|
|
9634
9352
|
|
|
9635
9353
|
</li>
|
|
9636
9354
|
|
|
9637
9355
|
<li class="md-nav__item">
|
|
9638
|
-
<a href="#removed
|
|
9356
|
+
<a href="#removed" class="md-nav__link">
|
|
9639
9357
|
<span class="md-ellipsis">
|
|
9640
|
-
Removed
|
|
9358
|
+
Removed
|
|
9641
9359
|
</span>
|
|
9642
9360
|
</a>
|
|
9643
9361
|
|
|
9644
9362
|
</li>
|
|
9645
9363
|
|
|
9646
9364
|
<li class="md-nav__item">
|
|
9647
|
-
<a href="#
|
|
9365
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
9648
9366
|
<span class="md-ellipsis">
|
|
9649
|
-
Fixed
|
|
9367
|
+
Fixed
|
|
9650
9368
|
</span>
|
|
9651
9369
|
</a>
|
|
9652
9370
|
|
|
9653
9371
|
</li>
|
|
9654
9372
|
|
|
9655
9373
|
<li class="md-nav__item">
|
|
9656
|
-
<a href="#
|
|
9374
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
9657
9375
|
<span class="md-ellipsis">
|
|
9658
|
-
Documentation
|
|
9376
|
+
Documentation
|
|
9659
9377
|
</span>
|
|
9660
9378
|
</a>
|
|
9661
9379
|
|
|
9662
9380
|
</li>
|
|
9663
9381
|
|
|
9664
9382
|
<li class="md-nav__item">
|
|
9665
|
-
<a href="#
|
|
9383
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
9666
9384
|
<span class="md-ellipsis">
|
|
9667
|
-
Housekeeping
|
|
9385
|
+
Housekeeping
|
|
9668
9386
|
</span>
|
|
9669
9387
|
</a>
|
|
9670
9388
|
|
|
@@ -9686,81 +9404,81 @@
|
|
|
9686
9404
|
<ul class="md-nav__list">
|
|
9687
9405
|
|
|
9688
9406
|
<li class="md-nav__item">
|
|
9689
|
-
<a href="#
|
|
9407
|
+
<a href="#security_3" class="md-nav__link">
|
|
9690
9408
|
<span class="md-ellipsis">
|
|
9691
|
-
Security
|
|
9409
|
+
Security
|
|
9692
9410
|
</span>
|
|
9693
9411
|
</a>
|
|
9694
9412
|
|
|
9695
9413
|
</li>
|
|
9696
9414
|
|
|
9697
9415
|
<li class="md-nav__item">
|
|
9698
|
-
<a href="#
|
|
9416
|
+
<a href="#added_12" class="md-nav__link">
|
|
9699
9417
|
<span class="md-ellipsis">
|
|
9700
|
-
Added
|
|
9418
|
+
Added
|
|
9701
9419
|
</span>
|
|
9702
9420
|
</a>
|
|
9703
9421
|
|
|
9704
9422
|
</li>
|
|
9705
9423
|
|
|
9706
9424
|
<li class="md-nav__item">
|
|
9707
|
-
<a href="#
|
|
9425
|
+
<a href="#changed_9" class="md-nav__link">
|
|
9708
9426
|
<span class="md-ellipsis">
|
|
9709
|
-
Changed
|
|
9427
|
+
Changed
|
|
9710
9428
|
</span>
|
|
9711
9429
|
</a>
|
|
9712
9430
|
|
|
9713
9431
|
</li>
|
|
9714
9432
|
|
|
9715
9433
|
<li class="md-nav__item">
|
|
9716
|
-
<a href="#deprecated
|
|
9434
|
+
<a href="#deprecated" class="md-nav__link">
|
|
9717
9435
|
<span class="md-ellipsis">
|
|
9718
|
-
Deprecated
|
|
9436
|
+
Deprecated
|
|
9719
9437
|
</span>
|
|
9720
9438
|
</a>
|
|
9721
9439
|
|
|
9722
9440
|
</li>
|
|
9723
9441
|
|
|
9724
9442
|
<li class="md-nav__item">
|
|
9725
|
-
<a href="#
|
|
9443
|
+
<a href="#removed_1" class="md-nav__link">
|
|
9726
9444
|
<span class="md-ellipsis">
|
|
9727
|
-
Removed
|
|
9445
|
+
Removed
|
|
9728
9446
|
</span>
|
|
9729
9447
|
</a>
|
|
9730
9448
|
|
|
9731
9449
|
</li>
|
|
9732
9450
|
|
|
9733
9451
|
<li class="md-nav__item">
|
|
9734
|
-
<a href="#
|
|
9452
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
9735
9453
|
<span class="md-ellipsis">
|
|
9736
|
-
Fixed
|
|
9454
|
+
Fixed
|
|
9737
9455
|
</span>
|
|
9738
9456
|
</a>
|
|
9739
9457
|
|
|
9740
9458
|
</li>
|
|
9741
9459
|
|
|
9742
9460
|
<li class="md-nav__item">
|
|
9743
|
-
<a href="#
|
|
9461
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
9744
9462
|
<span class="md-ellipsis">
|
|
9745
|
-
Dependencies
|
|
9463
|
+
Dependencies
|
|
9746
9464
|
</span>
|
|
9747
9465
|
</a>
|
|
9748
9466
|
|
|
9749
9467
|
</li>
|
|
9750
9468
|
|
|
9751
9469
|
<li class="md-nav__item">
|
|
9752
|
-
<a href="#
|
|
9470
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
9753
9471
|
<span class="md-ellipsis">
|
|
9754
|
-
Documentation
|
|
9472
|
+
Documentation
|
|
9755
9473
|
</span>
|
|
9756
9474
|
</a>
|
|
9757
9475
|
|
|
9758
9476
|
</li>
|
|
9759
9477
|
|
|
9760
9478
|
<li class="md-nav__item">
|
|
9761
|
-
<a href="#
|
|
9479
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
9762
9480
|
<span class="md-ellipsis">
|
|
9763
|
-
Housekeeping
|
|
9481
|
+
Housekeeping
|
|
9764
9482
|
</span>
|
|
9765
9483
|
</a>
|
|
9766
9484
|
|
|
@@ -10569,246 +10287,6 @@
|
|
|
10569
10287
|
</ul>
|
|
10570
10288
|
</nav>
|
|
10571
10289
|
|
|
10572
|
-
</li>
|
|
10573
|
-
|
|
10574
|
-
<li class="md-nav__item">
|
|
10575
|
-
<a href="#v2316-2025-01-06" class="md-nav__link">
|
|
10576
|
-
<span class="md-ellipsis">
|
|
10577
|
-
v2.3.16 (2025-01-06)
|
|
10578
|
-
</span>
|
|
10579
|
-
</a>
|
|
10580
|
-
|
|
10581
|
-
<nav class="md-nav" aria-label="v2.3.16 (2025-01-06)">
|
|
10582
|
-
<ul class="md-nav__list">
|
|
10583
|
-
|
|
10584
|
-
<li class="md-nav__item">
|
|
10585
|
-
<a href="#fixed-in-v2316" class="md-nav__link">
|
|
10586
|
-
<span class="md-ellipsis">
|
|
10587
|
-
Fixed in v2.3.16
|
|
10588
|
-
</span>
|
|
10589
|
-
</a>
|
|
10590
|
-
|
|
10591
|
-
</li>
|
|
10592
|
-
|
|
10593
|
-
<li class="md-nav__item">
|
|
10594
|
-
<a href="#housekeeping-in-v2316" class="md-nav__link">
|
|
10595
|
-
<span class="md-ellipsis">
|
|
10596
|
-
Housekeeping in v2.3.16
|
|
10597
|
-
</span>
|
|
10598
|
-
</a>
|
|
10599
|
-
|
|
10600
|
-
</li>
|
|
10601
|
-
|
|
10602
|
-
</ul>
|
|
10603
|
-
</nav>
|
|
10604
|
-
|
|
10605
|
-
</li>
|
|
10606
|
-
|
|
10607
|
-
<li class="md-nav__item">
|
|
10608
|
-
<a href="#v2315-2025-01-02" class="md-nav__link">
|
|
10609
|
-
<span class="md-ellipsis">
|
|
10610
|
-
v2.3.15 (2025-01-02)
|
|
10611
|
-
</span>
|
|
10612
|
-
</a>
|
|
10613
|
-
|
|
10614
|
-
<nav class="md-nav" aria-label="v2.3.15 (2025-01-02)">
|
|
10615
|
-
<ul class="md-nav__list">
|
|
10616
|
-
|
|
10617
|
-
<li class="md-nav__item">
|
|
10618
|
-
<a href="#security-in-v2315" class="md-nav__link">
|
|
10619
|
-
<span class="md-ellipsis">
|
|
10620
|
-
Security in v2.3.15
|
|
10621
|
-
</span>
|
|
10622
|
-
</a>
|
|
10623
|
-
|
|
10624
|
-
</li>
|
|
10625
|
-
|
|
10626
|
-
<li class="md-nav__item">
|
|
10627
|
-
<a href="#added-in-v2315" class="md-nav__link">
|
|
10628
|
-
<span class="md-ellipsis">
|
|
10629
|
-
Added in v2.3.15
|
|
10630
|
-
</span>
|
|
10631
|
-
</a>
|
|
10632
|
-
|
|
10633
|
-
</li>
|
|
10634
|
-
|
|
10635
|
-
<li class="md-nav__item">
|
|
10636
|
-
<a href="#changed-in-v2315" class="md-nav__link">
|
|
10637
|
-
<span class="md-ellipsis">
|
|
10638
|
-
Changed in v2.3.15
|
|
10639
|
-
</span>
|
|
10640
|
-
</a>
|
|
10641
|
-
|
|
10642
|
-
</li>
|
|
10643
|
-
|
|
10644
|
-
<li class="md-nav__item">
|
|
10645
|
-
<a href="#fixed-in-v2315" class="md-nav__link">
|
|
10646
|
-
<span class="md-ellipsis">
|
|
10647
|
-
Fixed in v2.3.15
|
|
10648
|
-
</span>
|
|
10649
|
-
</a>
|
|
10650
|
-
|
|
10651
|
-
</li>
|
|
10652
|
-
|
|
10653
|
-
<li class="md-nav__item">
|
|
10654
|
-
<a href="#dependencies-in-v2315" class="md-nav__link">
|
|
10655
|
-
<span class="md-ellipsis">
|
|
10656
|
-
Dependencies in v2.3.15
|
|
10657
|
-
</span>
|
|
10658
|
-
</a>
|
|
10659
|
-
|
|
10660
|
-
</li>
|
|
10661
|
-
|
|
10662
|
-
<li class="md-nav__item">
|
|
10663
|
-
<a href="#housekeeping-in-v2315" class="md-nav__link">
|
|
10664
|
-
<span class="md-ellipsis">
|
|
10665
|
-
Housekeeping in v2.3.15
|
|
10666
|
-
</span>
|
|
10667
|
-
</a>
|
|
10668
|
-
|
|
10669
|
-
</li>
|
|
10670
|
-
|
|
10671
|
-
</ul>
|
|
10672
|
-
</nav>
|
|
10673
|
-
|
|
10674
|
-
</li>
|
|
10675
|
-
|
|
10676
|
-
<li class="md-nav__item">
|
|
10677
|
-
<a href="#v2314-2024-12-19" class="md-nav__link">
|
|
10678
|
-
<span class="md-ellipsis">
|
|
10679
|
-
v2.3.14 (2024-12-19)
|
|
10680
|
-
</span>
|
|
10681
|
-
</a>
|
|
10682
|
-
|
|
10683
|
-
<nav class="md-nav" aria-label="v2.3.14 (2024-12-19)">
|
|
10684
|
-
<ul class="md-nav__list">
|
|
10685
|
-
|
|
10686
|
-
<li class="md-nav__item">
|
|
10687
|
-
<a href="#added-in-v2314" class="md-nav__link">
|
|
10688
|
-
<span class="md-ellipsis">
|
|
10689
|
-
Added in v2.3.14
|
|
10690
|
-
</span>
|
|
10691
|
-
</a>
|
|
10692
|
-
|
|
10693
|
-
</li>
|
|
10694
|
-
|
|
10695
|
-
<li class="md-nav__item">
|
|
10696
|
-
<a href="#changed-in-v2314" class="md-nav__link">
|
|
10697
|
-
<span class="md-ellipsis">
|
|
10698
|
-
Changed in v2.3.14
|
|
10699
|
-
</span>
|
|
10700
|
-
</a>
|
|
10701
|
-
|
|
10702
|
-
</li>
|
|
10703
|
-
|
|
10704
|
-
<li class="md-nav__item">
|
|
10705
|
-
<a href="#fixed-in-v2314" class="md-nav__link">
|
|
10706
|
-
<span class="md-ellipsis">
|
|
10707
|
-
Fixed in v2.3.14
|
|
10708
|
-
</span>
|
|
10709
|
-
</a>
|
|
10710
|
-
|
|
10711
|
-
</li>
|
|
10712
|
-
|
|
10713
|
-
<li class="md-nav__item">
|
|
10714
|
-
<a href="#documentation-in-v2314" class="md-nav__link">
|
|
10715
|
-
<span class="md-ellipsis">
|
|
10716
|
-
Documentation in v2.3.14
|
|
10717
|
-
</span>
|
|
10718
|
-
</a>
|
|
10719
|
-
|
|
10720
|
-
</li>
|
|
10721
|
-
|
|
10722
|
-
<li class="md-nav__item">
|
|
10723
|
-
<a href="#housekeeping-in-v2314" class="md-nav__link">
|
|
10724
|
-
<span class="md-ellipsis">
|
|
10725
|
-
Housekeeping in v2.3.14
|
|
10726
|
-
</span>
|
|
10727
|
-
</a>
|
|
10728
|
-
|
|
10729
|
-
</li>
|
|
10730
|
-
|
|
10731
|
-
</ul>
|
|
10732
|
-
</nav>
|
|
10733
|
-
|
|
10734
|
-
</li>
|
|
10735
|
-
|
|
10736
|
-
<li class="md-nav__item">
|
|
10737
|
-
<a href="#v2313-2024-12-10" class="md-nav__link">
|
|
10738
|
-
<span class="md-ellipsis">
|
|
10739
|
-
v2.3.13 (2024-12-10)
|
|
10740
|
-
</span>
|
|
10741
|
-
</a>
|
|
10742
|
-
|
|
10743
|
-
<nav class="md-nav" aria-label="v2.3.13 (2024-12-10)">
|
|
10744
|
-
<ul class="md-nav__list">
|
|
10745
|
-
|
|
10746
|
-
<li class="md-nav__item">
|
|
10747
|
-
<a href="#security-in-v2313" class="md-nav__link">
|
|
10748
|
-
<span class="md-ellipsis">
|
|
10749
|
-
Security in v2.3.13
|
|
10750
|
-
</span>
|
|
10751
|
-
</a>
|
|
10752
|
-
|
|
10753
|
-
</li>
|
|
10754
|
-
|
|
10755
|
-
<li class="md-nav__item">
|
|
10756
|
-
<a href="#added-in-v2313" class="md-nav__link">
|
|
10757
|
-
<span class="md-ellipsis">
|
|
10758
|
-
Added in v2.3.13
|
|
10759
|
-
</span>
|
|
10760
|
-
</a>
|
|
10761
|
-
|
|
10762
|
-
</li>
|
|
10763
|
-
|
|
10764
|
-
<li class="md-nav__item">
|
|
10765
|
-
<a href="#changed-in-v2313" class="md-nav__link">
|
|
10766
|
-
<span class="md-ellipsis">
|
|
10767
|
-
Changed in v2.3.13
|
|
10768
|
-
</span>
|
|
10769
|
-
</a>
|
|
10770
|
-
|
|
10771
|
-
</li>
|
|
10772
|
-
|
|
10773
|
-
<li class="md-nav__item">
|
|
10774
|
-
<a href="#fixed-in-v2313" class="md-nav__link">
|
|
10775
|
-
<span class="md-ellipsis">
|
|
10776
|
-
Fixed in v2.3.13
|
|
10777
|
-
</span>
|
|
10778
|
-
</a>
|
|
10779
|
-
|
|
10780
|
-
</li>
|
|
10781
|
-
|
|
10782
|
-
<li class="md-nav__item">
|
|
10783
|
-
<a href="#dependencies-in-v2313" class="md-nav__link">
|
|
10784
|
-
<span class="md-ellipsis">
|
|
10785
|
-
Dependencies in v2.3.13
|
|
10786
|
-
</span>
|
|
10787
|
-
</a>
|
|
10788
|
-
|
|
10789
|
-
</li>
|
|
10790
|
-
|
|
10791
|
-
<li class="md-nav__item">
|
|
10792
|
-
<a href="#documentation-in-v2313" class="md-nav__link">
|
|
10793
|
-
<span class="md-ellipsis">
|
|
10794
|
-
Documentation in v2.3.13
|
|
10795
|
-
</span>
|
|
10796
|
-
</a>
|
|
10797
|
-
|
|
10798
|
-
</li>
|
|
10799
|
-
|
|
10800
|
-
<li class="md-nav__item">
|
|
10801
|
-
<a href="#housekeeping-in-v2313" class="md-nav__link">
|
|
10802
|
-
<span class="md-ellipsis">
|
|
10803
|
-
Housekeeping in v2.3.13
|
|
10804
|
-
</span>
|
|
10805
|
-
</a>
|
|
10806
|
-
|
|
10807
|
-
</li>
|
|
10808
|
-
|
|
10809
|
-
</ul>
|
|
10810
|
-
</nav>
|
|
10811
|
-
|
|
10812
10290
|
</li>
|
|
10813
10291
|
|
|
10814
10292
|
<li class="md-nav__item">
|
|
@@ -10822,45 +10300,45 @@
|
|
|
10822
10300
|
<ul class="md-nav__list">
|
|
10823
10301
|
|
|
10824
10302
|
<li class="md-nav__item">
|
|
10825
|
-
<a href="#
|
|
10303
|
+
<a href="#added_1" class="md-nav__link">
|
|
10826
10304
|
<span class="md-ellipsis">
|
|
10827
|
-
Added
|
|
10305
|
+
Added
|
|
10828
10306
|
</span>
|
|
10829
10307
|
</a>
|
|
10830
10308
|
|
|
10831
10309
|
</li>
|
|
10832
10310
|
|
|
10833
10311
|
<li class="md-nav__item">
|
|
10834
|
-
<a href="#fixed
|
|
10312
|
+
<a href="#fixed" class="md-nav__link">
|
|
10835
10313
|
<span class="md-ellipsis">
|
|
10836
|
-
Fixed
|
|
10314
|
+
Fixed
|
|
10837
10315
|
</span>
|
|
10838
10316
|
</a>
|
|
10839
10317
|
|
|
10840
10318
|
</li>
|
|
10841
10319
|
|
|
10842
10320
|
<li class="md-nav__item">
|
|
10843
|
-
<a href="#
|
|
10321
|
+
<a href="#dependencies_1" class="md-nav__link">
|
|
10844
10322
|
<span class="md-ellipsis">
|
|
10845
|
-
Dependencies
|
|
10323
|
+
Dependencies
|
|
10846
10324
|
</span>
|
|
10847
10325
|
</a>
|
|
10848
10326
|
|
|
10849
10327
|
</li>
|
|
10850
10328
|
|
|
10851
10329
|
<li class="md-nav__item">
|
|
10852
|
-
<a href="#documentation
|
|
10330
|
+
<a href="#documentation" class="md-nav__link">
|
|
10853
10331
|
<span class="md-ellipsis">
|
|
10854
|
-
Documentation
|
|
10332
|
+
Documentation
|
|
10855
10333
|
</span>
|
|
10856
10334
|
</a>
|
|
10857
10335
|
|
|
10858
10336
|
</li>
|
|
10859
10337
|
|
|
10860
10338
|
<li class="md-nav__item">
|
|
10861
|
-
<a href="#housekeeping
|
|
10339
|
+
<a href="#housekeeping" class="md-nav__link">
|
|
10862
10340
|
<span class="md-ellipsis">
|
|
10863
|
-
Housekeeping
|
|
10341
|
+
Housekeeping
|
|
10864
10342
|
</span>
|
|
10865
10343
|
</a>
|
|
10866
10344
|
|
|
@@ -10882,45 +10360,45 @@
|
|
|
10882
10360
|
<ul class="md-nav__list">
|
|
10883
10361
|
|
|
10884
10362
|
<li class="md-nav__item">
|
|
10885
|
-
<a href="#
|
|
10363
|
+
<a href="#added_2" class="md-nav__link">
|
|
10886
10364
|
<span class="md-ellipsis">
|
|
10887
|
-
Added
|
|
10365
|
+
Added
|
|
10888
10366
|
</span>
|
|
10889
10367
|
</a>
|
|
10890
10368
|
|
|
10891
10369
|
</li>
|
|
10892
10370
|
|
|
10893
10371
|
<li class="md-nav__item">
|
|
10894
|
-
<a href="#
|
|
10372
|
+
<a href="#changed_1" class="md-nav__link">
|
|
10895
10373
|
<span class="md-ellipsis">
|
|
10896
|
-
Changed
|
|
10374
|
+
Changed
|
|
10897
10375
|
</span>
|
|
10898
10376
|
</a>
|
|
10899
10377
|
|
|
10900
10378
|
</li>
|
|
10901
10379
|
|
|
10902
10380
|
<li class="md-nav__item">
|
|
10903
|
-
<a href="#
|
|
10381
|
+
<a href="#fixed_1" class="md-nav__link">
|
|
10904
10382
|
<span class="md-ellipsis">
|
|
10905
|
-
Fixed
|
|
10383
|
+
Fixed
|
|
10906
10384
|
</span>
|
|
10907
10385
|
</a>
|
|
10908
10386
|
|
|
10909
10387
|
</li>
|
|
10910
10388
|
|
|
10911
10389
|
<li class="md-nav__item">
|
|
10912
|
-
<a href="#
|
|
10390
|
+
<a href="#documentation_1" class="md-nav__link">
|
|
10913
10391
|
<span class="md-ellipsis">
|
|
10914
|
-
Documentation
|
|
10392
|
+
Documentation
|
|
10915
10393
|
</span>
|
|
10916
10394
|
</a>
|
|
10917
10395
|
|
|
10918
10396
|
</li>
|
|
10919
10397
|
|
|
10920
10398
|
<li class="md-nav__item">
|
|
10921
|
-
<a href="#
|
|
10399
|
+
<a href="#housekeeping_1" class="md-nav__link">
|
|
10922
10400
|
<span class="md-ellipsis">
|
|
10923
|
-
Housekeeping
|
|
10401
|
+
Housekeeping
|
|
10924
10402
|
</span>
|
|
10925
10403
|
</a>
|
|
10926
10404
|
|
|
@@ -10942,45 +10420,45 @@
|
|
|
10942
10420
|
<ul class="md-nav__list">
|
|
10943
10421
|
|
|
10944
10422
|
<li class="md-nav__item">
|
|
10945
|
-
<a href="#
|
|
10423
|
+
<a href="#added_3" class="md-nav__link">
|
|
10946
10424
|
<span class="md-ellipsis">
|
|
10947
|
-
Added
|
|
10425
|
+
Added
|
|
10948
10426
|
</span>
|
|
10949
10427
|
</a>
|
|
10950
10428
|
|
|
10951
10429
|
</li>
|
|
10952
10430
|
|
|
10953
10431
|
<li class="md-nav__item">
|
|
10954
|
-
<a href="#
|
|
10432
|
+
<a href="#changed_2" class="md-nav__link">
|
|
10955
10433
|
<span class="md-ellipsis">
|
|
10956
|
-
Changed
|
|
10434
|
+
Changed
|
|
10957
10435
|
</span>
|
|
10958
10436
|
</a>
|
|
10959
10437
|
|
|
10960
10438
|
</li>
|
|
10961
10439
|
|
|
10962
10440
|
<li class="md-nav__item">
|
|
10963
|
-
<a href="#
|
|
10441
|
+
<a href="#fixed_2" class="md-nav__link">
|
|
10964
10442
|
<span class="md-ellipsis">
|
|
10965
|
-
Fixed
|
|
10443
|
+
Fixed
|
|
10966
10444
|
</span>
|
|
10967
10445
|
</a>
|
|
10968
10446
|
|
|
10969
10447
|
</li>
|
|
10970
10448
|
|
|
10971
10449
|
<li class="md-nav__item">
|
|
10972
|
-
<a href="#
|
|
10450
|
+
<a href="#dependencies_2" class="md-nav__link">
|
|
10973
10451
|
<span class="md-ellipsis">
|
|
10974
|
-
Dependencies
|
|
10452
|
+
Dependencies
|
|
10975
10453
|
</span>
|
|
10976
10454
|
</a>
|
|
10977
10455
|
|
|
10978
10456
|
</li>
|
|
10979
10457
|
|
|
10980
10458
|
<li class="md-nav__item">
|
|
10981
|
-
<a href="#
|
|
10459
|
+
<a href="#housekeeping_2" class="md-nav__link">
|
|
10982
10460
|
<span class="md-ellipsis">
|
|
10983
|
-
Housekeeping
|
|
10461
|
+
Housekeeping
|
|
10984
10462
|
</span>
|
|
10985
10463
|
</a>
|
|
10986
10464
|
|
|
@@ -11002,45 +10480,45 @@
|
|
|
11002
10480
|
<ul class="md-nav__list">
|
|
11003
10481
|
|
|
11004
10482
|
<li class="md-nav__item">
|
|
11005
|
-
<a href="#
|
|
10483
|
+
<a href="#added_4" class="md-nav__link">
|
|
11006
10484
|
<span class="md-ellipsis">
|
|
11007
|
-
Added
|
|
10485
|
+
Added
|
|
11008
10486
|
</span>
|
|
11009
10487
|
</a>
|
|
11010
10488
|
|
|
11011
10489
|
</li>
|
|
11012
10490
|
|
|
11013
10491
|
<li class="md-nav__item">
|
|
11014
|
-
<a href="#
|
|
10492
|
+
<a href="#changed_3" class="md-nav__link">
|
|
11015
10493
|
<span class="md-ellipsis">
|
|
11016
|
-
Changed
|
|
10494
|
+
Changed
|
|
11017
10495
|
</span>
|
|
11018
10496
|
</a>
|
|
11019
10497
|
|
|
11020
10498
|
</li>
|
|
11021
10499
|
|
|
11022
10500
|
<li class="md-nav__item">
|
|
11023
|
-
<a href="#
|
|
10501
|
+
<a href="#fixed_3" class="md-nav__link">
|
|
11024
10502
|
<span class="md-ellipsis">
|
|
11025
|
-
Fixed
|
|
10503
|
+
Fixed
|
|
11026
10504
|
</span>
|
|
11027
10505
|
</a>
|
|
11028
10506
|
|
|
11029
10507
|
</li>
|
|
11030
10508
|
|
|
11031
10509
|
<li class="md-nav__item">
|
|
11032
|
-
<a href="#
|
|
10510
|
+
<a href="#dependencies_3" class="md-nav__link">
|
|
11033
10511
|
<span class="md-ellipsis">
|
|
11034
|
-
Dependencies
|
|
10512
|
+
Dependencies
|
|
11035
10513
|
</span>
|
|
11036
10514
|
</a>
|
|
11037
10515
|
|
|
11038
10516
|
</li>
|
|
11039
10517
|
|
|
11040
10518
|
<li class="md-nav__item">
|
|
11041
|
-
<a href="#
|
|
10519
|
+
<a href="#housekeeping_3" class="md-nav__link">
|
|
11042
10520
|
<span class="md-ellipsis">
|
|
11043
|
-
Housekeeping
|
|
10521
|
+
Housekeeping
|
|
11044
10522
|
</span>
|
|
11045
10523
|
</a>
|
|
11046
10524
|
|
|
@@ -11062,9 +10540,9 @@
|
|
|
11062
10540
|
<ul class="md-nav__list">
|
|
11063
10541
|
|
|
11064
10542
|
<li class="md-nav__item">
|
|
11065
|
-
<a href="#
|
|
10543
|
+
<a href="#fixed_4" class="md-nav__link">
|
|
11066
10544
|
<span class="md-ellipsis">
|
|
11067
|
-
Fixed
|
|
10545
|
+
Fixed
|
|
11068
10546
|
</span>
|
|
11069
10547
|
</a>
|
|
11070
10548
|
|
|
@@ -11086,45 +10564,45 @@
|
|
|
11086
10564
|
<ul class="md-nav__list">
|
|
11087
10565
|
|
|
11088
10566
|
<li class="md-nav__item">
|
|
11089
|
-
<a href="#
|
|
10567
|
+
<a href="#added_5" class="md-nav__link">
|
|
11090
10568
|
<span class="md-ellipsis">
|
|
11091
|
-
Added
|
|
10569
|
+
Added
|
|
11092
10570
|
</span>
|
|
11093
10571
|
</a>
|
|
11094
10572
|
|
|
11095
10573
|
</li>
|
|
11096
10574
|
|
|
11097
10575
|
<li class="md-nav__item">
|
|
11098
|
-
<a href="#
|
|
10576
|
+
<a href="#changed_4" class="md-nav__link">
|
|
11099
10577
|
<span class="md-ellipsis">
|
|
11100
|
-
Changed
|
|
10578
|
+
Changed
|
|
11101
10579
|
</span>
|
|
11102
10580
|
</a>
|
|
11103
10581
|
|
|
11104
10582
|
</li>
|
|
11105
10583
|
|
|
11106
10584
|
<li class="md-nav__item">
|
|
11107
|
-
<a href="#
|
|
10585
|
+
<a href="#fixed_5" class="md-nav__link">
|
|
11108
10586
|
<span class="md-ellipsis">
|
|
11109
|
-
Fixed
|
|
10587
|
+
Fixed
|
|
11110
10588
|
</span>
|
|
11111
10589
|
</a>
|
|
11112
10590
|
|
|
11113
10591
|
</li>
|
|
11114
10592
|
|
|
11115
10593
|
<li class="md-nav__item">
|
|
11116
|
-
<a href="#
|
|
10594
|
+
<a href="#dependencies_4" class="md-nav__link">
|
|
11117
10595
|
<span class="md-ellipsis">
|
|
11118
|
-
Dependencies
|
|
10596
|
+
Dependencies
|
|
11119
10597
|
</span>
|
|
11120
10598
|
</a>
|
|
11121
10599
|
|
|
11122
10600
|
</li>
|
|
11123
10601
|
|
|
11124
10602
|
<li class="md-nav__item">
|
|
11125
|
-
<a href="#
|
|
10603
|
+
<a href="#housekeeping_4" class="md-nav__link">
|
|
11126
10604
|
<span class="md-ellipsis">
|
|
11127
|
-
Housekeeping
|
|
10605
|
+
Housekeeping
|
|
11128
10606
|
</span>
|
|
11129
10607
|
</a>
|
|
11130
10608
|
|
|
@@ -11146,36 +10624,36 @@
|
|
|
11146
10624
|
<ul class="md-nav__list">
|
|
11147
10625
|
|
|
11148
10626
|
<li class="md-nav__item">
|
|
11149
|
-
<a href="#
|
|
10627
|
+
<a href="#added_6" class="md-nav__link">
|
|
11150
10628
|
<span class="md-ellipsis">
|
|
11151
|
-
Added
|
|
10629
|
+
Added
|
|
11152
10630
|
</span>
|
|
11153
10631
|
</a>
|
|
11154
10632
|
|
|
11155
10633
|
</li>
|
|
11156
10634
|
|
|
11157
10635
|
<li class="md-nav__item">
|
|
11158
|
-
<a href="#
|
|
10636
|
+
<a href="#fixed_6" class="md-nav__link">
|
|
11159
10637
|
<span class="md-ellipsis">
|
|
11160
|
-
Fixed
|
|
10638
|
+
Fixed
|
|
11161
10639
|
</span>
|
|
11162
10640
|
</a>
|
|
11163
10641
|
|
|
11164
10642
|
</li>
|
|
11165
10643
|
|
|
11166
10644
|
<li class="md-nav__item">
|
|
11167
|
-
<a href="#
|
|
10645
|
+
<a href="#documentation_2" class="md-nav__link">
|
|
11168
10646
|
<span class="md-ellipsis">
|
|
11169
|
-
Documentation
|
|
10647
|
+
Documentation
|
|
11170
10648
|
</span>
|
|
11171
10649
|
</a>
|
|
11172
10650
|
|
|
11173
10651
|
</li>
|
|
11174
10652
|
|
|
11175
10653
|
<li class="md-nav__item">
|
|
11176
|
-
<a href="#
|
|
10654
|
+
<a href="#housekeeping_5" class="md-nav__link">
|
|
11177
10655
|
<span class="md-ellipsis">
|
|
11178
|
-
Housekeeping
|
|
10656
|
+
Housekeeping
|
|
11179
10657
|
</span>
|
|
11180
10658
|
</a>
|
|
11181
10659
|
|
|
@@ -11197,54 +10675,54 @@
|
|
|
11197
10675
|
<ul class="md-nav__list">
|
|
11198
10676
|
|
|
11199
10677
|
<li class="md-nav__item">
|
|
11200
|
-
<a href="#
|
|
10678
|
+
<a href="#added_7" class="md-nav__link">
|
|
11201
10679
|
<span class="md-ellipsis">
|
|
11202
|
-
Added
|
|
10680
|
+
Added
|
|
11203
10681
|
</span>
|
|
11204
10682
|
</a>
|
|
11205
10683
|
|
|
11206
10684
|
</li>
|
|
11207
10685
|
|
|
11208
10686
|
<li class="md-nav__item">
|
|
11209
|
-
<a href="#
|
|
10687
|
+
<a href="#changed_5" class="md-nav__link">
|
|
11210
10688
|
<span class="md-ellipsis">
|
|
11211
|
-
Changed
|
|
10689
|
+
Changed
|
|
11212
10690
|
</span>
|
|
11213
10691
|
</a>
|
|
11214
10692
|
|
|
11215
10693
|
</li>
|
|
11216
10694
|
|
|
11217
10695
|
<li class="md-nav__item">
|
|
11218
|
-
<a href="#
|
|
10696
|
+
<a href="#fixed_7" class="md-nav__link">
|
|
11219
10697
|
<span class="md-ellipsis">
|
|
11220
|
-
Fixed
|
|
10698
|
+
Fixed
|
|
11221
10699
|
</span>
|
|
11222
10700
|
</a>
|
|
11223
10701
|
|
|
11224
10702
|
</li>
|
|
11225
10703
|
|
|
11226
10704
|
<li class="md-nav__item">
|
|
11227
|
-
<a href="#
|
|
10705
|
+
<a href="#dependencies_5" class="md-nav__link">
|
|
11228
10706
|
<span class="md-ellipsis">
|
|
11229
|
-
Dependencies
|
|
10707
|
+
Dependencies
|
|
11230
10708
|
</span>
|
|
11231
10709
|
</a>
|
|
11232
10710
|
|
|
11233
10711
|
</li>
|
|
11234
10712
|
|
|
11235
10713
|
<li class="md-nav__item">
|
|
11236
|
-
<a href="#
|
|
10714
|
+
<a href="#documentation_3" class="md-nav__link">
|
|
11237
10715
|
<span class="md-ellipsis">
|
|
11238
|
-
Documentation
|
|
10716
|
+
Documentation
|
|
11239
10717
|
</span>
|
|
11240
10718
|
</a>
|
|
11241
10719
|
|
|
11242
10720
|
</li>
|
|
11243
10721
|
|
|
11244
10722
|
<li class="md-nav__item">
|
|
11245
|
-
<a href="#
|
|
10723
|
+
<a href="#housekeeping_6" class="md-nav__link">
|
|
11246
10724
|
<span class="md-ellipsis">
|
|
11247
|
-
Housekeeping
|
|
10725
|
+
Housekeeping
|
|
11248
10726
|
</span>
|
|
11249
10727
|
</a>
|
|
11250
10728
|
|
|
@@ -11266,45 +10744,45 @@
|
|
|
11266
10744
|
<ul class="md-nav__list">
|
|
11267
10745
|
|
|
11268
10746
|
<li class="md-nav__item">
|
|
11269
|
-
<a href="#
|
|
10747
|
+
<a href="#added_8" class="md-nav__link">
|
|
11270
10748
|
<span class="md-ellipsis">
|
|
11271
|
-
Added
|
|
10749
|
+
Added
|
|
11272
10750
|
</span>
|
|
11273
10751
|
</a>
|
|
11274
10752
|
|
|
11275
10753
|
</li>
|
|
11276
10754
|
|
|
11277
10755
|
<li class="md-nav__item">
|
|
11278
|
-
<a href="#
|
|
10756
|
+
<a href="#changed_6" class="md-nav__link">
|
|
11279
10757
|
<span class="md-ellipsis">
|
|
11280
|
-
Changed
|
|
10758
|
+
Changed
|
|
11281
10759
|
</span>
|
|
11282
10760
|
</a>
|
|
11283
10761
|
|
|
11284
10762
|
</li>
|
|
11285
10763
|
|
|
11286
10764
|
<li class="md-nav__item">
|
|
11287
|
-
<a href="#
|
|
10765
|
+
<a href="#fixed_8" class="md-nav__link">
|
|
11288
10766
|
<span class="md-ellipsis">
|
|
11289
|
-
Fixed
|
|
10767
|
+
Fixed
|
|
11290
10768
|
</span>
|
|
11291
10769
|
</a>
|
|
11292
10770
|
|
|
11293
10771
|
</li>
|
|
11294
10772
|
|
|
11295
10773
|
<li class="md-nav__item">
|
|
11296
|
-
<a href="#
|
|
10774
|
+
<a href="#documentation_4" class="md-nav__link">
|
|
11297
10775
|
<span class="md-ellipsis">
|
|
11298
|
-
Documentation
|
|
10776
|
+
Documentation
|
|
11299
10777
|
</span>
|
|
11300
10778
|
</a>
|
|
11301
10779
|
|
|
11302
10780
|
</li>
|
|
11303
10781
|
|
|
11304
10782
|
<li class="md-nav__item">
|
|
11305
|
-
<a href="#
|
|
10783
|
+
<a href="#housekeeping_7" class="md-nav__link">
|
|
11306
10784
|
<span class="md-ellipsis">
|
|
11307
|
-
Housekeeping
|
|
10785
|
+
Housekeeping
|
|
11308
10786
|
</span>
|
|
11309
10787
|
</a>
|
|
11310
10788
|
|
|
@@ -11326,36 +10804,36 @@
|
|
|
11326
10804
|
<ul class="md-nav__list">
|
|
11327
10805
|
|
|
11328
10806
|
<li class="md-nav__item">
|
|
11329
|
-
<a href="#security
|
|
10807
|
+
<a href="#security" class="md-nav__link">
|
|
11330
10808
|
<span class="md-ellipsis">
|
|
11331
|
-
Security
|
|
10809
|
+
Security
|
|
11332
10810
|
</span>
|
|
11333
10811
|
</a>
|
|
11334
10812
|
|
|
11335
10813
|
</li>
|
|
11336
10814
|
|
|
11337
10815
|
<li class="md-nav__item">
|
|
11338
|
-
<a href="#
|
|
10816
|
+
<a href="#fixed_9" class="md-nav__link">
|
|
11339
10817
|
<span class="md-ellipsis">
|
|
11340
|
-
Fixed
|
|
10818
|
+
Fixed
|
|
11341
10819
|
</span>
|
|
11342
10820
|
</a>
|
|
11343
10821
|
|
|
11344
10822
|
</li>
|
|
11345
10823
|
|
|
11346
10824
|
<li class="md-nav__item">
|
|
11347
|
-
<a href="#
|
|
10825
|
+
<a href="#dependencies_6" class="md-nav__link">
|
|
11348
10826
|
<span class="md-ellipsis">
|
|
11349
|
-
Dependencies
|
|
10827
|
+
Dependencies
|
|
11350
10828
|
</span>
|
|
11351
10829
|
</a>
|
|
11352
10830
|
|
|
11353
10831
|
</li>
|
|
11354
10832
|
|
|
11355
10833
|
<li class="md-nav__item">
|
|
11356
|
-
<a href="#
|
|
10834
|
+
<a href="#housekeeping_8" class="md-nav__link">
|
|
11357
10835
|
<span class="md-ellipsis">
|
|
11358
|
-
Housekeeping
|
|
10836
|
+
Housekeeping
|
|
11359
10837
|
</span>
|
|
11360
10838
|
</a>
|
|
11361
10839
|
|
|
@@ -11377,36 +10855,36 @@
|
|
|
11377
10855
|
<ul class="md-nav__list">
|
|
11378
10856
|
|
|
11379
10857
|
<li class="md-nav__item">
|
|
11380
|
-
<a href="#
|
|
10858
|
+
<a href="#security_1" class="md-nav__link">
|
|
11381
10859
|
<span class="md-ellipsis">
|
|
11382
|
-
Security
|
|
10860
|
+
Security
|
|
11383
10861
|
</span>
|
|
11384
10862
|
</a>
|
|
11385
10863
|
|
|
11386
10864
|
</li>
|
|
11387
10865
|
|
|
11388
10866
|
<li class="md-nav__item">
|
|
11389
|
-
<a href="#
|
|
10867
|
+
<a href="#added_9" class="md-nav__link">
|
|
11390
10868
|
<span class="md-ellipsis">
|
|
11391
|
-
Added
|
|
10869
|
+
Added
|
|
11392
10870
|
</span>
|
|
11393
10871
|
</a>
|
|
11394
10872
|
|
|
11395
10873
|
</li>
|
|
11396
10874
|
|
|
11397
10875
|
<li class="md-nav__item">
|
|
11398
|
-
<a href="#
|
|
10876
|
+
<a href="#fixed_10" class="md-nav__link">
|
|
11399
10877
|
<span class="md-ellipsis">
|
|
11400
|
-
Fixed
|
|
10878
|
+
Fixed
|
|
11401
10879
|
</span>
|
|
11402
10880
|
</a>
|
|
11403
10881
|
|
|
11404
10882
|
</li>
|
|
11405
10883
|
|
|
11406
10884
|
<li class="md-nav__item">
|
|
11407
|
-
<a href="#
|
|
10885
|
+
<a href="#housekeeping_9" class="md-nav__link">
|
|
11408
10886
|
<span class="md-ellipsis">
|
|
11409
|
-
Housekeeping
|
|
10887
|
+
Housekeeping
|
|
11410
10888
|
</span>
|
|
11411
10889
|
</a>
|
|
11412
10890
|
|
|
@@ -11428,36 +10906,36 @@
|
|
|
11428
10906
|
<ul class="md-nav__list">
|
|
11429
10907
|
|
|
11430
10908
|
<li class="md-nav__item">
|
|
11431
|
-
<a href="#
|
|
10909
|
+
<a href="#added_10" class="md-nav__link">
|
|
11432
10910
|
<span class="md-ellipsis">
|
|
11433
|
-
Added
|
|
10911
|
+
Added
|
|
11434
10912
|
</span>
|
|
11435
10913
|
</a>
|
|
11436
10914
|
|
|
11437
10915
|
</li>
|
|
11438
10916
|
|
|
11439
10917
|
<li class="md-nav__item">
|
|
11440
|
-
<a href="#
|
|
10918
|
+
<a href="#changed_7" class="md-nav__link">
|
|
11441
10919
|
<span class="md-ellipsis">
|
|
11442
|
-
Changed
|
|
10920
|
+
Changed
|
|
11443
10921
|
</span>
|
|
11444
10922
|
</a>
|
|
11445
10923
|
|
|
11446
10924
|
</li>
|
|
11447
10925
|
|
|
11448
10926
|
<li class="md-nav__item">
|
|
11449
|
-
<a href="#
|
|
10927
|
+
<a href="#fixed_11" class="md-nav__link">
|
|
11450
10928
|
<span class="md-ellipsis">
|
|
11451
|
-
Fixed
|
|
10929
|
+
Fixed
|
|
11452
10930
|
</span>
|
|
11453
10931
|
</a>
|
|
11454
10932
|
|
|
11455
10933
|
</li>
|
|
11456
10934
|
|
|
11457
10935
|
<li class="md-nav__item">
|
|
11458
|
-
<a href="#
|
|
10936
|
+
<a href="#housekeeping_10" class="md-nav__link">
|
|
11459
10937
|
<span class="md-ellipsis">
|
|
11460
|
-
Housekeeping
|
|
10938
|
+
Housekeeping
|
|
11461
10939
|
</span>
|
|
11462
10940
|
</a>
|
|
11463
10941
|
|
|
@@ -11479,63 +10957,63 @@
|
|
|
11479
10957
|
<ul class="md-nav__list">
|
|
11480
10958
|
|
|
11481
10959
|
<li class="md-nav__item">
|
|
11482
|
-
<a href="#
|
|
10960
|
+
<a href="#security_2" class="md-nav__link">
|
|
11483
10961
|
<span class="md-ellipsis">
|
|
11484
|
-
Security
|
|
10962
|
+
Security
|
|
11485
10963
|
</span>
|
|
11486
10964
|
</a>
|
|
11487
10965
|
|
|
11488
10966
|
</li>
|
|
11489
10967
|
|
|
11490
10968
|
<li class="md-nav__item">
|
|
11491
|
-
<a href="#
|
|
10969
|
+
<a href="#added_11" class="md-nav__link">
|
|
11492
10970
|
<span class="md-ellipsis">
|
|
11493
|
-
Added
|
|
10971
|
+
Added
|
|
11494
10972
|
</span>
|
|
11495
10973
|
</a>
|
|
11496
10974
|
|
|
11497
10975
|
</li>
|
|
11498
10976
|
|
|
11499
10977
|
<li class="md-nav__item">
|
|
11500
|
-
<a href="#
|
|
10978
|
+
<a href="#changed_8" class="md-nav__link">
|
|
11501
10979
|
<span class="md-ellipsis">
|
|
11502
|
-
Changed
|
|
10980
|
+
Changed
|
|
11503
10981
|
</span>
|
|
11504
10982
|
</a>
|
|
11505
10983
|
|
|
11506
10984
|
</li>
|
|
11507
10985
|
|
|
11508
10986
|
<li class="md-nav__item">
|
|
11509
|
-
<a href="#removed
|
|
10987
|
+
<a href="#removed" class="md-nav__link">
|
|
11510
10988
|
<span class="md-ellipsis">
|
|
11511
|
-
Removed
|
|
10989
|
+
Removed
|
|
11512
10990
|
</span>
|
|
11513
10991
|
</a>
|
|
11514
10992
|
|
|
11515
10993
|
</li>
|
|
11516
10994
|
|
|
11517
10995
|
<li class="md-nav__item">
|
|
11518
|
-
<a href="#
|
|
10996
|
+
<a href="#fixed_12" class="md-nav__link">
|
|
11519
10997
|
<span class="md-ellipsis">
|
|
11520
|
-
Fixed
|
|
10998
|
+
Fixed
|
|
11521
10999
|
</span>
|
|
11522
11000
|
</a>
|
|
11523
11001
|
|
|
11524
11002
|
</li>
|
|
11525
11003
|
|
|
11526
11004
|
<li class="md-nav__item">
|
|
11527
|
-
<a href="#
|
|
11005
|
+
<a href="#documentation_5" class="md-nav__link">
|
|
11528
11006
|
<span class="md-ellipsis">
|
|
11529
|
-
Documentation
|
|
11007
|
+
Documentation
|
|
11530
11008
|
</span>
|
|
11531
11009
|
</a>
|
|
11532
11010
|
|
|
11533
11011
|
</li>
|
|
11534
11012
|
|
|
11535
11013
|
<li class="md-nav__item">
|
|
11536
|
-
<a href="#
|
|
11014
|
+
<a href="#housekeeping_11" class="md-nav__link">
|
|
11537
11015
|
<span class="md-ellipsis">
|
|
11538
|
-
Housekeeping
|
|
11016
|
+
Housekeeping
|
|
11539
11017
|
</span>
|
|
11540
11018
|
</a>
|
|
11541
11019
|
|
|
@@ -11557,81 +11035,81 @@
|
|
|
11557
11035
|
<ul class="md-nav__list">
|
|
11558
11036
|
|
|
11559
11037
|
<li class="md-nav__item">
|
|
11560
|
-
<a href="#
|
|
11038
|
+
<a href="#security_3" class="md-nav__link">
|
|
11561
11039
|
<span class="md-ellipsis">
|
|
11562
|
-
Security
|
|
11040
|
+
Security
|
|
11563
11041
|
</span>
|
|
11564
11042
|
</a>
|
|
11565
11043
|
|
|
11566
11044
|
</li>
|
|
11567
11045
|
|
|
11568
11046
|
<li class="md-nav__item">
|
|
11569
|
-
<a href="#
|
|
11047
|
+
<a href="#added_12" class="md-nav__link">
|
|
11570
11048
|
<span class="md-ellipsis">
|
|
11571
|
-
Added
|
|
11049
|
+
Added
|
|
11572
11050
|
</span>
|
|
11573
11051
|
</a>
|
|
11574
11052
|
|
|
11575
11053
|
</li>
|
|
11576
11054
|
|
|
11577
11055
|
<li class="md-nav__item">
|
|
11578
|
-
<a href="#
|
|
11056
|
+
<a href="#changed_9" class="md-nav__link">
|
|
11579
11057
|
<span class="md-ellipsis">
|
|
11580
|
-
Changed
|
|
11058
|
+
Changed
|
|
11581
11059
|
</span>
|
|
11582
11060
|
</a>
|
|
11583
11061
|
|
|
11584
11062
|
</li>
|
|
11585
11063
|
|
|
11586
11064
|
<li class="md-nav__item">
|
|
11587
|
-
<a href="#deprecated
|
|
11065
|
+
<a href="#deprecated" class="md-nav__link">
|
|
11588
11066
|
<span class="md-ellipsis">
|
|
11589
|
-
Deprecated
|
|
11067
|
+
Deprecated
|
|
11590
11068
|
</span>
|
|
11591
11069
|
</a>
|
|
11592
11070
|
|
|
11593
11071
|
</li>
|
|
11594
11072
|
|
|
11595
11073
|
<li class="md-nav__item">
|
|
11596
|
-
<a href="#
|
|
11074
|
+
<a href="#removed_1" class="md-nav__link">
|
|
11597
11075
|
<span class="md-ellipsis">
|
|
11598
|
-
Removed
|
|
11076
|
+
Removed
|
|
11599
11077
|
</span>
|
|
11600
11078
|
</a>
|
|
11601
11079
|
|
|
11602
11080
|
</li>
|
|
11603
11081
|
|
|
11604
11082
|
<li class="md-nav__item">
|
|
11605
|
-
<a href="#
|
|
11083
|
+
<a href="#fixed_13" class="md-nav__link">
|
|
11606
11084
|
<span class="md-ellipsis">
|
|
11607
|
-
Fixed
|
|
11085
|
+
Fixed
|
|
11608
11086
|
</span>
|
|
11609
11087
|
</a>
|
|
11610
11088
|
|
|
11611
11089
|
</li>
|
|
11612
11090
|
|
|
11613
11091
|
<li class="md-nav__item">
|
|
11614
|
-
<a href="#
|
|
11092
|
+
<a href="#dependencies_7" class="md-nav__link">
|
|
11615
11093
|
<span class="md-ellipsis">
|
|
11616
|
-
Dependencies
|
|
11094
|
+
Dependencies
|
|
11617
11095
|
</span>
|
|
11618
11096
|
</a>
|
|
11619
11097
|
|
|
11620
11098
|
</li>
|
|
11621
11099
|
|
|
11622
11100
|
<li class="md-nav__item">
|
|
11623
|
-
<a href="#
|
|
11101
|
+
<a href="#documentation_6" class="md-nav__link">
|
|
11624
11102
|
<span class="md-ellipsis">
|
|
11625
|
-
Documentation
|
|
11103
|
+
Documentation
|
|
11626
11104
|
</span>
|
|
11627
11105
|
</a>
|
|
11628
11106
|
|
|
11629
11107
|
</li>
|
|
11630
11108
|
|
|
11631
11109
|
<li class="md-nav__item">
|
|
11632
|
-
<a href="#
|
|
11110
|
+
<a href="#housekeeping_12" class="md-nav__link">
|
|
11633
11111
|
<span class="md-ellipsis">
|
|
11634
|
-
Housekeeping
|
|
11112
|
+
Housekeeping
|
|
11635
11113
|
</span>
|
|
11636
11114
|
</a>
|
|
11637
11115
|
|
|
@@ -11660,6 +11138,8 @@
|
|
|
11660
11138
|
|
|
11661
11139
|
|
|
11662
11140
|
|
|
11141
|
+
<!-- markdownlint-disable MD024 -->
|
|
11142
|
+
|
|
11663
11143
|
<h1 id="nautobot-v23">Nautobot v2.3<a class="headerlink" href="#nautobot-v23" title="Permanent link">¶</a></h1>
|
|
11664
11144
|
<p>This document describes all new features and changes in Nautobot 2.3.</p>
|
|
11665
11145
|
<h2 id="upgrade-actions">Upgrade Actions<a class="headerlink" href="#upgrade-actions" title="Permanent link">¶</a></h2>
|
|
@@ -11749,140 +11229,15 @@
|
|
|
11749
11229
|
<h3 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" title="Permanent link">¶</a></h3>
|
|
11750
11230
|
<h4 id="updated-to-django-42-3581">Updated to Django 4.2 (<a href="https://github.com/nautobot/nautobot/issues/3581">#3581</a>)<a class="headerlink" href="#updated-to-django-42-3581" title="Permanent link">¶</a></h4>
|
|
11751
11231
|
<p>As Django 3.2 has reached end-of-life, Nautobot 2.3 requires Django 4.2, the next long-term-support (LTS) version of Django. There are a number of changes in Django itself as a result of this upgrade; Nautobot App maintainers are urged to review the Django release-notes (<a href="https://docs.djangoproject.com/en/4.2/releases/4.0/">4.0</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.1/">4.1</a>, <a href="https://docs.djangoproject.com/en/4.2/releases/4.2/">4.2</a>), especially the relevant "Backwards incompatible changes" sections, to proactively identify any impact to their Apps.</p>
|
|
11752
|
-
<!-- pyml disable-num-lines 2 blanks-around-headers -->
|
|
11753
11232
|
<!-- towncrier release notes start -->
|
|
11754
|
-
<h2 id="v2316-2025-01-06">v2.3.16 (2025-01-06)<a class="headerlink" href="#v2316-2025-01-06" title="Permanent link">¶</a></h2>
|
|
11755
|
-
<h3 id="fixed-in-v2316">Fixed in v2.3.16<a class="headerlink" href="#fixed-in-v2316" title="Permanent link">¶</a></h3>
|
|
11756
|
-
<ul>
|
|
11757
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5805">#5805</a> - Enabled extended filter lookup expressions of the <code>serial</code> filter for Device, Rack, and InventoryItem.</li>
|
|
11758
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5831">#5831</a> - Fixed an issue where the error message for missing custom job templates incorrectly reported "extras/job.html" instead of the actual missing template name.</li>
|
|
11759
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>PowerOutletTemplateTable</code> to use <code>power_port_template</code> instead of the incorrect field <code>power_port</code>.</li>
|
|
11760
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5882">#5882</a> - Fixed <code>FrontPortTemplateTable</code> to use <code>rear_port_template</code> instead of the incorrect field <code>rear_port</code>.</li>
|
|
11761
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6527">#6527</a> - Disabled (unsupported) sorting by the <code>Device</code> column in Console Connections, Power Connections, and Interface Connections list views.</li>
|
|
11762
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6669">#6669</a> - Removed the need for <code>available-prefixes</code>, <code>available-ips</code>, and <code>available-vlans</code> API endpoints to run validation multiple times.</li>
|
|
11763
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6676">#6676</a> - Resolved issue with IPAddressQuerySet <code>get_or_create</code> method signature not matching the base method signature.</li>
|
|
11764
|
-
</ul>
|
|
11765
|
-
<h3 id="housekeeping-in-v2316">Housekeeping in v2.3.16<a class="headerlink" href="#housekeeping-in-v2316" title="Permanent link">¶</a></h3>
|
|
11766
|
-
<ul>
|
|
11767
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6714">#6714</a> - Enabled and addressed pylint checkers <code>arguments-differ</code>, <code>arguments-renamed</code>, <code>exec-used</code>, <code>hard-coded-auth-user</code>, <code>super-init-not-called</code>.</li>
|
|
11768
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6722">#6722</a> - Enabled pylint <code>not-callable</code> and <code>no-member</code> checkers and addressed issues reported thereby.</li>
|
|
11769
|
-
</ul>
|
|
11770
|
-
<h2 id="v2315-2025-01-02">v2.3.15 (2025-01-02)<a class="headerlink" href="#v2315-2025-01-02" title="Permanent link">¶</a></h2>
|
|
11771
|
-
<h3 id="security-in-v2315">Security in v2.3.15<a class="headerlink" href="#security-in-v2315" title="Permanent link">¶</a></h3>
|
|
11772
|
-
<ul>
|
|
11773
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6695">#6695</a> - Updated dependency <code>Jinja2</code> to <code>~3.1.5</code> to address <code>CVE-2024-56201</code> and <code>CVE-2024-56326</code>.</li>
|
|
11774
|
-
</ul>
|
|
11775
|
-
<h3 id="added-in-v2315">Added in v2.3.15<a class="headerlink" href="#added-in-v2315" title="Permanent link">¶</a></h3>
|
|
11776
|
-
<ul>
|
|
11777
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6410">#6410</a> - Added <code>settings.PUBLISH_ROBOTS_TXT</code> configuration option, defaulting to <code>True</code>.</li>
|
|
11778
|
-
</ul>
|
|
11779
|
-
<h3 id="changed-in-v2315">Changed in v2.3.15<a class="headerlink" href="#changed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11780
|
-
<ul>
|
|
11781
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Changed <code>available-vlans</code> API endpoint to additionally require <code>ipam.view_vlan</code> permission to view available VLANs under VLAN Group.</li>
|
|
11782
|
-
</ul>
|
|
11783
|
-
<h3 id="fixed-in-v2315">Fixed in v2.3.15<a class="headerlink" href="#fixed-in-v2315" title="Permanent link">¶</a></h3>
|
|
11784
|
-
<ul>
|
|
11785
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5545">#5545</a> - Fixed an issue in Dynamic Group Edit View where saving a valid choice in a Select-type CustomField triggered an error.</li>
|
|
11786
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6583">#6583</a> - Fixed <code>available-vlans</code>, <code>available-ips</code>, <code>available-prefixes</code> API endpoints to check object-level constrained permissions.</li>
|
|
11787
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6702">#6702</a> - Resolved issue with TagsBulkEditFormMixin missing self.model.</li>
|
|
11788
|
-
</ul>
|
|
11789
|
-
<h3 id="dependencies-in-v2315">Dependencies in v2.3.15<a class="headerlink" href="#dependencies-in-v2315" title="Permanent link">¶</a></h3>
|
|
11790
|
-
<ul>
|
|
11791
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>nh3</code> dependency to <code>~0.2.20</code>.</li>
|
|
11792
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated <code>django-tables2</code> dependency to <code>~2.7.4</code> in Python 3.9 and later, and pinned it to <code>==2.7.0</code> under Python 3.8.</li>
|
|
11793
|
-
</ul>
|
|
11794
|
-
<h3 id="housekeeping-in-v2315">Housekeeping in v2.3.15<a class="headerlink" href="#housekeeping-in-v2315" title="Permanent link">¶</a></h3>
|
|
11795
|
-
<ul>
|
|
11796
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6688">#6688</a> - Cleaned-up documentation, misc fixes for VSCode DevContainer workflow.</li>
|
|
11797
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6689">#6689</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.49</code>.</li>
|
|
11798
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6693">#6693</a> - Changed <code>poetry install</code> in prerelease and release workflows from parallel mode to serial mode.</li>
|
|
11799
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6706">#6706</a> - Removed unnecessary <code>user-data.json</code> integration-test fixture file.</li>
|
|
11800
|
-
</ul>
|
|
11801
|
-
<h2 id="v2314-2024-12-19">v2.3.14 (2024-12-19)<a class="headerlink" href="#v2314-2024-12-19" title="Permanent link">¶</a></h2>
|
|
11802
|
-
<h3 id="added-in-v2314">Added in v2.3.14<a class="headerlink" href="#added-in-v2314" title="Permanent link">¶</a></h3>
|
|
11803
|
-
<ul>
|
|
11804
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Added logic to set the <code>parent</code> in the <code>clean()</code> method of the Prefix model, ensuring correct assignment during validation.</li>
|
|
11805
|
-
</ul>
|
|
11806
|
-
<h3 id="changed-in-v2314">Changed in v2.3.14<a class="headerlink" href="#changed-in-v2314" title="Permanent link">¶</a></h3>
|
|
11807
|
-
<ul>
|
|
11808
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6518">#6518</a> - Added VRFs column to Prefixes and Child Prefixes tables.</li>
|
|
11809
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6531">#6531</a> - Restrict the <code>id</code> filter field to use to only the <code>__n</code> (negation) lookup filter.</li>
|
|
11810
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6548">#6548</a> - Changed the save method of the <code>Prefix</code> model to reparent subnets and IPs only when the <code>network</code>, <code>namespace</code>, or <code>prefix_length</code> fields are updated.</li>
|
|
11811
|
-
</ul>
|
|
11812
|
-
<h3 id="fixed-in-v2314">Fixed in v2.3.14<a class="headerlink" href="#fixed-in-v2314" title="Permanent link">¶</a></h3>
|
|
11813
|
-
<ul>
|
|
11814
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/4056">#4056</a> - Fixed filter of add_tags and remove_tags of bulkedit based on content type</li>
|
|
11815
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6204">#6204</a> - Fixed out-of-memory errors when <code>LogsCleanup</code> system job resulted in cascade deletion of many related objects (such as <code>JobLogEntry</code> or <code>nautobot_ssot.SyncLogEntry</code> records).</li>
|
|
11816
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6470">#6470</a> - Fixed untagged VLAN dropdown options mismatch in InterfaceEditForm and in InterfaceBulkEditForm.</li>
|
|
11817
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6496">#6496</a> - Fixed <code>/ipam/prefixes/<UUID>/available-ips/</code> to correctly consider IPs under child Prefixes.</li>
|
|
11818
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6496">#6496</a> - Fixed <code>Prefix.get_first_available_ip()</code> method to not return IP taken by child Prefixes.</li>
|
|
11819
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6664">#6664</a> - Fixed <code>circuit_type</code> column not included correctly in CircuitTable default columns.</li>
|
|
11820
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6678">#6678</a> - Fixed incorrect copy button behavior on global search page.</li>
|
|
11821
|
-
</ul>
|
|
11822
|
-
<h3 id="documentation-in-v2314">Documentation in v2.3.14<a class="headerlink" href="#documentation-in-v2314" title="Permanent link">¶</a></h3>
|
|
11823
|
-
<ul>
|
|
11824
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6590">#6590</a> - Added an <code>ExampleEverythingJob</code> to the Example App and updated Job developer documentation to reference it as an example.</li>
|
|
11825
|
-
</ul>
|
|
11826
|
-
<h3 id="housekeeping-in-v2314">Housekeeping in v2.3.14<a class="headerlink" href="#housekeeping-in-v2314" title="Permanent link">¶</a></h3>
|
|
11827
|
-
<ul>
|
|
11828
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6657">#6657</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.48</code>.</li>
|
|
11829
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6659">#6659</a> - Enhanced development environment and associated <code>invoke</code> tasks to be Nautobot major/minor version aware, such that a different Docker compose <code>project-name</code> (and different local Docker image label) will be used for containers in a <code>develop</code>-based branch versus a <code>next</code>-based branch.</li>
|
|
11830
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6679">#6679</a> - Added <code>logs</code> task to <code>tasks.py</code> to view the logs of a docker compose service.</li>
|
|
11831
|
-
</ul>
|
|
11832
|
-
<h2 id="v2313-2024-12-10">v2.3.13 (2024-12-10)<a class="headerlink" href="#v2313-2024-12-10" title="Permanent link">¶</a></h2>
|
|
11833
|
-
<h3 id="security-in-v2313">Security in v2.3.13<a class="headerlink" href="#security-in-v2313" title="Permanent link">¶</a></h3>
|
|
11834
|
-
<ul>
|
|
11835
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>Django</code> to <code>~4.2.17</code> due to <code>CVE-2024-53907</code> and <code>CVE-2024-53908</code>.</li>
|
|
11836
|
-
</ul>
|
|
11837
|
-
<h3 id="added-in-v2313">Added in v2.3.13<a class="headerlink" href="#added-in-v2313" title="Permanent link">¶</a></h3>
|
|
11838
|
-
<ul>
|
|
11839
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/4817">#4817</a> - Added <code>Cluster</code> field on DeviceBulkEditForm.</li>
|
|
11840
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5333">#5333</a> - Added <code>Comments</code> field on DeviceBulkEditForm.</li>
|
|
11841
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Added support for an additional <code>suffix</code> when utilizing TableExtension to support tables like IPAddressDetailTable.</li>
|
|
11842
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6586">#6586</a> - Added description and weight on RoleBulkEditForm.</li>
|
|
11843
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Added <code>BaseTable</code> support for a <code>data_transform_callback</code> function that can be used to modify the table data after performing automatic QuerySet optimizations. (Several IPAM tables now use this functionality).</li>
|
|
11844
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Enhanced <code>LinkedCountColumn</code> to support a <code>distinct</code> parameter to handle cases where counts may otherwise be incorrect.</li>
|
|
11845
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Added <code>ip_addresses</code> and <code>has_ip_addresses</code> filter support to Device, Interface, and VirtualMachine FilterSets.</li>
|
|
11846
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6613">#6613</a> - Enhanced Prefix detail view "Child Prefixes" table to render associated Locations more intelligently.</li>
|
|
11847
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6614">#6614</a> - Enhanced IP Address tables to show the name of the associated Interface or VM Interface if only a single such association is present for a given IP Address.</li>
|
|
11848
|
-
</ul>
|
|
11849
|
-
<h3 id="changed-in-v2313">Changed in v2.3.13<a class="headerlink" href="#changed-in-v2313" title="Permanent link">¶</a></h3>
|
|
11850
|
-
<ul>
|
|
11851
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6166">#6166</a> - Enhanced the REST API to generally make it possible to create objects with known ids on request.</li>
|
|
11852
|
-
</ul>
|
|
11853
|
-
<h3 id="fixed-in-v2313">Fixed in v2.3.13<a class="headerlink" href="#fixed-in-v2313" title="Permanent link">¶</a></h3>
|
|
11854
|
-
<ul>
|
|
11855
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/3124">#3124</a> - Fixed inability of ImageAttachment and DeviceType API endpoints to accept <code>multipart/form-data</code> file uploads.</li>
|
|
11856
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/5166">#5166</a> - Fixed a <code>ProgrammingError</code> when applying permissions containing network-address-based constraints.</li>
|
|
11857
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6466">#6466</a> - Fixed <code>table_config</code> field not showing up correctly in the Saved View modal.</li>
|
|
11858
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6498">#6498</a> - Fixed error when using TableExtension when the table is missing <code>Meta.default_columns</code>.</li>
|
|
11859
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Improved rendering performance of the IPAddress list view in cases where the <code>Interfaces</code>, <code>Devices</code>, <code>VM Interfaces</code>, <code>Virtual Machines</code>, and/or <code>Assigned</code> columns are not shown.</li>
|
|
11860
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6605">#6605</a> - Improved performance of <code>TreeModel.display</code> calculation by making better use of the cache.</li>
|
|
11861
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6609">#6609</a> - Fixed unnecessary call to the database when logging from a Job with the parameter <code>extra={"skip_db_logging": True}</code>.</li>
|
|
11862
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed issue with <code>group_sync.py</code> where it was accessing the settings using environment variable name vs the actual settings name.</li>
|
|
11863
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6624">#6624</a> - Fixed the <code>SOCIAL_AUTH_PIPELINE</code> settings to include the entire path of the <code>group_sync</code> function.</li>
|
|
11864
|
-
</ul>
|
|
11865
|
-
<h3 id="dependencies-in-v2313">Dependencies in v2.3.13<a class="headerlink" href="#dependencies-in-v2313" title="Permanent link">¶</a></h3>
|
|
11866
|
-
<ul>
|
|
11867
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated <code>nh3</code> to <code>~0.2.19</code>.</li>
|
|
11868
|
-
</ul>
|
|
11869
|
-
<h3 id="documentation-in-v2313">Documentation in v2.3.13<a class="headerlink" href="#documentation-in-v2313" title="Permanent link">¶</a></h3>
|
|
11870
|
-
<ul>
|
|
11871
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6622">#6622</a> - Fixed AzureAD documentation for custom_module logging example.</li>
|
|
11872
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6636">#6636</a> - Fixed <code>group_sync</code> path in the SSO documentation.</li>
|
|
11873
|
-
</ul>
|
|
11874
|
-
<h3 id="housekeeping-in-v2313">Housekeeping in v2.3.13<a class="headerlink" href="#housekeeping-in-v2313" title="Permanent link">¶</a></h3>
|
|
11875
|
-
<ul>
|
|
11876
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6615">#6615</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.47</code>.</li>
|
|
11877
|
-
</ul>
|
|
11878
11233
|
<h2 id="v2312-2024-11-25">v2.3.12 (2024-11-25)<a class="headerlink" href="#v2312-2024-11-25" title="Permanent link">¶</a></h2>
|
|
11879
|
-
<h3 id="
|
|
11234
|
+
<h3 id="added_1">Added<a class="headerlink" href="#added_1" title="Permanent link">¶</a></h3>
|
|
11880
11235
|
<ul>
|
|
11881
11236
|
<li><a href="https://github.com/nautobot/nautobot/issues/6532">#6532</a> - Added a keyboard shortcut (⌘+enter or ctrl+enter) to submit forms when typing in a textarea.</li>
|
|
11882
11237
|
<li><a href="https://github.com/nautobot/nautobot/issues/6543">#6543</a> - Defined a generic SSO group authentication module that can be shared by any OAuth2/OIDC backend.</li>
|
|
11883
11238
|
<li><a href="https://github.com/nautobot/nautobot/issues/6550">#6550</a> - Added OSFP-XD (800GE and 1600GE) and OSFP1600 interface types.</li>
|
|
11884
11239
|
</ul>
|
|
11885
|
-
<h3 id="fixed
|
|
11240
|
+
<h3 id="fixed">Fixed<a class="headerlink" href="#fixed" title="Permanent link">¶</a></h3>
|
|
11886
11241
|
<ul>
|
|
11887
11242
|
<li><a href="https://github.com/nautobot/nautobot/issues/6242">#6242</a> - Fixed "copy" button on Device tabbed views to now only copy the device name.</li>
|
|
11888
11243
|
<li><a href="https://github.com/nautobot/nautobot/issues/6478">#6478</a> - Fixed inconsistent rendering of the Role field.</li>
|
|
@@ -11894,34 +11249,34 @@
|
|
|
11894
11249
|
<li><a href="https://github.com/nautobot/nautobot/issues/6547">#6547</a> - Fixed incorrect VRF filter specified on VRF column on Prefix Table.</li>
|
|
11895
11250
|
<li><a href="https://github.com/nautobot/nautobot/issues/6564">#6564</a> - Fixed an <code>AttributeError</code> raised when an App overrides a NautobotUIViewSet view.</li>
|
|
11896
11251
|
</ul>
|
|
11897
|
-
<h3 id="
|
|
11252
|
+
<h3 id="dependencies_1">Dependencies<a class="headerlink" href="#dependencies_1" title="Permanent link">¶</a></h3>
|
|
11898
11253
|
<ul>
|
|
11899
11254
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated <code>mysqlclient</code> dependency to <code>~2.2.6</code>.</li>
|
|
11900
11255
|
</ul>
|
|
11901
|
-
<h3 id="documentation
|
|
11256
|
+
<h3 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">¶</a></h3>
|
|
11902
11257
|
<ul>
|
|
11903
11258
|
<li><a href="https://github.com/nautobot/nautobot/issues/6516">#6516</a> - Updated release notes to make it clearer which are model changes.</li>
|
|
11904
11259
|
<li><a href="https://github.com/nautobot/nautobot/issues/6524">#6524</a> - Updated AzureAD authentication documentation.</li>
|
|
11905
11260
|
<li><a href="https://github.com/nautobot/nautobot/issues/6567">#6567</a> - Fixed incorrect example in documentation on using test factories.</li>
|
|
11906
11261
|
</ul>
|
|
11907
|
-
<h3 id="housekeeping
|
|
11262
|
+
<h3 id="housekeeping">Housekeeping<a class="headerlink" href="#housekeeping" title="Permanent link">¶</a></h3>
|
|
11908
11263
|
<ul>
|
|
11909
11264
|
<li><a href="https://github.com/nautobot/nautobot/issues/6459">#6459</a> - Updated documentation dependencies <code>mkdocs-redirects</code> to <code>1.2.2</code> and <code>mkdocs-material</code> to <code>9.5.46</code>.</li>
|
|
11910
11265
|
<li><a href="https://github.com/nautobot/nautobot/issues/6500">#6500</a> - Added support for <code>invoke showmigrations</code> command.</li>
|
|
11911
11266
|
</ul>
|
|
11912
11267
|
<h2 id="v2311-2024-11-12">v2.3.11 (2024-11-12)<a class="headerlink" href="#v2311-2024-11-12" title="Permanent link">¶</a></h2>
|
|
11913
|
-
<h3 id="
|
|
11268
|
+
<h3 id="added_2">Added<a class="headerlink" href="#added_2" title="Permanent link">¶</a></h3>
|
|
11914
11269
|
<ul>
|
|
11915
11270
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added <code>nautobot.apps.utils.get_related_field_for_models()</code> helper function.</li>
|
|
11916
11271
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Added optional <code>lookup</code> parameter to <code>LinkedCountColumn</code>.</li>
|
|
11917
11272
|
</ul>
|
|
11918
|
-
<h3 id="
|
|
11273
|
+
<h3 id="changed_1">Changed<a class="headerlink" href="#changed_1" title="Permanent link">¶</a></h3>
|
|
11919
11274
|
<ul>
|
|
11920
11275
|
<li><a href="https://github.com/nautobot/nautobot/issues/5321">#5321</a> - For bulk delete all objects view, only show the confirmation dialog without the table that shows the objects that would be deleted.</li>
|
|
11921
11276
|
<li><a href="https://github.com/nautobot/nautobot/issues/6231">#6231</a> - Changed most related-object-count table columns (e.g. the "Locations" column in a Prefix table) to, if only a single related record is present (e.g. a single Location is associated with a given Prefix), display that related record directly instead of just displaying <code>1</code>.</li>
|
|
11922
11277
|
<li><a href="https://github.com/nautobot/nautobot/issues/6465">#6465</a> - For bulk edit all objects view, skip rendering the table of related objects in the confirmation page.</li>
|
|
11923
11278
|
</ul>
|
|
11924
|
-
<h3 id="
|
|
11279
|
+
<h3 id="fixed_1">Fixed<a class="headerlink" href="#fixed_1" title="Permanent link">¶</a></h3>
|
|
11925
11280
|
<ul>
|
|
11926
11281
|
<li><a href="https://github.com/nautobot/nautobot/issues/6414">#6414</a> - Fixed layout bug in browsable REST API.</li>
|
|
11927
11282
|
<li><a href="https://github.com/nautobot/nautobot/issues/6442">#6442</a> - Fixed an issue where GitLab CI pipelines fail using all versions of official Docker images.</li>
|
|
@@ -11932,11 +11287,11 @@
|
|
|
11932
11287
|
<li><a href="https://github.com/nautobot/nautobot/issues/6491">#6491</a> - Added missing <code>vrf</code> field to <code>VMInterfaceForm</code> and <code>VMInterfaceCreateForm</code>.</li>
|
|
11933
11288
|
<li><a href="https://github.com/nautobot/nautobot/issues/6492">#6492</a> - Fixed <code>vlan_group</code> field is not filtered by <code>locations</code> field input on VLANForm.</li>
|
|
11934
11289
|
</ul>
|
|
11935
|
-
<h3 id="
|
|
11290
|
+
<h3 id="documentation_1">Documentation<a class="headerlink" href="#documentation_1" title="Permanent link">¶</a></h3>
|
|
11936
11291
|
<ul>
|
|
11937
11292
|
<li><a href="https://github.com/nautobot/nautobot/issues/6485">#6485</a> - Added additional clarification for enabling request profiling via user profile.</li>
|
|
11938
11293
|
</ul>
|
|
11939
|
-
<h3 id="
|
|
11294
|
+
<h3 id="housekeeping_1">Housekeeping<a class="headerlink" href="#housekeeping_1" title="Permanent link">¶</a></h3>
|
|
11940
11295
|
<ul>
|
|
11941
11296
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Added an integration test to create a Manufacturer, DeviceType, LocationType, Location, Role and Device to test the create forms and select2 api form fields are working correctly.</li>
|
|
11942
11297
|
<li><a href="https://github.com/nautobot/nautobot/issues/6449">#6449</a> - Fixed incorrect assertion in core navbar integration tests.</li>
|
|
@@ -11945,62 +11300,62 @@
|
|
|
11945
11300
|
<li><a href="https://github.com/nautobot/nautobot/issues/6497">#6497</a> - Added support for <code>--no-reusedb</code> option to <code>invoke integration-test</code> task.</li>
|
|
11946
11301
|
</ul>
|
|
11947
11302
|
<h2 id="v2310-2024-10-29">v2.3.10 (2024-10-29)<a class="headerlink" href="#v2310-2024-10-29" title="Permanent link">¶</a></h2>
|
|
11948
|
-
<h3 id="
|
|
11303
|
+
<h3 id="added_3">Added<a class="headerlink" href="#added_3" title="Permanent link">¶</a></h3>
|
|
11949
11304
|
<ul>
|
|
11950
11305
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added cacheable <code>CustomField.objects.keys_for_model(model)</code> API.</li>
|
|
11951
11306
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added queryset caching in <code>web_request_context</code> for more efficient JobHook and Webhook dispatching on bulk requests.</li>
|
|
11952
11307
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added logging to JobResults for CustomField provisioning background tasks.</li>
|
|
11953
11308
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Added more efficient database calls for most cases of bulk-provisioning CustomField data on model objects.</li>
|
|
11954
11309
|
</ul>
|
|
11955
|
-
<h3 id="
|
|
11310
|
+
<h3 id="changed_2">Changed<a class="headerlink" href="#changed_2" title="Permanent link">¶</a></h3>
|
|
11956
11311
|
<ul>
|
|
11957
11312
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Increased soft/hard time limits on CustomField provisioning background tasks to 1800 and 2000 seconds respectively.</li>
|
|
11958
11313
|
</ul>
|
|
11959
|
-
<h3 id="
|
|
11314
|
+
<h3 id="fixed_2">Fixed<a class="headerlink" href="#fixed_2" title="Permanent link">¶</a></h3>
|
|
11960
11315
|
<ul>
|
|
11961
11316
|
<li><a href="https://github.com/nautobot/nautobot/issues/6421">#6421</a> - Fixed long-running-at-scale transaction lock on records while adding/removing a CustomField definition.</li>
|
|
11962
11317
|
<li><a href="https://github.com/nautobot/nautobot/issues/6441">#6441</a> - Fixed a regression in 2.3.9 that broke the rendering of the Device create/edit form.</li>
|
|
11963
11318
|
</ul>
|
|
11964
|
-
<h3 id="
|
|
11319
|
+
<h3 id="dependencies_2">Dependencies<a class="headerlink" href="#dependencies_2" title="Permanent link">¶</a></h3>
|
|
11965
11320
|
<ul>
|
|
11966
11321
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated <code>mysqlclient</code> to <code>~2.2.5</code>.</li>
|
|
11967
11322
|
</ul>
|
|
11968
|
-
<h3 id="
|
|
11323
|
+
<h3 id="housekeeping_2">Housekeeping<a class="headerlink" href="#housekeeping_2" title="Permanent link">¶</a></h3>
|
|
11969
11324
|
<ul>
|
|
11970
11325
|
<li><a href="https://github.com/nautobot/nautobot/issues/6423">#6423</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.42</code>.</li>
|
|
11971
11326
|
</ul>
|
|
11972
11327
|
<h2 id="v239-2024-10-28">v2.3.9 (2024-10-28)<a class="headerlink" href="#v239-2024-10-28" title="Permanent link">¶</a></h2>
|
|
11973
|
-
<h3 id="
|
|
11328
|
+
<h3 id="added_4">Added<a class="headerlink" href="#added_4" title="Permanent link">¶</a></h3>
|
|
11974
11329
|
<ul>
|
|
11975
11330
|
<li><a href="https://github.com/nautobot/nautobot/issues/4899">#4899</a> - Added TableExtension class to allow app developers to add columns to core tables.</li>
|
|
11976
11331
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Added logic to ModuleBay model to ensure that if the <code>position</code> field is empty, its value will be automatically populated from the <code>name</code> of the Module Bay instance.</li>
|
|
11977
11332
|
<li><a href="https://github.com/nautobot/nautobot/issues/6372">#6372</a> - Added environment variable support for setting <code>CSRF_TRUSTED_ORIGINS</code>.</li>
|
|
11978
11333
|
</ul>
|
|
11979
|
-
<h3 id="
|
|
11334
|
+
<h3 id="changed_3">Changed<a class="headerlink" href="#changed_3" title="Permanent link">¶</a></h3>
|
|
11980
11335
|
<ul>
|
|
11981
11336
|
<li><a href="https://github.com/nautobot/nautobot/issues/6336">#6336</a> - Enhanced <code>position</code> fields on ModuleBayCreate/UpdateForms to auto-populate their values from <code>name</code> fields.</li>
|
|
11982
11337
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed <code>GitRepositorySync</code> system Job to run atomically (all-or-nothing), such that any failure in the resync will cause all associated database updates to be reverted.</li>
|
|
11983
11338
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Changed behavior of change logging <code>web_request_context()</code> to only reload Job code when a relevant JobHook is found to apply to the change in question.</li>
|
|
11984
11339
|
</ul>
|
|
11985
|
-
<h3 id="
|
|
11340
|
+
<h3 id="fixed_3">Fixed<a class="headerlink" href="#fixed_3" title="Permanent link">¶</a></h3>
|
|
11986
11341
|
<ul>
|
|
11987
11342
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed overly broad scope of the TreeModel <code>invalidate_max_depth_cache</code> signal so that it now correctly only fires for TreeModel instances rather than all models.</li>
|
|
11988
11343
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Improved performance of DynamicGroup membership updates/recalculations when dealing with large numbers of member objects.</li>
|
|
11989
11344
|
<li><a href="https://github.com/nautobot/nautobot/issues/6386">#6386</a> - Fixed reversed chronological ordering of JobHooks and Webhooks sent from a single <code>web_request_context</code> session.</li>
|
|
11990
11345
|
<li><a href="https://github.com/nautobot/nautobot/issues/6400">#6400</a> - Removed misleading help text from ModularComponentForm, as the <code>{module}</code> auto-substitution in names only applies through component <em>templates</em> at present.</li>
|
|
11991
11346
|
<li><a href="https://github.com/nautobot/nautobot/issues/6415">#6415</a> - Added missing column <code>software_version</code> to the Device Table in Device List View.</li>
|
|
11992
|
-
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the
|
|
11347
|
+
<li><a href="https://github.com/nautobot/nautobot/issues/6425">#6425</a> - Fixed bug in which ColoredLabelColumn() wasn't being applied to the `role' column on Device/VM interfaces.</li>
|
|
11993
11348
|
</ul>
|
|
11994
|
-
<h3 id="
|
|
11349
|
+
<h3 id="dependencies_3">Dependencies<a class="headerlink" href="#dependencies_3" title="Permanent link">¶</a></h3>
|
|
11995
11350
|
<ul>
|
|
11996
11351
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated <code>psycopg2-binary</code> dependency to <code>~2.9.10</code>.</li>
|
|
11997
11352
|
</ul>
|
|
11998
|
-
<h3 id="
|
|
11353
|
+
<h3 id="housekeeping_3">Housekeeping<a class="headerlink" href="#housekeeping_3" title="Permanent link">¶</a></h3>
|
|
11999
11354
|
<ul>
|
|
12000
11355
|
<li><a href="https://github.com/nautobot/nautobot/issues/6362">#6362</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.41</code>.</li>
|
|
12001
11356
|
</ul>
|
|
12002
11357
|
<h2 id="v238-2024-10-18">v2.3.8 (2024-10-18)<a class="headerlink" href="#v238-2024-10-18" title="Permanent link">¶</a></h2>
|
|
12003
|
-
<h3 id="
|
|
11358
|
+
<h3 id="fixed_4">Fixed<a class="headerlink" href="#fixed_4" title="Permanent link">¶</a></h3>
|
|
12004
11359
|
<ul>
|
|
12005
11360
|
<li><a href="https://github.com/nautobot/nautobot/issues/5050">#5050</a> - Changed logic to permit VLANs assigned to a device's location's parent locations (including parents of parents, etc.) to be assigned to that device's interfaces.</li>
|
|
12006
11361
|
<li><a href="https://github.com/nautobot/nautobot/issues/6297">#6297</a> - Fixed paginator widget to display the current selected <code>per_page</code> value even if it's not one of the <code>PER_PAGE_DEFAULTS</code> options.</li>
|
|
@@ -12009,27 +11364,27 @@
|
|
|
12009
11364
|
<li><a href="https://github.com/nautobot/nautobot/issues/6385">#6385</a> - Restored <code>Prefix.get_child_ips()</code> API mistakenly removed from v2.3.5 through v2.3.7.</li>
|
|
12010
11365
|
</ul>
|
|
12011
11366
|
<h2 id="v237-2024-10-15">v2.3.7 (2024-10-15)<a class="headerlink" href="#v237-2024-10-15" title="Permanent link">¶</a></h2>
|
|
12012
|
-
<h3 id="
|
|
11367
|
+
<h3 id="added_5">Added<a class="headerlink" href="#added_5" title="Permanent link">¶</a></h3>
|
|
12013
11368
|
<ul>
|
|
12014
11369
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added <code>assertBodyContains()</code> test helper API to <code>NautobotTestCaseMixin</code>.</li>
|
|
12015
11370
|
</ul>
|
|
12016
|
-
<h3 id="
|
|
11371
|
+
<h3 id="changed_4">Changed<a class="headerlink" href="#changed_4" title="Permanent link">¶</a></h3>
|
|
12017
11372
|
<ul>
|
|
12018
11373
|
<li><a href="https://github.com/nautobot/nautobot/issues/6205">#6205</a> - Changed initial <code>Nautobot initialized!</code> message logged on startup to include the Nautobot version number.</li>
|
|
12019
11374
|
<li><a href="https://github.com/nautobot/nautobot/issues/6350">#6350</a> - Changed the way that <code>ensure_git_repository</code> logs hashes to include the name of the repository.</li>
|
|
12020
11375
|
</ul>
|
|
12021
|
-
<h3 id="
|
|
11376
|
+
<h3 id="fixed_5">Fixed<a class="headerlink" href="#fixed_5" title="Permanent link">¶</a></h3>
|
|
12022
11377
|
<ul>
|
|
12023
11378
|
<li><a href="https://github.com/nautobot/nautobot/issues/6158">#6158</a> - Fixed a UI overflow issue with the Tenant Stats panel.</li>
|
|
12024
11379
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added retry logic and error handling for several cases where an intermittent Redis connection error could cause Celery to throw an exception.</li>
|
|
12025
11380
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Fixed duplicate loading of <code>nautobot_config.py</code> during Nautobot startup.</li>
|
|
12026
11381
|
<li><a href="https://github.com/nautobot/nautobot/issues/6329">#6329</a> - Added a data migration to fix DynamicGroup <code>group_type</code> values set incorrectly in upgrading to Nautobot 2.3.x.</li>
|
|
12027
11382
|
</ul>
|
|
12028
|
-
<h3 id="
|
|
11383
|
+
<h3 id="dependencies_4">Dependencies<a class="headerlink" href="#dependencies_4" title="Permanent link">¶</a></h3>
|
|
12029
11384
|
<ul>
|
|
12030
11385
|
<li><a href="https://github.com/nautobot/nautobot/issues/6299">#6299</a> - Added a direct dependency on <code>kombu</code> to guarantee the presence of some essential fixes for this Celery dependency.</li>
|
|
12031
11386
|
</ul>
|
|
12032
|
-
<h3 id="
|
|
11387
|
+
<h3 id="housekeeping_4">Housekeeping<a class="headerlink" href="#housekeeping_4" title="Permanent link">¶</a></h3>
|
|
12033
11388
|
<ul>
|
|
12034
11389
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Added usage of <code>extract_page_body()</code> to many view-related test cases in order to make their failure output more readable.</li>
|
|
12035
11390
|
<li><a href="https://github.com/nautobot/nautobot/issues/2784">#2784</a> - Modified many view-related test cases to use new <code>assertBodyContains()</code> test helper method for brevity.</li>
|
|
@@ -12040,36 +11395,36 @@
|
|
|
12040
11395
|
<li><a href="https://github.com/nautobot/nautobot/issues/6318">#6318</a> - Added <code>--remove-orphans</code> to the docker compose commands for <code>invoke stop</code> and <code>invoke destroy</code>.</li>
|
|
12041
11396
|
</ul>
|
|
12042
11397
|
<h2 id="v236-2024-10-02">v2.3.6 (2024-10-02)<a class="headerlink" href="#v236-2024-10-02" title="Permanent link">¶</a></h2>
|
|
12043
|
-
<h3 id="
|
|
11398
|
+
<h3 id="added_6">Added<a class="headerlink" href="#added_6" title="Permanent link">¶</a></h3>
|
|
12044
11399
|
<ul>
|
|
12045
11400
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added range field on <code>VLANGroup</code> model.</li>
|
|
12046
11401
|
<li><a href="https://github.com/nautobot/nautobot/issues/5903">#5903</a> - Added tags on <code>VLANGroup</code> model.</li>
|
|
12047
11402
|
</ul>
|
|
12048
|
-
<h3 id="
|
|
11403
|
+
<h3 id="fixed_6">Fixed<a class="headerlink" href="#fixed_6" title="Permanent link">¶</a></h3>
|
|
12049
11404
|
<ul>
|
|
12050
11405
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed an error during startup when an App included a REST API serializer inheriting from an unexpected base class.</li>
|
|
12051
11406
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Fixed a warning during startup about the <code>extras.FileAttachment</code> model.</li>
|
|
12052
11407
|
</ul>
|
|
12053
|
-
<h3 id="
|
|
11408
|
+
<h3 id="documentation_2">Documentation<a class="headerlink" href="#documentation_2" title="Permanent link">¶</a></h3>
|
|
12054
11409
|
<ul>
|
|
12055
11410
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Added a note to the release overview section for app developers regarding opt-in/opt-out of model features.</li>
|
|
12056
11411
|
<li><a href="https://github.com/nautobot/nautobot/issues/6304">#6304</a> - Updated app model developer documentation with more details about feature opt-out.</li>
|
|
12057
11412
|
</ul>
|
|
12058
|
-
<h3 id="
|
|
11413
|
+
<h3 id="housekeeping_5">Housekeeping<a class="headerlink" href="#housekeeping_5" title="Permanent link">¶</a></h3>
|
|
12059
11414
|
<ul>
|
|
12060
11415
|
<li><a href="https://github.com/nautobot/nautobot/issues/6308">#6308</a> - Increase the minimum number of content-types to three and capped the maximum to five for MetadataType instances created by MetadataTypeFactory.</li>
|
|
12061
11416
|
</ul>
|
|
12062
11417
|
<h2 id="v235-2024-09-30">v2.3.5 (2024-09-30)<a class="headerlink" href="#v235-2024-09-30" title="Permanent link">¶</a></h2>
|
|
12063
|
-
<h3 id="
|
|
11418
|
+
<h3 id="added_7">Added<a class="headerlink" href="#added_7" title="Permanent link">¶</a></h3>
|
|
12064
11419
|
<ul>
|
|
12065
11420
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Added <code>is_occupied</code> boolean filter to the Rack elevation API endpoint to allow filtering by occupied or unoccupied units.</li>
|
|
12066
11421
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Added the add button to IPAM Services.</li>
|
|
12067
11422
|
</ul>
|
|
12068
|
-
<h3 id="
|
|
11423
|
+
<h3 id="changed_5">Changed<a class="headerlink" href="#changed_5" title="Permanent link">¶</a></h3>
|
|
12069
11424
|
<ul>
|
|
12070
11425
|
<li><a href="https://github.com/nautobot/nautobot/issues/6057">#6057</a> - Enhanced job delete functions to prevent users from deleting system jobs from the UI and the API.</li>
|
|
12071
11426
|
</ul>
|
|
12072
|
-
<h3 id="
|
|
11427
|
+
<h3 id="fixed_7">Fixed<a class="headerlink" href="#fixed_7" title="Permanent link">¶</a></h3>
|
|
12073
11428
|
<ul>
|
|
12074
11429
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
12075
11430
|
<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>
|
|
@@ -12080,16 +11435,16 @@
|
|
|
12080
11435
|
<li><a href="https://github.com/nautobot/nautobot/issues/6257">#6257</a> - Fixed the selection options for <code>position</code> on the device add/edit form to disable RUs that are currently occupied.</li>
|
|
12081
11436
|
<li><a href="https://github.com/nautobot/nautobot/issues/6289">#6289</a> - Fixed lookup of IP Addresses in the Service form.</li>
|
|
12082
11437
|
</ul>
|
|
12083
|
-
<h3 id="
|
|
11438
|
+
<h3 id="dependencies_5">Dependencies<a class="headerlink" href="#dependencies_5" title="Permanent link">¶</a></h3>
|
|
12084
11439
|
<ul>
|
|
12085
11440
|
<li><a href="https://github.com/nautobot/nautobot/issues/6247">#6247</a> - Updated documentation dependency <code>mkdocs-material</code> to <code>~9.5.35</code>.</li>
|
|
12086
11441
|
<li><a href="https://github.com/nautobot/nautobot/issues/6287">#6287</a> - Replaced incorrect <code>django-structlog[all]</code> dependency with <code>django-structlog[celery]</code>.</li>
|
|
12087
11442
|
</ul>
|
|
12088
|
-
<h3 id="
|
|
11443
|
+
<h3 id="documentation_3">Documentation<a class="headerlink" href="#documentation_3" title="Permanent link">¶</a></h3>
|
|
12089
11444
|
<ul>
|
|
12090
11445
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Added to the core developer documentation a warning against the use of data factories within test case code.</li>
|
|
12091
11446
|
</ul>
|
|
12092
|
-
<h3 id="
|
|
11447
|
+
<h3 id="housekeeping_6">Housekeeping<a class="headerlink" href="#housekeeping_6" title="Permanent link">¶</a></h3>
|
|
12093
11448
|
<ul>
|
|
12094
11449
|
<li><a href="https://github.com/nautobot/nautobot/issues/5802">#5802</a> - Override <code>get_required_permission()</code> in SavedViewUIViewSet to achieve the intended behavior.</li>
|
|
12095
11450
|
<li><a href="https://github.com/nautobot/nautobot/issues/6264">#6264</a> - Changed <code>invoke unittest</code> to default to <code>--parallel</code> even when a <code>--label</code> value is specified.</li>
|
|
@@ -12098,22 +11453,22 @@
|
|
|
12098
11453
|
<li><a href="https://github.com/nautobot/nautobot/issues/6292">#6292</a> - Corrected logic of several VLAN test cases.</li>
|
|
12099
11454
|
</ul>
|
|
12100
11455
|
<h2 id="v234-2024-09-18">v2.3.4 (2024-09-18)<a class="headerlink" href="#v234-2024-09-18" title="Permanent link">¶</a></h2>
|
|
12101
|
-
<h3 id="
|
|
11456
|
+
<h3 id="added_8">Added<a class="headerlink" href="#added_8" title="Permanent link">¶</a></h3>
|
|
12102
11457
|
<ul>
|
|
12103
11458
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added support for <code>NAUTOBOT_CACHES_TIMEOUT</code> environment variable.</li>
|
|
12104
11459
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Added the ability to filter virtual machines by their <code>cluster</code> names or IDs.</li>
|
|
12105
11460
|
</ul>
|
|
12106
|
-
<h3 id="
|
|
11461
|
+
<h3 id="changed_6">Changed<a class="headerlink" href="#changed_6" title="Permanent link">¶</a></h3>
|
|
12107
11462
|
<ul>
|
|
12108
11463
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Changed default cache timeout for Constance configuration from 1 day to 300 seconds to match other caches.</li>
|
|
12109
11464
|
</ul>
|
|
12110
|
-
<h3 id="
|
|
11465
|
+
<h3 id="fixed_8">Fixed<a class="headerlink" href="#fixed_8" title="Permanent link">¶</a></h3>
|
|
12111
11466
|
<ul>
|
|
12112
11467
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in ClusterTable for device count column.</li>
|
|
12113
11468
|
<li><a href="https://github.com/nautobot/nautobot/issues/6207">#6207</a> - Fixed incorrect link in PowerPanelTable for power feed count column.</li>
|
|
12114
11469
|
<li><a href="https://github.com/nautobot/nautobot/issues/6230">#6230</a> - Fixed an issue with Celery Scheduler around datetime imports.</li>
|
|
12115
11470
|
</ul>
|
|
12116
|
-
<h3 id="
|
|
11471
|
+
<h3 id="documentation_4">Documentation<a class="headerlink" href="#documentation_4" title="Permanent link">¶</a></h3>
|
|
12117
11472
|
<ul>
|
|
12118
11473
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Required Settings" and "Optional Settings" docs into a single unified "Settings" document.</li>
|
|
12119
11474
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Consolidated "Administration: Installation Extras" docs section into the "Administration: Guides" section.</li>
|
|
@@ -12121,7 +11476,7 @@
|
|
|
12121
11476
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Added <code>environment_variables</code> keys to <code>settings.yaml</code> to more accurately document settings that are influenced by multiple environment variables together.</li>
|
|
12122
11477
|
<li><a href="https://github.com/nautobot/nautobot/issues/5795">#5795</a> - Removed <code>is_required_setting</code> keys from <code>settings.yaml</code> as no longer relevant.</li>
|
|
12123
11478
|
</ul>
|
|
12124
|
-
<h3 id="
|
|
11479
|
+
<h3 id="housekeeping_7">Housekeeping<a class="headerlink" href="#housekeeping_7" title="Permanent link">¶</a></h3>
|
|
12125
11480
|
<ul>
|
|
12126
11481
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>--cache-test-fixtures</code> and <code>--keepdb</code> flags from opt-in to opt-out for <code>invoke unittest</code> and <code>invoke integration-test</code> commands.</li>
|
|
12127
11482
|
<li><a href="https://github.com/nautobot/nautobot/issues/5859">#5859</a> - Changed <code>invoke unittest</code> to automatically include <code>--parallel</code> flag when running the entire unit test suite.</li>
|
|
@@ -12129,22 +11484,22 @@
|
|
|
12129
11484
|
<li><a href="https://github.com/nautobot/nautobot/issues/6227">#6227</a> - Fixed typo in app upstream testing workflow.</li>
|
|
12130
11485
|
</ul>
|
|
12131
11486
|
<h2 id="v233-2024-09-16">v2.3.3 (2024-09-16)<a class="headerlink" href="#v233-2024-09-16" title="Permanent link">¶</a></h2>
|
|
12132
|
-
<h3 id="security
|
|
11487
|
+
<h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">¶</a></h3>
|
|
12133
11488
|
<ul>
|
|
12134
11489
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated <code>Django</code> to <code>~4.2.16</code> to address <code>CVE-2024-45230</code> and <code>CVE-2024-45231</code>.</li>
|
|
12135
11490
|
</ul>
|
|
12136
|
-
<h3 id="
|
|
11491
|
+
<h3 id="fixed_9">Fixed<a class="headerlink" href="#fixed_9" title="Permanent link">¶</a></h3>
|
|
12137
11492
|
<ul>
|
|
12138
11493
|
<li><a href="https://github.com/nautobot/nautobot/issues/6184">#6184</a> - Fixed an exception in <code>extras.models.groups._map_filter_fields</code> method when certain App <code>filter_extensions</code> were present.</li>
|
|
12139
11494
|
<li><a href="https://github.com/nautobot/nautobot/issues/6190">#6190</a> - Added <code>display</code> property to Prefix to display its namespace along with the prefix to allow differentiation between prefixes in the UI.</li>
|
|
12140
11495
|
<li><a href="https://github.com/nautobot/nautobot/issues/6197">#6197</a> - Fixed an exception in <code>core.utils.lookup.get_model_for_view_name</code> function when rendering certain App object list views.</li>
|
|
12141
11496
|
<li><a href="https://github.com/nautobot/nautobot/issues/6203">#6203</a> - Fixed a performance regression observed when change logging resulted in a large number of ObjectChange records (such as in an SSOT Job).</li>
|
|
12142
11497
|
</ul>
|
|
12143
|
-
<h3 id="
|
|
11498
|
+
<h3 id="dependencies_6">Dependencies<a class="headerlink" href="#dependencies_6" title="Permanent link">¶</a></h3>
|
|
12144
11499
|
<ul>
|
|
12145
11500
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated <code>pyuwsgi</code> to <code>~2.0.26</code> and <code>PyYAML</code> to <code>~6.0.2</code>.</li>
|
|
12146
11501
|
</ul>
|
|
12147
|
-
<h3 id="
|
|
11502
|
+
<h3 id="housekeeping_8">Housekeeping<a class="headerlink" href="#housekeeping_8" title="Permanent link">¶</a></h3>
|
|
12148
11503
|
<ul>
|
|
12149
11504
|
<li><a href="https://github.com/nautobot/nautobot/issues/5376">#5376</a> - Disabled <code>coverage</code> during initial test database setup to improve test performance.</li>
|
|
12150
11505
|
<li><a href="https://github.com/nautobot/nautobot/issues/6084">#6084</a> - Updated development dependencies <code>factory-boy</code> to <code>~3.3.1</code>, <code>ruff</code> to <code>~0.5.7</code>, and <code>watchdog</code> to <code>~4.0.2</code>.</li>
|
|
@@ -12154,18 +11509,18 @@
|
|
|
12154
11509
|
<li><a href="https://github.com/nautobot/nautobot/issues/6212">#6212</a> - Updated development dependency <code>pylint</code> to <code>~3.2.7</code>.</li>
|
|
12155
11510
|
</ul>
|
|
12156
11511
|
<h2 id="v232-2024-09-03">v2.3.2 (2024-09-03)<a class="headerlink" href="#v232-2024-09-03" title="Permanent link">¶</a></h2>
|
|
12157
|
-
<h3 id="
|
|
11512
|
+
<h3 id="security_1">Security<a class="headerlink" href="#security_1" title="Permanent link">¶</a></h3>
|
|
12158
11513
|
<ul>
|
|
12159
11514
|
<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>
|
|
12160
11515
|
</ul>
|
|
12161
|
-
<h3 id="
|
|
11516
|
+
<h3 id="added_9">Added<a class="headerlink" href="#added_9" title="Permanent link">¶</a></h3>
|
|
12162
11517
|
<ul>
|
|
12163
11518
|
<li><a href="https://github.com/nautobot/nautobot/issues/5180">#5180</a> - Add filtering Job Results by Scheduled Job.</li>
|
|
12164
11519
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time_zone</code> field to <code>ScheduledJob</code> model.</li>
|
|
12165
11520
|
<li><a href="https://github.com/nautobot/nautobot/issues/6120">#6120</a> - Added Status Field to VRF model.</li>
|
|
12166
11521
|
<li><a href="https://github.com/nautobot/nautobot/issues/6129">#6129</a> - Added collapsible icon rotation to homepage panels.</li>
|
|
12167
11522
|
</ul>
|
|
12168
|
-
<h3 id="
|
|
11523
|
+
<h3 id="fixed_10">Fixed<a class="headerlink" href="#fixed_10" title="Permanent link">¶</a></h3>
|
|
12169
11524
|
<ul>
|
|
12170
11525
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Corrected several bugs around handling of <code>ScheduledJob</code> execution when <code>settings.TIME_ZONE</code> is other than "UTC".</li>
|
|
12171
11526
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added missing <code>Meta.ordering</code> definition to <code>ScheduledJob</code> model.</li>
|
|
@@ -12174,7 +11529,7 @@
|
|
|
12174
11529
|
<li><a href="https://github.com/nautobot/nautobot/issues/6146">#6146</a> - Added missing DynamicGroup content to Device Detail View and Software Image File Detail View.</li>
|
|
12175
11530
|
<li><a href="https://github.com/nautobot/nautobot/issues/6175">#6175</a> - Prevented some <code>AttributeError</code> exceptions from being raised when an App contains a model that doesn't inherit from <code>BaseModel</code>.</li>
|
|
12176
11531
|
</ul>
|
|
12177
|
-
<h3 id="
|
|
11532
|
+
<h3 id="housekeeping_9">Housekeeping<a class="headerlink" href="#housekeeping_9" title="Permanent link">¶</a></h3>
|
|
12178
11533
|
<ul>
|
|
12179
11534
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>watchmedo</code> to <code>celery_beat</code> development container.</li>
|
|
12180
11535
|
<li><a href="https://github.com/nautobot/nautobot/issues/5591">#5591</a> - Added <code>time-machine</code> as a development environment (test execution) dependency.</li>
|
|
@@ -12182,33 +11537,33 @@
|
|
|
12182
11537
|
<li><a href="https://github.com/nautobot/nautobot/issues/6147">#6147</a> - Added <code>development/cleanup_factory_dump.py</code> helper script to aid in identifying other issues with test data.</li>
|
|
12183
11538
|
</ul>
|
|
12184
11539
|
<h2 id="v231-2024-08-19">v2.3.1 (2024-08-19)<a class="headerlink" href="#v231-2024-08-19" title="Permanent link">¶</a></h2>
|
|
12185
|
-
<h3 id="
|
|
11540
|
+
<h3 id="added_10">Added<a class="headerlink" href="#added_10" title="Permanent link">¶</a></h3>
|
|
12186
11541
|
<ul>
|
|
12187
11542
|
<li><a href="https://github.com/nautobot/nautobot/issues/5232">#5232</a> - Added support for groupings to computed fields.</li>
|
|
12188
11543
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Added validation logic to <code>DeviceForm</code> <code>clean()</code> method to raise a validation error if there is any invalid software image file specified.</li>
|
|
12189
11544
|
<li><a href="https://github.com/nautobot/nautobot/issues/5915">#5915</a> - Enhanced <code>IPAddress.objects.get_or_create</code> method to permit specifying a namespace as an alternative to a parent prefix.</li>
|
|
12190
11545
|
</ul>
|
|
12191
|
-
<h3 id="
|
|
11546
|
+
<h3 id="changed_7">Changed<a class="headerlink" href="#changed_7" title="Permanent link">¶</a></h3>
|
|
12192
11547
|
<ul>
|
|
12193
11548
|
<li><a href="https://github.com/nautobot/nautobot/issues/5970">#5970</a> - Removed indentations for PrefixTable in various locations in the UI.</li>
|
|
12194
11549
|
</ul>
|
|
12195
|
-
<h3 id="
|
|
11550
|
+
<h3 id="fixed_11">Fixed<a class="headerlink" href="#fixed_11" title="Permanent link">¶</a></h3>
|
|
12196
11551
|
<ul>
|
|
12197
11552
|
<li><a href="https://github.com/nautobot/nautobot/issues/5494">#5494</a> - Fixed <code>Device</code> model <code>clean()</code> validation logic to allow user to specify a software version on a device without specifying any software image files.</li>
|
|
12198
11553
|
<li><a href="https://github.com/nautobot/nautobot/issues/6096">#6096</a> - Updated CloudAccount UI: Set the <code>secrets_group</code> form field to be optional.</li>
|
|
12199
11554
|
<li><a href="https://github.com/nautobot/nautobot/issues/6097">#6097</a> - Updated ContactAssociation API: Set the role field to be required.</li>
|
|
12200
11555
|
<li><a href="https://github.com/nautobot/nautobot/issues/6116">#6116</a> - Added handling for an <code>OperationalError</code> that might be raised when running <code>pylint-nautobot</code> or similar linters that depend on successfully running <code>nautobot.setup()</code>.</li>
|
|
12201
11556
|
</ul>
|
|
12202
|
-
<h3 id="
|
|
11557
|
+
<h3 id="housekeeping_10">Housekeeping<a class="headerlink" href="#housekeeping_10" title="Permanent link">¶</a></h3>
|
|
12203
11558
|
<ul>
|
|
12204
11559
|
<li><a href="https://github.com/nautobot/nautobot/issues/6107">#6107</a> - Updated documentation dependency <code>mkdocstrings-python</code> to <code>~1.10.8</code>.</li>
|
|
12205
11560
|
</ul>
|
|
12206
11561
|
<h2 id="v230-2024-08-08">v2.3.0 (2024-08-08)<a class="headerlink" href="#v230-2024-08-08" title="Permanent link">¶</a></h2>
|
|
12207
|
-
<h3 id="
|
|
11562
|
+
<h3 id="security_2">Security<a class="headerlink" href="#security_2" title="Permanent link">¶</a></h3>
|
|
12208
11563
|
<ul>
|
|
12209
11564
|
<li><a href="https://github.com/nautobot/nautobot/issues/6073">#6073</a> - Updated <code>Django</code> to <code>~4.2.15</code> due to <code>CVE-2024-41989</code>, <code>CVE-2024-41990</code>, <code>CVE-2024-41991</code>, and <code>CVE-2024-42005</code>.</li>
|
|
12210
11565
|
</ul>
|
|
12211
|
-
<h3 id="
|
|
11566
|
+
<h3 id="added_11">Added<a class="headerlink" href="#added_11" title="Permanent link">¶</a></h3>
|
|
12212
11567
|
<ul>
|
|
12213
11568
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added missing <code>comments</code> field to DeviceType bulk edit.</li>
|
|
12214
11569
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Added <code>comments</code> field to ModuleType.</li>
|
|
@@ -12218,7 +11573,7 @@
|
|
|
12218
11573
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for querying <code>GenericRelation</code> relationships (reverse of <code>GenericForeignKey</code>) in GraphQL.</li>
|
|
12219
11574
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Added support for filtering an object's <code>associated_contacts</code> in GraphQL.</li>
|
|
12220
11575
|
</ul>
|
|
12221
|
-
<h3 id="
|
|
11576
|
+
<h3 id="changed_8">Changed<a class="headerlink" href="#changed_8" title="Permanent link">¶</a></h3>
|
|
12222
11577
|
<ul>
|
|
12223
11578
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed rendering of <code>scoped_fields</code> column in <code>ObjectMetadataTable</code>.</li>
|
|
12224
11579
|
<li><a href="https://github.com/nautobot/nautobot/issues/6003">#6003</a> - Changed default ordering of <code>ObjectMetadata</code> list views.</li>
|
|
@@ -12227,12 +11582,12 @@
|
|
|
12227
11582
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Changed <code>CloudNetwork.parent</code> foreign-key <code>on_delete</code> behavior to <code>PROTECT</code>.</li>
|
|
12228
11583
|
<li><a href="https://github.com/nautobot/nautobot/issues/6070">#6070</a> - Marked the <code>Note</code> model as <code>is_metadata_associable_model = False</code>.</li>
|
|
12229
11584
|
</ul>
|
|
12230
|
-
<h3 id="removed
|
|
11585
|
+
<h3 id="removed">Removed<a class="headerlink" href="#removed" title="Permanent link">¶</a></h3>
|
|
12231
11586
|
<ul>
|
|
12232
11587
|
<li><a href="https://github.com/nautobot/nautobot/issues/6005">#6005</a> - Removed "delete" and "bulk-delete" functionalities from the ObjectMetadata views.</li>
|
|
12233
11588
|
<li><a href="https://github.com/nautobot/nautobot/issues/6039">#6039</a> - Removed unneeded <code>CloudNetworkPrefixAssignmentTable</code>.</li>
|
|
12234
11589
|
</ul>
|
|
12235
|
-
<h3 id="
|
|
11590
|
+
<h3 id="fixed_12">Fixed<a class="headerlink" href="#fixed_12" title="Permanent link">¶</a></h3>
|
|
12236
11591
|
<ul>
|
|
12237
11592
|
<li><a href="https://github.com/nautobot/nautobot/issues/5967">#5967</a> - Fixed a regression in the display of custom fields in object-edit forms.</li>
|
|
12238
11593
|
<li><a href="https://github.com/nautobot/nautobot/issues/5996">#5996</a> - Fixed URL typo in module and module type list views.</li>
|
|
@@ -12248,7 +11603,7 @@
|
|
|
12248
11603
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>IPAddressFilterSet.device</code> filter.</li>
|
|
12249
11604
|
<li><a href="https://github.com/nautobot/nautobot/issues/6064">#6064</a> - Reverted an undesired change to <code>ServiceForm.ip_addresses</code> valid addresses.</li>
|
|
12250
11605
|
</ul>
|
|
12251
|
-
<h3 id="
|
|
11606
|
+
<h3 id="documentation_5">Documentation<a class="headerlink" href="#documentation_5" title="Permanent link">¶</a></h3>
|
|
12252
11607
|
<ul>
|
|
12253
11608
|
<li><a href="https://github.com/nautobot/nautobot/issues/5920">#5920</a> - Updated documentation for installation under Ubuntu 24.04 LTS, Fedora 40, AlmaLinux 9, and similar distros.</li>
|
|
12254
11609
|
<li><a href="https://github.com/nautobot/nautobot/issues/6019">#6019</a> - Updated the installation documentation to recommend a more secure set of filesystem permissions.</li>
|
|
@@ -12256,7 +11611,7 @@
|
|
|
12256
11611
|
<li><a href="https://github.com/nautobot/nautobot/issues/6050">#6050</a> - Added some crosslinks within the DCIM model documentation.</li>
|
|
12257
11612
|
<li><a href="https://github.com/nautobot/nautobot/issues/6062">#6062</a> - Updated Configuration Context docs with additional examples for dictionary of dictionaries.</li>
|
|
12258
11613
|
</ul>
|
|
12259
|
-
<h3 id="
|
|
11614
|
+
<h3 id="housekeeping_11">Housekeeping<a class="headerlink" href="#housekeeping_11" title="Permanent link">¶</a></h3>
|
|
12260
11615
|
<ul>
|
|
12261
11616
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated development dependency <code>ruff</code> to <code>~0.5.6</code>.</li>
|
|
12262
11617
|
<li><a href="https://github.com/nautobot/nautobot/issues/5962">#5962</a> - Updated documentation dependencies: <code>mkdocs-material</code> to <code>~9.5.31</code>, <code>mkdocstrings</code> to <code>~0.25.2</code>, and <code>mkdocstrings-python</code> to <code>~1.10.7</code>.</li>
|
|
@@ -12267,11 +11622,11 @@
|
|
|
12267
11622
|
<li><a href="https://github.com/nautobot/nautobot/issues/6071">#6071</a> - Fixed incorrect generic-test logic in <code>FilterTestCase.test_q_filter_valid</code> for <code>q</code> filters containing <code>iexact</code> lookups.</li>
|
|
12268
11623
|
</ul>
|
|
12269
11624
|
<h2 id="v230-beta1-2024-07-25">v2.3.0-beta.1 (2024-07-25)<a class="headerlink" href="#v230-beta1-2024-07-25" title="Permanent link">¶</a></h2>
|
|
12270
|
-
<h3 id="
|
|
11625
|
+
<h3 id="security_3">Security<a class="headerlink" href="#security_3" title="Permanent link">¶</a></h3>
|
|
12271
11626
|
<ul>
|
|
12272
11627
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>Django</code> to <code>~4.2.14</code> due to <code>CVE-2024-38875</code>, <code>CVE-2024-39329</code>, <code>CVE-2024-39330</code>, and <code>CVE-2024-39614</code>.</li>
|
|
12273
11628
|
</ul>
|
|
12274
|
-
<h3 id="
|
|
11629
|
+
<h3 id="added_12">Added<a class="headerlink" href="#added_12" title="Permanent link">¶</a></h3>
|
|
12275
11630
|
<ul>
|
|
12276
11631
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Implemented SavedView model.</li>
|
|
12277
11632
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Added ModuleBay, Module, ModuleType and ModuleBayTemplate models to support modeling line cards and other modular components of a device.</li>
|
|
@@ -12318,7 +11673,7 @@
|
|
|
12318
11673
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added tables of related <code>CloudService</code> and/or <code>CloudNetwork</code> instances to the <code>CloudResourceType</code> detail view.</li>
|
|
12319
11674
|
<li><a href="https://github.com/nautobot/nautobot/issues/5933">#5933</a> - Added <code>description</code> field to <code>CloudService</code> model.</li>
|
|
12320
11675
|
</ul>
|
|
12321
|
-
<h3 id="
|
|
11676
|
+
<h3 id="changed_9">Changed<a class="headerlink" href="#changed_9" title="Permanent link">¶</a></h3>
|
|
12322
11677
|
<ul>
|
|
12323
11678
|
<li><a href="https://github.com/nautobot/nautobot/issues/2101">#2101</a> - Updated device interfaces filter to support filtering by interface name as well as by ID.</li>
|
|
12324
11679
|
<li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Changed behavior of the <code>CHANGELOG_RETENTION</code> setting; it no longer applies automatically to force cleanup of ObjectChange records over a certain age cutoff, but instead serves as the default cutoff age whenever running the new "Logs Cleanup" system Job.</li>
|
|
@@ -12350,19 +11705,19 @@
|
|
|
12350
11705
|
<li><a href="https://github.com/nautobot/nautobot/issues/5977">#5977</a> - Changed the provider field help text of CloudAccount and CloudResourceType model classes and forms.</li>
|
|
12351
11706
|
<li><a href="https://github.com/nautobot/nautobot/issues/5978">#5978</a> - Changed CloudService <code>cloud_network</code> field from a ForeignKey to a ManyToMany called <code>cloud_networks</code>.</li>
|
|
12352
11707
|
</ul>
|
|
12353
|
-
<h3 id="deprecated
|
|
11708
|
+
<h3 id="deprecated">Deprecated<a class="headerlink" href="#deprecated" title="Permanent link">¶</a></h3>
|
|
12354
11709
|
<ul>
|
|
12355
11710
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Deprecated the properties <code>DynamicGroup.members_cached</code>, <code>DynamicGroup.members_cache_key</code>, <code>DynamicGroupMixin.dynamic_groups_cached</code>, <code>DynamicGroupMixin.dynamic_groups_list</code>, and <code>DynamicGroupMixin.dynamic_groups_list_cached</code>.</li>
|
|
12356
11711
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Deprecated the <code>DynamicGroupMixin</code> model mixin class. Models supporting Dynamic Groups should use <code>DynamicGroupsModelMixin</code> instead.</li>
|
|
12357
11712
|
<li><a href="https://github.com/nautobot/nautobot/issues/5870">#5870</a> - Deprecated the blocks <code>block export_button</code> and <code>block import_button</code> in <code>generic/object_list.html</code>. Apps and templates should migrate to using <code>block export_list_element</code> and <code>block import_list_element</code> respectively.</li>
|
|
12358
11713
|
</ul>
|
|
12359
|
-
<h3 id="
|
|
11714
|
+
<h3 id="removed_1">Removed<a class="headerlink" href="#removed_1" title="Permanent link">¶</a></h3>
|
|
12360
11715
|
<ul>
|
|
12361
11716
|
<li><a href="https://github.com/nautobot/nautobot/issues/3749">#3749</a> - Removed automatic random cleanup of ObjectChange records when processing requests and signals.</li>
|
|
12362
11717
|
<li><a href="https://github.com/nautobot/nautobot/issues/5473">#5473</a> - Removed <code>DYNAMIC_GROUPS_MEMBER_CACHE_TIMEOUT</code> setting as it is no longer relevant after refactoring the Dynamic Group membership caching implementation.</li>
|
|
12363
11718
|
<li><a href="https://github.com/nautobot/nautobot/issues/5786">#5786</a> - Removed the <code>StaticGroup</code> model added in #5472, replacing it with a subtype of the <code>DynamicGroup</code> model.</li>
|
|
12364
11719
|
</ul>
|
|
12365
|
-
<h3 id="
|
|
11720
|
+
<h3 id="fixed_13">Fixed<a class="headerlink" href="#fixed_13" title="Permanent link">¶</a></h3>
|
|
12366
11721
|
<ul>
|
|
12367
11722
|
<li><a href="https://github.com/nautobot/nautobot/issues/2352">#2352</a> - Fixed random deadlocks in long-running Jobs resulting from the ObjectChange automatic cleanup signal.</li>
|
|
12368
11723
|
<li><a href="https://github.com/nautobot/nautobot/issues/5123">#5123</a> - Fixed an unhandled <code>ValueError</code> when filtering on <code>vlans</code> by their UUID rather than their VLAN ID.</li>
|
|
@@ -12386,7 +11741,7 @@
|
|
|
12386
11741
|
<li><a href="https://github.com/nautobot/nautobot/issues/5951">#5951</a> - Removed unused consolidated action button on job list view.</li>
|
|
12387
11742
|
<li><a href="https://github.com/nautobot/nautobot/issues/5952">#5952</a> - Changed generic "Bulk Actions" dropup button styling to match generic "Actions" dropdown button.</li>
|
|
12388
11743
|
</ul>
|
|
12389
|
-
<h3 id="
|
|
11744
|
+
<h3 id="dependencies_7">Dependencies<a class="headerlink" href="#dependencies_7" title="Permanent link">¶</a></h3>
|
|
12390
11745
|
<ul>
|
|
12391
11746
|
<li><a href="https://github.com/nautobot/nautobot/issues/1758">#1758</a> - Updated <code>materialdesignicons</code> to version 7.4.47.</li>
|
|
12392
11747
|
<li><a href="https://github.com/nautobot/nautobot/issues/4616">#4616</a> - Updated <code>django-taggit</code> to <code>~5.0.0</code>.</li>
|
|
@@ -12412,13 +11767,13 @@
|
|
|
12412
11767
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-filter</code> to version <code>~24.2</code>.</li>
|
|
12413
11768
|
<li><a href="https://github.com/nautobot/nautobot/issues/5889">#5889</a> - Updated <code>django-timezone-field</code> to version <code>~7.0</code>.</li>
|
|
12414
11769
|
</ul>
|
|
12415
|
-
<h3 id="
|
|
11770
|
+
<h3 id="documentation_6">Documentation<a class="headerlink" href="#documentation_6" title="Permanent link">¶</a></h3>
|
|
12416
11771
|
<ul>
|
|
12417
11772
|
<li><a href="https://github.com/nautobot/nautobot/issues/5699">#5699</a> - Fixed a number of broken links within the documentation.</li>
|
|
12418
11773
|
<li><a href="https://github.com/nautobot/nautobot/issues/5895">#5895</a> - Added missing model documentation for <code>CloudNetwork</code>, <code>CloudNetworkPrefixAssignment</code>, <code>CloudService</code> and <del><code>CloudType</code></del> <code>CloudResourceType</code>.</li>
|
|
12419
11774
|
<li><a href="https://github.com/nautobot/nautobot/issues/5934">#5934</a> - Add Cloud Model Example and Entity Diagram.</li>
|
|
12420
11775
|
</ul>
|
|
12421
|
-
<h3 id="
|
|
11776
|
+
<h3 id="housekeeping_12">Housekeeping<a class="headerlink" href="#housekeeping_12" title="Permanent link">¶</a></h3>
|
|
12422
11777
|
<ul>
|
|
12423
11778
|
<li><a href="https://github.com/nautobot/nautobot/issues/5160">#5160</a> - Replaced references to <code>pytz</code> with <code>zoneinfo</code> in keeping with Django 4.</li>
|
|
12424
11779
|
<li><a href="https://github.com/nautobot/nautobot/issues/5212">#5212</a> - Enhanced <code>nautobot.core.testing.filters.FilterTestCases.BaseFilterTestCase.test_filters_generic()</code> test case to test for the presence and proper functioning of the <code>contacts</code> and <code>teams</code> filters on any appropriate model FilterSet.</li>
|
|
@@ -12589,7 +11944,7 @@
|
|
|
12589
11944
|
<script id="__config" type="application/json">{"base": "..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../assets/javascripts/workers/search.6ce7567c.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
12590
11945
|
|
|
12591
11946
|
|
|
12592
|
-
<script src="../assets/javascripts/bundle.
|
|
11947
|
+
<script src="../assets/javascripts/bundle.83f73b43.min.js"></script>
|
|
12593
11948
|
|
|
12594
11949
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12595
11950
|
|